
  :root {
    --ink: #05070d;
    --navy: #0b2a5e;
    --blue: #0057d2;
    --sky: #5b95e0;
    --chrome: #c8ccd2;
    --paper: #f4f6fa;
    --line: #d8def2;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'Inter', system-ui, sans-serif; color: var(--ink); background: #fff; line-height: 1.6; font-size: 16px; }
  .wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
  a:focus-visible, button:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 2px; }
  img { max-width: 100%; display: block; }

  /* ---------- NAV (light, like reference) ---------- */
  .nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
  .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 18px; }
  .nav-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
  .nav-brand img { height: 36px; }
  .nav-brand span { color: var(--ink); font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 700; letter-spacing: 0.13em; }
  .nav-links { display: flex; gap: 26px; align-items: center; }
  .nav-links a { color: #2b3752; text-decoration: none; font-size: 13.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
  .nav-links a:hover { color: var(--blue); }
  .nav-cta { background: var(--blue); color: #fff !important; padding: 11px 20px; border-radius: 3px; }
  .nav-cta:hover { background: #0047ab; color: #fff !important; }
  @media (max-width: 880px) { .nav-links a:not(.nav-cta) { display: none; } }

  /* ---------- HERO (photo, like reference) ---------- */
  .hero { position: relative; color: #fff; overflow: hidden; }
  .hero .bg { position: absolute; inset: 0; background: url('HERO_SHIP') center 55% / cover no-repeat; }
  .hero .tint { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(0,0,5,0.88) 0%, rgba(5,12,30,0.78) 45%, rgba(0,60,150,0.55) 100%); }
  .hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: linear-gradient(90deg, #6f7a86, #e6e8ec 35%, #8b96a2 70%, #e6e8ec); }
  .hero-inner { position: relative; padding: 104px 0 84px; text-align: center; }
  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase;
    font-size: clamp(38px, 5.6vw, 66px); font-weight: 700; line-height: 1.04; letter-spacing: 0.015em;
    max-width: 21ch; margin: 0 auto;
    text-shadow: 0 4px 26px rgba(0,0,0,0.55);
  }
  .hero h1 em { font-style: normal; color: var(--sky); }
  .hero p.lead { margin: 20px auto 0; max-width: 58ch; font-size: 18px; color: #e4ebf7; text-shadow: 0 2px 12px rgba(0,0,0,0.6); }
  .hero-ctas { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn { display: inline-block; text-decoration: none; font-weight: 600; font-size: 15px; padding: 14px 28px; border-radius: 3px; letter-spacing: 0.02em; transition: transform 0.15s ease; }
  .btn:hover { transform: translateY(-2px); }
  .btn-blue { background: var(--blue); color: #fff; box-shadow: 0 8px 26px rgba(0,40,120,0.55); }
  .btn-ghost { border: 1.5px solid rgba(255,255,255,0.75); color: #fff; }
  .verify-strip { margin-top: 46px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
  .verify-chip { font-family: 'IBM Plex Mono', monospace; font-size: 12.5px; color: var(--chrome); border: 1px solid rgba(200,204,210,0.4); background: rgba(0,0,0,0.35); padding: 7px 13px; border-radius: 2px; }
  .verify-chip b { color: #fff; font-weight: 500; }

  /* ---------- SERVICES ROW (icons, like reference) ---------- */
  .services { padding: 62px 0; }
  .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
  @media (max-width: 940px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
  .svc { text-align: center; padding: 10px 8px; }
  .svc svg { width: 54px; height: 54px; stroke: var(--sky); fill: none; stroke-width: 1.6; margin: 0 auto 14px; display: block; }
  .svc h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: 20px; font-weight: 600; letter-spacing: 0.04em; }
  .svc p { font-size: 13.5px; color: #45516b; margin-top: 6px; }

  /* ---------- SECTION SCAFFOLD ---------- */
  section { padding: 76px 0; }
  .sec-head { margin-bottom: 40px; }
  .sec-head .eyebrow { color: var(--blue); font-size: 12.5px; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600; }
  .sec-head h2 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: clamp(30px, 4vw, 44px); font-weight: 700; line-height: 1.04; margin-top: 8px; }
  .sec-head .rule { width: 74px; height: 3px; margin-top: 16px; background: linear-gradient(90deg, var(--blue), var(--sky)); }
  .sec-head p.sub { margin-top: 14px; color: #45516b; max-width: 64ch; font-size: 15.5px; }

  /* ---------- EQUIPMENT ---------- */
  .equip { background: var(--paper); }
  .cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
  @media (max-width: 940px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
  .cat {
    background: #fff; border: 1px solid var(--line); border-radius: 3px;
    padding: 15px 17px; font-size: 14.5px; font-weight: 600; color: #1d2b4a;
    display: flex; align-items: center; gap: 10px;
  }
  .cat::before { content: ""; width: 8px; height: 8px; background: var(--blue); flex-shrink: 0; transform: rotate(45deg); }
  .cat.more { border-style: dashed; color: var(--blue); }
  .equip-note { margin-top: 18px; font-size: 14.5px; color: #45516b; }
  .equip-note b { color: var(--ink); }

  /* ---------- RECENTLY TRADED (photos) ---------- */
  .gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
  @media (max-width: 940px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }
  .gcard { background: #fff; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; transition: transform 0.18s ease, box-shadow 0.18s ease; }
  .gcard:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(11,42,94,0.14); }
  .gcard .ph { height: 170px; background-size: cover; background-position: center; }
  .gcard .body { padding: 16px 17px 18px; }
  .gcard h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: 19px; font-weight: 600; }
  .gcard .tag { display: inline-block; margin-top: 9px; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--navy); background: #e9f0fb; border: 1px solid #cddcf5; padding: 3px 8px; border-radius: 2px; }

  /* ---------- PROCESS ---------- */
  .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
  @media (max-width: 940px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }
  .step { border-left: 3px solid var(--line); padding-left: 18px; }
  .step:hover { border-left-color: var(--blue); }
  .step .num { font-family: 'IBM Plex Mono', monospace; color: var(--sky); font-size: 13px; font-weight: 500; }
  .step h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: 21px; font-weight: 600; margin-top: 6px; }
  .step p { font-size: 14px; color: #45516b; margin-top: 7px; }

  /* ---------- ROUTE ---------- */
  .route { background: linear-gradient(135deg, #05070d 0%, #0b2a5e 78%, #123a7e 100%); color: #fff; }
  .route .sec-head .eyebrow { color: var(--sky); }
  .route .sec-head h2 { color: #fff; }
  .route p.big { max-width: 62ch; color: #d9e2f2; font-size: 16.5px; }
  .route-line { margin: 44px 0 12px; position: relative; height: 60px; }
  .route-track { position: absolute; top: 28px; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--sky), rgba(91,149,224,0.25)); }
  .ports { display: flex; justify-content: space-between; position: relative; }
  .port { text-align: center; }
  .port .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--blue); border: 3px solid #fff; margin: 21px auto 10px; box-shadow: 0 0 0 4px rgba(0,87,210,0.35); }
  .port .name { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: 17px; letter-spacing: 0.06em; }
  .port .sub { font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--chrome); }
  .route-notes { margin-top: 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  @media (max-width: 860px) { .route-notes { grid-template-columns: 1fr; } }
  .rnote { border: 1px solid rgba(91,149,224,0.35); background: rgba(255,255,255,0.04); padding: 18px; border-radius: 3px; font-size: 14px; color: #d9e2f2; }
  .rnote b { color: #fff; display: block; margin-bottom: 5px; font-weight: 600; }

  /* ---------- ABOUT ---------- */
  .about-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 46px; align-items: center; }
  @media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }
  .about p { color: #45516b; font-size: 15.5px; margin-top: 12px; }
  .about .ph { border-radius: 4px; overflow: hidden; border: 1px solid var(--line); }

  /* ---------- REGISTRY ---------- */
  .registry { background: var(--paper); padding: 54px 0; }
  .registry-box { background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--blue); padding: 30px 32px; border-radius: 3px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  @media (max-width: 860px) { .registry-box { grid-template-columns: 1fr; } }
  .reg-item .k { font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: #7d8fb3; font-weight: 600; }
  .reg-item .v { font-family: 'IBM Plex Mono', monospace; font-size: 15px; margin-top: 4px; }

  /* ---------- CONTACT ---------- */
  .contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; }
  @media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
  .contact p { color: #45516b; font-size: 15.5px; max-width: 52ch; }
  .c-list { margin-top: 26px; display: grid; gap: 16px; }
  .c-item { display: flex; gap: 14px; align-items: flex-start; }
  .c-item .ic { width: 40px; height: 40px; flex-shrink: 0; border-radius: 3px; background: #e9f0fb; color: var(--blue); display: flex; align-items: center; justify-content: center; font-size: 17px; }
  .c-item .k { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #7d8fb3; font-weight: 600; }
  .c-item .v { font-size: 15.5px; font-weight: 500; }
  .c-item a { color: var(--blue); text-decoration: none; }
  .c-item a:hover { text-decoration: underline; }
  .contact-card { background: linear-gradient(135deg, #05070d, #0b2a5e 85%); color: #fff; border-radius: 4px; padding: 36px 34px; align-self: start; }
  .contact-card h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: 26px; }
  .contact-card p { color: #c9d6ee; font-size: 14.5px; margin-top: 10px; }
  .contact-card .btn { margin-top: 22px; }

  /* ---------- FOOTER ---------- */
  footer { background: var(--ink); color: #9fb4d8; padding: 30px 0; border-top: 3px solid var(--blue); font-size: 12.5px; line-height: 1.8; }
  footer .mono { font-family: 'IBM Plex Mono', monospace; color: var(--chrome); }
  footer .brandline { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
  footer .brandline img { height: 24px; }
  footer .brandline span { color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 700; letter-spacing: 0.12em; }

  @media (prefers-reduced-motion: reduce) { * { transition: none !important; } html { scroll-behavior: auto; } }

/* ---------- PRODUCT PAGES ---------- */
.page-hero { background: linear-gradient(120deg, #000 0%, #05070d 40%, #0b2a5e 80%, #0057d2 120%); color: #fff; position: relative; }
.page-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: linear-gradient(90deg, #6f7a86, #e6e8ec 35%, #8b96a2 70%, #e6e8ec); }
.page-hero-inner { padding: 58px 0 46px; }
.page-hero .crumb { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: var(--sky); letter-spacing: 0.08em; }
.page-hero .crumb a { color: var(--sky); text-decoration: none; }
.page-hero .crumb a:hover { color: #fff; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: clamp(34px, 5vw, 56px); font-weight: 700; line-height: 1.02; margin-top: 10px; }
.page-hero p.sub { margin-top: 12px; max-width: 62ch; color: #d9e2f2; font-size: 16px; }

.prod-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 860px) { .prod-grid { grid-template-columns: 1fr; } }
.pcard { background: #fff; border: 1px solid var(--line); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.pcard:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(11,42,94,0.14); }
.pcard .ph { height: 250px; background-size: cover; background-position: center; }
.pcard .body { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.pcard h3 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: 24px; font-weight: 700; }
.pcard .status { display: inline-block; margin-top: 8px; align-self: flex-start; font-family: 'IBM Plex Mono', monospace; font-size: 11px; color: var(--navy); background: #e9f0fb; border: 1px solid #cddcf5; padding: 3px 9px; border-radius: 2px; }
.pcard ul.specs { margin: 14px 0 0 0; padding: 0; list-style: none; }
.pcard ul.specs li { font-size: 14px; color: #45516b; padding: 5px 0 5px 18px; position: relative; border-bottom: 1px dashed #e6ebf6; }
.pcard ul.specs li::before { content: ""; position: absolute; left: 2px; top: 12px; width: 7px; height: 7px; background: var(--blue); transform: rotate(45deg); }
.pcard .price-row { margin-top: 16px; font-size: 14px; color: #7d8fb3; }
.pcard .price-row b { color: var(--ink); font-size: 15px; }
.pcard .cta-row { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.btn-sm { display: inline-block; text-decoration: none; font-weight: 600; font-size: 13.5px; padding: 11px 18px; border-radius: 3px; }
.btn-sm.blue { background: var(--blue); color: #fff; }
.btn-sm.blue:hover { background: #0047ab; }
.btn-sm.line { border: 1.5px solid var(--blue); color: var(--blue); }
.btn-sm.line:hover { background: #e9f0fb; }

.order-band { background: linear-gradient(135deg, #05070d 0%, #0b2a5e 85%); color: #fff; }
.order-band .sec-head h2 { color: #fff; }
.order-band .sec-head .eyebrow { color: var(--sky); }
.order-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 8px; }
@media (max-width: 940px) { .order-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .order-steps { grid-template-columns: 1fr; } }
.ostep { border: 1px solid rgba(91,149,224,0.35); background: rgba(255,255,255,0.04); padding: 18px; border-radius: 3px; }
.ostep .n { font-family: 'IBM Plex Mono', monospace; color: var(--sky); font-size: 12px; }
.ostep h4 { font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; font-size: 18px; margin-top: 5px; }
.ostep p { font-size: 13.5px; color: #d9e2f2; margin-top: 5px; }
.order-contact { margin-top: 30px; display: flex; gap: 26px; flex-wrap: wrap; align-items: center; justify-content: space-between; border-top: 1px solid rgba(91,149,224,0.3); padding-top: 24px; }
.order-contact .item { font-size: 15px; color: #d9e2f2; }
.order-contact .item b { color: #fff; display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sky); margin-bottom: 3px; }
.order-contact a { color: #fff; text-decoration: none; font-weight: 600; }
.order-contact a:hover { text-decoration: underline; }
.note-strip { background: var(--paper); border: 1px solid var(--line); border-left: 5px solid var(--blue); padding: 18px 22px; border-radius: 3px; font-size: 14.5px; color: #45516b; margin-top: 30px; }
.cat .arrow { margin-left: auto; color: var(--sky); font-weight: 700; }
a.cat { text-decoration: none; }
a.cat:hover { border-color: var(--blue); background: #f4f8ff; }
a.gcard { text-decoration: none; color: inherit; display: block; }
