: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;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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: 82px; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 4px; }

.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-visible { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-right: max(var(--pad), env(safe-area-inset-right));
  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; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--pink); transform: scaleX(0); transform-origin: left center; will-change: transform; }

.site-header.is-scrolled {
  height: 68px;
  background: rgba(11, 9, 10, 0.84);
  border-bottom-color: rgba(255,255,255,0.09);
  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;
}

.brand-mark { width: 26px; height: 26px; overflow: visible; }
.brand-mark path { fill: currentColor; }
.brand-mark circle { fill: var(--pink); }

.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;
}
.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:hover::after, .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;
}
.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; }

.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-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 .35s ease;
}
.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.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; }
.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;
}

.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;
  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,.32); }

.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; }

.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, #2f2b2d, #050505 8%, #090809); box-shadow: inset 0 0 0 3px #030303, inset 0 0 0 4px rgba(255,255,255,.16); overflow: hidden; }
.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,.48); 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/store-feature-graphic.webp') 13% 35% / 500% auto; }
.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); }
.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; }
.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: white; background: var(--pink); transform: rotate(-1.1deg) scale(1.02); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 30px; animation: ticker 18s linear 1 forwards; }
.ticker span { font-size: 13px; font-weight: 650; letter-spacing: .11em; }
.ticker i { font-style: normal; font-size: 12px; }
@keyframes ticker { to { transform: translateX(-50%); } }

.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,.5); }
.section-kicker.light { color: rgba(255,255,255,.45); }
.section-intro > div { display: flex; justify-content: space-between; gap: 30px; }
.intro-copy { 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,.48); 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 { 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: var(--ink); border-radius: 3px; }
.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); }
.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 { display: inline-flex; gap: 40px; align-items: center; margin-top: 44px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.5); font-size: 11px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { color: var(--pink); font-size: 18px; transition: transform .25s ease; }
.text-link:hover span { transform: translate(4px,-4px); }

.screen-gallery { position: relative; min-height: 570px; cursor: ew-resize; user-select: none; touch-action: pan-y; perspective: 1000px; }
.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(-50%,-50%) rotate(0deg) scale(1); filter: brightness(.92); }
.card-back-left { z-index: 1; transform: translate(-112%,-48%) rotate(-10deg) scale(.83); filter: brightness(.45); }
.card-back-right { z-index: 2; transform: translate(12%,-47%) rotate(9deg) scale(.88); filter: brightness(.55); }
.screen-card:hover.card-main { transform: translate(-50%,-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); outline: none; }
.gallery-controls button:active { transform: scale(.94); }
.gallery-status { position: absolute; z-index: 8; left: 104px; bottom: -2px; margin: 0; color: rgba(255,255,255,.42); font-family: var(--serif); font-size: 13px; font-variant-numeric: tabular-nums; letter-spacing: .08em; }
.gallery-status span { color: var(--white); }
.gallery-hint { position: absolute; right: 0; bottom: -4px; color: rgba(255,255,255,.44); 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); }
.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,.47); 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; }
.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%; }
.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); }
.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,.42); 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: 150px; }
.approach-top > p:last-child { max-width: 850px; margin: 0; font-size: clamp(34px, 4.4vw, 70px); font-weight: 450; line-height: 1.08; letter-spacing: -.06em; }
.approach-top em { color: var(--pink); font-family: var(--serif); font-weight: 500; }
.manifesto { 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: .92; 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; 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 { min-height: 235px; display: flex; flex-direction: column; padding: 25px 35px 30px; background: var(--paper); }
.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,.52); 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.06); }
.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); }
.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,.53); 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,.42); 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 solid rgba(255,255,255,.07); border-radius: 50%; }
.closing::after { content: ''; position: absolute; width: 560px; height: 560px; border: 1px solid rgba(247,25,100,.16); border-radius: 50%; }
.closing-orb { position: absolute; width: 390px; height: 390px; border-radius: 50%; background: radial-gradient(circle, rgba(247,25,100,.22), rgba(247,25,100,.04) 44%, transparent 70%); filter: blur(.2px); }
.closing-icon { 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); transform: rotate(-5deg); }
.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 { display: inline-flex; align-items: center; gap: 48px; margin-top: 46px; padding: 8px 9px 8px 23px; border-radius: 999px; color: var(--ink); background: var(--white); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: 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; }
.primary-button:hover { color: white; background: var(--pink); transform: translateY(-3px); }
.primary-button:hover i { color: var(--pink); background: white; }

.site-footer { 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)); color: var(--ink); background: var(--pink); }
.footer-top { 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(--white); }
.footer-top > p { margin: 0; font-family: var(--serif); font-size: clamp(21px, 2vw, 32px); line-height: 1.1; text-align: right; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto auto; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(11,9,10,.25); font-size: 10px; font-weight: 550; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom a { transition: opacity .2s ease; }
.footer-bottom a:hover { opacity: .55; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero .title-line:nth-child(2) { transition-delay: .08s; }
.hero .title-line:nth-child(3) { transition-delay: .16s; }
.hero .hero-bottom { transition-delay: .3s; }

@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: -6%; }
  .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 (max-width: 760px) {
  :root { --pad: 22px; }
  .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(-102%,-48%) rotate(-8deg) scale(.73); }
  .card-back-right { transform: translate(2%,-47%) rotate(8deg) scale(.78); }
  .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; }
  .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 { grid-template-columns: 1fr; gap: 12px; }
  .footer-bottom a { margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.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; }
}
