/* ============================================
   Maré Digital — styles.css
   Main stylesheet
   ============================================ */

/* ── RESET & ROOT ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BILINGUAL BANNER */
.french-banner {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 8px 6%;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Adjust Nav for Banner - only when banner exists */
body.has-banner nav {
  top: 39px !important;
}

@media (max-width: 768px) {
  body.has-banner nav {
    top: 49px !important;
  }

  .french-banner {
    height: 50px;
    padding: 0 6%;
  }
}

/* TIMELINE SOLUTIONS */
.timeline-container {
  max-width: 800px;
  margin: 60px auto;
  position: relative;
  padding-left: 30px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(201, 168, 76, 0.2);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-dot {
  position: absolute;
  left: -35px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

.timeline-week {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 5px;
  font-weight: 600;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* FOUNDING PARTNERS */
.trust-focus {
  padding: 100px 6%;
  background: var(--off-white);
  text-align: center;
}

.founding-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0;
  text-align: left;
}

@media (max-width: 991px) {
  .founding-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .founding-grid {
    grid-template-columns: 1fr;
  }
}

.founding-cta {
  margin-top: 40px;
}

:root {
  --navy: #0b1628;
  --navy-mid: #152340;
  --navy-light: #1e3258;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f7eed8;
  --white: #ffffff;
  --off-white: #f9f6f0;
  --text: #1a2535;
  --muted: #7a8a9e;
  --border: rgba(201, 168, 76, 0.18);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--navy);
  overflow-x: hidden;
  cursor: none;
}

/* ── NOISE TEXTURE (OPTIMIZED) ── */
body::before {
  display: none;
  /* Removed heavy SVG turbulence filter for performance */
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, opacity .3s;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(201, 168, 76, .5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

/* ── NAVIGATION ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 6%;
  transition: background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(11, 22, 40, .92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav-logo img {
  height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-logo {
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .24)) contrast(1.03) saturate(1.04);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(201, 168, 76, .35);
  background: rgba(11, 22, 40, .65);
  border-radius: 2px;
  width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold-light);
  transition: transform .3s, opacity .3s;
}

.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.nav-active {
  color: var(--gold-light);
}

.nav-links a.nav-active::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: .55rem 1.4rem;
  border-radius: 2px !important;
  transition: background .3s, color .3s !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8rem 6% 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 60%, #0f1e36 100%);
}

.tide-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  will-change: transform;
  transform: translate3d(0, var(--hero-parallax-tide, 0px), 0);
}

.tide-line {
  position: absolute;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 76, .12) 30%, rgba(201, 168, 76, .25) 50%, rgba(201, 168, 76, .12) 70%, transparent 100%);
  animation: tide 8s ease-in-out infinite;
}

.tide-line:nth-child(1) {
  top: 30%;
  animation-delay: 0s;
}

.tide-line:nth-child(2) {
  top: 50%;
  animation-delay: 1.5s;
  opacity: .6;
}

.tide-line:nth-child(3) {
  top: 70%;
  animation-delay: 3s;
  opacity: .4;
}

.tide-line:nth-child(4) {
  top: 85%;
  animation-delay: 4.5s;
  opacity: .3;
}

@keyframes tide {

  0%,
  100% {
    transform: translateX(-25%) skewX(-2deg);
  }

  50% {
    transform: translateX(0%) skewX(2deg);
  }
}

.hero-orb {
  position: absolute;
  right: calc(5% + var(--hero-parallax-orb-x, 0px));
  top: calc(50% + var(--hero-parallax-orb-y, 0px));
  transform: translateY(-50%);
  width: min(520px, 45vw);
  aspect-ratio: 1;
  background: radial-gradient(circle at 35% 40%, rgba(201, 168, 76, .18) 0%, rgba(201, 168, 76, .06) 40%, transparent 70%);
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .08);
  animation: orbPulse 6s ease-in-out infinite;
  transition: top .2s linear, right .2s linear;
}

.hero-orb::before {
  content: '';
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .12);
  animation: orbPulse 6s ease-in-out infinite reverse;
}

@keyframes orbPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.04);
    opacity: .8;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 820px);
  max-width: 820px;
  will-change: transform;
  transform: translate3d(0, var(--hero-parallax-content, 0px), 0);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2rem;
  animation: fadeUp .8s ease both;
}

.eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-text {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.8rem;
  animation: fadeUp .8s .1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 2.8rem;
  font-weight: 300;
  animation: fadeUp .8s .2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  animation: fadeUp .8s .3s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 6%;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(255, 255, 255, .3);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: fadeUp 1s .6s ease both;
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, .2);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 1rem 2.2rem;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  text-decoration: none;
  border: none;
  cursor: none;
  border-radius: 2px;
  transition: background .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 4px 24px rgba(201, 168, 76, .25);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, .35);
}

.btn-outline-gold {
  background: transparent;
  color: rgba(255, 255, 255, .75);
  padding: 1rem 2.2rem;
  font-weight: 400;
  font-size: .9rem;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 2px;
  transition: border-color .3s, color .3s;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.btn-outline-gold:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ── TICKER ── */
.ticker {
  background: var(--gold);
  padding: .75rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  gap: 3rem;
  animation: tickerMove 20s linear infinite;
}

.ticker-item {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticker-sep {
  opacity: .4;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── SECTION HELPERS ── */
section {
  position: relative;
  z-index: 1;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem;
}

.eyebrow-line-dark {
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-label-text {
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title-light {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-title-dark {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-sub-light {
  color: rgba(255, 255, 255, .5);
  font-size: .98rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 500px;
}

.section-sub-dark {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 500px;
}

/* ── CLARE STORY ── */
#clare-story {
  background: var(--off-white);
  padding: 6.5rem 6%;
}

.story-header {
  max-width: 820px;
  margin-bottom: 2rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.story-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .18);
  border-radius: 6px;
  padding: 1.8rem 1.4rem;
  box-shadow: 0 16px 30px rgba(11, 22, 40, .07);
}

.story-card h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: .45rem;
}

.story-card p {
  color: var(--muted);
  font-size: .89rem;
  line-height: 1.7;
}

/* ── SOLUTIONS ── */
#solutions {
  background: linear-gradient(180deg, #f7f3ea 0%, var(--off-white) 100%);
  padding: 7rem 6%;
}

.solutions-teaser {
  padding: 6.5rem 6%;
}

.solutions-header {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.solution-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.solution-step-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .18);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  box-shadow: 0 20px 44px rgba(11, 22, 40, .08);
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}

.solution-step-card:hover,
.solution-step-card.active {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, .5);
  box-shadow: 0 26px 52px rgba(11, 22, 40, .14);
}

.solution-step-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: .85rem;
}

.solution-step-card h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.45rem;
  margin-bottom: .65rem;
}

.solution-step-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: .95rem;
}

.solution-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.solution-points li {
  font-size: .8rem;
  color: var(--text);
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}

.solution-points li::before {
  content: '•';
  color: var(--gold);
  line-height: 1;
  margin-top: .12rem;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.audience-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .16);
  border-radius: 6px;
  padding: 1.7rem 1.4rem;
  box-shadow: 0 16px 34px rgba(11, 22, 40, .06);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, .38);
}

.audience-card h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: .45rem;
}

.audience-card p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.solutions-teaser-cta {
  margin-top: 1.4rem;
}

.solution-hero .hero-sub {
  max-width: 620px;
}

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

/* ── SERVICES ── */
#services {
  background: var(--navy-mid);
  padding: 8rem 6%;
}

.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.services-count-wrap {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  margin-bottom: 1rem;
}

.services-count-num {
  font-family: var(--serif);
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  text-shadow: 0 0 50px rgba(201, 168, 76, .4);
}

.services-count-label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, .55);
  line-height: 1.4;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.services-scroll-stage {
  position: relative;
  min-height: auto;
  z-index: 2;
  margin-top: 1rem;
}

.services-ocean {
  position: absolute;
  inset: auto 0 0 0;
  height: min(52vh, 400px);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: .68;
}

.ocean-svg {
  position: absolute;
  left: calc(-50% + var(--services-wave-shift, 0%));
  width: 200%;
  height: 100%;
}

.ocean-svg path {
  transform: translateY(calc(var(--services-wave-depth, 0px)));
}

.ocean-a {
  bottom: -18%;
  fill: rgba(42, 157, 110, .2);
  animation: oceanDriftA 13s linear infinite;
}

.ocean-b {
  bottom: -13%;
  fill: rgba(201, 168, 76, .16);
  animation: oceanDriftB 18s linear infinite;
}

.ocean-c {
  bottom: -8%;
  fill: rgba(255, 255, 255, .08);
  animation: oceanDriftC 22s linear infinite;
}

@keyframes oceanDriftA {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(8%);
  }
}

@keyframes oceanDriftB {
  from {
    transform: translateX(-2%);
  }

  to {
    transform: translateX(6%);
  }
}

@keyframes oceanDriftC {
  from {
    transform: translateX(2%);
  }

  to {
    transform: translateX(10%);
  }
}

.service-card-new {
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  cursor: none;
  position: relative;
  transform-style: preserve-3d;
  opacity: 1;
  pointer-events: auto;
}

.service-card-new::before {
  content: '';
  display: none;
}

.service-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .45), 0 0 0 1px rgba(201, 168, 76, .35);
  border-color: rgba(201, 168, 76, .4);
}

.service-card-new.in-view {
  border-color: rgba(201, 168, 76, .32);
  box-shadow: 0 14px 42px rgba(0, 0, 0, .28);
}

.service-card-new.service-focus {
  border-color: rgba(201, 168, 76, .48);
  box-shadow: 0 26px 64px rgba(0, 0, 0, .4), 0 0 0 1px rgba(201, 168, 76, .2);
}

.service-card-new.in-view .service-num-badge {
  text-shadow: 0 2px 16px rgba(0, 0, 0, .7), 0 0 24px rgba(201, 168, 76, .3);
}

.service-card-new.in-view .service-visual svg {
  filter: saturate(1.08) brightness(1.04);
}

.service-visual {
  width: 100%;
  height: 190px;
  position: relative;
  overflow: hidden;
}

.service-visual svg {
  width: 100%;
  height: 100%;
  display: block;
}

.service-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--navy) 100%);
  pointer-events: none;
}

.service-num-badge {
  position: absolute;
  top: .9rem;
  left: 1.1rem;
  z-index: 3;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .7);
}

.service-body {
  padding: 1.6rem 1.8rem 2rem;
}

.service-icon-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .9rem;
}

.svc-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .28);
  transition: background .3s;
}

.service-card-new:hover .svc-icon-circle {
  background: rgba(201, 168, 76, .2);
}

.svc-icon-circle svg {
  width: 20px;
  height: 20px;
}

.service-card-new h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .65rem;
  line-height: 1.3;
}

.service-card-new p {
  font-size: .86rem;
  color: rgba(255, 255, 255, .44);
  line-height: 1.78;
  margin-bottom: 1.3rem;
  font-weight: 300;
}

.service-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.s-tag {
  font-size: .7rem;
  font-weight: 500;
  padding: .22rem .65rem;
  border: 1px solid rgba(201, 168, 76, .25);
  color: rgba(201, 168, 76, .72);
  border-radius: 1px;
  letter-spacing: .04em;
  transition: background .3s;
}

.service-card-new:hover .s-tag {
  background: rgba(201, 168, 76, .08);
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: .81rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: .04em;
  text-decoration: none;
  transition: gap .3s;
}

.service-arrow:hover {
  gap: .9rem;
}

/* SVG animation helpers */
.float-a {
  animation: floatY 4s ease-in-out infinite;
}

.float-b {
  animation: floatY 5s ease-in-out infinite reverse;
}

.float-c {
  animation: floatY 3.5s ease-in-out infinite;
  animation-delay: .8s;
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.blink-c {
  animation: blinkC 1s step-end infinite;
}

@keyframes blinkC {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.dash-flow line,
.dash-flow path {
  stroke-dasharray: 6 4;
}

.svg-origin-main {
  transform-origin: 190px 95px;
}

.svg-origin-left-card {
  transform-origin: 25px 75px;
}

.svg-origin-right-card {
  transform-origin: 348px 138px;
}

.svg-origin-left-top {
  transform-origin: 52px 52px;
}

.svg-origin-right-top {
  transform-origin: 328px 52px;
}

.svg-origin-left-bottom {
  transform-origin: 52px 150px;
}

.svg-origin-right-bottom {
  transform-origin: 328px 150px;
}

.float-delay-6 {
  animation-delay: .6s;
}

.dash-flow line {
  animation: dashMove 1.2s linear infinite;
}

.dash-flow path {
  animation: dashMove 1.4s linear infinite;
}

@keyframes dashMove {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -20;
  }
}

/* ── ABOUT ── */
#about {
  background: var(--off-white);
  padding: 8rem 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card-main {
  background: var(--navy);
  border-radius: 4px;
  padding: 3rem;
  border: 1px solid rgba(201, 168, 76, .15);
  position: relative;
}

.about-card-main::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: 6px;
  pointer-events: none;
}

.about-logo-img {
  height: 100px;
  width: auto;
  margin-bottom: 2rem;
  display: block;
  object-fit: contain;
  max-width: min(320px, 100%);
}

.about-main-copy {
  font-size: .88rem;
  color: rgba(255, 255, 255, .45);
  line-height: 1.75;
  font-weight: 300;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-stat {
  border-top: 1px solid rgba(201, 168, 76, .2);
  padding-top: 1rem;
}

.about-stat .n {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}

.about-stat .l {
  font-size: .78rem;
  color: rgba(255, 255, 255, .4);
  font-weight: 400;
  letter-spacing: .04em;
}

.about-float {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--gold);
  padding: 1.2rem 1.5rem;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(201, 168, 76, .3);
}

.about-float p {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.about-float strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  display: block;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.pillar {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid rgba(201, 168, 76, .12);
  transition: border-color .3s, transform .3s;
}

.pillar:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gold-pale);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.pillar h4 {
  font-weight: 600;
  color: var(--navy);
  font-size: .92rem;
  margin-bottom: .2rem;
}

.pillar p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── PROCESS ── */
#process {
  background: var(--navy);
  padding: 8rem 6%;
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.process-header .section-sub-light {
  margin: 0 auto;
}

.process-eyebrow {
  justify-content: center;
}

.process-title {
  text-align: center;
}

.process-sub {
  text-align: center;
  margin: 0 auto;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 168, 76, .3));
}

.process-step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .3);
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 600;
  position: relative;
  z-index: 1;
  transition: background .3s, border-color .3s;
}

.process-step:hover .step-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.process-step h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: .6rem;
}

.process-step p {
  font-size: .83rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.7;
  font-weight: 300;
}

/* ── PRICING ── */
#pricing {
  background: var(--off-white);
  padding: 8rem 6%;
}

.pricing-header {
  margin-bottom: 4rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.price-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: 4px;
  padding: 2.8rem;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11, 22, 40, .12);
}

.price-card.featured {
  background: var(--navy);
  border-color: var(--gold);
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 1.5rem;
  right: -2.2rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 3rem;
  transform: rotate(35deg);
}

.price-tier-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.price-amount {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  color: var(--navy);
  margin-bottom: .3rem;
}

.price-card.featured .price-amount {
  color: var(--white);
}

.price-amount sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.price-sup-small {
  font-size: 1rem;
}

.price-cadence {
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201, 168, 76, .15);
}

.price-card.featured .price-cadence {
  color: rgba(255, 255, 255, .4);
}

.price-cadence-featured {
  color: rgba(255, 255, 255, .35);
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.2rem;
}

.price-features li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .87rem;
  color: var(--text);
  line-height: 1.5;
}

.price-card.featured .price-features li {
  color: rgba(255, 255, 255, .75);
}

.price-features li::before {
  content: '—';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-price {
  display: block;
  text-align: center;
  padding: .9rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 2px;
  transition: background .3s, color .3s, transform .3s;
}

.btn-price-navy {
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
}

.btn-price-navy:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.btn-price-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-price-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: .82rem;
  color: var(--muted);
}

.pricing-note a {
  color: var(--gold);
  text-decoration: none;
}

.founding-program {
  margin-top: 2rem;
  background: linear-gradient(135deg, #0f1d33 0%, #132744 55%, #1a3156 100%);
  border: 1px solid rgba(201, 168, 76, .24);
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
}

.founding-copy .section-label-text {
  display: inline-block;
  margin-bottom: .6rem;
}

.founding-copy h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: .5rem;
}

.founding-copy p {
  color: rgba(255, 255, 255, .58);
  font-size: .9rem;
  line-height: 1.75;
  max-width: 680px;
}

/* ── CONTACT ── */
#contact {
  background: var(--navy-mid);
  padding: 8rem 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contact-left {
  position: sticky;
  top: 8rem;
}

.contact-left .section-sub-light {
  margin-bottom: 3rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.cd-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, .1);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
}

.cd-text strong {
  display: block;
  font-size: .82rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .1rem;
  letter-spacing: .04em;
}

.cd-text span {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
}

.contact-form-wrap {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(201, 168, 76, .12);
  border-radius: 4px;
  padding: 3rem;
}

.form-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 2px;
  padding: .85rem 1rem;
  color: var(--white);
  font-family: var(--sans);
  font-size: .9rem;
  outline: none;
  transition: border-color .3s, background .3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, .2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201, 168, 76, .5);
  background: rgba(255, 255, 255, .06);
}

.form-group select option {
  background: var(--navy);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-optional {
  border: 1px dashed rgba(201, 168, 76, .28);
  border-radius: 4px;
  padding: .85rem 1rem 1rem;
  background: rgba(255, 255, 255, .02);
}

.form-optional summary {
  color: rgba(201, 168, 76, .95);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.form-optional summary::-webkit-details-marker {
  display: none;
}

.form-optional[open] summary {
  margin-bottom: .85rem;
}

.form-submit {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 1rem 2rem;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: 2px;
  cursor: none;
  width: 100%;
  transition: background .3s, transform .3s;
  margin-top: .5rem;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.form-consent {
  margin-top: .25rem;
}

.form-consent label {
  display: inline-flex;
  align-items: flex-start;
  gap: .55rem;
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
  line-height: 1.5;
}

.form-consent input[type='checkbox'] {
  margin-top: .18rem;
  accent-color: var(--gold);
}

.form-consent a {
  color: var(--gold-light);
}

.form-status {
  min-height: 1.2rem;
  font-size: .8rem;
  letter-spacing: .02em;
}

.form-status.ok {
  color: #8fe0b6;
}

.form-status.err {
  color: #f1a7a7;
}

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 168, 76, .1);
  padding: 2.5rem 6%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

.footer-logo img {
  height: 34px;
  width: auto;
  object-fit: contain;
  opacity: 1;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}

.footer-links a {
  font-size: .8rem;
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  transition: color .3s;
  letter-spacing: .04em;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-right {
  text-align: right;
  font-size: .78rem;
  color: rgba(255, 255, 255, .2);
  line-height: 1.6;
}

.footer-domain {
  color: rgba(255, 255, 255, .15);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px) scale(.985);
  filter: blur(4px);
  transition: opacity .7s var(--ease), transform .7s var(--ease), filter .7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.reveal-delay-1 {
  transition-delay: calc(var(--reveal-delay, 0ms) + .1s);
}

.reveal-delay-2 {
  transition-delay: calc(var(--reveal-delay, 0ms) + .2s);
}

.reveal-delay-3 {
  transition-delay: calc(var(--reveal-delay, 0ms) + .3s);
}

.scroll-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--fade-delay, 0ms);
}

.scroll-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

.contact-detail-item .cd-icon {
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.contact-detail-item.in-view .cd-icon {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .2);
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .tide-lines,
  .hero-content {
    transform: none !important;
  }

  .services-ocean .ocean-svg,
  .service-card-new {
    animation: none !important;
    transform: none !important;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .pilot-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .solution-flow {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .services-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-ocean {
    display: none;
  }

  .services-scroll-stage {
    min-height: auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    gap: 1.5rem;
  }

  .service-card-new {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  #about {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .process-track::before {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .founding-program {
    flex-direction: column;
    align-items: flex-start;
  }

  #contact {
    grid-template-columns: 1fr;
  }

  .contact-left {
    position: static;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
    gap: 1rem 1.5rem;
  }

  .footer-right {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .nav-toggle {
    display: inline-flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(11, 22, 40, .98);
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 1000;
    opacity: 0;
    transition: opacity .3s ease;
  }

  .nav-links.open {
    display: flex;
    opacity: 1;
  }

  .nav-links a {
    font-size: 2.2rem;
    font-family: var(--serif);
    color: var(--white);
    padding: .5rem;
    border: none;
    transform: translateY(20px);
    transition: transform .4s ease, color .3s;
  }

  .nav-links.open a {
    transform: translateY(0);
  }

  .nav-links a:hover {
    color: var(--gold);
  }

  .nav-cta {
    margin-top: 1rem;
    font-size: 1.2rem !important;
  }

  .nav-cta {
    margin-top: .5rem;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  body {
    cursor: auto;
  }

  .cursor,
  .cursor-ring {
    display: none;
  }
}

/* ============================================
   V2 Conversion Redesign (Index)
   ============================================ */
body.v2 #navbar {
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
}

body.v2 #navbar.scrolled {
  background: rgba(11, 22, 40, .95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, .25);
}

body.v2 .hero-v2 {
  min-height: 90vh;
  background:
    radial-gradient(circle at 85% 10%, rgba(201, 168, 76, .22), transparent 30%),
    linear-gradient(160deg, #0b1628 0%, #152340 58%, #1a3156 100%);
}

body.v2 .hero-v2 .hero-content {
  max-width: 820px;
}

body.v2 .hero-v2 h1 {
  font-size: clamp(2.6rem, 5.8vw, 5rem);
}

body.v2 .hero-v2 .hero-sub {
  max-width: 680px;
  color: rgba(255, 255, 255, .72);
}

body.v2 .hero-trust {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

body.v2 .hero-trust span {
  color: rgba(255, 255, 255, .88);
  font-size: .72rem;
  letter-spacing: .05em;
  border: 1px solid rgba(201, 168, 76, .32);
  border-radius: 999px;
  padding: .35rem .7rem;
  background: rgba(201, 168, 76, .12);
}

body.v2 .hero-scroll {
  display: none;
}

body.v2 .v2-section {
  padding: 6rem 6%;
}

body.v2 .v2-section.light {
  background: #f7f4ec;
}

body.v2 .v2-section.dark {
  background: #10213a;
}

body.v2 .v2-head {
  max-width: 820px;
  margin-bottom: 2rem;
}

body.v2 .story-cards,
body.v2 .service-list-v2,
body.v2 .proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

body.v2 .story-card,
body.v2 .proof-item {
  background: #fff;
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 8px;
  padding: 1.4rem;
  box-shadow: 0 14px 28px rgba(11, 22, 40, .08);
}

body.v2 .story-card h3,
body.v2 .proof-item strong {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.45rem;
  display: block;
  margin-bottom: .45rem;
}

body.v2 .story-card p,
body.v2 .proof-item span {
  color: var(--muted);
  line-height: 1.7;
  font-size: .88rem;
}

body.v2 .service-list-v2 .service-card-new {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(201, 168, 76, .24);
  box-shadow: none;
  padding: 1.4rem;
}

body.v2 .service-list-v2 .service-card-new h3 {
  color: #fff;
  margin-bottom: .45rem;
  font-size: 1.45rem;
}

body.v2 .service-list-v2 .service-card-new p {
  color: rgba(255, 255, 255, .76);
  margin: 0;
  font-size: .9rem;
}

body.v2 .proof-cta {
  margin-top: 1.2rem;
}

body.v2 .contact-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 960px) {

  body.v2 .story-cards,
  body.v2 .service-list-v2,
  body.v2 .proof-grid,
  body.v2 .contact-v2 {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Solutions Page Conversion Redesign
   ============================================ */
.solutions-page {
  background: var(--off-white);
  color: var(--text);
}

/* Remove Solutions-page specific nav override to use global transition */
.solutions-page nav.scrolled {
  background: rgba(11, 22, 40, .92);
}

.solution-hero-v3 {
  min-height: 96vh;
  padding-top: 7rem;
  background:
    radial-gradient(circle at 86% 10%, rgba(232, 201, 122, .22), transparent 32%),
    linear-gradient(155deg, #0b1628 0%, #14233f 52%, #1b345b 100%);
}

.solution-hero-v3 h1 {
  font-size: clamp(2.6rem, 5.8vw, 5rem);
}

.solution-hero-v3 .hero-sub {
  max-width: 680px;
}

.wave-stack {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4rem;
  height: 35vh;
  pointer-events: none;
  z-index: 1;
}

.wave {
  position: absolute;
  left: -15%;
  width: 130%;
  border-radius: 44% 56% 0 0 / 100% 100% 0 0;
}

.wave-a {
  height: 62%;
  bottom: 0;
  background: rgba(42, 157, 110, .26);
  animation: heroWaveA 12s linear infinite;
}

.wave-b {
  height: 52%;
  bottom: 8%;
  background: rgba(201, 168, 76, .2);
  animation: heroWaveB 18s linear infinite;
}

.wave-c {
  height: 42%;
  bottom: 16%;
  background: rgba(255, 255, 255, .08);
  animation: heroWaveC 22s linear infinite;
}

@keyframes heroWaveA {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(8%);
  }
}

@keyframes heroWaveB {
  from {
    transform: translateX(4%);
  }

  to {
    transform: translateX(-7%);
  }
}

@keyframes heroWaveC {
  from {
    transform: translateX(-4%);
  }

  to {
    transform: translateX(5%);
  }
}

.solution-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  gap: 3rem;
  align-items: center;
  width: min(100%, 1280px);
  margin: 0 auto;
}

.solution-hero-copy {
  max-width: 720px;
}

.hero-micro-proof {
  list-style: none;
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.hero-micro-proof li {
  font-size: .72rem;
  color: rgba(255, 255, 255, .9);
  border: 1px solid rgba(201, 168, 76, .35);
  background: rgba(201, 168, 76, .12);
  border-radius: 999px;
  padding: .35rem .7rem;
  letter-spacing: .03em;
}

.solution-hero-panel {
  background: rgba(8, 18, 33, .72);
  border: 1px solid rgba(201, 168, 76, .3);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 24px 52px rgba(0, 0, 0, .35);
  width: 100%;
}

.solution-hero-panel h3 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.7rem;
  margin-bottom: .35rem;
}

.solution-hero-panel p {
  color: rgba(255, 255, 255, .7);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.first-win-list {
  display: grid;
  gap: .6rem;
  margin-bottom: 1rem;
}

.first-win-list div {
  display: flex;
  gap: .6rem;
  align-items: baseline;
  border: 1px solid rgba(201, 168, 76, .22);
  border-radius: 5px;
  padding: .6rem .72rem;
  background: rgba(255, 255, 255, .03);
}

.first-win-list strong {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1;
}

.first-win-list span {
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
}

.solution-story-wrap,
.solution-offers-wrap,
.solution-proof-wrap {
  padding: 8rem 6% 5rem;
  background: var(--off-white);
}

.story-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.story-rail-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .18);
  border-radius: 8px;
  padding: 1.8rem 1.4rem;
  box-shadow: 0 16px 32px rgba(11, 22, 40, .08);
}

.story-rail-step {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.story-rail-card h3 {
  margin: .45rem 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.story-rail-card p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
}

.solution-offers-wrap {
  background: linear-gradient(180deg, var(--gold-pale) 0%, var(--off-white) 100%);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.offer-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 8px;
  padding: 1.8rem 1.45rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 32px rgba(11, 22, 40, .07);
}

.offer-card h3 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: .2rem;
}

.offer-tag {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .35rem;
}

.offer-sub {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.65;
  margin-bottom: .7rem;
}

.offer-card ul {
  list-style: none;
  margin-bottom: 1rem;
  display: grid;
  gap: .45rem;
}

.offer-card li {
  font-size: .84rem;
  color: var(--text);
  line-height: 1.5;
  display: flex;
  gap: .45rem;
}

.offer-card li::before {
  content: '•';
  color: var(--gold);
}

.offer-card .btn-price {
  margin-top: auto;
}

.featured-offer {
  background: linear-gradient(155deg, #0f1e36 0%, #142744 100%);
  border-color: rgba(201, 168, 76, .6);
  box-shadow: 0 20px 42px rgba(11, 22, 40, .2);
}

.featured-offer h3 {
  color: var(--white);
}

.featured-offer .offer-sub,
.featured-offer li {
  color: rgba(255, 255, 255, .82);
}

.solution-proof-wrap {
  background: var(--off-white);
}

.proof-grid-slim {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-item-slim {
  border: 1px solid rgba(201, 168, 76, .17);
  border-radius: 8px;
  padding: 1.5rem 1.3rem;
  background: var(--white);
  box-shadow: 0 16px 30px rgba(11, 22, 40, .06);
}

.proof-item-slim strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: .35rem;
}

.proof-item-slim span {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.65;
}

.solution-contact-wrap {
  background: linear-gradient(160deg, #0b1628 0%, #132744 100%);
  padding: 6rem 6%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.solution-contact-points {
  margin-top: 1.3rem;
  display: grid;
  gap: .85rem;
}

.solution-contact-points div {
  border: 1px solid rgba(201, 168, 76, .18);
  border-radius: 6px;
  padding: .8rem .9rem;
  background: rgba(255, 255, 255, .03);
}

.solution-contact-points strong {
  display: block;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.solution-contact-points span {
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
}

@media (max-width: 960px) {

  .solution-hero-grid,
  .solution-contact-wrap {
    grid-template-columns: 1fr;
  }

  .story-rail,
  .offer-grid,
  .proof-grid-slim {
    grid-template-columns: 1fr;
  }

  .solution-hero-panel {
    max-width: none;
  }

  .solution-hero-grid {
    gap: 1.6rem;
  }
}

@media (max-width: 600px) {
  .solution-hero-v3 {
    padding-top: 6rem;
  }

  .hero-micro-proof {
    gap: .45rem;
  }

  .hero-micro-proof li {
    font-size: .69rem;
  }
}

/* Ensure solutions.html #services does not inherit homepage services block */
.solutions-page #services.solution-offers-wrap {
  background: linear-gradient(180deg, var(--gold-pale) 0%, var(--off-white) 100%);
  padding: 8rem 6%;
}

/* ============================================
   Phase 3 Conversion Layers
   ============================================ */
.phase-hero-proof {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.35rem;
}

.phase-hero-proof li {
  color: rgba(255, 255, 255, .88);
  border: 1px solid rgba(201, 168, 76, .28);
  background: rgba(201, 168, 76, .08);
  border-radius: 999px;
  padding: .42rem .8rem;
  font-size: .74rem;
  letter-spacing: .02em;
}

.need-section {
  background: linear-gradient(180deg, #f2ecde 0%, #faf7f1 100%);
  padding: 6.5rem 6%;
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.need-card {
  background: #fff;
  border: 1px solid rgba(201, 168, 76, .16);
  border-radius: 8px;
  padding: 1.45rem;
  box-shadow: 0 14px 30px rgba(11, 22, 40, .06);
}

.need-num {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.need-card h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.4rem;
  margin: .55rem 0 .35rem;
}

.need-card p {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.7;
}

.need-cta {
  margin-top: 1.4rem;
}

.solution-replace-wrap,
.pilot-deliverables-wrap,
.roi-section,
.impact-wrap,
.faq-section {
  padding: 8rem 6% 5rem;
  background: var(--off-white);
}

.replace-grid,
.deliverable-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.replace-card,
.faq-item {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .16);
  border-radius: 8px;
  padding: 1.8rem 1.4rem;
  box-shadow: 0 16px 32px rgba(11, 22, 40, .05);
}

.replace-card h3,
.faq-item h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: .35rem;
}

.replace-card p,
.faq-item p {
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.7;
}

.pilot-deliverables-wrap {
  background: linear-gradient(180deg, var(--gold-pale) 0%, var(--off-white) 100%);
}

.deliverable-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.deliverable-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .18);
  border-radius: 8px;
  padding: 1.8rem 1.4rem;
  box-shadow: 0 16px 32px rgba(11, 22, 40, .05);
}

.deliverable-card span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
}

.deliverable-card h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: .55rem 0 .35rem;
}

.deliverable-card p {
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.7;
}

.roi-section {
  background: var(--gold-pale);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.impact-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 76, .18);
  border-radius: 8px;
  padding: 1.8rem 1.45rem;
  box-shadow: 0 16px 32px rgba(11, 22, 40, .05);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.impact-card:nth-child(2) {
  background: linear-gradient(155deg, #10213a 0%, #173053 100%);
  border: 1px solid rgba(201, 168, 76, .35);
}

.impact-label {
  display: block;
  color: var(--gold);
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.impact-card strong {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.05;
  display: block;
  margin-bottom: .45rem;
}

.impact-card:nth-child(2) .impact-label {
  color: rgba(201, 168, 76, .82);
}

.impact-card:nth-child(2) strong,
.impact-card:nth-child(2) p {
  color: #fff;
}

.impact-card p {
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.7;
  margin: 0;
}

.faq-section {
  background: var(--off-white);
}

@media (max-width: 960px) {

  .need-grid,
  .replace-grid,
  .deliverable-grid,
  .faq-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 9rem 6% 4rem;
  }

  .phase-hero-proof li {
    font-size: .7rem;
  }

  .hero-scroll {
    display: none;
  }

  footer {
    padding: 2rem 6%;
    gap: 1.25rem;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: .85rem;
  }

  .footer-links a {
    font-size: .82rem;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }

  .eyebrow-text {
    font-size: .68rem;
    letter-spacing: .12em;
  }
}

/* ── MARÉ METHOD ── */
.mare-method {
  padding: 8rem 6%;
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}

.mare-method-header {
  max-width: 820px;
  margin-bottom: 4rem;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 991px) {
  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .method-grid {
    grid-template-columns: 1fr;
  }
}

.method-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.method-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.method-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.method-card h3 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.method-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── FOUNDER'S EDGE ── */
.founder-edge {
  padding: 8rem 6%;
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.founder-edge-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 991px) {
  .founder-edge-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.founder-visual {
  position: relative;
}

.founder-badge {
  background: var(--navy);
  color: var(--gold);
  padding: 3rem;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.founder-badge h2 {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.founder-badge p {
  font-size: 1.1rem;
  opacity: 0.8;
}

.founder-content h4 {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
}

.founder-content h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.founder-content p {
  color: var(--text);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.f-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
}

.f-stat span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ── INDUSTRY FOCUS ── */
.industry-focus {
  padding: 8rem 6%;
  background: var(--white);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

@media (max-width: 991px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }
}

.industry-card {
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: background 0.3s var(--ease);
}

.industry-card:hover {
  background: var(--off-white);
}

.industry-card h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.industry-card ul {
  list-style: none;
  margin-top: 1.5rem;
}

.industry-card li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
  display: flex;
  gap: 0.5rem;
}

.industry-card li::before {
  content: "→";
  color: var(--gold);
}
