@font-face {
  font-family: 'Geologica';
  src: url('assets/fonts/geologica-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

@font-face {
  font-family: 'Bodoni Moda';
  src: url('assets/fonts/bodoni-moda-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 500 600;
  font-display: swap;
}

@font-face {
  font-family: 'Bodoni Moda';
  src: url('assets/fonts/bodoni-moda-italic-latin.woff2') format('woff2');
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #0b090a;
  --ink-soft: #161214;
  --paper: #f2efe9;
  --paper-deep: #e7e1d8;
  --white: #fffdf9;
  --pink: #f71964;
  --pink-hot: #ff2c73;
  --pink-deep: #ab164b;
  --muted: #9c9698;
  --line: rgba(255, 255, 255, 0.14);
  --pad: clamp(24px, 5vw, 80px);
  --display: 'Geologica', sans-serif;
  --serif: 'Bodoni Moda', Georgia, serif;
  --ease-out: cubic-bezier(.2, .78, .2, 1);
  --ease-spring: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
  overflow-x: clip;
  color-scheme: dark;
}

body {
  position: relative;
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  font-kerning: normal;
  font-optical-sizing: auto;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body::before {
  content: '';
  position: fixed;
  z-index: 160;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,.42) .45px, transparent .55px),
    radial-gradient(rgba(255,255,255,.24) .35px, transparent .5px);
  background-position: 0 0, 3px 5px;
  background-size: 7px 7px, 11px 11px;
  mix-blend-mode: soft-light;
  opacity: .035;
}

.ambient-glow {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(247,25,100,.13), rgba(247,25,100,.035) 42%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(calc(var(--glow-x, -400px) - 50%), calc(var(--glow-y, -400px) - 50%), 0);
  transition: opacity .45s ease;
  will-change: transform;
}
.ambient-glow.is-active { opacity: 1; }

body.menu-open { overflow: hidden; }

::selection { color: var(--white); background: var(--pink); }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; touch-action: manipulation; -webkit-tap-highlight-color: rgba(247,25,100,.2); }
button { color: inherit; font: inherit; touch-action: manipulation; -webkit-tap-highlight-color: rgba(247,25,100,.2); }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
section[id] { scroll-margin-top: calc(82px + env(safe-area-inset-top)); }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 4px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus, .skip-link:focus-visible { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(84px + env(safe-area-inset-top));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-right: max(var(--pad), env(safe-area-inset-right));
  padding-top: env(safe-area-inset-top);
  padding-left: max(var(--pad), env(safe-area-inset-left));
  border-bottom: 1px solid transparent;
  transition: height 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.scroll-progress { position: absolute; top: env(safe-area-inset-top); right: 0; left: 0; height: 1px; background: var(--pink); opacity: .72; transform: scaleX(0); transform-origin: left center; will-change: transform; }
@keyframes page-progress { to { transform: scaleX(1); } }
@supports (animation-timeline: scroll()) {
  .scroll-progress { animation: page-progress linear both; animation-timeline: scroll(root block); }
}

.site-header.is-scrolled {
  height: calc(68px + env(safe-area-inset-top));
  background: rgba(11, 9, 10, 0.84);
  border-bottom-color: rgba(255,255,255,0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.11em;
  min-height: 44px;
  transition: color .2s ease;
}
.brand:hover { color: var(--pink); }

.brand-mark { width: 26px; height: 26px; overflow: visible; }
.brand-mark path { fill: currentColor; }
.brand-mark circle { fill: var(--pink); transform-box: fill-box; transform-origin: center; animation: brand-pulse 3.8s ease-in-out infinite; }
@keyframes brand-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.72); opacity: .65; } }

.desktop-nav { display: flex; align-items: center; gap: 38px; }
.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.desktop-nav a:hover, .desktop-nav a.is-active { color: var(--white); }
.desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 17px 11px 20px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.25s ease, transform 0.25s ease;
  min-height: 44px;
}
.header-cta:hover { background: var(--pink); color: white; transform: translateY(-2px); }
.header-cta:active { transform: translateY(0) scale(.98); }
.header-cta svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; transition: transform .35s var(--ease-spring); }
.header-cta:hover svg { transform: translateX(3px); }

.menu-button {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-button span { display: block; width: 24px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .3s ease; }
.menu-button:focus-visible { border-radius: 8px; }
.menu-open .menu-button span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-open .menu-button span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  padding: 110px var(--pad) 50px;
  padding-top: max(110px, calc(78px + env(safe-area-inset-top)));
  padding-right: max(var(--pad), env(safe-area-inset-right));
  padding-bottom: max(50px, env(safe-area-inset-bottom));
  padding-left: max(var(--pad), env(safe-area-inset-left));
  background: var(--pink);
  overscroll-behavior: contain;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility 0s linear .35s;
}
.menu-open .mobile-menu { opacity: 1; visibility: visible; transition-delay: 0s; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { display: flex; justify-content: space-between; align-items: baseline; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.32); font-size: clamp(42px, 12vw, 76px); font-weight: 700; letter-spacing: -.06em; opacity: 0; transform: translateY(18px); transition: color .25s ease, opacity .45s ease, transform .55s var(--ease-spring); }
.menu-open .mobile-menu nav a { opacity: 1; transform: translateY(0); }
.menu-open .mobile-menu nav a:nth-child(2) { transition-delay: .06s; }
.menu-open .mobile-menu nav a:nth-child(3) { transition-delay: .12s; }
.mobile-menu nav a:hover, .mobile-menu nav a.is-active { color: var(--ink); }
.menu-open .site-header :focus-visible { outline-color: var(--white); }
.mobile-menu nav span { font-size: 12px; font-weight: 400; letter-spacing: .1em; }
.mobile-menu > p { margin-top: auto; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }

.hero {
  position: relative;
  min-height: 850px;
  height: max(100vh, 850px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(440px, .94fr);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 8.333vw 100%,
    var(--ink);
}

.hero::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,.28));
}

.hero-glow {
  position: absolute;
  z-index: 0;
  top: 13%;
  right: 2%;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,25,100,.28), rgba(122,9,52,.1) 38%, transparent 68%);
  filter: blur(12px);
  opacity: .9;
  animation: hero-glow 8s ease-in-out infinite;
}
@keyframes hero-glow { 0%, 100% { transform: translate3d(0, 0, 0) scale(.96); opacity: .7; } 50% { transform: translate3d(-2%, 2%, 0) scale(1.06); opacity: 1; } }

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 132px 0 60px var(--pad);
}

.eyebrow, .section-kicker {
  margin: 0;
  color: rgba(255,255,255,.6);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 18px; margin-bottom: 36px; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--pink); }
.eyebrow span { color: rgba(255,255,255,.52); }

.hero-title {
  margin: 0;
  font-size: clamp(62px, 7.25vw, 118px);
  font-weight: 650;
  line-height: .87;
  letter-spacing: -.075em;
}
.title-line { display: block; white-space: nowrap; }
.title-line:nth-child(2) { padding-left: .42em; }
.title-line:nth-child(3) { padding-left: .06em; }
.hero-title em {
  display: inline-block;
  margin-right: .04em;
  color: var(--pink);
  font-family: var(--serif);
  font-size: 1.12em;
  font-weight: 500;
  letter-spacing: -.045em;
}
.title-dot { color: var(--pink); }

.hero-bottom {
  width: min(520px, 84%);
  display: flex;
  align-items: flex-end;
  gap: 30px;
  margin-top: 58px;
  margin-left: clamp(0px, 6vw, 92px);
}
.hero-bottom p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; font-weight: 300; line-height: 1.7; }
.circle-link { flex: 0 0 auto; width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; transition: border-color .25s ease, background .25s ease, transform .25s ease; }
.circle-link:hover { border-color: var(--pink); background: var(--pink); transform: translateY(4px); }
.circle-link svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.5; transition: transform .35s var(--ease-spring); }
.circle-link:hover svg { transform: translateY(3px); }

.hero-stage {
  position: relative;
  z-index: 2;
  min-width: 0;
  height: 100%;
  overflow: hidden;
}
.hero-stage::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 25%;
  background: linear-gradient(transparent, var(--ink));
  pointer-events: none;
}

[data-parallax] { transform: translate(var(--px, 0), var(--py, 0)); transition: transform .65s cubic-bezier(.2,.8,.2,1); }

.orbit { position: absolute; border: 1px solid rgba(247,25,100,.24); border-radius: 50%; }
.orbit-one { width: 650px; height: 650px; top: 13%; left: 0; }
.orbit-two { width: 820px; height: 820px; top: 4%; left: -84px; border-color: rgba(255,255,255,.07); }

.hero-phone {
  position: absolute;
  z-index: 2;
  top: 16%;
  left: 13%;
  width: min(380px, 55%);
  aspect-ratio: .52;
  filter: drop-shadow(0 45px 70px rgba(0,0,0,.55));
  transform: translate(var(--px, 0), var(--py, 0)) rotate(5deg);
}
.phone-shell { width: 100%; height: 100%; padding: 12px; border: 1px solid rgba(255,255,255,.3); border-radius: 50px; background: linear-gradient(145deg, #2f2d2e, #050505 8%, #090809); box-shadow: inset 0 0 0 3px #030303, inset 0 0 0 4px rgba(255,255,255,.16); overflow: hidden; animation: phone-float 7s ease-in-out infinite; }
@keyframes phone-float { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(0, -10px, 0); } }
.phone-top { height: 42px; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; font-size: 10px; font-weight: 600; }
.phone-top i { width: 82px; height: 25px; border-radius: 20px; background: #000; }
.phone-top span:last-child { font-size: 8px; letter-spacing: 2px; }
.phone-appbar { height: 52px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 14px; }
.app-mini { width: 29px; height: 29px; border-radius: 8px; overflow: hidden; }
.phone-appbar strong { font-size: 13px; letter-spacing: .1em; }
.phone-more { justify-self: end; font-size: 12px; letter-spacing: .08em; }
.story-portrait { position: relative; height: calc(100% - 148px); border-radius: 32px; overflow: hidden; background: #111; }
.story-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 34%; filter: saturate(.62) contrast(1.08); }
.portrait-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 28%, rgba(4,2,3,.16) 52%, #080607 94%); }
.story-label { position: absolute; bottom: 26px; left: 22px; right: 22px; }
.story-label small { color: var(--pink-hot); font-size: 9px; font-weight: 700; letter-spacing: .16em; }
.story-label strong { display: block; margin-top: 8px; font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 500; line-height: .95; letter-spacing: -.04em; }
.phone-input { position: absolute; right: 27px; bottom: 25px; left: 27px; height: 45px; display: flex; justify-content: space-between; align-items: center; padding: 0 7px 0 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(20,17,18,.92); font-size: 10px; color: rgba(255,255,255,.54); backdrop-filter: blur(12px); }
.phone-input b { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--pink); font-size: 14px; }

.message { position: absolute; z-index: 4; display: flex; align-items: center; gap: 13px; padding: 13px 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: rgba(23,18,20,.8); box-shadow: 0 20px 45px rgba(0,0,0,.3); backdrop-filter: blur(16px); }
.message-one { top: 35%; left: 0; }
.message-two { right: 1%; bottom: 25%; }
.message small { display: block; margin-bottom: 4px; color: rgba(255,255,255,.62); font-size: 8px; letter-spacing: .14em; }
.message p { margin: 0; font-family: var(--serif); font-size: 14px; }
.avatar { width: 36px; height: 36px; flex: 0 0 auto; border-radius: 50%; background: url('assets/feva/character-avatar-128.webp') center / cover; }
.signal { position: relative; width: 36px; height: 36px; flex: 0 0 auto; border: 1px solid var(--pink); border-radius: 50%; }
.signal::after { content: ''; position: absolute; inset: 10px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 18px var(--pink); }
.signal::before { content: ''; position: absolute; inset: -1px; border: 1px solid var(--pink); border-radius: 50%; animation: signal-ping 2.8s ease-out infinite; }
@keyframes signal-ping { 0% { transform: scale(.65); opacity: .8; } 75%, 100% { transform: scale(1.45); opacity: 0; } }
.feva-badge { position: absolute; z-index: 5; top: 18%; right: 8%; width: 82px; padding: 7px; border: 1px solid rgba(255,255,255,.18); border-radius: 25px; background: rgba(255,255,255,.08); box-shadow: 0 18px 50px rgba(0,0,0,.3); backdrop-filter: blur(15px); transform: translate(var(--px, 0), var(--py, 0)) rotate(9deg); }
.feva-badge img { border-radius: 19px; animation: badge-breathe 4.5s ease-in-out infinite; }
@keyframes badge-breathe { 0%, 100% { transform: scale(1); } 50% { transform: scale(.95); } }
.stage-note { position: absolute; right: 2%; bottom: 10%; margin: 0; color: rgba(255,255,255,.36); font-size: 10px; line-height: 1.7; letter-spacing: .19em; text-align: right; }
.hero-index { position: absolute; z-index: 3; right: var(--pad); bottom: 34px; color: rgba(255,255,255,.18); font-family: var(--serif); font-size: 16px; }

.ticker { position: relative; z-index: 5; overflow: hidden; padding: 18px 0; color: var(--ink); background: var(--pink); transform: rotate(-1.1deg) scale(1.02); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 30px; transform: translate3d(var(--ticker-x, 0px), 0, 0); will-change: transform; }
.ticker span { font-size: 13px; font-weight: 650; letter-spacing: .11em; }
.ticker i { font-style: normal; font-size: 12px; }

.product {
  position: relative;
  z-index: 4;
  padding: 150px var(--pad) 180px;
  color: var(--ink);
  background: var(--paper);
}
.section-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; padding-bottom: 86px; border-bottom: 1px solid rgba(11,9,10,.18); }
.section-kicker { color: rgba(11,9,10,.64); }
.section-kicker.light { color: rgba(255,255,255,.62); }
.section-intro > div { display: flex; justify-content: space-between; gap: 30px; }
.intro-copy { max-width: 850px; margin: 0; font-size: clamp(24px, 2.7vw, 43px); font-weight: 450; line-height: 1.1; letter-spacing: -.04em; }
.intro-note { align-self: end; margin: 0; color: rgba(11,9,10,.62); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.feva-heading { display: flex; justify-content: space-between; align-items: flex-end; padding: 70px 0 78px; }
.feva-name { display: flex; align-items: center; gap: 28px; }
.feva-name img { width: clamp(72px, 8vw, 118px); border-radius: 25%; box-shadow: 0 22px 55px rgba(247,25,100,.22); }
.feva-name h2 { margin: 0; font-size: clamp(74px, 10.5vw, 170px); line-height: .74; letter-spacing: -.085em; }
.feva-heading > p { margin: 0; font-size: 12px; font-weight: 600; line-height: 1.6; letter-spacing: .08em; text-align: right; }
.feva-heading em { color: var(--pink); font-family: var(--serif); font-size: 1.35em; font-weight: 500; letter-spacing: -.02em; }

.product-showcase { position: relative; min-height: 700px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 7vw; padding: 70px clamp(30px, 6vw, 100px); overflow: hidden; color: var(--white); background: radial-gradient(circle at 78% 46%, rgba(247,25,100,.11), transparent 32%), var(--ink); border: 1px solid rgba(11,9,10,.08); border-radius: 4px; box-shadow: 0 40px 90px rgba(25,16,18,.12); }
.product-showcase::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,.025), transparent 34%); }
.showcase-copy { position: relative; z-index: 2; }
.live-pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; color: rgba(255,255,255,.64); font-size: 9px; letter-spacing: .14em; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 10px var(--pink); animation: live-dot 2s ease-in-out infinite; }
@keyframes live-dot { 0%, 100% { transform: scale(.78); opacity: .55; } 50% { transform: scale(1.18); opacity: 1; } }
.showcase-copy h3 { margin: 26px 0 22px; font-size: clamp(40px, 4.2vw, 68px); font-weight: 550; line-height: .98; letter-spacing: -.065em; }
.showcase-copy > p { max-width: 460px; margin: 0; color: rgba(255,255,255,.55); font-size: 14px; font-weight: 300; line-height: 1.75; }
.text-link { min-height: 44px; display: inline-flex; gap: 40px; align-items: center; margin-top: 36px; padding-top: 8px; border-bottom: 1px solid rgba(255,255,255,.5); font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; transition: border-color .25s ease; }
.text-link span { color: var(--pink); font-size: 18px; transition: transform .25s ease; }
.text-link:hover { border-color: var(--pink); }
.text-link:hover span { transform: translateY(3px); }

.screen-gallery { position: relative; min-height: 570px; cursor: ew-resize; user-select: none; touch-action: pan-y; perspective: 1000px; }
.screen-gallery.is-dragging { cursor: grabbing; }
.screen-gallery.is-dragging .screen-card { transition: none; }
.screen-gallery:focus-visible { outline: 2px solid var(--pink); outline-offset: 12px; border-radius: 6px; }
.screen-card { position: absolute; top: 50%; left: 50%; width: clamp(230px, 22vw, 335px); aspect-ratio: 1080 / 1920; margin: 0; overflow: hidden; border: 7px solid #1f1b1d; border-radius: 36px; background: #171315; box-shadow: 0 42px 75px rgba(0,0,0,.48); pointer-events: none; transition: transform .65s cubic-bezier(.2,.82,.2,1), filter .5s ease, opacity .5s ease, z-index 0s .3s; }
.screen-card img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.card-main { z-index: 3; transform: translate(calc(-50% + var(--drag-x, 0px)),-50%) rotate(0deg) scale(1); filter: brightness(.92); }
.card-back-left { z-index: 1; transform: translate(calc(-112% + var(--drag-x, 0px)),-48%) rotate(-10deg) scale(.83); filter: brightness(.45); }
.card-back-right { z-index: 2; transform: translate(calc(12% + var(--drag-x, 0px)),-47%) rotate(9deg) scale(.88); filter: brightness(.55); }
.screen-card:hover.card-main { transform: translate(calc(-50% + var(--drag-x, 0px)),-52%) rotate(0) scale(1.02); }
.gallery-controls { position: absolute; z-index: 8; left: 0; bottom: -14px; display: flex; gap: 8px; }
.gallery-controls button { width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; color: var(--white); background: transparent; cursor: pointer; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.gallery-controls button:hover, .gallery-controls button:focus-visible { color: white; border-color: var(--pink); background: var(--pink); }
.gallery-controls button:active { transform: scale(.94); }
.gallery-status { position: absolute; z-index: 8; left: 104px; bottom: -2px; display: flex; align-items: center; margin: 0; color: rgba(255,255,255,.62); font-family: var(--serif); font-size: 13px; font-variant-numeric: tabular-nums; letter-spacing: .08em; white-space: nowrap; }
.gallery-status span { color: var(--white); }
.gallery-status .gallery-label { margin-left: 12px; padding-left: 12px; border-left: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.48); font-family: var(--display); font-size: 8px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.gallery-hint { position: absolute; right: 0; bottom: -4px; color: rgba(255,255,255,.62); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.gallery-hint span { margin-left: 10px; color: var(--pink); font-size: 13px; }

.experience { padding: 160px var(--pad) 180px; background: var(--ink); }
.experience-header { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; margin-bottom: 90px; }
.experience-header h2 { max-width: 920px; margin: 0; font-size: clamp(48px, 6vw, 94px); font-weight: 550; line-height: .95; letter-spacing: -.07em; }
.experience-header h2 em { color: var(--pink); font-family: var(--serif); font-weight: 500; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.15); }
.feature { position: relative; min-height: 580px; display: flex; flex-direction: column; padding: clamp(25px, 3.2vw, 52px); overflow: hidden; background: var(--ink); isolation: isolate; }
.feature::after { content: ''; position: absolute; z-index: -1; inset: 0; pointer-events: none; background: radial-gradient(circle at 68% 34%, rgba(247,25,100,.11), transparent 44%); opacity: 0; transform: scale(.92); transition: opacity .55s ease, transform .7s var(--ease-out); }
.feature-large, .feature-wide { grid-column: span 2; min-height: 500px; }
.feature-number { position: absolute; top: 28px; right: 30px; color: rgba(255,255,255,.25); font-family: var(--serif); font-size: 12px; }
.feature-copy { position: relative; z-index: 2; max-width: 480px; margin-top: auto; }
.feature-copy h3 { margin: 0 0 14px; font-size: clamp(27px, 2.4vw, 38px); font-weight: 520; letter-spacing: -.045em; }
.feature-copy p { max-width: 420px; margin: 0; color: rgba(255,255,255,.62); font-size: 13px; font-weight: 300; line-height: 1.7; }
.feature-visual { flex: 1; min-height: 280px; position: relative; display: grid; place-items: center; }

.visual-memory { width: 70%; min-width: 620px; margin: 0 auto; }
.memory-line { position: absolute; top: 20%; left: 0; width: 60%; padding: 16px 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 17px; background: #171315; transition: transform .6s var(--ease-spring), border-color .35s ease; }
.memory-line.response { top: 48%; right: 0; left: auto; border-color: rgba(247,25,100,.35); }
.memory-line span { color: var(--pink); font-size: 9px; letter-spacing: .15em; }
.memory-line p { margin: 6px 0 0; font-family: var(--serif); font-size: 17px; }
.memory-core { position: absolute; z-index: 2; width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(247,25,100,.7); border-radius: 50%; color: var(--pink); background: var(--ink); font-family: var(--serif); font-size: 24px; box-shadow: 0 0 0 12px rgba(247,25,100,.05), 0 0 50px rgba(247,25,100,.24); }
.visual-worlds { place-items: center; }
.world { position: absolute; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; transition: transform .8s var(--ease-spring), border-color .45s ease; }
.world-a { width: 230px; height: 230px; background: radial-gradient(circle at 35% 32%, rgba(247,25,100,.55), rgba(38,8,20,.25) 46%, transparent 70%); }
.world-b { width: 320px; height: 180px; transform: rotate(35deg); }
.world-c { width: 350px; height: 140px; transform: rotate(-32deg); border-color: rgba(247,25,100,.35); }
.visual-worlds > span { position: relative; z-index: 2; font-family: var(--serif); font-size: 88px; font-style: italic; text-shadow: 0 0 40px rgba(247,25,100,.55); }
.visual-creation { align-content: center; gap: 10px; }
.creation-card { width: min(84%, 380px); padding: 17px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: #171315; box-shadow: 0 14px 35px rgba(0,0,0,.25); transform: rotate(-3deg); transition: transform .65s var(--ease-spring), border-color .35s ease; }
.creation-card.offset { transform: translateX(28px) rotate(3deg); border-color: rgba(247,25,100,.38); }
.creation-card span { display: block; margin-bottom: 5px; color: rgba(255,255,255,.62); font-size: 9px; letter-spacing: .14em; }
.creation-card strong { font-family: var(--serif); font-size: 17px; font-weight: 500; }
.creation-add { position: absolute; right: 11%; bottom: 14%; width: 50px; height: 50px; display: grid; place-items: center; border-radius: 50%; background: var(--pink); font-size: 28px; font-weight: 300; box-shadow: 0 14px 30px rgba(247,25,100,.22); }
.visual-always { min-height: 260px; }
.pulse-rings { position: relative; width: 260px; height: 260px; display: grid; place-items: center; }
.pulse-rings i { position: absolute; inset: 0; border: 1px solid rgba(247,25,100,.3); border-radius: 50%; animation: pulse 3s ease-out infinite; }
.pulse-rings i:nth-child(2) { inset: 34px; animation-delay: .5s; }
.pulse-rings i:nth-child(3) { inset: 66px; animation-delay: 1s; }
.pulse-rings span { position: relative; z-index: 2; width: 82px; border-radius: 24px; overflow: hidden; box-shadow: 0 0 40px rgba(247,25,100,.3); }
.visual-always > p { position: absolute; right: 8%; bottom: 10%; color: rgba(255,255,255,.2); font-family: var(--serif); font-size: 22px; letter-spacing: .08em; }
.visual-always b { margin: 0 12px; color: var(--pink); }
@keyframes pulse { 0%,100% { transform: scale(.92); opacity: .2; } 50% { transform: scale(1.04); opacity: .8; } }

.approach { padding: 160px var(--pad) 180px; color: var(--ink); background: var(--paper); }
.approach-top { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; margin-bottom: 120px; }
.approach-copy { max-width: 920px; }
.approach-thesis { margin: 0; font-size: clamp(32px, 4vw, 64px); font-weight: 450; line-height: 1.08; letter-spacing: -.055em; }
.direction-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1px; margin-top: 75px; padding: 1px 0; background: rgba(11,9,10,.16); }
.direction-grid article { min-height: 190px; display: flex; flex-direction: column; padding: 25px 28px 28px; background: var(--paper); }
.direction-grid span { color: var(--pink); font-family: var(--serif); font-size: 13px; font-style: italic; }
.direction-grid p { max-width: 500px; margin: auto 0 0; color: rgba(11,9,10,.72); font-size: 14px; line-height: 1.65; }
.manifesto { display: flex; flex-direction: column; gap: clamp(5px, .65vw, 11px); padding: 70px 0 90px; border-top: 1px solid rgba(11,9,10,.16); border-bottom: 1px solid rgba(11,9,10,.16); }
.manifesto-line { margin: 0; font-size: clamp(43px, 8.2vw, 132px); font-weight: 750; line-height: .98; letter-spacing: -.075em; white-space: nowrap; }
.manifesto-line:nth-child(even) { text-align: right; }
.manifesto-line.outline { color: transparent; -webkit-text-stroke: 1.5px rgba(11,9,10,.75); }
.manifesto-line.accent { color: var(--pink); font-family: var(--serif); font-size: clamp(50px, 9vw, 148px); font-style: italic; font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 100px; background: rgba(11,9,10,.16); }
.principles article { position: relative; min-height: 235px; display: flex; flex-direction: column; padding: 25px 35px 30px; overflow: hidden; background: var(--paper); transition: background-color .35s ease, transform .45s var(--ease-out); }
.principles article::before { content: ''; position: absolute; top: 0; right: 0; left: 0; height: 2px; background: var(--pink); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); }
.principles span { color: var(--pink); font-family: var(--serif); font-size: 13px; }
.principles h3 { margin: auto 0 12px; font-size: 25px; font-weight: 550; letter-spacing: -.04em; }
.principles p { margin: 0; color: rgba(11,9,10,.68); font-size: 12px; line-height: 1.6; }

.company { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 860px; background: #110d0f; }
.company-visual { position: relative; min-height: 700px; overflow: hidden; }
.company-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.55) contrast(1.05); transform: scale(1.08); animation: company-image-drift 14s ease-in-out infinite alternate; }
@keyframes company-image-drift { from { transform: scale(1.08) translate3d(-.8%, -.5%, 0); } to { transform: scale(1.12) translate3d(.8%, .6%, 0); } }
.company-visual-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 50%, #110d0f 100%), linear-gradient(0deg, rgba(11,9,10,.3), transparent 50%); }
.company-stamp { position: absolute; right: 7%; bottom: 8%; width: 132px; height: 132px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 9px; line-height: 1.6; letter-spacing: .13em; text-align: center; transform: rotate(-9deg); backdrop-filter: blur(8px); animation: stamp-float 6s ease-in-out infinite; }
@keyframes stamp-float { 0%, 100% { transform: translate3d(0, 0, 0) rotate(-9deg); } 50% { transform: translate3d(0, -8px, 0) rotate(-5deg); } }
.company-copy { display: flex; flex-direction: column; justify-content: center; padding: 120px var(--pad) 90px clamp(45px, 6vw, 100px); }
.company-copy h2 { margin: 42px 0 36px; font-size: clamp(55px, 6.2vw, 98px); font-weight: 580; line-height: .9; letter-spacing: -.07em; }
.company-copy h2 em { color: var(--pink); font-family: var(--serif); font-weight: 500; }
.company-lead { max-width: 570px; margin: 0; color: rgba(255,255,255,.65); font-size: 14px; font-weight: 300; line-height: 1.75; }
.company-facts { display: grid; grid-template-columns: .7fr .9fr 1.4fr; gap: 0 24px; margin-top: 65px; }
.company-facts div { padding: 17px 0; border-top: 1px solid rgba(255,255,255,.14); }
.company-facts span { display: block; margin-bottom: 8px; color: rgba(255,255,255,.62); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.company-facts strong { font-size: 12px; font-weight: 450; letter-spacing: .02em; }

.closing { position: relative; min-height: 800px; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 130px var(--pad); overflow: hidden; text-align: center; background: var(--ink); }
.closing::before { content: ''; position: absolute; width: 800px; height: 800px; border: 1px dashed rgba(255,255,255,.09); border-radius: 50%; animation: closing-orbit 36s linear infinite; }
.closing::after { content: ''; position: absolute; width: 560px; height: 560px; border: 1px solid rgba(247,25,100,.16); border-radius: 50%; animation: closing-breathe 8s ease-in-out infinite; }
.closing-orb { position: absolute; width: 390px; height: 390px; border-radius: 50%; background: radial-gradient(circle, rgba(247,25,100,.25), rgba(247,25,100,.04) 44%, transparent 70%); filter: blur(.2px); animation: closing-breathe 6s ease-in-out infinite reverse; }
@keyframes closing-orbit { to { transform: rotate(360deg); } }
@keyframes closing-breathe { 0%, 100% { transform: scale(.94); opacity: .6; } 50% { transform: scale(1.05); opacity: 1; } }
.closing-icon { --reveal-rotate: -5deg; width: clamp(76px, 6vw, 98px); margin-top: 30px; border-radius: clamp(21px, 1.7vw, 27px); overflow: hidden; box-shadow: 0 18px 70px rgba(247,25,100,.38); }
.closing > *:not(.closing-orb) { position: relative; z-index: 3; }
.closing h2 { margin: 30px 0 24px; font-size: clamp(70px, 10vw, 160px); font-weight: 650; line-height: .85; letter-spacing: -.08em; }
.closing h2 em { color: var(--pink); font-family: var(--serif); font-weight: 500; }
.closing-copy { margin: 0; color: rgba(255,255,255,.52); font-size: 14px; }
.primary-button { position: relative; display: inline-flex; align-items: center; gap: 48px; margin-top: 46px; padding: 8px 9px 8px 23px; overflow: hidden; border-radius: 999px; color: var(--ink); background: var(--white); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: color .25s ease, background .25s ease, transform .25s ease; }
.primary-button i { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--pink); font-size: 17px; font-style: normal; transition: color .25s ease, background .25s ease, transform .35s var(--ease-spring); }
.primary-button:hover { color: white; background: var(--pink); transform: translateY(-3px); }
.primary-button:hover i { color: var(--pink); background: white; transform: translate(2px, -2px); }
.primary-button:active { transform: translateY(0) scale(.98); }

.site-footer { position: relative; isolation: isolate; padding: 75px max(var(--pad), env(safe-area-inset-right)) max(30px, env(safe-area-inset-bottom)) max(var(--pad), env(safe-area-inset-left)); overflow: hidden; color: var(--white); background: radial-gradient(circle at 12% -15%, rgba(247,25,100,.18), transparent 35%), linear-gradient(135deg, #170a10 0%, #0d090b 58%, #090708 100%); border-top: 1px solid rgba(247,25,100,.42); }
.site-footer::before { content: ''; position: absolute; z-index: -1; top: -170px; left: clamp(-220px, -12vw, -110px); width: 560px; height: 340px; border: 1px solid rgba(247,25,100,.1); border-radius: 50%; box-shadow: 0 0 100px rgba(247,25,100,.06), inset 0 0 80px rgba(247,25,100,.025); transform: rotate(-12deg); pointer-events: none; }
.footer-top { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 70px; }
.footer-brand { font-size: clamp(34px, 4vw, 58px); letter-spacing: -.03em; }
.footer-brand .brand-mark { width: clamp(40px, 4vw, 60px); height: auto; }
.footer-brand .brand-mark circle { fill: var(--pink); }
.footer-top > p { margin: 0; font-family: var(--serif); font-size: clamp(21px, 2vw, 32px); line-height: 1.1; text-align: right; }
.footer-top > p span { display: block; }
.footer-top > p span:last-child { color: rgba(255,255,255,.62); }
.footer-top > p em { color: #ff7aa7; font-style: italic; }
.footer-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.58); font-size: 10px; font-weight: 550; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-meta { display: flex; align-items: center; gap: 13px; }
.footer-meta > span { color: var(--pink); font-size: 15px; line-height: 1; }
.footer-bottom a { min-height: 44px; display: inline-flex; align-items: center; gap: 12px; color: var(--white); transition: color .2s ease, transform .2s ease; }
.back-to-top i { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; font-size: 14px; font-style: normal; transition: border-color .2s ease, background .2s ease, transform .3s var(--ease-spring); }
.footer-bottom a:hover { color: #ff7aa7; transform: translateY(-2px); }
.back-to-top:hover i { border-color: var(--pink); background: rgba(247,25,100,.12); transform: translateY(-2px); }
.site-footer .brand:hover { color: #ff7aa7; }
.site-footer :focus-visible { outline-color: var(--pink); }

.message p,
.hero-index,
.gallery-status,
.feature-number,
.memory-line p,
.memory-core,
.visual-worlds > span,
.visual-always > p,
.direction-grid span,
.principles span,
.footer-top > p,
.error-code {
  font-weight: 500;
}
.visual-always b { font-weight: 500; }
.error-copy .primary-button:hover i { transform: translateX(-2px); }

.reveal { --reveal-x: 0px; --reveal-y: 28px; --reveal-scale: 1; opacity: 1; transform: translate3d(0, 0, 0) rotate(var(--reveal-rotate, 0deg)) scale(1); }
.reveal-left { --reveal-x: -34px; --reveal-y: 8px; }
.reveal-right { --reveal-x: 34px; --reveal-y: 8px; }
.reveal-scale { --reveal-y: 18px; --reveal-scale: .975; }
.js .reveal { opacity: 0; transform: translate3d(var(--reveal-x), var(--reveal-y), 0) rotate(var(--reveal-rotate, 0deg)) scale(var(--reveal-scale)); transition: opacity .85s ease, transform 1s var(--ease-spring); }
.js .reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0) rotate(var(--reveal-rotate, 0deg)) scale(1); }
.js .hero .reveal { opacity: 1; }
.js .hero .title-line { opacity: 1; }
.hero .title-line:nth-child(2) { transition-delay: .08s; }
.hero .title-line:nth-child(3) { transition-delay: .16s; }
.hero .hero-bottom { transition-delay: .3s; }
.feature-grid .feature:nth-child(2) { transition-delay: .04s; }
.feature-grid .feature:nth-child(3) { transition-delay: .09s; }
.principles article:nth-child(2) { transition-delay: .07s; }
.principles article:nth-child(3) { transition-delay: .14s; }

@media (hover: hover) and (pointer: fine) {
  .feature:hover::after { opacity: 1; transform: scale(1); }
  .feature:hover .memory-line:first-child { transform: translate3d(-8px, -4px, 0); border-color: rgba(255,255,255,.24); }
  .feature:hover .memory-line.response { transform: translate3d(8px, 4px, 0); border-color: rgba(247,25,100,.65); }
  .feature:hover .world-a { transform: scale(1.07); }
  .feature:hover .world-b { transform: rotate(42deg) scale(1.04); border-color: rgba(255,255,255,.24); }
  .feature:hover .world-c { transform: rotate(-39deg) scale(1.04); border-color: rgba(247,25,100,.58); }
  .feature:hover .creation-card:first-child { transform: translate3d(-8px, -5px, 0) rotate(-5deg); }
  .feature:hover .creation-card.offset { transform: translate3d(36px, 5px, 0) rotate(5deg); border-color: rgba(247,25,100,.62); }
  .principles article:hover { background: #ebe5dd; transform: translateY(-5px); }
  .principles article:hover::before { transform: scaleX(1); }
}

@media (hover: none) {
  .brand:hover { color: inherit; }
  .mobile-menu nav a:hover:not(.is-active) { color: inherit; }
  .circle-link:hover { border-color: rgba(255,255,255,.32); background: transparent; transform: none; }
  .circle-link:hover svg, .text-link:hover span, .primary-button:hover i, .error-copy .primary-button:hover i, .footer-bottom a:hover, .back-to-top:hover i { transform: none; }
  .text-link:hover { border-color: rgba(255,255,255,.5); }
  .screen-card:hover.card-main { transform: translate(calc(-50% + var(--drag-x, 0px)),-50%) rotate(0) scale(1); }
  .gallery-controls button:hover:not(:focus-visible) { color: var(--white); border-color: rgba(255,255,255,.28); background: transparent; }
  .primary-button:hover { color: var(--ink); background: var(--white); transform: none; }
  .site-footer .brand:hover, .footer-bottom a:hover { color: inherit; }
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1.05fr .95fr; }
  .hero-title { font-size: clamp(62px, 8.3vw, 94px); }
  .hero-phone { left: 7%; width: 63%; }
  .message-one { left: -4%; }
  .message-two { right: 1%; }
  .product-showcase { grid-template-columns: 1fr; gap: 55px; }
  .showcase-copy { max-width: 650px; }
  .screen-gallery { min-height: 650px; }
  .company { grid-template-columns: 1fr; }
  .company-visual { height: 72vw; min-height: 600px; }
  .company-visual-overlay { background: linear-gradient(0deg, #110d0f 0%, transparent 45%); }
  .company-copy { padding-top: 35px; padding-bottom: 130px; }
}

@media (min-width: 761px) and (max-width: 850px) {
  .section-intro > div { display: block; }
  .intro-note { margin-top: 24px; white-space: nowrap; }
}

@media (max-width: 760px) {
  :root { --pad: 22px; }
  .ambient-glow { display: none; }
  .hero-glow, .phone-shell, .feva-badge img, .signal::before { animation: none; }
  .scroll-progress { top: auto; bottom: -1px; height: 2px; opacity: 1; }
  .site-header { height: 68px; }
  .desktop-nav, .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button, .mobile-menu { display: flex; }
  .hero { height: auto; min-height: 1080px; display: block; background-size: 25vw 100%; }
  .hero-copy { height: 640px; justify-content: flex-start; padding: 138px var(--pad) 20px; }
  .eyebrow { margin-bottom: 31px; }
  .hero-title { font-size: clamp(50px, 15vw, 78px); line-height: .9; }
  .title-line:nth-child(2), .title-line:nth-child(3) { padding-left: 0; }
  .hero-bottom { width: 100%; gap: 18px; margin: 46px 0 0; }
  .hero-bottom p { font-size: 12px; }
  .circle-link { width: 50px; height: 50px; }
  .hero-stage { height: 520px; }
  .hero-glow { top: 48%; right: -25%; width: 125vw; height: 125vw; }
  .hero-phone { top: 2%; left: 25%; width: 52%; min-width: 220px; }
  .phone-shell { border-radius: 33px; padding: 8px; }
  .phone-top { height: 29px; padding: 0 14px; }
  .phone-top i { width: 50px; height: 16px; }
  .phone-appbar { height: 39px; }
  .phone-input { bottom: 17px; right: 19px; left: 19px; height: 35px; }
  .phone-input b { width: 26px; height: 26px; }
  .story-label strong { font-size: 27px; }
  .message { padding: 10px 12px; }
  .message-one { top: 25%; left: 3%; }
  .message-two { right: 1%; bottom: 15%; }
  .message p { font-size: 12px; }
  .avatar, .signal { width: 30px; height: 30px; }
  .feva-badge { top: 3%; right: 8%; width: 61px; padding: 5px; border-radius: 18px; }
  .stage-note, .hero-index { display: none; }
  .ticker { padding: 14px 0; }
  .ticker span { font-size: 10px; }
  .product, .experience, .approach { padding-top: 110px; padding-bottom: 115px; }
  .section-intro, .experience-header, .approach-top { grid-template-columns: 1fr; gap: 35px; }
  .section-intro { padding-bottom: 55px; }
  .section-intro > div { display: block; }
  .intro-note { margin-top: 25px; }
  .feva-heading { align-items: center; padding: 55px 0; }
  .feva-name { gap: 14px; }
  .feva-name img { width: 58px; border-radius: 16px; }
  .feva-name h2 { font-size: 64px; }
  .feva-heading > p { font-size: 9px; }
  .product-showcase { min-height: 0; padding: 55px 22px 65px; }
  .showcase-copy h3 { font-size: 42px; }
  .screen-gallery { min-height: 470px; }
  .screen-card { width: 230px; border-width: 5px; border-radius: 27px; }
  .card-back-left { transform: translate(calc(-102% + var(--drag-x, 0px)),-48%) rotate(-8deg) scale(.73); }
  .card-back-right { transform: translate(calc(2% + var(--drag-x, 0px)),-47%) rotate(8deg) scale(.78); }
  .gallery-status { right: 0; bottom: 1px; left: auto; }
  .gallery-status .gallery-label { max-width: 145px; overflow: hidden; text-overflow: ellipsis; }
  .gallery-hint { display: none; }
  .experience-header { margin-bottom: 60px; }
  .experience-header h2 { font-size: 46px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature, .feature-large, .feature-wide { grid-column: span 1; min-height: 480px; }
  .visual-memory { width: 100%; min-width: 0; }
  .memory-line { width: 88%; }
  .memory-line.response { top: 54%; }
  .visual-always > p { right: 0; bottom: 2%; font-size: 16px; }
  .approach-top { margin-bottom: 90px; }
  .direction-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .direction-grid article { min-height: 160px; padding: 22px 5px 26px; }
  .manifesto { padding: 45px 0 60px; }
  .manifesto-line { font-size: 11.2vw; }
  .manifesto-line.accent { font-size: 12vw; }
  .principles { grid-template-columns: 1fr; margin-top: 70px; }
  .principles article { min-height: 180px; padding: 22px 5px 26px; }
  .company-visual { min-height: 480px; height: 115vw; }
  .company-copy { padding: 40px var(--pad) 100px; }
  .company-copy h2 { font-size: 60px; }
  .company-facts { grid-template-columns: 1fr; }
  .closing { min-height: 660px; padding-top: 100px; padding-bottom: 100px; }
  .closing::before { width: 150vw; height: 150vw; }
  .closing::after { width: 105vw; height: 105vw; }
  .closing-orb { width: 82vw; height: 82vw; }
  .closing-icon { width: 72px; margin-top: 24px; border-radius: 20px; }
  .closing h2 { font-size: 72px; }
  .closing-copy { font-size: 12px; }
  .site-footer { padding-top: 55px; }
  .footer-top { display: block; padding-bottom: 55px; }
  .footer-top > p { margin-top: 35px; text-align: left; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 22px; }
  .footer-meta { flex-wrap: wrap; }
  .footer-bottom a { margin-top: 6px; }
}

@media (max-width: 360px) {
  .eyebrow { gap: 10px; font-size: 9px; letter-spacing: .12em; white-space: nowrap; }
  .eyebrow::before { width: 22px; }
  .gallery-status .gallery-label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .ambient-glow { display: none; }
  .ticker-track { transform: none !important; }
  .reveal { opacity: 1; transform: translate3d(0, 0, 0) rotate(var(--reveal-rotate, 0deg)) scale(1); }
}

@media (prefers-contrast: more) {
  :root { --line: rgba(255, 255, 255, .34); }
  .eyebrow, .section-kicker.light, .showcase-copy > p, .feature-copy p, .company-lead, .closing-copy, .footer-bottom { color: rgba(255,255,255,.82); }
  .section-kicker, .intro-note, .direction-grid p, .principles p { color: rgba(11,9,10,.84); }
  .site-header.is-scrolled { background: rgba(11, 9, 10, .96); }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled { background: var(--ink); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .phone-input, .message, .feva-badge { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .phone-input { background: #141112; }
  .message { background: #171214; }
  .feva-badge { background: #241d20; }
}

.error-page { min-height: 100dvh; display: grid; place-items: center; padding: max(28px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(28px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left)); background: radial-gradient(circle at 70% 30%, rgba(247,25,100,.17), transparent 34%), var(--ink); }
.error-shell { width: min(100%, 980px); min-height: min(760px, calc(100dvh - 56px)); display: flex; flex-direction: column; justify-content: space-between; padding: clamp(28px, 5vw, 70px); border: 1px solid rgba(255,255,255,.12); background: linear-gradient(135deg, rgba(255,255,255,.035), transparent 55%); }
.error-code { margin: auto 0 0; color: var(--pink); font-family: var(--serif); font-size: clamp(100px, 22vw, 270px); font-style: italic; line-height: .72; letter-spacing: -.08em; }
.error-copy { display: grid; grid-template-columns: 1.4fr .6fr; gap: 40px; align-items: end; margin-top: 55px; }
.error-copy h1 { max-width: 680px; margin: 0; font-size: clamp(42px, 6vw, 78px); line-height: .95; letter-spacing: -.06em; }
.error-copy p { margin: 18px 0 0; color: rgba(255,255,255,.55); font-size: 14px; }
.error-copy .primary-button { justify-self: end; margin: 0; }

@media (max-width: 760px) {
  .error-shell { min-height: calc(100dvh - 56px); }
  .error-copy { grid-template-columns: 1fr; }
  .error-copy .primary-button { justify-self: start; }
}
