/* ============================================================
   FinOrganise — styles.css
   Palette pulled from the brand logo:
     ink   = deep navy
     teal  = brand accent
     paper = off-white background
   ============================================================ */

:root {
  --ink:        #1E2F39;
  --ink-2:      #15212B;
  --ink-3:      #0E1820;
  --teal:       #1CAFB6;
  --teal-2:     #18949A;
  --teal-soft:  #E5F7F8;
  --paper:      #FAF9F7;
  --paper-2:    #F1EEE8;
  --line:       #E6E2DC;
  --mute:       #5C6B75;
  --mute-2:     #8A98A1;
  --white:      #FFFFFF;

  --radius:     14px;
  --radius-sm:  10px;
  --radius-lg:  22px;

  --shadow-sm:  0 1px 2px rgba(15,30,40,.06), 0 2px 8px rgba(15,30,40,.04);
  --shadow:     0 6px 24px rgba(15,30,40,.08), 0 2px 6px rgba(15,30,40,.04);
  --shadow-lg:  0 20px 60px rgba(15,30,40,.18);

  --container:  1180px;

  --reveal-y:   16px;
  --reveal-x:   24px;
  --reveal-dur: 700ms;
  --reveal-ease: cubic-bezier(.22, .61, .36, 1);

  --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-disp:  'Manrope', 'Inter', system-ui, sans-serif;
}

/* ----------- Section heading underline sweep ----------- */
.section__head h2 {
  position: relative;
  padding-bottom: 22px;
}
.section__head h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 80px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--teal), #6FE2DA);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform .9s cubic-bezier(.65, .05, .36, 1) .25s;
}
.section__head.is-revealed h2::after { transform: translateX(-50%) scaleX(1); }

/* ----------- Services sticky pin (desktop only) ----------- */
.section--pin__sticky { /* wrapper exists for both layouts; sticky kicks in at desktop */
  display: contents; /* on mobile, no extra layout */
}

@media (min-width: 980px) {
  .section--pin {
    /* Tall enough that the sticky inner stays pinned through three card phases */
    padding: 0;
    height: 280vh;
    position: relative;
  }
  .section--pin__sticky {
    display: block;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .section--pin__sticky > .container {
    width: 100%;
  }
  .section--pin .section__head { margin-bottom: 36px; }
  .section--pin .cards { gap: 28px; }
  .section--pin .card {
    transition:
      opacity .55s cubic-bezier(.22,.61,.36,1),
      transform .55s cubic-bezier(.22,.61,.36,1),
      box-shadow .55s ease,
      border-color .55s ease,
      filter .55s ease;
  }
  .section--pin[data-pin-active] .card {
    opacity: .4;
    transform: scale(.97);
    filter: saturate(.7);
  }
  .section--pin[data-pin-active] .card.is-active {
    opacity: 1;
    transform: scale(1.02) translateY(-6px);
    filter: none;
    border-color: rgba(28, 175, 182, .55);
    box-shadow: 0 24px 60px rgba(15, 30, 40, .14), 0 4px 12px rgba(28, 175, 182, .14);
  }

  /* Pin progress chips (desktop only) */
  .pin-progress {
    display: inline-flex;
    gap: 10px;
    margin-top: 18px;
    padding: 6px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
  }
  .pin-progress__step {
    font-family: var(--font-disp);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .04em;
    color: var(--mute);
    padding: 8px 16px;
    border-radius: 999px;
    transition: background .35s ease, color .35s ease;
  }
  .pin-progress__step.is-active {
    background: linear-gradient(135deg, var(--teal), #6FE2DA);
    color: var(--ink-3);
    box-shadow: 0 4px 14px rgba(28, 175, 182, .28);
  }
}

/* Mobile: fully hide the pin chips, lay services out normally */
.pin-progress { display: none; }
@media (min-width: 980px) {
  .pin-progress { display: inline-flex; }
}

/* ----------- Word-by-word reveal (hero headline) ----------- */
[data-words] .word {
  display: inline-block;
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(0, 18px, 0);
  transition:
    opacity .55s cubic-bezier(.22, .61, .36, 1),
    filter .55s cubic-bezier(.22, .61, .36, 1),
    transform .65s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--word-delay, 0ms);
}
[data-words].is-revealed .word {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

/* ----------- Moment (pinned callout) ----------- */
.moment {
  position: relative;
  background: linear-gradient(180deg, var(--ink-3) 0%, var(--ink-2) 60%, var(--ink-3) 100%);
  color: var(--white);
  /* The section is taller than the viewport so the inner sticky block
     stays pinned while the user scrolls through three text phases. */
  height: 260vh;
}
.moment__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.moment__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 20% 20%, rgba(28,175,182,.16), transparent 60%),
    radial-gradient(700px 500px at 80% 80%, rgba(28,175,182,.10), transparent 60%);
  opacity: .85;
  pointer-events: none;
}
.moment__sticky::before {
  /* Subtle wave pattern echo from the hero */
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800' preserveAspectRatio='none'><g fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1.2'><path d='M0,200 C200,120 400,280 600,200 C800,120 1000,280 1200,200' /><path d='M0,400 C200,320 400,480 600,400 C800,320 1000,480 1200,400' /><path d='M0,600 C200,520 400,680 600,600 C800,520 1000,680 1200,600' /></g></svg>");
  background-size: cover;
  pointer-events: none;
}
.moment__lines {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1100px;
  padding: 0 24px;
  display: grid;
}
.moment__line {
  /* All three lines occupy the same grid cell and crossfade. */
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: clamp(2rem, 5.6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--white);
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(.985);
  transition:
    opacity .55s ease-out,
    transform .85s cubic-bezier(.22, .61, .36, 1);
  pointer-events: none;
}
.moment__line.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.moment__line em {
  font-style: normal;
}
.moment__progress {
  position: absolute;
  left: 50%;
  bottom: 64px;
  transform: translateX(-50%);
  width: 220px; max-width: 50vw;
  height: 3px;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  overflow: hidden;
  z-index: 2;
}
.moment__progressBar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal), #6FE2DA);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(28,175,182,.55);
  transition: width 80ms linear;
}

/* ----------- Parallax / tilt hooks (hero dashboard) ----------- */
[data-parallax] {
  /* parallax translate is set via inline transform property by JS;
     keep transform smooth through GPU. */
  will-change: transform;
}
[data-tilt] {
  transform-style: preserve-3d;
  transition: transform .12s ease-out;
}

/* ----------- Reveal-on-scroll ----------- */
[data-reveal] {
  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0);
  transition:
    opacity var(--reveal-dur) var(--reveal-ease),
    transform var(--reveal-dur) var(--reveal-ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}
[data-reveal="left"]  { transform: translate3d(calc(var(--reveal-x) * -1), 0, 0); }
[data-reveal="right"] { transform: translate3d(var(--reveal-x), 0, 0); }
[data-reveal].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Cinematic "wipe" — slide in from the left with a snappy ease + slight
   blur, so it reads as a horizontal sweep without using clip-path
   (clip-path zeroes the IntersectionObserver intersection rect, breaking
   scroll-triggered reveals). */
[data-reveal="wipe"] {
  opacity: 0;
  transform: translate3d(-44px, 0, 0);
  filter: blur(6px);
  transition:
    opacity .55s cubic-bezier(.22, .61, .36, 1),
    transform .85s cubic-bezier(.22, .61, .36, 1),
    filter .65s cubic-bezier(.22, .61, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
[data-reveal="wipe"].is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* ----------- Reading progress bar ----------- */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 100;
  pointer-events: none;
  background: transparent;
}
.progress__bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--teal) 0%, #6FE2DA 100%);
  box-shadow: 0 0 12px rgba(28, 175, 182, .55);
  transition: width 80ms linear;
}

/* ----------- Reset / base ----------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a {
  color: var(--teal-2);
  text-decoration: none;
  transition: color .15s ease;
}
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-disp);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 1em; }

ul { padding: 0; margin: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  margin: 0 auto;
}

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(28,175,182,.28);
}
.btn--primary:hover {
  background: var(--teal-2);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.25);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}

.btn--ghost-dark {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}
.btn--ghost-dark:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.btn--sm { padding: 10px 16px; font-size: .9rem; }

.dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  display: inline-block;
}
.dot--pulse {
  box-shadow: 0 0 0 0 rgba(28,175,182,.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(28,175,182,.5); }
  70%  { box-shadow: 0 0 0 12px rgba(28,175,182,0); }
  100% { box-shadow: 0 0 0 0 rgba(28,175,182,0); }
}

/* ----------- Nav ----------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,249,247,.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo { height: 36px; width: auto; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__menu a {
  color: var(--ink);
  font-weight: 600;
  font-size: .95rem;
}
.nav__menu a:not(.btn):hover { color: var(--teal-2); }
.nav__menu .btn { color: var(--white); }
.nav__menu .btn:hover { color: var(--white); }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.nav__toggle span {
  position: absolute;
  left: 10px;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.nav__toggle span:nth-child(1) { top: 14px; }
.nav__toggle span:nth-child(2) { top: 20px; }
.nav__toggle span:nth-child(3) { top: 26px; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ----------- Hero ----------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(28,175,182,.18), transparent 60%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink-3) 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero__waves,
.section__waves {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800' preserveAspectRatio='none'><g fill='none' stroke='rgba(255,255,255,0.045)' stroke-width='1.2'><path d='M0,120 C200,40 400,200 600,120 C800,40 1000,200 1200,120' /><path d='M0,220 C200,140 400,300 600,220 C800,140 1000,300 1200,220' /><path d='M0,320 C200,240 400,400 600,320 C800,240 1000,400 1200,320' /><path d='M0,420 C200,340 400,500 600,420 C800,340 1000,500 1200,420' /><path d='M0,520 C200,440 400,600 600,520 C800,440 1000,600 1200,520' /><path d='M0,620 C200,540 400,700 600,620 C800,540 1000,700 1200,620' /><path d='M0,720 C200,640 400,800 600,720 C800,640 1000,800 1200,720' /></g></svg>");
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}
.hero__glow {
  position: absolute;
  width: 700px; height: 700px;
  right: -180px; top: -200px;
  background: radial-gradient(closest-side, rgba(28,175,182,.22), transparent 70%);
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
  padding: 96px 24px 110px;
  perspective: 1200px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.eyebrow--dark {
  background: var(--white);
  color: var(--teal-2);
  border-color: var(--line);
}
.eyebrow--light {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.14);
}

.hero__title {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.grad,
.grad .word {
  background: linear-gradient(90deg, var(--teal) 0%, #6FE2DA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin-bottom: 28px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__promises {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0 24px;
  padding: 28px 0 8px;
  border-top: 1px solid rgba(255,255,255,.10);
  list-style: none;
}
.hero__promise {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 22px;
  border-right: 1px dashed rgba(255,255,255,.10);
}
.hero__promise:last-child { border-right: 0; }
.hero__promise-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(28,175,182,.16);
  color: var(--teal);
  border: 1px solid rgba(28,175,182,.34);
  margin-bottom: 6px;
}
.hero__promise-check svg {
  width: 16px; height: 16px;
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  transition: stroke-dashoffset .6s .15s ease-out;
}
.hero__promise.is-revealed .hero__promise-check svg { stroke-dashoffset: 0; }
.hero__promise strong {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: -.005em;
  line-height: 1.2;
}
.hero__promise span {
  font-size: .86rem;
  color: rgba(255,255,255,.7);
  line-height: 1.35;
}
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(28,175,182,.18);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 700;
}

/* Hero "dashboard" card */
.dash {
  position: relative;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(28,175,182,.10), transparent 70%),
    rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.dash__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.dash__tag {
  display: block;
  font-family: var(--font-disp);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal);
  margin-bottom: 4px;
}
.dash__title {
  display: block;
  font-family: var(--font-disp);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}
.dash__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 5px 10px;
  border-radius: 999px;
}

.dash__chart {
  position: relative;
  margin: 0 -4px 18px;
  height: 120px;
}
.dash__chart svg {
  width: 100%;
  height: 100%;
  display: block;
}
.dash__line {
  stroke-dasharray: var(--dash-len, 1000);
  stroke-dashoffset: var(--dash-len, 1000);
  animation: drawLine 1.6s .25s ease-out forwards;
}
.dash__area {
  opacity: 0;
  animation: fadeIn .9s 1.5s ease-out forwards;
}
.dash__dots {
  opacity: 0;
  transform-origin: 280px 34px;
  animation: dotIn .35s 1.6s ease-out forwards;
}
.dash__dots circle:last-child {
  transform-origin: 280px 34px;
  animation: pulseRing 2.4s 1.9s ease-in-out infinite;
}
@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes dotIn {
  from { opacity: 0; transform: scale(.4); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pulseRing {
  0%, 100% { opacity: .25; transform: scale(1); }
  50%      { opacity: 0;   transform: scale(2.2); }
}

.dash__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
.dash__stat {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dash__statLabel {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.65);
}
.dash__statValue {
  font-family: var(--font-disp);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.dash__statValue .prefix { color: var(--teal); margin-right: 1px; }
.dash__statTrend {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.dash__statTrend.up { color: #6FE2DA; }

.dash__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px dashed rgba(255,255,255,.10);
  padding-top: 14px;
}
.dash__pills li {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--teal);
  background: rgba(28,175,182,.10);
  border: 1px solid rgba(28,175,182,.28);
  padding: 6px 12px;
  border-radius: 999px;
}

/* Hero dashboard checklist (replaces chart/stats) */
.dash__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 4px 0 18px;
}
.dash__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.92);
  font-weight: 500;
  font-size: .96rem;
  line-height: 1.3;
}
.dash__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px; height: 24px;
  border-radius: 999px;
  background: rgba(28,175,182,.15);
  color: var(--teal);
  border: 1px solid rgba(28,175,182,.35);
  flex-shrink: 0;
}
.dash__check svg { width: 14px; height: 14px; }
.dash__quote {
  margin: 0;
  padding-top: 14px;
  border-top: 1px dashed rgba(255,255,255,.10);
  font-family: var(--font-disp);
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: .005em;
  text-align: center;
}
@media (max-width: 720px) {
  .dash__list { grid-template-columns: 1fr; }
}

/* ----------- Promises strip ----------- */
.promises {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
  position: relative;
}
.promises::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 80px; height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--teal), #6FE2DA);
  transform: translateX(-50%);
}
.promises__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.promise {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 6px 12px 6px 0;
  border-right: 1px dashed var(--line);
}
.promise:last-child { border-right: 0; }
.promise__check {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.promise__check svg { width: 22px; height: 22px; }
.promise__check svg path {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  transition: stroke-dashoffset .6s .15s ease-out;
}
.promise.is-revealed .promise__check svg path { stroke-dashoffset: 0; }
.promise strong {
  font-family: var(--font-disp);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.01em;
}
.promise span {
  font-size: .9rem;
  color: var(--mute);
  font-weight: 500;
}

/* ----------- Sections ----------- */
.section {
  padding: 96px 0;
  position: relative;
  isolation: isolate;
}
.section--soft { background: var(--paper-2); }
.section--ink {
  background: var(--ink-2);
  color: var(--white);
  overflow: hidden;
}
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section__head h2 { margin-bottom: 14px; }
.section__head p {
  color: var(--mute);
  font-size: 1.08rem;
}
.section__head--light h2 { color: var(--white); }
.section__head--light p { color: rgba(255,255,255,.78); }

/* ----------- Service cards ----------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(28,175,182,.35);
}
.card__icon {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--teal-soft);
  color: var(--teal-2);
  border-radius: 12px;
  margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 6px; }
.card > p {
  color: var(--mute);
  margin-bottom: 16px;
  font-weight: 500;
}
.card ul li {
  position: relative;
  padding-left: 22px;
  color: var(--ink);
  font-size: .95rem;
  margin-bottom: 8px;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--teal), #6FE2DA);
}
.card--feature {
  background: linear-gradient(180deg, #ffffff 0%, var(--teal-soft) 220%);
  border-color: rgba(28,175,182,.4);
}

/* ----------- Why ----------- */
.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why__item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}
.why__num {
  font-family: var(--font-disp);
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 14px;
  letter-spacing: -.02em;
  display: inline-block;
  perspective: 400px;
}
.why__num span {
  display: inline-block;
  transform: scale(.6);
  opacity: 0;
  transition: transform 700ms cubic-bezier(.34, 1.56, .64, 1) 200ms,
              opacity 400ms ease-out 200ms;
}
.why__item.is-revealed .why__num span {
  transform: scale(1);
  opacity: 1;
}
.why__item h3 { color: var(--white); margin-bottom: 8px; font-size: 1.25rem; }
.why__item p { color: rgba(255,255,255,.78); margin: 0; }

/* ----------- About ----------- */
.about {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.about__copy h2 { margin-bottom: 6px; }
.about__copy .lede {
  font-size: 1.1rem;
  color: var(--mute);
  margin-bottom: 22px;
  font-weight: 500;
}
.about__copy p { color: var(--ink); }
.about__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.about__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.about__photo {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0 auto 22px;
  background: var(--ink-3);
}
.about__photo svg,
.about__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.about__photoCaption {
  position: absolute;
  left: 12px; bottom: 12px;
  background: rgba(14,24,32,.72);
  color: rgba(255,255,255,.88);
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.about__facts li {
  display: grid;
  grid-template-columns: 110px 1fr;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-size: .98rem;
}
.about__facts li:first-child { border-top: 0; }
.about__facts strong {
  font-family: var(--font-disp);
  color: var(--ink);
  font-weight: 700;
}
.about__facts span { color: var(--mute); }

/* ----------- Reviews ----------- */
.reviews {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.review {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  flex: 1 1 300px;
  max-width: 360px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 30px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.review:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(28,175,182,.35);
}
.review__mark {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 3.2rem;
  line-height: .7;
  height: 26px;
  color: var(--teal);
  opacity: .28;
}
.review__stars {
  display: inline-flex;
  gap: 3px;
}
.review__star {
  width: 18px; height: 18px;
  fill: var(--teal);
}
.review__star--off { fill: var(--line); }
.review__quote {
  margin: 0;
  flex: 1;
}
.review__quote p {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.6;
}
.review__person {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.review__name {
  font-family: var(--font-disp);
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}
.review__role {
  font-size: .88rem;
  color: var(--mute);
}

/* ----------- Who ----------- */
.who {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.who__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.who__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.who__item h3 { margin-bottom: 8px; }
.who__item p { color: var(--mute); margin: 0; }

/* ----------- Packages ----------- */
.pkg-group {
  margin-top: 56px;
}
.pkg-group:first-of-type {
  margin-top: 12px;
}
.pkg-group__title {
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -.01em;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pkg-group__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pkg {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pkg:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.pkg--feature {
  border-color: rgba(28,175,182,.5);
  box-shadow: 0 12px 36px -18px rgba(28,175,182,.55), var(--shadow-sm);
  background: linear-gradient(180deg, rgba(28,175,182,.045), var(--white) 35%);
}
.pkg--feature:hover {
  box-shadow: 0 22px 48px -18px rgba(28,175,182,.55), var(--shadow);
}
.pkg__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--teal), #6FE2DA);
  color: var(--ink-3);
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px -6px rgba(28,175,182,.55);
}
.pkg__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pkg__name {
  font-family: var(--font-disp);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.pkg__tagline {
  font-family: var(--font-disp);
  font-weight: 600;
  font-size: .95rem;
  color: var(--teal-2);
  letter-spacing: .005em;
}
.pkg__intro {
  font-size: .92rem;
  color: var(--mute);
  margin-top: 4px;
}
.pkg__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;
}
.pkg__section + .pkg__section {
  padding-top: 14px;
  border-top: 1px dashed var(--line);
}
.pkg__groupLabel {
  display: block;
  font-family: var(--font-disp);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal);
  margin-bottom: 10px;
}
.pkg__groupLabel--ex {
  color: var(--mute);
}
.pkg__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pkg__list li {
  font-size: .94rem;
  color: var(--ink);
  line-height: 1.45;
  position: relative;
  padding-left: 22px;
}
.pkg__list li::before {
  content: "•";
  position: absolute;
  left: 6px; top: 0;
  color: var(--mute);
  font-weight: 700;
}
.pkg__list--check li::before {
  content: "";
  width: 14px; height: 14px;
  left: 0; top: 4px;
  background: rgba(28,175,182,.15);
  border: 1px solid rgba(28,175,182,.35);
  border-radius: 999px;
  color: transparent;
}
.pkg__list--check li::after {
  content: "";
  position: absolute;
  left: 3px; top: 7px;
  width: 8px; height: 5px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}
.pkg__list--ex li {
  color: var(--mute);
}
.pkg__list--ex li::before {
  content: "✕";
  color: rgba(92,107,117,.55);
  font-size: .85rem;
  left: 4px; top: 0;
}
.pkg__cta {
  align-self: stretch;
  text-align: center;
  margin-top: auto;
}

.pkg-addons {
  margin-top: 48px;
  padding: 28px 28px 24px;
  background: var(--white);
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}
.pkg-addons__label {
  display: block;
  font-family: var(--font-disp);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--teal);
  margin-bottom: 14px;
}
.pkg-addons__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pkg-addons__list li {
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper-2, #F1EFEC);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
}

@media (max-width: 980px) {
  .pkg-grid { grid-template-columns: 1fr; gap: 28px; }
  .pkg-group { margin-top: 40px; }
}

/* ----------- Strip (Xero) ----------- */
.strip {
  background: var(--ink);
  color: var(--white);
  padding: 36px 0;
}
.strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.strip__copy h3 {
  color: var(--white);
  margin-bottom: 4px;
  font-size: 1.3rem;
}
.strip__copy p {
  color: rgba(255,255,255,.72);
  margin: 0;
  font-size: .98rem;
}
.strip__badge {
  font-family: var(--font-disp);
  font-weight: 800;
  letter-spacing: .18em;
  background: linear-gradient(135deg, var(--teal), #6FE2DA);
  color: var(--ink-3);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: .85rem;
}
.strip__badge--img {
  background: none;
  padding: 0;
  border-radius: 0;
  height: 56px;
  width: auto;
  display: block;
}

/* ----------- FAQ ----------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item[open] {
  border-color: rgba(28,175,182,.4);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-disp);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 18px 32px 18px 0;
  position: relative;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--teal-2);
  transition: transform .2s ease;
  line-height: 1;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
  margin: 0 0 18px;
  color: var(--mute);
}

/* ----------- Contact ----------- */
.contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.contact__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.contact__card:hover:not(.contact__card--static) {
  transform: translateY(-3px);
  background: rgba(255,255,255,.07);
  border-color: rgba(28,175,182,.5);
  color: var(--white);
}
.contact__card strong {
  font-family: var(--font-disp);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
}
.contact__card span {
  color: rgba(255,255,255,.92);
  font-weight: 500;
  font-size: 1.02rem;
}
.contact__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(28,175,182,.16);
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.contact__icon svg { width: 22px; height: 22px; }

/* ----------- Footer ----------- */
.footer {
  background: var(--ink-3);
  color: rgba(255,255,255,.7);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand img {
  height: 96px;
  width: auto;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 12px;
}
.footer__meta { font-size: .9rem; text-align: right; }
.footer__meta p { margin: 0; }
.footer__meta p + p { margin-top: 4px; }
.footer__meta a { color: var(--teal); }
.footer__meta a:hover { color: var(--white); }
.footer__credit {
  font-size: .8rem;
  color: rgba(255, 255, 255, .55);
  margin-top: 10px !important;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.footer__credit a {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}
.footer__credit a:hover { color: var(--teal); }

/* ----------- Responsive ----------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; padding: 64px 24px 56px; gap: 36px; }
  .hero__promises {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 0;
    padding: 28px 0 24px;
  }
  .hero__promise { padding: 0 18px; }
  .hero__promise:nth-child(2n) { border-right: 0; }
  .hero__promise:nth-child(odd):last-child { grid-column: 1 / -1; border-right: 0; }
  .cards, .why, .who { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 72px 0; }
}

@media (max-width: 720px) {
  .nav__toggle { display: inline-block; }
  .nav__menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__menu a { padding: 14px 8px; border-bottom: 1px solid var(--line); }
  .nav__menu a:last-child { border-bottom: 0; }
  .nav__menu .btn { margin-top: 10px; align-self: flex-start; }

  .cards, .why, .who { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .strip__inner { justify-content: flex-start; }

  .hero__promises { grid-template-columns: 1fr; gap: 18px 0; }
  .hero__promise { border-right: 0; padding: 0 4px; padding-bottom: 18px; border-bottom: 1px dashed rgba(255,255,255,.10); }
  .hero__promise:last-child { border-bottom: 0; padding-bottom: 0; }
  .dash__stats { grid-template-columns: 1fr; }
  .moment { height: 220vh; }
  .moment__progress { bottom: 40px; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__meta { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .why__item .why__num span { opacity: 1 !important; transform: none !important; }
  .promise__check svg path { stroke-dashoffset: 0 !important; }
  [data-words] .word { opacity: 1 !important; filter: none !important; transform: none !important; }
  .moment { height: auto !important; }
  .moment__sticky { position: relative !important; height: auto !important; padding: 80px 0; }
  .moment__lines { display: block; }
  .moment__line { position: relative; opacity: 1 !important; transform: none !important; margin-bottom: 24px; }
  [data-reveal="wipe"] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .section__head h2::after { transform: translateX(-50%) scaleX(1) !important; }
  .section--pin { height: auto !important; }
  .section--pin__sticky { position: static !important; height: auto !important; }
  .section--pin[data-pin-active] .card { opacity: 1 !important; filter: none !important; transform: none !important; }
}
