/* =========================================================
   BEST4TUNA — production CSS (vanilla, no React)
   ========================================================= */
:root {
  --navy-1000: #060a1f;
  --navy-900:  #0b1230;
  --navy-800:  #111a44;
  --navy-700:  #1a2660;
  --navy-600:  #243382;
  --surf-1:    #2b4ad6;
  --surf-2:    #4f7df0;
  --surf-3:    #8db4ff;
  --sand:      #f8e8a8;
  --yellow:    #ffd84a;
  --yellow-h:  #ffe87e;
  --mint:      #9af0c8;
  --pink:      #ffb6c8;
  --sky:       #bfe3ff;
  --coral:     #ff8a6a;
  --ink-100:   #f4f1e6;
  --ink-300:   #cfd2e3;
  --ink-500:   #8a92b6;
  --ink-700:   #4a527a;
  --font-display: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
  --font-body:    "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;
  --r-sm: 12px; --r-md: 18px; --r-lg: 28px; --r-xl: 40px; --r-pill: 999px;
  --maxw: 1280px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--navy-1000); color: var(--ink-100); font-family: var(--font-body); font-size: 16px; line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }

body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(255,255,255,.7) 99%, transparent 100%),
    radial-gradient(1px 1px at 78% 35%, rgba(255,255,255,.5) 99%, transparent 100%),
    radial-gradient(1px 1px at 33% 78%, rgba(255,255,255,.6) 99%, transparent 100%),
    radial-gradient(1px 1px at 62% 64%, rgba(255,216,74,.7) 99%, transparent 100%),
    radial-gradient(1px 1px at 88% 12%, rgba(255,216,74,.5) 99%, transparent 100%),
    radial-gradient(1px 1px at 45% 8%, rgba(255,255,255,.4) 99%, transparent 100%);
  background-size: 600px 600px;
  opacity: .55;
  mix-blend-mode: screen;
}

main { position: relative; z-index: 1; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
::selection { background: var(--yellow); color: var(--navy-1000); }

/* Type utilities */
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--yellow); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--yellow); opacity: .8; }
.display { font-family: var(--font-display); font-weight: 800; font-style: italic; letter-spacing: -0.02em; line-height: 0.92; font-variation-settings: "opsz" 144; }
.serif { font-family: var(--font-display); font-style: italic; font-weight: 600; }
.uppercase-sans { font-family: var(--font-body); font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; line-height: 0.95; }
.shell { width: min(var(--maxw), 100% - 48px); margin-inline: auto; }
@media (max-width: 640px) { .shell { width: calc(100% - 32px); } }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: var(--r-pill); font-weight: 700; font-size: 14.5px; letter-spacing: .01em; transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .3s ease; white-space: nowrap; }
.btn-primary { background: var(--yellow); color: var(--navy-900); box-shadow: 0 10px 30px -10px rgba(255,216,74,.6); }
.btn-primary:hover { transform: translateY(-2px); background: var(--yellow-h); box-shadow: 0 16px 40px -12px rgba(255,216,74,.8); }
.btn-ghost { background: rgba(255,255,255,.06); color: var(--ink-100); border: 1px solid rgba(255,255,255,.14); }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn .arrow { width: 18px; height: 18px; transition: transform .3s ease; }
.btn:hover .arrow { transform: translateX(4px) rotate(-8deg); }

/* Sections */
section { position: relative; padding: clamp(72px, 10vw, 140px) 0; }
section + section { padding-top: clamp(56px, 8vw, 120px); }
.section-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: clamp(40px, 6vw, 72px); max-width: 780px; }
.section-head h2 { margin: 0; font-size: clamp(40px, 6.4vw, 84px); font-family: var(--font-display); font-style: italic; font-weight: 800; letter-spacing: -0.022em; line-height: 0.96; color: var(--ink-100); }
.section-head h2 em { font-style: normal; font-family: var(--font-body); font-weight: 800; text-transform: uppercase; letter-spacing: -0.005em; color: var(--yellow); font-size: 0.86em; }
.section-head p { color: var(--ink-300); font-size: clamp(16px, 1.4vw, 19px); max-width: 60ch; margin: 0; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2,.7,0,1), transform .9s cubic-bezier(.2,.7,0,1); transition-delay: var(--rev-delay, 0ms); }
.reveal.in { opacity: 1; transform: translateY(0); }
.mask-reveal { display: inline-block; overflow: hidden; vertical-align: bottom; }
.mask-reveal > span { display: inline-block; transform: translateY(110%); transition: transform 1s cubic-bezier(.2,.7,0,1); transition-delay: var(--rev-delay, 0ms); }
.mask-reveal.in > span, .reveal.in .mask-reveal > span { transform: translateY(0); }

/* Bubbles */
@keyframes bubble-rise { 0% { transform: translateY(0) translateX(0) scale(.6); opacity: 0; } 10% { opacity: .6; } 100% { transform: translateY(-90vh) translateX(var(--drift, 30px)) scale(1); opacity: 0; } }
.bubble { position: absolute; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(191,227,255,.9), rgba(143,180,255,.2) 60%, transparent 70%); pointer-events: none; animation: bubble-rise var(--dur, 12s) linear infinite; animation-delay: var(--delay, 0s); }

/* Cards */
.card { position: relative; border-radius: var(--r-lg); background: linear-gradient(180deg, rgba(36,51,130,.32), rgba(11,18,48,.55)); border: 1px solid rgba(255,255,255,.06); overflow: hidden; isolation: isolate; transition: transform .4s cubic-bezier(.2,.7,0,1), border-color .3s ease; }
.card:hover { border-color: rgba(255,216,74,.4); }
.tilt { transform-style: preserve-3d; transition: transform .25s ease-out; will-change: transform; }
.mag { display: inline-flex; align-items: center; transition: transform .25s cubic-bezier(.2,.7,0,1); will-change: transform; }

/* Marquee */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); padding-inline: 16px; }
.marquee-item { display: inline-flex; align-items: center; gap: 18px; padding: 0 28px; font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(48px, 7vw, 96px); color: rgba(255,216,74,.18); letter-spacing: -0.02em; white-space: nowrap; }
.marquee-item .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--yellow); display: inline-block; opacity: .6; }

@media (max-width: 860px) { .section-head h2 { font-size: clamp(36px, 9vw, 56px); } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; } }

/* =========================================================
   NAV
   ========================================================= */
.nav-wrap { position: fixed; top: 16px; left: 0; right: 0; z-index: 50; display: flex; justify-content: center; pointer-events: none; }
.nav-bar { pointer-events: auto; display: flex; align-items: center; gap: 18px; padding: 10px 12px 10px 18px; border-radius: 999px; background: rgba(11,18,48,.5); backdrop-filter: blur(18px) saturate(1.2); -webkit-backdrop-filter: blur(18px) saturate(1.2); border: 1px solid rgba(255,255,255,.08); box-shadow: 0 10px 30px -20px rgba(0,0,0,.5); transition: all .35s ease; width: min(1100px, calc(100% - 32px)); position: relative; }
.nav-bar.scrolled { background: rgba(11,18,48,.78); box-shadow: 0 20px 50px -20px rgba(0,0,0,.7); }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand-text { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 20px; letter-spacing: -0.01em; }
.nav-brand-text .accent { color: var(--yellow); }
.nav-links { display: flex; align-items: center; gap: 6px; margin-left: auto; margin-right: 6px; }
.nav-links a { padding: 8px 14px; border-radius: 999px; font-size: 13.5px; font-weight: 500; color: var(--ink-300); transition: color .2s, background .2s; }
.nav-links a:hover { background: rgba(255,255,255,.06); color: var(--ink-100); }
.nav-links a.nav-link-cta { color: var(--yellow); font-weight: 700; }
.nav-links a.nav-link-cta:hover { background: rgba(255,216,74,.12); color: var(--yellow-h); }
.nav-cta { padding: 10px 18px; font-size: 13.5px; }
.nav-burger { display: none; width: 40px; height: 40px; border-radius: 999px; background: rgba(255,255,255,.08); align-items: center; justify-content: center; }
.nav-mobile { position: absolute; top: calc(100% + 10px); left: 0; right: 0; background: rgba(8,12,32,.98); backdrop-filter: blur(24px) saturate(1.2); -webkit-backdrop-filter: blur(24px) saturate(1.2); border: 1px solid rgba(255,255,255,.08); border-radius: 24px; padding: 18px; display: none; flex-direction: column; gap: 4px; box-shadow: 0 30px 60px -20px rgba(0,0,0,.7); z-index: 51; }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 12px 14px; border-radius: 14px; font-size: 16px; font-weight: 600; color: var(--ink-100); background: rgba(255,255,255,.04); }
.nav-mobile .btn { margin-top: 8px; justify-content: center; }
@media (max-width: 900px) {
  .nav-links, .nav-bar > .nav-cta { display: none !important; }
  .nav-burger { display: inline-flex !important; margin-left: auto; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { padding-top: clamp(120px, 14vw, 180px); padding-bottom: clamp(48px, 6vw, 80px); min-height: 100vh; overflow: hidden; position: relative; }
.hero::before { content: ""; position: absolute; inset: 0; background: url("assets/hero-bg.webp") center/cover no-repeat; opacity: .28; mix-blend-mode: screen; pointer-events: none; z-index: 0; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,10,31,.55) 0%, rgba(6,10,31,.2) 35%, rgba(11,18,48,.8) 100%); pointer-events: none; z-index: 0; }
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-shell { position: relative; z-index: 2; }
.hero-eyebrow-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-live { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: rgba(154,240,200,.12); border: 1px solid rgba(154,240,200,.3); color: var(--mint); font-size: 12px; font-weight: 600; }
.hero-live .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--mint); box-shadow: 0 0 8px var(--mint); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero-title { margin: 0; position: relative; z-index: 3; font-family: var(--font-display); font-size: clamp(48px, 8.4vw, 132px); line-height: 0.94; letter-spacing: -0.025em; font-weight: 800; color: var(--ink-100); }
.hero-title .line { display: block; }
.hero-title .yellow { color: var(--yellow); }
.hero-title .mint { color: var(--mint); }
@media (max-width: 640px) { .hero-title { font-size: clamp(40px, 12vw, 64px); } }
.hero-meta { margin-top: 44px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: end; }
.hero-meta p { font-size: clamp(16px, 1.5vw, 20px); color: var(--ink-300); max-width: 540px; margin: 0; }
.hero-meta p .ink { color: var(--ink-100); font-weight: 600; }
.hero-meta p .y { color: var(--yellow); font-weight: 700; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-start; }
@media (max-width: 760px) { .hero-meta { grid-template-columns: 1fr; } }
.hero-tuna { position: absolute; right: max(-4vw, -80px); top: max(30vh, 240px); z-index: 1; pointer-events: none; filter: drop-shadow(0 30px 60px rgba(0,0,0,.45)); transition: transform .25s cubic-bezier(.2,.7,0,1); width: clamp(280px, 42vw, 720px); }
.hero-tuna svg { width: 100% !important; max-width: 100% !important; height: auto; }
@media (min-width: 901px) { .hero-shell { padding-right: 30%; } }
@media (max-width: 900px) { .hero-tuna { top: auto; bottom: 18%; right: -12%; opacity: .55; width: clamp(240px, 70vw, 480px); } }
.hero-tuna-inner { animation: tuna-bob 6s ease-in-out infinite; }
@keyframes tuna-bob { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-18px) rotate(2deg); } }
.hero-fishschool { position: absolute; left: 8%; top: 62%; opacity: .8; z-index: 1; transition: transform .3s; }
.hero-compass { position: absolute; left: 5%; top: 22%; opacity: .9; z-index: 1; animation: spin 60s linear infinite; }
.hero-star-1 { position: absolute; left: 45%; top: 18%; z-index: 1; animation: twinkle 3s ease-in-out infinite; }
.hero-star-2 { position: absolute; left: 82%; top: 15%; z-index: 1; animation: twinkle 4s ease-in-out infinite; animation-delay: .7s; }
.hero-star-3 { position: absolute; left: 62%; top: 10%; z-index: 1; animation: twinkle 3.4s ease-in-out infinite; animation-delay: 1.4s; }
@keyframes twinkle { 0%,100% { opacity: .3; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes spin { to { transform: rotate(360deg); } }

/* Wave stack */
.wave-stack { position: absolute; left: 0; right: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.wave-stack.bottom { bottom: 0; }
.wave-stack svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* =========================================================
   VARIETIES
   ========================================================= */
.variety-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 1100px) and (min-width: 721px) { .variety-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px) { .variety-grid { grid-template-columns: 1fr; } .variety-name { font-size: 36px !important; } }
.variety-card { position: relative; }
.variety-tilt { position: relative; border-radius: 32px; background: linear-gradient(180deg, rgba(36,51,130,.4), rgba(11,18,48,.85)); border: 1px solid rgba(255,255,255,.07); overflow: hidden; padding: 28px; min-height: 520px; display: flex; flex-direction: column; transition: transform .25s ease-out, border-color .3s; will-change: transform; }
.variety-tilt:hover { border-color: rgba(255,216,74,.35); }
.variety-bg { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.variety-bg svg { position: absolute; bottom: 0; left: 0; }
.variety-photo { position: absolute; top: 0; left: 0; right: 0; height: 50%; object-fit: cover; opacity: .55; mix-blend-mode: screen; pointer-events: none; -webkit-mask-image: linear-gradient(180deg, #000 35%, transparent 100%); mask-image: linear-gradient(180deg, #000 35%, transparent 100%); }
.variety-illu { position: relative; height: 180px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; z-index: 1; animation: card-fish-swim 5s ease-in-out infinite; }
@keyframes card-fish-swim { 0%,100% { transform: translateX(-6px) translateY(0) rotate(-2deg); } 50% { transform: translateX(6px) translateY(-6px) rotate(2deg); } }
.variety-tag { position: absolute; top: 24px; right: 24px; padding: 6px 12px; border-radius: 999px; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--navy-1000); z-index: 2; }
.variety-content { position: relative; z-index: 2; display: flex; flex-direction: column; flex: 1; }
.variety-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.variety-name { margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 44px; line-height: 1; letter-spacing: -0.02em; color: var(--ink-100); }
.variety-sci { font-family: var(--font-mono); font-size: 11px; color: var(--ink-500); letter-spacing: .04em; }
.variety-desc { margin: 0 0 18px; color: var(--ink-300); font-size: 14.5px; line-height: 1.55; }
.variety-facts { margin: 0 0 18px; padding: 14px 0; border-top: 1px dashed rgba(255,255,255,.12); border-bottom: 1px dashed rgba(255,255,255,.12); display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; }
.variety-facts div { display: flex; flex-direction: column; gap: 4px; }
.variety-facts dt { font-family: var(--font-mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-500); }
.variety-facts dd { margin: 0; font-size: 13px; color: var(--ink-100); font-weight: 500; }
.variety-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; }
.variety-price { display: flex; flex-direction: column; gap: 2px; line-height: 1; }
.variety-price .from { font-size: 10px; font-family: var(--font-mono); color: var(--ink-500); letter-spacing: .1em; text-transform: uppercase; }
.variety-price strong { font-family: var(--font-display); font-style: italic; font-size: 26px; font-weight: 800; }
.variety-price .unit { font-size: 11px; color: var(--ink-500); }
.variety-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; padding: 10px 14px; border-radius: 999px; background: rgba(255,255,255,.06); transition: background .2s, transform .2s; }
.variety-cta:hover { background: rgba(255,255,255,.12); transform: translateX(3px); }
.variety-decor-coral-1 { position: absolute; left: 3%; top: 12%; opacity: .6; transform: rotate(-10deg); z-index: 0; pointer-events: none; }
.variety-decor-coral-2 { position: absolute; right: 5%; bottom: 10%; opacity: .55; transform: rotate(15deg); z-index: 0; pointer-events: none; }
@media (max-width: 720px) { .variety-decor-coral-1, .variety-decor-coral-2 { display: none; } }
#varieties .shell { position: relative; z-index: 1; }

/* =========================================================
   CHANNELS
   ========================================================= */
.channel-tabs { display: inline-flex; padding: 6px; gap: 6px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; margin-bottom: 36px; max-width: 100%; flex-wrap: nowrap; }
.channel-tab { display: inline-flex; align-items: center; gap: 12px; padding: 12px 22px; border-radius: 999px; font-size: 14.5px; color: var(--ink-300); transition: all .3s ease; white-space: nowrap; }
.channel-tab .tab-label { white-space: nowrap; }
@media (max-width: 560px) { .channel-tabs { width: 100%; gap: 4px; padding: 4px; } .channel-tab { flex: 1 1 0; min-width: 0; padding: 10px 12px; font-size: 13px; gap: 6px; justify-content: center; } .channel-tab .tab-label { display: none; } .channel-tab .tab-mark { font-size: 12px; padding: 4px 10px; } .channel-tab.is-active::after { content: attr(data-short); font-weight: 600; } }
.channel-tab:hover { color: var(--ink-100); }
.channel-tab.is-active { background: var(--yellow); color: var(--navy-1000); }
.channel-tab .tab-mark { font-family: var(--font-mono); font-size: 11px; padding: 3px 8px; border-radius: 6px; background: rgba(0,0,0,.1); letter-spacing: .08em; }
.channel-tab.is-active .tab-mark { background: rgba(11,18,48,.85); color: var(--yellow); }
.channel-panel { display: grid; grid-template-columns: 1.05fr 1fr; gap: 36px; border-radius: 36px; padding: 36px; background: linear-gradient(180deg, rgba(36,51,130,.28), rgba(11,18,48,.75)); border: 1px solid rgba(255,255,255,.07); }
@media (max-width: 860px) { .channel-panel { grid-template-columns: 1fr; padding: 20px; gap: 24px; } }
.channel-illu { position: relative; aspect-ratio: 5 / 4; border-radius: 24px; background-color: rgba(11,18,48,.55); border: 1px solid rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; overflow: hidden; transition: background .5s; }
.channel-illu .channel-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; z-index: 0; }
.channel-illu::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,18,48,.85) 100%); pointer-events: none; z-index: 1; }
.channel-illu .channel-illu-inner, .channel-illu .boat { position: relative; z-index: 2; }
.channel-illu-inner { animation: float-illu 6s ease-in-out infinite; }
.channel-illu .boat { position: absolute; top: 12%; right: 8%; animation: boat-rock 4s ease-in-out infinite; }
@keyframes float-illu { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(2deg); } }
@keyframes boat-rock { 0%,100% { transform: rotate(-4deg); } 50% { transform: rotate(4deg); } }
.channel-stats { margin-top: 18px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.channel-stats div { padding: 14px 16px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); }
.channel-stats dt { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-500); margin-bottom: 4px; }
.channel-stats dd { margin: 0; font-size: 15px; font-weight: 600; color: var(--ink-100); }
.channel-right h3 { font-family: var(--font-display); font-style: italic; font-size: clamp(36px, 4.4vw, 56px); font-weight: 800; line-height: 1; letter-spacing: -0.02em; margin: 0 0 20px; }
.channel-right > p { color: var(--ink-300); font-size: 17px; line-height: 1.55; margin: 0 0 28px; }
.channel-perks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.channel-perks li { display: flex; align-items: center; gap: 14px; font-size: 15.5px; color: var(--ink-100); animation: slide-in .5s ease forwards; opacity: 0; transform: translateY(8px); }
@keyframes slide-in { to { opacity: 1; transform: translateY(0); } }
.channel-perks .check { width: 22px; height: 22px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.channel-cta-row { margin-top: 28px; }

/* =========================================================
   STATS
   ========================================================= */
.stats-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.stat-big { grid-column: span 3; padding: 32px; border-radius: 28px; border: 1px solid rgba(255,255,255,.07); display: flex; flex-direction: column; min-height: 260px; position: relative; }
.stat-big.b1 { background: linear-gradient(155deg, rgba(255,216,74,.08), rgba(11,18,48,.5)); }
.stat-big.b2 { background: linear-gradient(155deg, rgba(154,240,200,.10), rgba(11,18,48,.5)); }
.stat-tag { align-self: flex-start; padding: 6px 12px; border-radius: 999px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--navy-1000); }
.stat-num { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(72px, 11vw, 156px); line-height: 0.86; letter-spacing: -0.04em; margin-top: auto; display: flex; align-items: baseline; gap: 14px; }
.stat-unit { font-family: var(--font-mono); font-style: normal; font-size: 16px; font-weight: 500; color: var(--ink-300); letter-spacing: .05em; }
.stat-lbl { margin: 16px 0 0; color: var(--ink-300); font-size: 14.5px; max-width: 38ch; }
.stat-sm { grid-column: span 2; padding: 24px; border-radius: 24px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); display: flex; flex-direction: column; gap: 12px; min-height: 200px; justify-content: flex-start; }
.stat-mini { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(44px, 5.4vw, 72px); line-height: .86; letter-spacing: -0.025em; }
.stat-mini small { font-size: 0.5em; vertical-align: top; margin-left: 4px; }
.stat-sm p { margin: auto 0 0; color: var(--ink-300); font-size: 13.5px; line-height: 1.4; }
.stat-quote { grid-column: span 3; padding: 28px; border-radius: 24px; background: linear-gradient(155deg, rgba(255,216,74,.06), rgba(11,18,48,.6)); border: 1px solid rgba(255,216,74,.18); }
.stat-quote p { margin: 14px 0 16px; font-family: var(--font-display); font-style: italic; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.3; color: var(--ink-100); }
.stat-quote footer { font-size: 12.5px; color: var(--ink-500); letter-spacing: .04em; }
.stat-chart { grid-column: span 3; padding: 24px; border-radius: 24px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); }
.stat-chart-head { display: flex; justify-content: space-between; margin-bottom: 24px; }
.stat-chart-head .lbl { font-family: var(--font-mono); font-size: 11px; color: var(--ink-500); letter-spacing: .1em; text-transform: uppercase; }
.stat-chart-head .unit { font-size: 11px; color: var(--ink-500); }
.bars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; height: 200px; align-items: end; }
.bar { display: flex; flex-direction: column; align-items: stretch; gap: 8px; height: 100%; }
.bar-fill { height: var(--h); border-radius: 8px 8px 4px 4px; margin-top: auto; transform-origin: bottom; animation: bar-rise 1s cubic-bezier(.2,.7,0,1) both; animation-delay: var(--d); animation-play-state: paused; }
.bars.in .bar-fill { animation-play-state: running; }
@keyframes bar-rise { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }
.bar-val { font-family: var(--font-mono); font-size: 11px; color: var(--ink-100); text-align: center; }
.bar-lbl { font-size: 11px; color: var(--ink-500); text-align: center; }
.stats-decor-jelly-1 { position: absolute; right: clamp(-40px, -1vw, 0px); top: 6%; opacity: .45; animation: drift 8s ease-in-out infinite; z-index: 0; pointer-events: none; }
.stats-decor-jelly-2 { position: absolute; left: clamp(-30px, 0vw, 12px); bottom: 6%; opacity: .4; animation: drift 10s ease-in-out infinite; animation-delay: 1.5s; z-index: 0; pointer-events: none; }
@media (max-width: 1024px) { .stats-decor-jelly-1, .stats-decor-jelly-2 { display: none; } }
#stats .shell { position: relative; z-index: 1; }
@keyframes drift { 0%,100% { transform: translateY(0) translateX(0); } 33% { transform: translateY(-22px) translateX(8px); } 66% { transform: translateY(10px) translateX(-10px); } }
@media (max-width: 980px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } .stat-big { grid-column: span 4; min-height: 200px; } .stat-sm { grid-column: span 2; } .stat-quote { grid-column: span 4; } .stat-chart { grid-column: span 4; } }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } .stat-big, .stat-quote, .stat-chart { grid-column: span 2; } .stat-sm { grid-column: span 1; min-height: 0; } .bars { gap: 8px; } }

/* =========================================================
   JOURNEY
   ========================================================= */
.journey-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.journey-sticky { position: sticky; top: 110px; }
.journey-art-frame { position: relative; border-radius: 32px; background: linear-gradient(155deg, rgba(36,51,130,.32), rgba(11,18,48,.7)); border: 1px solid rgba(255,255,255,.08); aspect-ratio: 1; overflow: hidden; display: flex; align-items: center; justify-content: center; transition: box-shadow .6s ease, border-color .6s ease; }
.journey-art-rings { position: absolute; inset: 0; pointer-events: none; }
.journey-art-rings span { position: absolute; top: 50%; left: 50%; border: 1px dashed rgba(255,255,255,.1); border-radius: 999px; transform: translate(-50%,-50%); opacity: .5; transition: border-color .6s ease; }
.journey-art-rings span:nth-child(1) { width: 70%; height: 70%; animation: spin-r 60s linear infinite; }
.journey-art-rings span:nth-child(2) { width: 88%; height: 88%; animation: spin-r 90s linear infinite reverse; }
.journey-art-rings span:nth-child(3) { width: 50%; height: 50%; animation: spin-r 40s linear infinite; }
@keyframes spin-r { to { transform: translate(-50%,-50%) rotate(360deg); } }
.journey-art { position: absolute; opacity: 0; transform: scale(.86) translateY(20px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,0,1); }
.journey-art.is-active { opacity: 1; transform: scale(1) translateY(0); animation: art-bob 4s ease-in-out infinite; }
@keyframes art-bob { 0%,100% { transform: scale(1) translateY(0) rotate(-2deg); } 50% { transform: scale(1.02) translateY(-10px) rotate(2deg); } }
.journey-art-foot { position: absolute; bottom: 24px; left: 24px; right: 24px; display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; background: rgba(11,18,48,.65); backdrop-filter: blur(8px); border-radius: 18px; border: 1px solid rgba(255,255,255,.08); }
.journey-art-foot .num { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 32px; letter-spacing: -0.03em; transition: color .6s; }
.journey-art-foot .sub { font-family: var(--font-mono); font-size: 12px; color: var(--ink-300); }
.journey-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 28px; }
.journey-step { position: relative; display: grid; grid-template-columns: 70px 1fr; gap: 20px; padding: 28px 0; opacity: .35; transition: opacity .5s ease; }
.journey-step.is-active { opacity: 1; }
.step-rail { position: absolute; left: 34px; top: 100%; width: 1px; height: 28px; background: rgba(255,255,255,.1); }
.journey-step:last-child .step-rail { display: none; }
.step-num { width: 64px; height: 64px; border-radius: 999px; border: 1.5px solid rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 14px; font-weight: 700; background: var(--navy-900); transition: all .4s ease; }
.journey-step.is-active .step-num { transform: scale(1.05); box-shadow: 0 0 0 6px rgba(255,216,74,.08); }
.step-body h3 { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(28px, 3.6vw, 44px); line-height: 1; letter-spacing: -0.02em; margin: 0 0 6px; color: var(--ink-100); }
.step-sub { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-500); display: block; margin-bottom: 10px; }
.step-body p { margin: 0; color: var(--ink-300); font-size: 15.5px; max-width: 44ch; line-height: 1.55; }
@media (max-width: 720px) { .journey-layout { grid-template-columns: 1fr; gap: 32px; } .journey-sticky { position: relative; top: 0; } .journey-art-frame { max-width: 380px; margin: 0 auto; } }
@media (min-width: 721px) and (max-width: 1024px) { .journey-layout { gap: 32px; } .journey-sticky { top: 96px; } .journey-art-frame { max-width: 320px; } }

/* =========================================================
   CTA
   ========================================================= */
section.cta-section { padding-bottom: clamp(48px, 6vw, 80px); position: relative; }
.cta-card { position: relative; border-radius: 36px; background: linear-gradient(160deg, rgba(36,51,130,.55), rgba(11,18,48,.85)); border: 1px solid rgba(255,255,255,.08); padding: clamp(28px, 5vw, 56px); display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; overflow: hidden; z-index: 2; }
.cta-decor { position: absolute; pointer-events: none; }
.cta-decor-1 { right: -120px; bottom: -80px; opacity: .14; transform: rotate(-18deg); }
.cta-decor-2 { top: 30px; right: 40%; animation: twinkle 3s ease-in-out infinite; }
.cta-decor-3 { bottom: 60px; left: 38%; animation: twinkle 3.5s ease-in-out infinite; animation-delay: 1s; }
.cta-title { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(40px, 5.4vw, 68px); line-height: 0.94; letter-spacing: -0.025em; color: var(--ink-100); margin: 16px 0 22px; }
.cta-title em { font-style: italic; }
.cta-left p { color: var(--ink-300); font-size: 16px; margin-bottom: 24px; max-width: 420px; }
.cta-contacts { display: flex; flex-direction: column; gap: 10px; }
.cta-contact { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); transition: all .2s; }
.cta-contact:hover { background: rgba(255,255,255,.08); transform: translateX(4px); border-color: rgba(255,216,74,.3); }
.cta-contact .lbl { display: block; font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-500); letter-spacing: .1em; text-transform: uppercase; }
.cta-contact .val { display: block; font-weight: 600; color: var(--ink-100); margin-top: 2px; }
.cta-form { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-lbl { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-500); letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select { width: 100%; padding: 14px 16px; border-radius: 14px; background: rgba(11,18,48,.5); border: 1px solid rgba(255,255,255,.1); color: var(--ink-100); font-family: inherit; font-size: 15px; transition: border .2s; }
.field input::placeholder { color: var(--ink-500); opacity: 1; }
.field input:focus, .field select:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,216,74,.12); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23cfd2e3' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; padding-right: 40px; }
.cta-submit { margin-top: 8px; align-self: flex-start; }
.field-fine { font-size: 11.5px; color: var(--ink-500); margin: 4px 0 0; }
.cta-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 14px; padding: 40px 24px; border-radius: 24px; background: rgba(154,240,200,.06); border: 1px solid rgba(154,240,200,.3); }
.cta-success.show { display: flex; }
.cta-form.hide { display: none; }
.success-mark { width: 80px; height: 80px; border-radius: 999px; background: var(--mint); color: var(--navy-1000); display: flex; align-items: center; justify-content: center; animation: pop .5s cubic-bezier(.2,.7,0,1); }
@keyframes pop { from { transform: scale(.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.cta-success h3 { margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 36px; }
.cta-success p { margin: 0; color: var(--ink-300); max-width: 32ch; }
@media (max-width: 860px) { .cta-card { grid-template-columns: 1fr; gap: 28px; } .field-row { grid-template-columns: 1fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.foot { background: var(--navy-1000); border-top: 1px solid rgba(255,255,255,.06); padding-top: 80px; padding-bottom: 24px; position: relative; overflow: hidden; }
.foot-wordmark-wrap { text-align: center; margin-bottom: 60px; }
.foot-wordmark { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(72px, 16vw, 200px); letter-spacing: -0.04em; line-height: 1; background: linear-gradient(180deg, rgba(244,241,230,.9), rgba(143,180,255,.2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; display: inline-block; }
.foot-wordmark .accent { font-family: var(--font-body); font-style: normal; font-weight: 800; color: var(--yellow); -webkit-text-fill-color: var(--yellow); }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 36px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.06); }
.foot-brand { padding-right: 12px; }
.foot-brand p { color: var(--ink-300); font-size: 14px; margin-top: 16px; max-width: 280px; }
.foot-socials { display: flex; gap: 8px; margin-top: 20px; }
.foot-soc { width: 36px; height: 36px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: .04em; transition: all .2s; }
.foot-soc:hover { background: var(--yellow); color: var(--navy-1000); border-color: var(--yellow); }
.foot-col-h { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--yellow); margin: 0 0 14px; font-weight: 600; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { color: var(--ink-300); font-size: 14px; transition: color .2s; }
.foot-col a:hover { color: var(--ink-100); }
.foot-bar { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; padding-top: 24px; font-size: 12px; color: var(--ink-500); }
.foot-heart { color: var(--coral); }
@media (max-width: 980px) { .foot-grid { grid-template-columns: repeat(2, 1fr); } .foot-brand { grid-column: span 2; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } .foot-brand { grid-column: span 1; } }

/* =========================================================
   LIGHT THEME — Get It Now page (body.light)
   ========================================================= */
:root {
  --sky-50:   #f3f9ff;
  --sky-100:  #eaf6ff;
  --sky-200:  #d4ecff;
  --sky-300:  #b0dcff;
  --sky-400:  #7cc4ff;
  --sky-500:  #4aa9ff;
  --sky-600:  #2186e8;
  --sky-700:  #1568bd;
  --aqua:     #5fd0e0;
  --ocean-deep: #0e3a72;
  --product-r: 24px;
}
body.light {
  background: linear-gradient(180deg, var(--sky-100) 0%, var(--sky-200) 38%, var(--sky-100) 100%);
  color: var(--ocean-deep);
}
body.light::before {
  background-image:
    radial-gradient(1px 1px at 12% 22%, rgba(21,104,189,.35) 99%, transparent 100%),
    radial-gradient(1px 1px at 78% 35%, rgba(74,169,255,.35) 99%, transparent 100%),
    radial-gradient(1px 1px at 33% 78%, rgba(21,104,189,.30) 99%, transparent 100%),
    radial-gradient(1px 1px at 62% 64%, rgba(255,138,106,.35) 99%, transparent 100%),
    radial-gradient(1px 1px at 88% 12%, rgba(255,216,74,.45) 99%, transparent 100%);
  opacity: .55; mix-blend-mode: multiply;
}

/* Nav light variant */
body.light .nav-wrap { background: rgba(234,246,255,.78); backdrop-filter: blur(14px) saturate(120%); border-bottom: 1px solid rgba(21,104,189,.10); }
body.light .nav-bar { color: var(--ocean-deep); }
body.light .nav-brand-text { color: var(--ocean-deep); }
body.light .nav-brand-text .accent { color: var(--sky-600); }
body.light .nav-links a { color: var(--ocean-deep); opacity: .8; }
body.light .nav-links a:hover { opacity: 1; color: var(--sky-700); }
body.light .nav-burger { color: var(--ocean-deep); }
body.light .nav-mobile { background: rgba(234,246,255,.98); border-top: 1px solid rgba(21,104,189,.10); }
body.light .nav-mobile a { color: var(--ocean-deep); }

/* Hero light */
.hero-light {
  background:
    linear-gradient(180deg, rgba(234,246,255,.45) 0%, rgba(212,236,255,.65) 70%, rgba(212,236,255,1) 100%),
    url('assets/light-hero-bg.webp') center 30% / cover no-repeat;
  padding: clamp(140px, 16vw, 200px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.hero-light::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 0%, rgba(255,255,255,.55), transparent 60%);
  pointer-events: none;
}
.hero-glints { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-glints .glint { position: absolute; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.7), transparent 60%); filter: blur(20px); animation: glintFloat 14s ease-in-out infinite; }
.hero-glints .g1 { top: 10%; left: 6%; }
.hero-glints .g2 { top: 30%; right: 8%; width: 320px; height: 320px; animation-delay: -5s; }
.hero-glints .g3 { bottom: 20%; left: 35%; width: 180px; height: 180px; animation-delay: -9s; }
@keyframes glintFloat { 0%,100% { transform: translateY(0) scale(1); opacity: .55; } 50% { transform: translateY(-20px) scale(1.08); opacity: .85; } }

.hero-title.light { color: var(--ocean-deep); }
.hero-title.light .yellow, .hero-title.light .ocean { color: var(--sky-700); }
.hero-title.light .coral { color: var(--coral); }
.hero-title.light .mint { color: var(--sky-600); }
.hero-sub.light { color: rgba(14,58,114,.78); max-width: 620px; font-size: clamp(15px, 1.5vw, 19px); margin: 28px 0 36px; }
.hero-live.light { background: rgba(255,255,255,.7); color: var(--ocean-deep); border: 1px solid rgba(21,104,189,.18); }
.hero-live.light .dot { background: #21b873; box-shadow: 0 0 0 4px rgba(33,184,115,.18); }
body.light .eyebrow { color: var(--sky-700); }
body.light .eyebrow::before { background: var(--sky-700); }

.btn-ghost.light { background: rgba(255,255,255,.7); color: var(--ocean-deep); border: 1px solid rgba(21,104,189,.22); }
.btn-ghost.light:hover { background: #fff; }

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-trust-strip { margin-top: 42px; display: flex; gap: 10px; flex-wrap: wrap; }
.trust-chip { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.78); border: 1px solid rgba(21,104,189,.16); font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em; color: var(--ocean-deep); font-weight: 600; backdrop-filter: blur(4px); }
.trust-chip svg { color: var(--sky-600); }

.hero-wave-light { position: absolute; bottom: -1px; left: 0; right: 0; height: 140px; pointer-events: none; z-index: 2; }
.hero-wave-light svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* Section heads light */
body.light .section-head h2 { color: var(--ocean-deep); }
body.light .section-head h2 em { color: var(--sky-600); }
body.light .section-head p { color: rgba(14,58,114,.72); }
.section-head.light { /* explicit class also works */ }

/* PRODUCTS */
.products { background: linear-gradient(180deg, var(--sky-200), var(--sky-100)); padding-top: clamp(80px, 8vw, 120px) !important; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.product-card { background: #fff; border-radius: var(--product-r); overflow: hidden; box-shadow: 0 20px 50px -28px rgba(14,58,114,.35), 0 4px 12px -6px rgba(14,58,114,.15); border: 1px solid rgba(21,104,189,.08); display: flex; flex-direction: column; transition: transform .3s cubic-bezier(.22,.8,.25,1), box-shadow .3s; transform-style: preserve-3d; will-change: transform; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(14,58,114,.45), 0 8px 18px -6px rgba(14,58,114,.2); }
.product-photo { position: relative; aspect-ratio: 4/3; background: linear-gradient(135deg, #b0dcff, #4aa9ff); overflow: hidden; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-photo img { transform: scale(1.06); }
.product-photo.skipjack { background: linear-gradient(135deg, #cad7f0, #6b7fbf); }
.product-photo.albacore { background: linear-gradient(135deg, #ffe1d8, #ff8a6a); }
.product-illu { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.product-illu svg { width: 92%; height: auto; filter: drop-shadow(0 12px 18px rgba(14,58,114,.25)); }
.product-badge { position: absolute; top: 14px; left: 14px; font-family: var(--font-mono); font-size: 10.5px; font-weight: 700; padding: 6px 12px; border-radius: 999px; letter-spacing: .08em; text-transform: uppercase; color: var(--navy-900); }
.product-badge.gold { background: var(--yellow); }
.product-badge.coral { background: var(--coral); color: #fff; }
.product-badge.mint { background: var(--mint); }
.product-badge.sky { background: var(--sky-300); color: var(--navy-900); }
.product-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.product-eyebrow { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; color: var(--sky-700); text-transform: uppercase; font-weight: 600; }
.product-body h3 { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 28px; letter-spacing: -0.015em; margin: 8px 0 6px; color: var(--ocean-deep); }
.product-blurb { color: rgba(14,58,114,.72); font-size: 14px; margin: 0 0 16px; }
.product-specs { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 8px; border-top: 1px dashed rgba(21,104,189,.18); padding-top: 14px; }
.product-specs li { display: flex; justify-content: space-between; gap: 10px; font-size: 13px; }
.product-specs li span { color: rgba(14,58,114,.55); font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; }
.product-specs li strong { color: var(--ocean-deep); font-weight: 700; text-align: right; }
.product-cta { display: flex; gap: 8px; margin-top: auto; }
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-wa { background: #21b873; color: #fff; box-shadow: 0 8px 22px -8px rgba(33,184,115,.55); }
.btn-wa:hover { background: #1ea268; transform: translateY(-2px); }
.product-foot-note { margin-top: 36px; display: inline-flex; align-items: center; gap: 12px; padding: 14px 22px; background: rgba(255,255,255,.7); border: 1px solid rgba(21,104,189,.12); border-radius: 999px; font-size: 13.5px; color: var(--ocean-deep); font-weight: 500; }
.product-foot-note svg { color: var(--sky-600); }

/* PACK SIZES */
.pack-sizes { background: linear-gradient(180deg, var(--sky-100), var(--sky-50)); }
.pack-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.pack-col { background: #fff; border-radius: var(--r-lg); padding: 28px; border: 1px solid rgba(21,104,189,.10); box-shadow: 0 16px 40px -24px rgba(14,58,114,.3); }
.pack-col.b2b { background: linear-gradient(180deg, var(--navy-900), var(--navy-800)); border-color: rgba(255,255,255,.08); color: var(--ink-100); }
.pack-col-h { margin-bottom: 22px; }
.pack-col-tag { display: inline-block; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; background: var(--sky-200); color: var(--sky-700); font-weight: 700; }
.pack-col-tag.dark { background: var(--yellow); color: var(--navy-900); }
.pack-col-h h3 { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 32px; margin: 12px 0 0; color: var(--ocean-deep); letter-spacing: -0.015em; }
.pack-col.b2b .pack-col-h h3 { color: var(--ink-100); }
.pack-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pack-tile { background: var(--sky-100); border: 1px solid rgba(21,104,189,.12); border-radius: var(--r-md); padding: 18px 16px; transition: transform .2s, box-shadow .2s; cursor: default; }
.pack-tile.featured { background: linear-gradient(135deg, var(--yellow), var(--yellow-h)); border-color: transparent; box-shadow: 0 10px 26px -8px rgba(255,216,74,.5); }
.pack-tile:hover { transform: translateY(-3px); box-shadow: 0 10px 22px -10px rgba(14,58,114,.3); }
.pack-tile.dark { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); color: var(--ink-100); }
.pack-tile.dark.featured { background: var(--yellow); color: var(--navy-900); }
.pack-tile-size { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 30px; line-height: 1; color: var(--ocean-deep); letter-spacing: -0.02em; }
.pack-tile.dark .pack-tile-size { color: var(--yellow); }
.pack-tile.dark.featured .pack-tile-size { color: var(--navy-900); }
.pack-tile.featured .pack-tile-size { color: var(--navy-900); }
.pack-tile-label { margin-top: 6px; font-size: 13px; color: rgba(14,58,114,.7); font-weight: 600; }
.pack-tile.dark .pack-tile-label { color: var(--ink-300); }
.pack-tile.featured .pack-tile-label, .pack-tile.dark.featured .pack-tile-label { color: var(--navy-700); }
.pack-tile-px { margin-top: 10px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em; color: var(--sky-700); font-weight: 700; }
.pack-tile.dark .pack-tile-px { color: var(--yellow-h); }
.pack-tile.featured .pack-tile-px, .pack-tile.dark.featured .pack-tile-px { color: var(--navy-900); }

/* PROCESS */
.process { background: var(--sky-50); }
.process-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.process-step { background: #fff; border-radius: var(--r-lg); padding: 28px 24px; border: 1px solid rgba(21,104,189,.10); box-shadow: 0 16px 36px -22px rgba(14,58,114,.3); position: relative; transition: transform .25s, box-shadow .25s; }
.process-step:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -22px rgba(14,58,114,.4); }
.process-num { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 64px; line-height: 1; background: linear-gradient(135deg, var(--sky-600), var(--sky-300)); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.04em; margin-bottom: 14px; }
.process-step h3 { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 22px; margin: 0 0 8px; color: var(--ocean-deep); letter-spacing: -0.012em; }
.process-step p { color: rgba(14,58,114,.72); font-size: 14px; margin: 0; line-height: 1.55; }

/* SHIPPING */
.shipping { background: linear-gradient(180deg, var(--sky-50), var(--sky-100)); }
.ship-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
.ship-h { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(32px, 4.4vw, 56px); letter-spacing: -0.018em; line-height: 1.05; color: var(--ocean-deep); margin: 14px 0 24px; }
.ship-h em { font-style: normal; font-family: var(--font-body); font-weight: 800; text-transform: uppercase; color: var(--sky-600); font-size: .86em; letter-spacing: -.005em; }
.ship-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.ship-list li { display: flex; gap: 14px; align-items: flex-start; padding: 16px 20px; background: #fff; border-radius: var(--r-md); border: 1px solid rgba(21,104,189,.10); box-shadow: 0 8px 22px -16px rgba(14,58,114,.4); }
.ship-list li .ic-truck { color: var(--sky-600); flex: 0 0 22px; margin-top: 2px; }
.ship-list li strong { display: block; font-size: 15px; color: var(--ocean-deep); font-weight: 700; }
.ship-list li span { display: block; font-size: 13.5px; color: rgba(14,58,114,.7); margin-top: 2px; }
.ship-visual { position: relative; aspect-ratio: 16/12; border-radius: var(--r-lg); overflow: hidden; box-shadow: 0 24px 50px -20px rgba(14,58,114,.4); background: linear-gradient(135deg, var(--sky-300), var(--sky-500)); }
.ship-visual img { width: 100%; height: 100%; object-fit: cover; }

/* FAQ */
.faq { background: var(--sky-100); }
.faq-list { display: flex; flex-direction: column; gap: 14px; max-width: 920px; }
.faq-item { background: #fff; border-radius: var(--r-md); border: 1px solid rgba(21,104,189,.10); box-shadow: 0 8px 22px -18px rgba(14,58,114,.4); overflow: hidden; transition: box-shadow .25s, border-color .25s; }
.faq-item[open] { box-shadow: 0 14px 36px -18px rgba(14,58,114,.45); border-color: rgba(21,104,189,.22); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 14px; color: var(--ocean-deep); font-weight: 700; font-size: 15.5px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { flex: 1; }
.faq-icon { color: var(--sky-600); transition: transform .3s; flex: 0 0 20px; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-item p { padding: 0 24px 20px; margin: 0; color: rgba(14,58,114,.78); font-size: 14.5px; line-height: 1.65; }

/* CONTACT LIGHT */
.contact-light { background: linear-gradient(180deg, var(--sky-100), var(--sky-200)); position: relative; overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; position: relative; z-index: 2; }
.contact-text .contact-h { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: clamp(34px, 4.4vw, 56px); line-height: 1.05; color: var(--ocean-deep); margin: 14px 0 20px; letter-spacing: -0.018em; }
.contact-h em { font-style: normal; font-family: var(--font-body); font-weight: 800; text-transform: uppercase; color: var(--sky-600); font-size: .86em; }
.contact-lead { color: rgba(14,58,114,.74); font-size: 16px; max-width: 48ch; }
.contact-channels { list-style: none; padding: 0; margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.contact-channels a, .contact-channels .cc-row { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: #fff; border: 1px solid rgba(21,104,189,.10); border-radius: var(--r-md); transition: transform .2s, box-shadow .2s, border-color .2s; color: var(--ocean-deep); }
.contact-channels a:hover { transform: translateX(4px); border-color: rgba(21,104,189,.28); box-shadow: 0 12px 28px -16px rgba(14,58,114,.4); }
.cc-ico { width: 40px; height: 40px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 40px; color: #fff; }
.cc-ico.wa { background: #21b873; }
.cc-ico.mail { background: var(--sky-600); }
.cc-ico.phone { background: var(--coral); color: #fff; }
.cc-ico.pin { background: var(--yellow); color: var(--navy-900); }
.contact-channels strong { display: block; font-size: 14px; color: var(--ocean-deep); }
.contact-channels span { display: block; font-size: 12.5px; color: rgba(14,58,114,.65); font-family: var(--font-mono); letter-spacing: .02em; margin-top: 2px; }
.contact-hours { padding: 16px 18px; background: rgba(255,255,255,.55); border: 1px dashed rgba(21,104,189,.24); border-radius: var(--r-md); font-size: 13px; }
.contact-hours strong { display: block; color: var(--ocean-deep); font-size: 13px; margin-bottom: 4px; font-family: var(--font-mono); letter-spacing: .06em; text-transform: uppercase; }
.contact-hours span { display: block; color: rgba(14,58,114,.7); font-size: 13px; line-height: 1.6; }

.contact-form { background: #fff; border-radius: var(--r-lg); padding: 32px; border: 1px solid rgba(21,104,189,.10); box-shadow: 0 30px 70px -32px rgba(14,58,114,.45), 0 6px 16px -8px rgba(14,58,114,.18); display: flex; flex-direction: column; gap: 16px; }
.form-h { font-family: var(--font-display); font-style: italic; font-weight: 800; font-size: 26px; color: var(--ocean-deep); margin: 0 0 4px; letter-spacing: -0.015em; }
.contact-form .field { display: flex; flex-direction: column; gap: 6px; }
.contact-form .field-lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--sky-700); font-weight: 600; }
.contact-form .field input, .contact-form .field select, .contact-form .field textarea { background: var(--sky-50); border: 1px solid rgba(21,104,189,.16); border-radius: 12px; padding: 12px 14px; font: inherit; color: var(--ocean-deep); transition: border-color .2s, background .2s; resize: vertical; font-family: var(--font-body); font-size: 14.5px; }
.contact-form .field input::placeholder, .contact-form .field textarea::placeholder { color: rgba(14,58,114,.4); }
.contact-form .field input:focus, .contact-form .field select:focus, .contact-form .field textarea:focus { outline: 2px solid var(--sky-400); outline-offset: 1px; background: #fff; border-color: var(--sky-500); }
.contact-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form .field-fine { font-size: 12px; color: rgba(14,58,114,.55); margin: 4px 0 0; }
.cta-submit { align-self: flex-start; }

.contact-decor { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.decor-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .45; }
.decor-blob.b1 { width: 460px; height: 460px; background: radial-gradient(circle, var(--sky-400), transparent 70%); top: -120px; right: -80px; }
.decor-blob.b2 { width: 360px; height: 360px; background: radial-gradient(circle, var(--coral), transparent 70%); bottom: -80px; left: -60px; opacity: .25; }

.link-inline { color: var(--sky-700); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.link-inline:hover { color: var(--sky-600); }

/* RESPONSIVE — light page */
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .ship-grid { gap: 40px; }
}
@media (max-width: 900px) {
  .ship-grid { grid-template-columns: 1fr; }
  .ship-visual { max-height: 320px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pack-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .product-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 16px; }
  .process-step { padding: 22px 20px; }
  .process-num { font-size: 52px; }
  .pack-tiles { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 24px; }
  .contact-form .field-row { grid-template-columns: 1fr; }
  .hero-trust-strip { gap: 8px; }
  .trust-chip { font-size: 10.5px; padding: 6px 10px; }
  .hero-cta-row .btn { flex: 1 1 auto; justify-content: center; }
  .hero-light { padding-top: clamp(110px, 16vw, 160px); }
}
@media (max-width: 480px) {
  .pack-col { padding: 22px 20px; }
  .pack-tiles { gap: 10px; }
  .pack-tile { padding: 14px 12px; }
  .pack-tile-size { font-size: 26px; }
  .product-body { padding: 20px 18px 22px; }
  .product-body h3 { font-size: 24px; }
  .contact-channels a, .contact-channels .cc-row { padding: 12px 14px; }
  .cc-ico { width: 36px; height: 36px; flex-basis: 36px; }
}

/* =========================================================
   v2 — Drenched Sky-Blue (impeccable + frontend-design polish)
   ========================================================= */
:root {
  --tide-50:  #f0f7ff;
  --tide-100: #dceffe;
  --tide-200: #b6dcfd;
  --tide-300: #7fc1fb;
  --tide-500: #2186e8;
  --tide-700: #0e58a8;
  --tide-900: #08305f;
  --ink:      #0a2a52;
  --ink-soft: rgba(10,42,82,.72);
  --ink-mute: rgba(10,42,82,.52);
  --paper:    #ffffff;
  --paper-2:  #f4faff;
  --warm:     #f06a4a;
  --warm-soft:#ffe2d8;
  --line:     rgba(10,42,82,.10);
  --line-2:   rgba(10,42,82,.06);
  --r-1: 6px; --r-2: 14px; --r-3: 24px;
}

html:has(body.light) { background: var(--tide-50); }
body.light {
  background:
    radial-gradient(ellipse 60% 50% at 80% 0%, rgba(127,193,251,.45), transparent 70%),
    linear-gradient(180deg, var(--tide-50) 0%, var(--tide-100) 100%);
  color: var(--ink);
  font-feature-settings: "ss01", "kern";
  min-height: 100vh;
}
body.light::before { display: none; }

.head-v2 { max-width: 720px; margin: 0 0 clamp(40px, 5vw, 64px); }
.head-v2-tight { margin-bottom: clamp(28px, 3.5vw, 40px); }
.head-v2-h {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: clamp(34px, 5.2vw, 64px); line-height: 1.02; letter-spacing: -0.025em;
  color: var(--ink); margin: 0 0 16px;
  font-variation-settings: "opsz" 96;
}
.head-v2-p {
  font-size: clamp(16px, 1.3vw, 18px); color: var(--ink-soft);
  margin: 0; max-width: 56ch; line-height: 1.55;
}

body.light .nav-wrap { background: rgba(240,247,255,.78); backdrop-filter: blur(16px) saturate(140%); border-bottom: 1px solid var(--line); }
body.light .nav-brand-text { color: var(--ink); }
body.light .nav-brand-text .accent { color: var(--tide-500); }
body.light .nav-links a { color: var(--ink); opacity: .72; font-weight: 500; }
body.light .nav-links a:hover { opacity: 1; background: rgba(33,134,232,.08); }
body.light .nav-burger { color: var(--ink); background: rgba(10,42,82,.06); }
body.light .nav-mobile { background: rgba(240,247,255,.99); border-color: var(--line); }
body.light .nav-mobile a { color: var(--ink); }

/* =================== HERO v2 =================== */
.hero-v2 {
  position: relative;
  padding: clamp(120px, 14vw, 180px) 0 0;
  overflow: hidden;
}
.hero-v2-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    linear-gradient(180deg, rgba(240,247,255,.0) 0%, rgba(240,247,255,.92) 88%, var(--tide-50) 100%),
    linear-gradient(115deg, rgba(33,134,232,.18), rgba(127,193,251,.10) 60%, transparent),
    url('assets/light-hero-bg.webp') center 25% / cover no-repeat;
}
.hero-v2-shell { position: relative; z-index: 1; }
.hero-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding-bottom: clamp(60px, 7vw, 96px);
}
.hero-v2-tag {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--tide-700); margin: 0 0 22px; font-weight: 600;
}
.hero-v2-headline {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 7.5vw, 104px); line-height: 0.96; letter-spacing: -0.03em;
  color: var(--ink); margin: 0 0 28px;
  font-variation-settings: "opsz" 144;
}
.hero-v2-headline span { display: block; }
.hero-v2-headline em {
  font-style: italic; font-weight: 600;
  background: linear-gradient(120deg, var(--tide-700), var(--tide-500));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
/* Note: gradient text used ONCE on the hero italic only, not as scaffolding */
.hero-v2-sub {
  font-size: clamp(16px, 1.3vw, 19px); line-height: 1.55;
  color: var(--ink-soft); max-width: 50ch; margin: 0 0 36px;
}
.hero-v2-actions { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.hero-v2-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-weight: 600; font-size: 14.5px;
  border-bottom: 1px solid var(--ink); padding-bottom: 3px;
  transition: gap .25s ease, color .2s;
}
.hero-v2-link:hover { gap: 12px; color: var(--tide-700); }
.hero-v2-link svg { color: #21b873; }

.hero-v2-aside { justify-self: end; width: 100%; max-width: 380px; }
.hero-v2-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: 28px 28px 26px;
  box-shadow:
    0 30px 80px -40px rgba(8,48,95,.45),
    0 8px 22px -12px rgba(8,48,95,.18);
}
.hero-v2-card-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--tide-700); font-weight: 700;
}
.hero-v2-card-eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 999px; background: #21b873;
  box-shadow: 0 0 0 4px rgba(33,184,115,.22);
}
.hero-v2-card-num {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: clamp(56px, 6vw, 80px); line-height: 1; letter-spacing: -0.04em;
  margin: 18px 0 4px; color: var(--ink); font-variation-settings: "opsz" 144;
}
.hero-v2-card-num span { font-family: var(--font-body); font-style: normal; font-weight: 700; font-size: 0.32em; letter-spacing: 0.04em; text-transform: uppercase; color: var(--tide-700); margin-left: 6px; vertical-align: 0.5em; }
.hero-v2-card-list { list-style: none; padding: 0; margin: 18px 0 18px; display: flex; flex-direction: column; gap: 10px; }
.hero-v2-card-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 6px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.hero-v2-card-list li:last-child { border-bottom: 0; }
.hero-v2-card-list span { color: var(--ink-soft); }
.hero-v2-card-list b { font-weight: 600; color: var(--ink); font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.hero-v2-card-note { font-size: 13px; color: var(--ink-soft); margin: 4px 0 0; line-height: 1.45; }
.hero-v2-card-note b { color: var(--ink); font-weight: 700; }

.hero-v2-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.5);
  overflow: hidden;
  position: relative; z-index: 2;
}
.hero-v2-marquee .marquee-row {
  display: flex; gap: 28px; align-items: center;
  white-space: nowrap;
  animation: marqueeSlide 42s linear infinite;
  padding: 14px 0;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--tide-700); font-weight: 600;
}
.hero-v2-marquee .marquee-row span { padding: 0 4px; }
.hero-v2-marquee .marquee-row i { color: var(--tide-300); font-style: normal; opacity: .8; }
@keyframes marqueeSlide { to { transform: translateX(-50%); } }

/* =================== PRODUCTS v2 =================== */
.products-v2 { padding: clamp(80px, 9vw, 140px) 0; background: var(--tide-50); position: relative; z-index: 1; }
.shipping-v2 { background: var(--tide-50); }
.faq-v2 { background: var(--paper-2); }
.products-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  grid-template-rows: auto auto auto;
  gap: clamp(20px, 2vw, 28px);
}
.product-v2-lead { grid-row: span 3; }
.product-v2 {
  background: var(--paper);
  border-radius: var(--r-3);
  overflow: hidden;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
  transition: transform .35s cubic-bezier(.22,.8,.25,1), box-shadow .35s;
  box-shadow: 0 14px 36px -28px rgba(8,48,95,.4);
}
.product-v2:hover { transform: translateY(-4px); box-shadow: 0 30px 70px -32px rgba(8,48,95,.55); }
.product-v2-sm { display: grid; grid-template-columns: 200px 1fr; align-items: stretch; }
.product-v2-photo { position: relative; aspect-ratio: 16/11; background: var(--tide-100); overflow: hidden; }
.product-v2-lead .product-v2-photo { aspect-ratio: 5/4; }
.product-v2-sm .product-v2-photo { aspect-ratio: auto; }
.product-v2-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.22,.8,.25,1); }
.product-v2:hover .product-v2-photo img { transform: scale(1.04); }
.photo-skipjack { background: #cfdef0; }
.photo-albacore { background: #fff1ea; }
.product-v2-flag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 700;
  padding: 5px 10px; border-radius: 999px; letter-spacing: .12em; text-transform: uppercase;
  background: var(--ink); color: var(--paper-2);
}
.product-v2-flag.flag-coral { background: var(--warm); }
.product-v2-flag.flag-sky { background: var(--tide-500); }
.product-v2-body { padding: clamp(20px, 2.4vw, 32px); display: flex; flex-direction: column; gap: 14px; flex: 1; }
.product-v2-hd { display: flex; align-items: baseline; flex-wrap: wrap; gap: 8px 14px; }
.product-v2-hd h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: clamp(28px, 3vw, 40px); line-height: 1; letter-spacing: -0.02em;
  margin: 0; color: var(--ink); font-variation-settings: "opsz" 96;
}
.product-v2-lead .product-v2-hd h3 { font-size: clamp(36px, 4vw, 54px); }
.product-v2-lat { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .04em; color: var(--ink-mute); }
.product-v2-lat i { font-style: italic; }
.product-v2-blurb { color: var(--ink-soft); font-size: 14.5px; margin: 0; line-height: 1.55; max-width: 44ch; }
.product-v2-spec { margin: 8px 0 0; padding: 14px 0 0; border-top: 1px solid var(--line-2); display: flex; flex-direction: column; gap: 8px; }
.product-v2-spec.compact { gap: 6px; padding-top: 10px; }
.product-v2-spec div { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; font-size: 13.5px; }
.product-v2-spec dt { font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); margin: 0; font-weight: 500; }
.product-v2-spec dd { margin: 0; font-weight: 600; color: var(--ink); text-align: right; font-size: 13.5px; }
.product-v2-price { padding-top: 8px; border-top: 1px dashed var(--line); margin-top: 6px; }
.product-v2-price dd { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 24px; letter-spacing: -0.01em; color: var(--ink); display: inline-flex; align-items: baseline; gap: 4px; }
.product-v2-price dd b { font-weight: 700; }
.product-v2-price dd span { font-family: var(--font-mono); font-style: normal; font-size: 12px; color: var(--ink-mute); letter-spacing: .04em; font-weight: 500; }
.product-v2-cta { display: flex; gap: 18px; align-items: center; margin-top: auto; padding-top: 6px; }
.link-wa { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: 13.5px; color: var(--ink); border-bottom: 1px solid var(--ink); padding-bottom: 2px; transition: gap .2s, color .2s; }
.link-wa:hover { gap: 9px; color: #21b873; border-color: #21b873; }
.link-wa svg { color: #21b873; }
.products-v2-foot { margin-top: 32px; color: var(--ink-mute); font-size: 13.5px; text-align: center; }

/* =================== ORDER v2 (pack table + process) =================== */
.order-v2 { background: var(--paper-2); padding: clamp(80px, 9vw, 140px) 0; }
.order-v2-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.pack-table-h, .process-flow-h {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: clamp(22px, 2vw, 28px); margin: 0 0 18px; color: var(--ink); letter-spacing: -0.015em;
}
.pack-table table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.pack-table thead th {
  text-align: left; font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute);
  font-weight: 600; padding: 0 0 14px; border-bottom: 1px solid var(--line);
}
.pack-table thead th.num { text-align: right; }
.pack-table tbody td { padding: 16px 0; border-bottom: 1px solid var(--line-2); vertical-align: middle; }
.pack-table tbody tr:last-child td { border-bottom: 0; }
.pack-table tbody td b { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 22px; letter-spacing: -0.015em; color: var(--ink); margin-right: 4px; }
.pack-table tbody td.num { text-align: right; font-family: var(--font-mono); font-size: 13px; color: var(--tide-700); font-weight: 600; letter-spacing: .02em; }
.pack-table tr.featured td { background: linear-gradient(90deg, rgba(255,216,74,.18), rgba(255,216,74,0) 80%); }
.pack-table tr.featured td:first-child { padding-left: 12px; border-left: 0; }
.pack-table tr.featured td.num { color: var(--ink); }
.pack-table tr.sep td { padding: 18px 0 8px; border-bottom: 0; }
.pack-table tr.sep td span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--warm); font-weight: 700; }

.process-flow ol { list-style: none; padding: 0; margin: 0; counter-reset: step; display: flex; flex-direction: column; gap: 0; position: relative; }
.process-flow ol::before { content: ""; position: absolute; left: 24px; top: 28px; bottom: 28px; width: 1px; background: linear-gradient(180deg, var(--tide-300), var(--tide-100)); }
.process-flow li { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 16px 0; position: relative; }
.pf-num {
  width: 48px; height: 48px; border-radius: 999px; background: var(--paper);
  border: 1.5px solid var(--tide-300); color: var(--tide-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; letter-spacing: .04em;
  position: relative; z-index: 1;
}
.process-flow li:nth-child(2) .pf-num { background: var(--tide-500); color: #fff; border-color: var(--tide-500); }
.process-flow li:nth-child(3) .pf-num { background: var(--warm); color: #fff; border-color: var(--warm); }
.process-flow li:nth-child(4) .pf-num { background: var(--ink); color: #fff; border-color: var(--ink); }
.pf-body h4 { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 22px; margin: 6px 0 6px; color: var(--ink); letter-spacing: -0.012em; }
.pf-body p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.55; max-width: 38ch; }

/* =================== SHIPPING v2 =================== */
.shipping-v2 { padding: clamp(80px, 9vw, 140px) 0; }
.ship-v2-grid {
  display: grid; grid-template-columns: 0.95fr 1fr;
  gap: clamp(40px, 5vw, 88px); align-items: center;
}
.ship-v2-img { margin: 0; position: relative; }
.ship-v2-img img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--r-3); box-shadow: 0 30px 70px -32px rgba(8,48,95,.5); }
.ship-v2-img figcaption { margin-top: 14px; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); }
.ship-v2-h {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: clamp(30px, 4.4vw, 56px); line-height: 1.02; letter-spacing: -0.022em;
  margin: 0 0 32px; color: var(--ink);
}
.ship-v2-list { list-style: none; padding: 0; margin: 0; }
.ship-v2-list li { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr); gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.ship-v2-list li:last-child { border-bottom: 0; }
.ship-v2-where { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 20px; color: var(--ink); letter-spacing: -0.012em; }
.ship-v2-when { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.ship-v2-when b { color: var(--tide-700); font-weight: 700; }

/* =================== FAQ v2 =================== */
.faq-v2 { background: var(--paper-2); padding: clamp(80px, 9vw, 140px) 0; }
.faq-v2-list { max-width: 880px; border-top: 1px solid var(--line); }
.faq-v2-item { border-bottom: 1px solid var(--line); }
.faq-v2-item summary { list-style: none; cursor: pointer; padding: 24px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.faq-v2-item summary::-webkit-details-marker { display: none; }
.faq-v2-q {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(20px, 1.8vw, 26px); color: var(--ink); letter-spacing: -0.014em;
  flex: 1;
}
.faq-v2-ico { color: var(--tide-700); flex: 0 0 22px; transition: transform .3s cubic-bezier(.22,.8,.25,1); }
.faq-v2-item[open] .faq-v2-ico { transform: rotate(45deg); color: var(--warm); }
.faq-v2-item p { padding: 0 30px 26px 4px; margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.65; max-width: 64ch; }
.link-inline { color: var(--tide-700); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; }
.link-inline:hover { color: var(--warm); }

/* =================== CONTACT v2 =================== */
.contact-v2 {
  background: linear-gradient(180deg, var(--tide-100) 0%, var(--tide-200) 100%);
  padding: clamp(80px, 9vw, 140px) 0;
}
.contact-v2-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.contact-v2-h { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: clamp(30px, 4.2vw, 52px); line-height: 1.02; letter-spacing: -0.022em; color: var(--ink); margin: 0 0 18px; }
.contact-v2-lead { font-size: 16px; color: var(--ink-soft); margin: 0 0 32px; max-width: 42ch; line-height: 1.55; }
.contact-v2-channels { list-style: none; padding: 0; margin: 0 0 32px; }
.contact-v2-channels li { padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-v2-channels li:last-child { border-bottom: 0; }
.contact-v2-channels a, .cc-row { display: flex; flex-direction: column; gap: 4px; transition: transform .2s; }
.contact-v2-channels a:hover { transform: translateX(4px); }
.cc-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.cc-v { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 22px; letter-spacing: -0.012em; color: var(--ink); }
.contact-v2-channels a:hover .cc-v { color: var(--tide-700); }
.contact-v2-hours { font-size: 13px; color: var(--ink-soft); margin: 0; padding-top: 18px; border-top: 1px dashed var(--line); }
.contact-v2-hours b { color: var(--ink); font-weight: 700; }

.contact-v2-form {
  background: var(--paper); border-radius: var(--r-3); padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 40px 90px -40px rgba(8,48,95,.55), 0 10px 24px -10px rgba(8,48,95,.2);
}
.contact-v2-form-h { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: clamp(24px, 2.4vw, 32px); color: var(--ink); margin: 0 0 6px; letter-spacing: -0.018em; }
.contact-v2-form .field { display: flex; flex-direction: column; gap: 6px; }
.contact-v2-form .field-lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.contact-v2-form input, .contact-v2-form select, .contact-v2-form textarea {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-2);
  padding: 13px 14px; font: inherit; color: var(--ink); font-size: 14.5px;
  transition: border-color .2s, background .2s, outline .15s;
  font-family: var(--font-body);
}
.contact-v2-form input::placeholder, .contact-v2-form textarea::placeholder { color: rgba(10,42,82,.38); }
.contact-v2-form input:focus, .contact-v2-form select:focus, .contact-v2-form textarea:focus {
  outline: 2px solid var(--tide-300); outline-offset: 1px; background: #fff; border-color: var(--tide-500);
}
.contact-v2-form .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-v2-form .field-fine { font-size: 12px; color: var(--ink-mute); margin: 6px 0 0; }
.contact-v2-form .cta-submit { align-self: flex-start; }

/* =================== Footer accent on light page =================== */
body.light .foot { background: var(--ink); }

/* =================== RESPONSIVE v2 =================== */
@media (max-width: 1100px) {
  .hero-v2-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-v2-aside { justify-self: stretch; max-width: 100%; }
  .products-v2-grid { grid-template-columns: 1fr 1fr; }
  .product-v2-lead { grid-row: span 1; grid-column: span 2; }
  .order-v2-grid { grid-template-columns: 1fr; gap: 56px; }
  .ship-v2-grid { grid-template-columns: 1fr; }
  .contact-v2-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  .hero-v2 { padding-top: clamp(100px, 14vw, 140px); }
  .hero-v2-headline { font-size: clamp(40px, 11vw, 64px); }
  .hero-v2-actions { gap: 14px; }
  .hero-v2-actions .btn { width: 100%; justify-content: center; }
  .hero-v2-link { align-self: flex-start; }
  .hero-v2-card { padding: 22px; }
  .products-v2-grid { grid-template-columns: 1fr; }
  .product-v2-lead { grid-column: span 1; }
  .product-v2-sm { grid-template-columns: 1fr; }
  .product-v2-sm .product-v2-photo { aspect-ratio: 16/10; }
  .head-v2-h { font-size: clamp(30px, 8vw, 42px); }
  .pack-table tbody td b { font-size: 18px; }
  .ship-v2-list li { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  .ship-v2-where { font-size: 18px; }
  .contact-v2-form .field-row { grid-template-columns: 1fr; }
  .hero-v2-marquee .marquee-row { animation-duration: 28s; font-size: 11.5px; gap: 18px; }
}

/* Hide legacy classes from old version (avoid leaking onto the page) */
.hero-light, .hero-glints, .hero-trust-strip, .hero-wave-light,
.products .product-grid, .pack-sizes, .process, .shipping .ship-grid,
.faq .faq-list, .contact-light .contact-grid, .contact-decor { /* unused now */ }
