/* landing-v2.css — WeSalire Landing Page V2
   Loaded AFTER styles.css + landing.css. Only V2 deltas live here so
   V1 stays untouched. Brand tokens unchanged.
   ─────────────────────────────────────────────────────────── */

:root {
  --mist: #E8EDF3;          /* Steel Mist — secondary bg */
  --teal-deepwater: #0E6F54;
}

/* ── Scroll reveal (progressive enhancement) ─────────────────
   Content is ALWAYS visible by default — no opacity gate in CSS.
   useReveal() applies the hidden start-state inline only to elements
   below the fold, then animates them in. If JS / IO / transitions are
   flaky, everything stays visible. The visible end-state is the base. */
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ── Sailboat "navigating" animation ─────────────────────── */
@keyframes sail-sway {
  0%,100% { transform: rotate(-1.6deg) translateY(0); }
  50%     { transform: rotate(1.6deg) translateY(-6px); }
}
@keyframes compass-spin { to { transform: rotate(360deg); } }
.sailing { animation: sail-sway 6.5s ease-in-out infinite; transform-origin: 50% 88%; }
@media (prefers-reduced-motion: reduce) { .sailing { animation: none; } }

/* ── Announce — Steel Mist, navy text, amber arrow ───────── */
.announce.v2 {
  background: var(--mist);
  color: var(--navy);
  border-bottom: 1px solid #D4DCE6;
}
.announce.v2 .star { color: var(--amber); font-size: 13px; }
.announce.v2 a {
  color: var(--amber-dark);
  background: var(--amber);
  border: 0;
  border-radius: 999px;
  padding: 4px 12px 5px;
  letter-spacing: 0.08em;
  font-size: 10px;
}
.announce.v2 a:hover { background: #F8B14A; }

/* ── Nav V2 — bigger logo, dropdown menus ────────────────── */
.nav.v2 .brand-mark { width: 46px; height: 46px; }
.nav.v2 .brand-name { font-size: 25px; }
.nav.v2 .brand-tag { font-size: 9px; letter-spacing: 0.22em; }

.nav-menu {
  display: flex; align-items: center; gap: 4px;
  margin-right: 6px;
}
@media (max-width: 940px) { .nav-menu { display: none; } }

.nav-item { position: relative; }
.nav-item > button,
.nav-link {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 14px;
  background: transparent; border: 0;
  font-family: var(--font-sans);
  font-size: 14px; font-weight: 500;
  color: var(--ink); cursor: pointer;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.nav-item > button:hover,
.nav-link:hover { background: var(--bg-deep); color: var(--teal-dark); }
.nav-item > button .chev {
  font-size: 9px; opacity: 0.6;
  transition: transform 0.2s;
}
.nav-item:hover > button .chev,
.nav-item:focus-within > button .chev { transform: rotate(180deg); }

.nav-drop {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 248px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  box-shadow: 0 24px 48px -24px rgba(15,45,74,0.32);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 60;
}
body.theme-navy .nav-drop { background: #112F4E; border-color: #1F3F5E; }
.nav-item:hover .nav-drop,
.nav-item:focus-within .nav-drop {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-drop a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.13s;
}
.nav-drop a:hover { background: var(--bg-deep); }
.nav-drop a .nd-title {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600; font-size: 14px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.nav-drop a .nd-sub {
  display: block;
  font-size: 12px; color: var(--ink-mute);
  line-height: 1.4; margin-top: 1px;
}
.nav-drop .nd-rule { height: 1px; background: var(--rule); margin: 6px 8px; }

/* Mobile menu button + sheet */
.nav-burger {
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--rule);
  border-radius: 10px; cursor: pointer; color: var(--ink);
}
.nav-burger span { font-size: 18px; line-height: 1; }
@media (max-width: 940px) { .nav-burger { display: inline-flex; } }
.nav-sheet {
  display: none;
  border-top: 1px solid var(--rule);
  background: var(--bg);
  padding: 12px var(--pad) 20px;
}
.nav-sheet.open { display: block; }
.nav-sheet a {
  display: block; padding: 12px 4px;
  border-bottom: 1px solid var(--rule-soft);
  text-decoration: none; color: var(--ink);
  font-size: 16px; font-weight: 500;
}
.nav-sheet a .ms-sub { font-size: 12.5px; color: var(--ink-mute); font-weight: 400; }
@media (max-width: 540px) {
  .nav.v2 .lang-toggle { display: none; }
}

/* ── Hero V2 — improved legibility ───────────────────────── */
.lhero-eyebrow.v2 {
  margin-bottom: 32px;
  font-size: 11px;
  letter-spacing: 0.16em;
}
.lhero-eyebrow.v2 .badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 12px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
}
.lhero-eyebrow.v2 .badge .pip {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(239,159,39,0.5);
  animation: pulse 2.4s ease-out infinite;
}
.lhero.v2 h1 { font-weight: 300; }
.lhero.v2 .lhero-sub {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.75;
  font-weight: 400;
  max-width: 50ch;
  color: var(--ink-soft);
}
.lhero.v2 .lhero-sub strong { color: var(--ink); font-weight: 600; }

/* Hero visual — animated isotype card */
.lhero.v2 .lhero-iso-card .iso-image img {
  max-width: 240px;
}
.lhero.v2 .lhero-iso-card .iso-water {
  position: absolute;
  left: 0; right: 0; bottom: 78px;
  height: 60px;
  background:
    radial-gradient(120% 100% at 50% 0, transparent 60%, rgba(29,158,117,0.07) 61%);
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 12px, transparent 12px 24px);
  mask: repeating-linear-gradient(90deg, #000 0 12px, transparent 12px 24px);
  opacity: 0.5; pointer-events: none;
}

/* ── Symbol band (S3) — emotional connection ─────────────── */
.symbol {
  position: relative;
  padding: clamp(72px, 9vw, 132px) 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.symbol .container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (max-width: 860px) { .symbol .container { grid-template-columns: 1fr; text-align: left; } }
.symbol-art {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.symbol-art .rose {
  position: absolute;
  width: 86%; height: 86%;
  border-radius: 50%;
  border: 1px dashed var(--rule);
  animation: compass-spin 90s linear infinite;
}
.symbol-art .rose::before,
.symbol-art .rose::after {
  content: ''; position: absolute; inset: 14%;
  border-radius: 50%; border: 1px solid var(--rule-soft);
}
.symbol-art .rose::after { inset: 30%; }
@media (prefers-reduced-motion: reduce) { .symbol-art .rose { animation: none; } }
.symbol-art .boat {
  position: relative; z-index: 2;
  width: 58%; height: auto;
  filter: drop-shadow(0 22px 40px rgba(15,45,74,0.22));
}
.symbol-art .tick {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 0.3em;
  color: var(--ink-mute);
}
.symbol-art .tick.n { top: 2%; left: 50%; transform: translateX(-50%); }
.symbol-art .tick.s { bottom: 2%; left: 50%; transform: translateX(-50%); }
.symbol-art .tick.e { right: 1%; top: 50%; transform: translateY(-50%); }
.symbol-art .tick.w { left: 1%; top: 50%; transform: translateY(-50%); }

.symbol-copy .label {
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
body.theme-navy .symbol-copy .label { color: var(--teal-light); }

.symbol-copy h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(34px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.symbol-copy h2 em { font-style: italic; color: var(--teal); }
body.theme-navy .symbol-copy h2 em { color: var(--teal-light); }
.symbol-copy p {
  font-size: 17px; line-height: 1.75;
  color: var(--ink-soft); margin: 0;
  max-width: 46ch; text-wrap: pretty;
}
.symbol-copy .kicker {
  margin-top: 22px;
  font-family: var(--font-display);
  font-style: italic; font-weight: 300;
  font-size: 19px; color: var(--ink);
}

/* ── Stats band (S4) — universal data, navy moment ───────── */
.statband {
  background: var(--navy);
  color: var(--sand-warm);
  padding: clamp(64px, 8vw, 112px) 0;
  position: relative; overflow: hidden;
}
.statband::after {
  content: '';
  position: absolute; right: -160px; top: -140px;
  width: 480px; height: 480px;
  background: url('assets/logo-mono-white.png') center/contain no-repeat;
  opacity: 0.05; pointer-events: none;
}
.statband .container { position: relative; z-index: 1; }
.statband .sb-head {
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 40px;
  display: flex; align-items: center; gap: 14px;
}

.statband-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid #1F3F5E;
}
@media (max-width: 920px) { .statband-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .statband-grid { grid-template-columns: 1fr; } }
.sb-cell {
  padding: 32px 28px 28px 0;
  border-right: 1px solid #1F3F5E;
}
.sb-cell:last-child { border-right: 0; }
.sb-cell:not(:first-child) { padding-left: 28px; }
@media (max-width: 920px) {
  .sb-cell { border-bottom: 1px solid #1F3F5E; padding: 28px 24px; }
  .sb-cell:nth-child(even) { border-right: 0; }
}
.sb-cell .num {
  font-family: var(--font-display);
  font-weight: 300; font-style: italic;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 0.96; letter-spacing: -0.03em;
  color: var(--amber);
  margin-bottom: 14px;
}
.sb-cell.lead .num { color: var(--sand-warm); }
.sb-cell .desc {
  font-size: 13.5px; line-height: 1.55;
  color: #CFD9E3; margin-bottom: 14px;
  max-width: 26ch;
}
.sb-cell .src {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 0.06em;
  color: #7B8B9D; line-height: 1.5;
}

/* ── Manifesto V2 — light / teal, 4 pillars ──────────────── */
.manifesto.v2 {
  background: linear-gradient(180deg, var(--teal-tint) 0%, var(--bg) 100%);
  color: var(--ink);
}
body.theme-navy .manifesto.v2 {
  background: linear-gradient(180deg, rgba(29,158,117,0.16) 0%, var(--bg) 100%);
}
.manifesto.v2::before {
  background-image: url('assets/logo-navy.png');
  opacity: 0.04;
}
body.theme-navy .manifesto.v2::before { background-image: url('assets/logo-mono-white.png'); opacity: 0.05; }
.manifesto.v2 .manifesto-eyebrow { color: var(--teal-dark); }
body.theme-navy .manifesto.v2 .manifesto-eyebrow { color: var(--teal-light); }
.manifesto.v2 h2 { color: var(--ink); }
.manifesto.v2 h2 em { color: var(--teal); }
body.theme-navy .manifesto.v2 h2 em { color: var(--teal-light); }
.manifesto.v2 h2 .strike {
  color: var(--ink-mute);
  text-decoration-color: rgba(29,158,117,0.5);
}
.manifesto.v2 .manifesto-grid { border-top-color: var(--teal); grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .manifesto.v2 .manifesto-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .manifesto.v2 .manifesto-grid { grid-template-columns: 1fr; } }
.manifesto.v2 .mani-cell { border-right-color: var(--rule); }
.manifesto.v2 .mani-cell:not(:first-child) { padding-left: 28px; }
@media (max-width: 900px) {
  .manifesto.v2 .mani-cell { border-bottom-color: var(--rule); }
  .manifesto.v2 .mani-cell:nth-child(2) { border-right: 0; }
  .manifesto.v2 .mani-cell:not(:first-child) { padding-left: 0; }
  .manifesto.v2 .mani-cell { padding-left: 0; padding-right: 28px; }
}
.manifesto.v2 .mani-num { color: var(--teal); }
.manifesto.v2 .mani-cell h3 { color: var(--ink); }
.manifesto.v2 .mani-cell p { color: var(--ink-soft); }
.manifesto.v2 .mani-cell.accent .mani-num { color: var(--amber); }

/* ── Credibility strip V2 — categories, no fake names ────── */
.cred {
  padding: 44px 0;
  border-bottom: 1px solid var(--rule);
}
.cred .container { display: flex; flex-direction: column; gap: 22px; align-items: center; text-align: center; }
.cred .label {
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-mute);
}
.cred-cats {
  display: flex; flex-wrap: wrap; gap: 10px 12px; justify-content: center;
}
.cred-cats .cat {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: -0.01em;
  color: var(--ink-soft);
}
.cred-cats .dot { color: var(--teal); align-self: center; font-style: normal; }
body.theme-navy .cred-cats .dot { color: var(--teal-light); }

/* ── Tiers V2 — decoy (middle larger) ────────────────────── */
.tier-grid.v2 {
  grid-template-columns: 1fr 1.12fr 1fr;
  align-items: stretch;
}
@media (max-width: 940px) { .tier-grid.v2 { grid-template-columns: 1fr; } }
.tier-grid.v2 .tier.featured {
  transform: scale(1.02);
  box-shadow: 0 24px 60px -30px rgba(15,45,74,0.35);
  z-index: 2;
}
.tier-grid.v2 .tier.featured:hover { transform: scale(1.02) translateY(-3px); }
@media (max-width: 940px) { .tier-grid.v2 .tier.featured { transform: none; } }
.tier .tyc {
  font-family: var(--font-sans);
  font-size: 11px; font-style: italic;
  color: var(--ink-mute);
  margin: -8px 0 18px;
  line-height: 1.45;
}
.tier .scarcity {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--amber-dark);
  background: var(--amber-tint);
  border: 1px solid rgba(239,159,39,0.4);
  border-radius: 999px;
  padding: 4px 11px;
  margin-bottom: 16px;
}
body.theme-navy .tier .scarcity { background: rgba(239,159,39,0.16); color: var(--amber); }
.tier .scarcity .pip {
  width: 6px; height: 6px; border-radius: 50%; background: var(--amber);
  animation: pulse 2.4s ease-out infinite;
}
.tier-badge.cupos { background: var(--amber); color: var(--amber-dark); }

/* ── Process V2 — journey path with waves ────────────────── */
.process.v2 {
  background: linear-gradient(180deg, var(--bg) 0%, var(--teal-tint) 100%);
  position: relative; overflow: hidden;
}
body.theme-navy .process.v2 {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(29,158,117,0.14) 100%);
}
.process.v2 .wave {
  position: absolute; left: 0; right: 0; bottom: 0;
  width: 100%; height: 120px; opacity: 0.5;
  pointer-events: none;
}
.process.v2 .wave path { fill: none; stroke: var(--teal); stroke-width: 1.5; opacity: 0.3; }
.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .journey { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; } }
@media (max-width: 560px) { .journey { grid-template-columns: 1fr; } }
.journey .track {
  position: absolute; top: 27px; left: 7%; right: 7%;
  height: 2px; z-index: 0;
}
.journey .track svg { width: 100%; height: 56px; overflow: visible; display: block; transform: translateY(-27px); }
.journey .track path {
  fill: none; stroke: var(--teal); stroke-width: 2;
  stroke-dasharray: 6 7; opacity: 0.45;
}
@media (max-width: 960px) { .journey .track { display: none; } }
.jstep { position: relative; z-index: 1; padding-top: 70px; }
.jstep .knob {
  position: absolute; top: 0; left: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: 24px; color: var(--ink);
  transition: background 0.3s, border-color 0.3s, color 0.3s, box-shadow 0.3s;
}
.jstep.in-view .knob {
  background: var(--amber); border-color: var(--amber); color: var(--amber-dark);
  box-shadow: 0 0 0 6px rgba(239,159,39,0.16);
}
.jstep .when {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px; display: block;
}
body.theme-navy .jstep .when { color: var(--teal-light); }
.jstep h4 {
  font-family: var(--font-display);
  font-weight: 400; font-size: 22px;
  line-height: 1.18; letter-spacing: -0.01em;
  margin: 0 0 10px; color: var(--ink); text-wrap: balance;
}
.jstep p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-soft); max-width: 30ch; }

/* ── Results / impact metrics (S9, replaces testimonials) ── */
.results { padding: clamp(72px, 9vw, 128px) 0; }
.results-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  padding-bottom: 28px; border-bottom: 1px solid var(--ink);
  margin-bottom: 8px;
}
.results-head .label {
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink);
}
.results-head h2 {
  font-family: var(--font-display);
  font-weight: 300; font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1; letter-spacing: -0.02em; margin: 0; text-wrap: balance;
}
.results-head h2 em { font-style: italic; color: var(--teal); }
body.theme-navy .results-head h2 em { color: var(--teal-light); }
.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 820px) { .results-grid { grid-template-columns: 1fr 1fr; } }
.rcell {
  padding: 44px 28px 40px 0;
  border-right: 1px solid var(--rule);
}
.rcell:last-child { border-right: 0; }
.rcell:not(:first-child) { padding-left: 28px; }
@media (max-width: 820px) {
  .rcell { border-bottom: 1px solid var(--rule); padding: 32px 24px; }
  .rcell:nth-child(even) { border-right: 0; }
  .rcell:nth-child(3), .rcell:nth-child(4) { border-bottom: 0; }
}
.rcell .big {
  font-family: var(--font-display);
  font-weight: 300; font-style: italic;
  font-size: clamp(52px, 6vw, 84px);
  line-height: 0.92; letter-spacing: -0.03em; color: var(--ink);
  margin-bottom: 12px;
}
.rcell .big .u { font-family: var(--font-sans); font-style: normal; font-weight: 500; font-size: 0.42em; color: var(--teal); letter-spacing: 0; }
body.theme-navy .rcell .big .u { color: var(--teal-light); }
.rcell .lbl { font-size: 14px; color: var(--ink-soft); line-height: 1.5; max-width: 22ch; }
.results-src {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.05em; color: var(--ink-mute);
}

/* ── Trends / newsletter (S10) ───────────────────────────── */
.trends { padding: clamp(72px, 9vw, 128px) 0; background: var(--bg-deep); border-top: 1px solid var(--rule); }
.trends-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px 40px; flex-wrap: wrap; margin-bottom: 36px;
}
.trends-head .label {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); margin-bottom: 12px;
}
.trends-head h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(34px, 4.4vw, 58px); line-height: 1.02;
  letter-spacing: -0.02em; margin: 0; text-wrap: balance; max-width: 18ch;
}
.trends-head h2 em { font-style: italic; color: var(--teal); }
body.theme-navy .trends-head h2 em { color: var(--teal-light); }
.trends-head p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); margin: 0; max-width: 34ch; }

.trend-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.trend-tabs button {
  font-family: var(--font-sans); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 16px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--rule); background: transparent; color: var(--ink-soft);
  transition: all 0.15s;
}
.trend-tabs button:hover { border-color: var(--ink-soft); }
.trend-tabs button.active { background: var(--navy); color: var(--sand-warm); border-color: var(--navy); }
body.theme-navy .trend-tabs button.active { background: var(--teal); color: var(--navy); border-color: var(--teal); }

.trend-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
@media (max-width: 860px) { .trend-grid { grid-template-columns: 1fr; } }
.trend-card {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--rule);
  border-radius: 10px; padding: 26px 24px; text-decoration: none; color: inherit;
  transition: border-color 0.18s, transform 0.18s;
}
body.theme-navy .trend-card { background: #112F4E; border-color: #1F3F5E; }
.trend-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.trend-card .tcat {
  font-family: var(--font-sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal);
  margin-bottom: 16px;
}
body.theme-navy .trend-card .tcat { color: var(--teal-light); }
.trend-card h4 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 21px; line-height: 1.22; letter-spacing: -0.01em;
  margin: 0 0 16px; color: var(--ink); text-wrap: balance; flex: 1;
}
.trend-card .tsrc {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.04em;
  color: var(--ink-mute); padding-top: 14px; border-top: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.trend-card .tsrc .more { color: var(--teal); font-family: var(--font-sans); font-weight: 600; letter-spacing: 0.04em; }
body.theme-navy .trend-card .tsrc .more { color: var(--teal-light); }

.newsletter {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--navy); color: var(--sand-warm);
  border-radius: 14px; padding: clamp(32px, 4vw, 52px);
}
@media (max-width: 760px) { .newsletter { grid-template-columns: 1fr; } }
.newsletter h3 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(26px, 3vw, 38px); line-height: 1.06; letter-spacing: -0.02em;
  margin: 0 0 12px; color: var(--sand-warm); text-wrap: balance;
}
.newsletter h3 em { font-style: italic; color: var(--amber); }
.newsletter p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #CFD9E3; max-width: 40ch; }
.nl-form { display: flex; flex-direction: column; gap: 12px; }
.nl-row { display: flex; gap: 10px; }
@media (max-width: 420px) { .nl-row { flex-direction: column; } }
.nl-row input {
  flex: 1; min-width: 0;
  padding: 14px 16px; border-radius: 8px;
  border: 1px solid #2A4A68; background: #0B2540; color: var(--sand-warm);
  font-family: var(--font-sans); font-size: 14px;
}
.nl-row input::placeholder { color: #7B8B9D; }
.nl-row input:focus { outline: none; border-color: var(--teal-light); }
.nl-row button {
  flex-shrink: 0;
  padding: 14px 22px; border-radius: 8px; border: 0; cursor: pointer;
  background: var(--amber); color: var(--amber-dark);
  font-family: var(--font-sans); font-weight: 600; font-size: 13.5px; letter-spacing: 0.02em;
  transition: background 0.15s;
}
.nl-row button:hover { background: #F8B14A; }
.nl-tyc { font-size: 11.5px; color: #8FA0B2; letter-spacing: 0.02em; }
.nl-ok { font-size: 13.5px; color: var(--teal-light); font-weight: 600; }

/* ── Quiénes somos V2 — warm/teal bg ─────────────────────── */
.about.v2 {
  background: linear-gradient(165deg, var(--teal-tint) 0%, var(--bg) 70%);
}
body.theme-navy .about.v2 {
  background: linear-gradient(165deg, rgba(29,158,117,0.16) 0%, var(--bg) 70%);
}
.about.v2 .about-label { color: var(--teal-dark); }
body.theme-navy .about.v2 .about-label { color: var(--teal-light); }

.about.v2 .about-stats { background: var(--paper); }
body.theme-navy .about.v2 .about-stats { background: #112F4E; }
.about.v2 .badge-14 {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em;
  background: var(--navy); color: var(--sand-warm);
  border-radius: 999px; padding: 6px 14px; margin-bottom: 24px;
}
.about.v2 .badge-14 .y { color: var(--amber); font-family: var(--font-display); font-style: italic; font-size: 14px; }

/* ── Final CTA V2 — light, sailboat sailing, no price ────── */
.setsail {
  position: relative;
  padding: clamp(88px, 11vw, 160px) 0 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--teal-tint) 100%);
  text-align: center; overflow: hidden;
}
body.theme-navy .setsail { background: linear-gradient(180deg, var(--bg) 0%, rgba(29,158,117,0.16) 100%); }
.setsail .container { position: relative; z-index: 2; }
.setsail .eyebrow {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--teal-dark);
  margin-bottom: 24px; display: inline-flex; gap: 14px; align-items: center;
}
body.theme-navy .setsail .eyebrow { color: var(--teal-light); }
.setsail .eyebrow::before, .setsail .eyebrow::after { content: ''; width: 28px; height: 1px; background: var(--teal); }
.setsail h2 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(44px, 7vw, 104px); line-height: 0.98; letter-spacing: -0.025em;
  margin: 0 auto 28px; max-width: 16ch; text-wrap: balance; color: var(--ink);
}
.setsail h2 em { font-style: italic; color: var(--teal); }
body.theme-navy .setsail h2 em { color: var(--teal-light); }
.setsail p { font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-soft); max-width: 50ch; margin: 0 auto 40px; line-height: 1.65; text-wrap: pretty; }
.setsail .ctas { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.setsail .micro { margin-top: 28px; font-size: 13px; color: var(--ink-mute); letter-spacing: 0.02em; }
.setsail .micro a { color: var(--teal-dark); text-decoration: none; border-bottom: 1px solid currentColor; }
body.theme-navy .setsail .micro a { color: var(--teal-light); }
.setsail-horizon {
  position: relative; z-index: 1;
  margin-top: clamp(48px, 6vw, 80px);
  height: clamp(180px, 22vw, 300px);
  display: flex; align-items: flex-end; justify-content: center;
}
.setsail-horizon .boat {
  position: relative; z-index: 2;
  width: clamp(120px, 16vw, 210px); height: auto;
  margin-bottom: clamp(40px, 6vw, 72px);
  filter: drop-shadow(0 24px 40px rgba(15,45,74,0.22));
}
.setsail-horizon svg.sea {
  position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 100%;
}

/* ── Footer V2 — balanced logo + wordmark ────────────────── */
.foot.v2 .foot-grid {
  grid-template-columns: auto auto 1fr;
  gap: 28px 40px; align-items: center;
}
.foot.v2 .foot-iso { width: 84px; }
.foot.v2 .foot-mark { font-size: clamp(56px, 8vw, 104px); }
.foot.v2 .foot-tagline {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(18px, 2vw, 26px); color: var(--ink); line-height: 1.2;
}
.foot.v2 .foot-tagline small {
  display: block; font-family: var(--font-sans); font-style: normal;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); margin-top: 6px;
}
body.theme-navy .foot.v2 .foot-tagline small { color: var(--teal-light); }
.foot.v2 .foot-meta { line-height: 1.9; }
.foot.v2 .foot-meta a { color: var(--ink-soft); text-decoration: none; }
.foot.v2 .foot-meta a:hover { color: var(--teal-dark); }
.foot.v2 .foot-legal {
  border-top: 1px solid var(--rule); margin-top: 36px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between;
  font-size: 11.5px; color: var(--ink-mute);
}
.foot.v2 .foot-legal a { color: var(--ink-mute); text-decoration: none; }
.foot.v2 .foot-legal a:hover { color: var(--ink-soft); }
@media (max-width: 760px) {
  .foot.v2 .foot-grid { grid-template-columns: 1fr; }
}
