:root {
  --charcoal: #141312;
  --charcoal-2: #1b1a18;
  --ivory: #f6f2ea;
  --ivory-2: #fbf8f2;
  --champagne: #c0a062;
  --champagne-soft: rgba(192, 160, 98, 0.35);
  --ink: #1d1b18;
  --muted: #6f6a60;
  --muted-dark: #a8a29a;
  --hairline: rgba(29, 27, 24, 0.12);
  --hairline-dark: rgba(246, 242, 234, 0.12);
  --display: "Manrope", "Inter", "Helvetica Neue", Arial, sans-serif;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  padding: 0 48px;
}

.container.narrow {
  max-width: 920px;
  margin: 0 auto;
}

.center {
  text-align: center;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.45s ease, backdrop-filter 0.45s ease, border-color 0.45s ease;
  border-bottom: 1px solid transparent;
  animation: fade-in 1.2s ease 0.1s both;
}

.site-header.scrolled {
  background: rgba(20, 19, 18, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--hairline-dark);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: calc(22px + env(safe-area-inset-top));
  padding-bottom: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.header-logo {
  height: 34px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: var(--display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  white-space: nowrap;
}

.nav-access {
  position: relative;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  text-decoration: none;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

.nav-access::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--champagne);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.nav-access:hover {
  color: var(--champagne);
}

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

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
  text-align: center;
  background-color: var(--charcoal);
  color: var(--ivory);
  padding: clamp(120px, 16vh, 150px) 0 clamp(80px, 12vh, 110px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -4%;
  background-image:
    linear-gradient(180deg, rgba(15, 14, 12, 0.62), rgba(15, 14, 12, 0.88)),
    url("hero.jpg");
  background-size: cover;
  background-position: center;
  animation: hero-zoom 30s ease-in-out infinite alternate;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--champagne);
}

.hero-eyebrow {
  animation: fade-up 1s ease 0.25s both;
}

.hero-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 26px 0 30px;
  animation: fade-up 1s ease 0.45s both;
}

.hero-sub {
  font-size: 1.12rem;
  font-weight: 300;
  color: #d9d4ca;
  max-width: 620px;
  margin: 0 auto 44px;
  animation: fade-up 1s ease 0.65s both;
}

.hero-cta {
  animation: fade-up 1s ease 0.95s both;
}

.hero-micro {
  margin-top: 20px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
  animation: fade-up 1s ease 1.1s both;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 1.05rem 3.2rem;
  border: 1px solid var(--champagne);
  background: transparent;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--light {
  color: var(--ivory);
}

.btn--light:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--charcoal);
}

/* ---------- Sections ---------- */

.section {
  padding: clamp(88px, 10vw, 140px) 0;
}

.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 26px;
}

.lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Section 2 The Idea ---------- */

.idea {
  background: #0d0c0b;
}

.idea .eyebrow {
  color: var(--champagne);
}

.statement {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  line-height: 1.35;
  font-weight: 600;
  color: var(--ivory);
  margin: 38px 0 44px;
}

.statement em {
  font-style: normal;
  font-weight: 400;
  color: var(--muted-dark);
}

.idea .lede {
  color: var(--muted-dark);
}

/* ---------- Section 3 Benefits ---------- */

.benefits {
  background: var(--ivory-2);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.benefit {
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.benefit.reveal.revealed:hover {
  transform: translateY(-5px);
}

.benefit-title,
.step-title,
.channel-name,
.serve-name {
  transition: color 0.35s ease;
}

.benefit:hover .benefit-title {
  color: var(--champagne);
}

.benefit-num,
.step-num {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--champagne);
  display: block;
  margin-bottom: 18px;
}

.benefit-title {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}

.benefit p,
.channel-item p,
.serve-item p,
.step p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ---------- Section notes (timeline lines) ---------- */

.section-note {
  margin-top: 64px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Section 4 Who We Serve ---------- */

.serve {
  background: #fff;
}

.serve .lede {
  margin-bottom: 76px;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid var(--hairline);
}

.serve-item {
  padding-top: 34px;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.serve-item.reveal.revealed:hover {
  transform: translateY(-5px);
}

.serve-item:hover .serve-name {
  color: var(--champagne);
}

.serve-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}

/* ---------- Section 5 Showcase ---------- */

.showcase {
  padding: 0;
  background: #fff;
}

.showcase-figure {
  margin: 0;
  overflow: hidden;
}

.showcase-figure img {
  display: block;
  width: 100%;
  height: clamp(320px, 55vh, 720px);
  object-fit: cover;
}

/* ---------- Section 6 The Private Channel ---------- */

.channel {
  background: var(--charcoal);
  color: var(--ivory);
}

.channel .section-title {
  color: var(--ivory);
}

.channel-text {
  font-size: 1.05rem;
  color: var(--muted-dark);
  max-width: 620px;
  margin: 0 auto 18px;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid var(--hairline-dark);
  margin: 84px 0 68px;
}

.channel-item {
  padding-top: 34px;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.channel-item.reveal.revealed:hover {
  transform: translateY(-5px);
}

.channel-item:hover .channel-name {
  color: var(--ivory);
}

.channel-name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 14px;
}

.channel-item p {
  color: var(--muted-dark);
}

/* ---------- Section 6 How It Works ---------- */

.how {
  background: var(--ivory-2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 76px;
  border-top: 1px solid var(--hairline);
}

.step {
  padding-top: 34px;
  transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.step.reveal.revealed:hover {
  transform: translateY(-5px);
}

.step:hover .step-title {
  color: var(--champagne);
}

.step-title {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}

/* ---------- Section 7 Trust ---------- */

.trust {
  background: #fff;
}

.trust .lede {
  margin-bottom: 22px;
}

/* ---------- Section 8 Final CTA ---------- */

.final {
  background: var(--champagne);
}

.final .lede {
  color: #4f4a42;
}

.final .final-micro {
  color: #5a544a;
}

.final .btn {
  margin-top: 40px;
  padding: 1.25rem 3.6rem;
  color: var(--ivory);
  border-color: var(--charcoal);
  background: var(--charcoal);
}

.final .btn:hover {
  background: #26241f;
  border-color: #26241f;
  color: var(--ivory);
}

.final-micro {
  margin-top: 22px;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--charcoal);
  color: var(--muted-dark);
  padding: 72px 0 64px;
  font-size: 0.88rem;
}

.nav-short {
  display: none;
}

.footer-logo {
  height: 72px;
  width: auto;
  display: block;
  margin: 0 auto 16px;
}

.footer-brand {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 10px;
}

.footer-tag {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 64px;
  text-align: left;
}

.footer-brand-col .footer-logo {
  margin: 0 0 18px;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 18px;
}

.footer-link {
  display: block;
  color: var(--muted-dark);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--ivory);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-dark);
  font-size: 0.78rem;
  color: #6d675e;
}

.footer-bottom p {
  margin: 0;
}

/* ---------- Confirmation modal ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal.open {
  visibility: visible;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 12, 0.68);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--ivory);
  border: 1px solid var(--hairline);
  padding: 52px 48px 44px;
  text-align: left;
  box-shadow: 0 24px 64px rgba(15, 14, 12, 0.35);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--ink);
}

.modal-title {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink);
  margin: 14px 0 28px;
}

.modal-check-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.55;
}

.modal-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--champagne);
  cursor: pointer;
}

.modal-reassure {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
}

.modal-confirm {
  display: block;
  width: 100%;
  margin-top: 34px;
  padding: 1.1rem 24px;
  border: 1px solid var(--champagne);
  background: transparent;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 0.35s ease, color 0.35s ease;
}

.modal-confirm:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--charcoal);
}

.modal-error {
  display: none;
  margin-top: 16px;
  font-size: 0.82rem;
  color: #9a3b2c;
}

.modal-smallprint {
  margin-top: 20px;
  font-size: 0.72rem;
  color: #9a948a;
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

/* ---------- Mobile sticky access ---------- */

.mobile-access {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  background: rgba(20, 19, 18, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--hairline-dark);
  text-align: center;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champagne);
  text-decoration: none;
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(6px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.9s ease;
  transition-delay: var(--d, 0s);
}

.reveal.revealed {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.benefit:nth-child(2),
.step:nth-child(2),
.channel-item:nth-child(2),
.serve-item:nth-child(2) {
  --d: 0.12s;
}

.benefit:nth-child(3),
.step:nth-child(3),
.channel-item:nth-child(3),
.serve-item:nth-child(3) {
  --d: 0.24s;
}

.benefit:nth-child(4) {
  --d: 0.36s;
}

.benefit:hover,
.step:hover,
.channel-item:hover,
.serve-item:hover {
  transition-delay: 0s;
}

::selection {
  background: var(--champagne);
  color: var(--charcoal);
}

a:focus-visible,
button:focus-visible {
  outline: 1px solid var(--champagne);
  outline-offset: 3px;
}

/* ---------- Keyframes ---------- */

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(26px); filter: blur(6px); }
  to { opacity: 1; transform: none; filter: blur(0); }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .container {
    padding: 0 32px;
  }

  .benefit-grid,
  .serve-grid,
  .channel-grid,
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .serve .lede {
    margin-bottom: 56px;
  }

  .channel-grid {
    margin: 64px 0 52px;
  }

  .steps {
    margin-top: 56px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .footer-brand-col {
    grid-column: 1 / -1;
  }

.footer-disclaimer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline-dark);
  text-align: center;
  font-size: 0.75rem;
  color: #6d675e;
  line-height: 1.7;
}

.footer-disclaimer p {
  max-width: 860px;
  margin: 0 auto;
}

.footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }

  .hero {
    padding: 120px 0 90px;
  }

  .section {
    padding: 76px 0;
  }

  .site-footer {
    padding: 56px 0 64px;
  }

  .footer-bottom {
    margin-top: 32px;
    padding-top: 20px;
  }

  .footer-disclaimer {
    margin-top: 32px;
    padding-top: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-brand-col .footer-logo {
    margin: 0 auto 18px;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .modal {
    padding: 0;
  }

  .modal-panel {
    width: 100%;
    max-width: none;
    max-height: none;
    min-height: 100svh;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 24px calc(48px + env(safe-area-inset-bottom));
  }

  .modal-title {
    font-size: 1.15rem;
    margin: 12px 0 24px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .btn {
    padding: 1rem 2.4rem;
    letter-spacing: 0.2em;
  }

  .nav-access {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    padding-bottom: 4px;
  }

  .header-inner {
    padding-top: calc(14px + env(safe-area-inset-top));
    padding-bottom: 14px;
  }

  .header-logo {
    height: 28px;
  }

  .logo-text {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  .nav-full {
    display: none;
  }

  .nav-short {
    display: inline;
  }

  .mobile-access {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero::before {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: blur(0);
    transition: none;
  }

  .hero-eyebrow,
  .hero-title,
  .hero-sub,
  .hero-sub2,
  .hero-cta,
  .hero-micro,
  .site-header {
    animation: none;
  }
}
/* ---------- Legal pages ---------- */

.legal {
  padding: clamp(140px, 18vh, 170px) 0 clamp(90px, 12vh, 120px);
  background: var(--ivory);
}

.legal .container {
  max-width: none;
}

.legal h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.5rem);
  color: var(--ink);
  margin-bottom: 8px;
}

.legal .legal-date {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 48px;
}

.legal h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 44px 0 14px;
}

.legal p,
.legal li {
  font-size: 0.96rem;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.legal ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal a {
  color: var(--champagne);
  text-decoration: none;
  border-bottom: 1px solid var(--champagne-soft);
}
