@font-face {
  font-family: 'Yapari';
  src: url('fonts/YapariTrial-ExtraBold.subset.woff2') format('woff2');
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.72);
  --white-faint: rgba(255, 255, 255, 0.45);
  --display: 'Yapari', 'Inter', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-snap-type: y proximity; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.intro-lock {
  overflow: hidden;
  height: 100vh;
}

a { color: inherit; text-decoration: none; }

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.wave-bg {
  opacity: 1;
  background: #000;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(7px) brightness(0.9) contrast(1.08) saturate(0.85);
  transform: scale(1.06);
}

.bg-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.10) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.black-bg {
  opacity: 0;
  background: var(--black);
}

.svc-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 74% 58% at 32% 2%, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.05) 42%, rgba(0,0,0,0) 70%),
    radial-gradient(ellipse 60% 46% at 88% 20%, rgba(205,210,220,0.06) 0%, rgba(0,0,0,0) 60%),
    radial-gradient(ellipse 70% 55% at 82% 92%, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 65%),
    linear-gradient(160deg, #050506 0%, #0c0c0e 45%, #060607 100%);
  overflow: hidden;
}

.svc-bg::before {
  content: '';
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 58px 58px;
  opacity: 0.4;
  animation: svcBgDrift 60s linear infinite;
}

.svc-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.5) 100%),
    linear-gradient(100deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 30%);
  pointer-events: none;
}

@keyframes svcBgDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-58px, -58px, 0); }
}

.grain {
  position: fixed;
  inset: -120px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 1.1s steps(6) infinite;
}

@keyframes grainShift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, -3%); }
  40% { transform: translate(3%, 2%); }
  60% { transform: translate(-3%, 3%); }
  80% { transform: translate(2%, -2%); }
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px clamp(28px, 8vw, 120px);
  max-width: 1440px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}

.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo-mark-o {
  display: none;
  width: 44px;
  height: auto;
}

@media (max-width: 640px) {
  .logo-center .logo-mark { display: none; }
  .logo-center .logo-mark-o { display: block; }

  .nav { padding: 20px 18px; }
  .nav-left, .nav-right { gap: 14px; }
  .nav-link, .nav-handle { font-size: 12px; }
  .logo-mark-o { width: 32px; }
  .ig-icon { width: 12px; height: 12px; }
}

.nav {
  animation: navSettle 0.9s cubic-bezier(.22,.61,.36,1) both;
}

@keyframes navSettle {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

.logo-mark {
  width: clamp(120px, 13vw, 168px);
  height: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--white-soft);
  transition: color 0.25s ease;
}

.nav-link:hover { color: var(--white); }

.nav-link.is-active { color: var(--white); }

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ig-icon {
  flex-shrink: 0;
}

.nav-handle {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--white-soft);
  transition: color 0.25s ease;
}

.nav-handle:hover { color: var(--white); }

.floating-cta {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white-soft);
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.floating-cta:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
}

.floating-cta-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}

.services-body .floating-cta,
.contact-body .floating-cta {
  top: clamp(96px, 9vh, 132px);
}

@media (max-width: 640px) {
  .floating-cta {
    top: auto;
    bottom: 18px;
    left: auto;
    right: 16px;
    transform: none;
    padding: 9px 15px;
    font-size: 11px;
    height: auto;
  }

  .services-body .floating-cta,
  .contact-body .floating-cta {
    top: auto;
    height: auto;
  }

  .contact-body .floating-cta { display: none; }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1), transform 0.8s cubic-bezier(.22,.61,.36,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-immersive {
  filter: blur(16px);
  transform: translateY(28px) scale(0.94);
  transition: opacity 1.1s cubic-bezier(.16,.8,.24,1),
              transform 1.1s cubic-bezier(.16,.8,.24,1),
              filter 1.1s cubic-bezier(.16,.8,.24,1);
  will-change: transform, filter, opacity;
}

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

.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 620px;
  height: 620px;
  margin-left: -310px;
  margin-top: -310px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.035) 42%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transform: translate3d(var(--gx, -1000px), var(--gy, -1000px), 0);
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
  will-change: transform;
}

.cursor-glow.is-active { opacity: 1; }

@media (hover: none), (pointer: coarse) {
  .cursor-glow { display: none; }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.65;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.scroll-cue.is-hidden { opacity: 0; }

.scroll-cue-label {
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white-faint);
}

.scroll-cue-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
  transform-origin: top;
  animation: scrollCuePulse 1.8s ease-in-out infinite;
}

@keyframes scrollCuePulse {
  0% { transform: scaleY(0.3); opacity: 0.3; }
  50% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0.3); opacity: 0.3; }
}

.magnetic {
  display: inline-flex;
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1);
  will-change: transform;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 120px clamp(28px, 8vw, 120px) 100px;
  scroll-snap-align: start;
}

.hero-grid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(180px, 1fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: end;
}

.hero-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--white);
  max-width: 30ch;
}

.hero-headline .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(-30px);
  filter: blur(6px);
  animation: wordFall 0.75s cubic-bezier(.22,.61,.36,1) forwards;
}

@keyframes wordFall {
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-self: end;
}

.hero-status {
  font-family: var(--body);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--white-soft);
  max-width: 34ch;
}

.hero-handle {
  font-family: var(--body);
  font-size: 13px;
  color: var(--white-faint);
  width: fit-content;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.hero-handle:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 780px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-headline { max-width: none; }
  .hero-box { justify-self: start; }
}

.hero-centered {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 980px;
  margin: 0 auto;
}

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white-soft);
  margin-bottom: -6px;
}

.home-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}

.hero-logo {
  display: inline-flex;
  color: var(--white);
  opacity: 0;
  transform: translateY(-36px) scale(0.96);
  filter: blur(8px);
  animation: logoDrop 0.9s cubic-bezier(.22,.61,.36,1) 0.1s forwards;
}

.hero-logo .logo-mark {
  width: clamp(190px, 26vw, 320px);
  height: auto;
  display: block;
}

@keyframes logoDrop {
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.hero-centered .hero-headline {
  max-width: 26ch;
  margin: 0 auto;
}

.hero-centered .hero-box {
  align-items: center;
  justify-self: auto;
}

.accent-serif {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--white-soft);
  letter-spacing: 0.002em;
}

.optimize {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: clamp(90px, 12vh, 160px) clamp(28px, 8vw, 120px);
  text-align: center;
  scroll-snap-align: start;
}

.tw-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.tw-sub-label {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-faint);
}

.tw-sub-arrow {
  font-size: 13px;
  color: var(--white-faint);
  animation: subArrowBob 1.8s ease-in-out infinite;
}

@keyframes subArrowBob {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(5px); opacity: 1; }
}

.meaning {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: clamp(40px, 6vh, 80px) clamp(28px, 8vw, 120px) clamp(60px, 8vh, 110px);
  text-align: center;
  scroll-snap-align: start;
}

.meaning-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-faint);
}

.meaning-eyebrow-line {
  width: 26px;
  height: 1px;
  background: var(--white-faint);
  display: inline-block;
}

.meaning-quote {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 3.2vw, 42px);
  line-height: 1.4;
  color: var(--white);
  max-width: 24ch;
}

.meaning-quote .accent-serif {
  font-size: 1.12em;
}

.tw-heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 4.4vw, 54px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--white);
  max-width: 20ch;
}

.tw-wrap {
  display: inline;
}

.tw-word .tw-char {
  background: linear-gradient(180deg, #f8f8f8 0%, #cfcfcf 28%, #6f6f6f 50%, #e9e9e9 68%, #8d8d8d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #c0c0c0;
}

.tw-char {
  display: inline-block;
  white-space: pre;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.tw-char-in {
  opacity: 0;
  transform: translateY(6px);
}

.tw-char-out {
  opacity: 0;
  transform: translateY(-4px);
}

.method {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: clamp(50px, 6vh, 90px) clamp(28px, 8vw, 120px) clamp(80px, 9vh, 130px);
  scroll-snap-align: start;
}

.method-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.method-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white-faint);
  margin-bottom: 16px;
}

.method-eyebrow-line {
  width: 26px;
  height: 1px;
  background: var(--white-faint);
  display: inline-block;
}

.method-heading {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(26px, 3.4vw, 46px);
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}

.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.method-card {
  padding: 26px 24px 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.35s cubic-bezier(.22,.61,.36,1), border-color 0.35s ease, background 0.35s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.045);
}

.method-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.method-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1;
}

.method-kicker {
  font-family: var(--body);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-faint);
}

.method-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 14px;
}

.method-body {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-soft);
}

.reveal-fall {
  opacity: 0;
  transform: translateY(-70px);
  transition: opacity 0.9s cubic-bezier(.16,.8,.24,1), transform 0.9s cubic-bezier(.16,.8,.24,1);
  will-change: transform, opacity;
}

.reveal-fall.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-pop {
  opacity: 0;
  transform: scale(0.92) translateY(10px);
  transition: opacity 0.6s cubic-bezier(.22,.61,.36,1), transform 0.6s cubic-bezier(.22,.61,.36,1);
}

.reveal-pop.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.reveal-slide {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.55s cubic-bezier(.22,.61,.36,1), transform 0.55s cubic-bezier(.22,.61,.36,1);
}

.reveal-slide.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-slide-right {
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.55s cubic-bezier(.22,.61,.36,1), transform 0.55s cubic-bezier(.22,.61,.36,1);
}

.reveal-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.method-card:nth-child(2) { transition-delay: 0.14s; }
.method-card:nth-child(3) { transition-delay: 0.28s; }

@media (max-width: 860px) {
  .method-grid { grid-template-columns: 1fr; }
  .method-card:nth-child(2), .method-card:nth-child(3) { transition-delay: 0s; }
}

.home-cta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: clamp(50px, 7vh, 90px) clamp(28px, 8vw, 120px) clamp(70px, 8vh, 110px);
  text-align: center;
  scroll-snap-align: start;
}

.home-cta-headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(34px, 5.6vw, 72px);
  line-height: 1.1;
  color: var(--white);
}

.home-cta-sub {
  font-family: var(--body);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  color: var(--white-soft);
  max-width: 40ch;
}

.home-cta-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 6px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 8px;
  transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.home-btn-primary {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--white);
}

.home-btn-primary:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.home-btn-ghost {
  background: transparent;
  color: var(--white-soft);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.home-btn-ghost:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.page-transition.is-active {
  opacity: 1;
  pointer-events: all;
}

.page-transition-logo {
  width: 46px;
  height: auto;
  opacity: 0.92;
  animation: pageTransitionSpin 1.3s linear infinite;
}

.page-transition-bar {
  position: relative;
  width: 180px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.page-transition-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 60%;
  background: var(--white);
  border-radius: inherit;
  transform: translateX(-100%);
}

.page-transition.is-active .page-transition-bar-fill {
  animation: pageTransitionLoop 1.1s ease-in-out infinite;
}

@keyframes pageTransitionLoop {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(45%); }
  100% { transform: translateX(166%); }
}

@keyframes pageTransitionSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.intro-overlay.is-playing {
  opacity: 1;
}

.intro-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.intro-overlay-logo {
  width: clamp(220px, 34vw, 460px);
  height: auto;
  color: var(--white);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.9s cubic-bezier(.22,.61,.36,1);
}

.intro-overlay-logo.is-in {
  opacity: 1;
  transform: scale(1);
}

body.intro-hide .nav,
body.intro-hide .floating-cta,
body.intro-hide .home-hero-badge,
body.intro-hide #heroHeadline,
body.intro-hide .hero-box,
body.intro-hide .scroll-cue {
  opacity: 0 !important;
  pointer-events: none !important;
}

.nav,
.floating-cta,
.home-hero-badge,
#heroHeadline,
.hero-box {
  transition: opacity 0.7s ease;
}

.outro {
  position: relative;
  z-index: 2;
  min-height: 60svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: clamp(70px, 9vh, 130px) clamp(28px, 8vw, 120px);
  text-align: center;
  scroll-snap-align: start;
}

.quote {
  font-family: var(--body);
  font-style: italic;
  font-size: clamp(14px, 1.3vw, 17px);
  color: var(--white-faint);
  max-width: 46ch;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.quote-attr {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.3);
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--white-faint);
}

.site-footer a {
  color: var(--white-soft);
  transition: color 0.25s ease;
}

.site-footer a:hover { color: var(--white); }

@media (min-width: 1024px) {
  .nav { max-width: min(2000px, 92vw); padding-top: clamp(36px, 2.2vw, 52px); padding-bottom: clamp(36px, 2.2vw, 52px); }
  .logo-mark { width: clamp(120px, 9vw, 260px); }
  .nav-link, .nav-handle { font-size: clamp(13px, 0.95vw, 24px); }
  .nav-left, .nav-right { gap: clamp(28px, 1.6vw, 44px); }
  .ig-icon { width: clamp(14px, 0.9vw, 22px); height: clamp(14px, 0.9vw, 22px); }

  .floating-cta { font-size: clamp(12px, 0.8vw, 18px); padding: clamp(10px, 0.7vw, 17px) clamp(20px, 1.4vw, 36px); gap: clamp(8px, 0.5vw, 12px); }
  .floating-cta-dot { width: clamp(5px, 0.35vw, 8px); height: clamp(5px, 0.35vw, 8px); }

  .hero-grid { max-width: min(2000px, 92vw); }
  .hero-center { max-width: min(1300px, 68vw); }
  .home-hero-badge { font-size: clamp(12px, 0.75vw, 17px); padding: clamp(10px, 0.65vw, 14px) clamp(19px, 1.3vw, 26px); }
  .hero-logo .logo-mark { width: clamp(190px, 18vw, 420px); }
  .hero-headline { font-size: clamp(28px, 3.6vw, 108px); }
  .hero-status { font-size: clamp(15px, 1.3vw, 22px); max-width: 40ch; }
  .hero-handle { font-size: clamp(13px, 0.95vw, 24px); }

  .tw-heading { font-size: clamp(26px, 5vw, 112px); }
  .tw-sub-label { font-size: clamp(11px, 0.7vw, 15px); }

  .meaning-quote { font-size: clamp(24px, 3.8vw, 82px); max-width: 30ch; }
  .meaning-eyebrow { font-size: clamp(12px, 0.75vw, 17px); }

  .method-inner { max-width: min(1600px, 78vw); }
  .method-heading { font-size: clamp(28px, 3.7vw, 70px); margin-bottom: clamp(48px, 3.4vw, 78px); }
  .method-eyebrow { font-size: clamp(12px, 0.75vw, 17px); }
  .method-grid { gap: clamp(20px, 1.6vw, 38px); }
  .method-card { padding: clamp(28px, 2.2vw, 50px) clamp(26px, 2vw, 46px) clamp(30px, 2.3vw, 52px); }
  .method-num { font-size: clamp(22px, 1.8vw, 38px); }
  .method-kicker { font-size: clamp(10.5px, 0.65vw, 14px); }
  .method-title { font-size: clamp(19px, 1.5vw, 30px); }
  .method-body { font-size: clamp(15px, 1vw, 20px); line-height: 1.75; }

  .home-cta-headline { font-size: clamp(34px, 6.4vw, 128px); }
  .home-cta-sub { font-size: clamp(15px, 1.1vw, 22px); max-width: 48ch; }
  .home-btn { font-size: clamp(13px, 0.85vw, 20px); padding: clamp(14px, 1vw, 22px) clamp(26px, 1.9vw, 42px); }

  .quote { font-size: clamp(15px, 1.4vw, 24px); max-width: 56ch; }
  .site-footer { font-size: clamp(12px, 0.7vw, 15px); }
}
