:root {
  --ink: #171411;
  --ink-soft: #24201c;
  --ink-muted: #5f5851;
  --paper: #fffcf7;
  --cream: #f4eee5;
  --cream-deep: #e9dfd2;
  --white: #ffffff;
  --orange: #ff5a24;
  --orange-bright: #ff7a2f;
  --orange-dark: #9e310c;
  --amber: #ffbd55;
  --sage: #c9dfd3;
  --blue: #b9d2e8;
  --line: rgba(23, 20, 17, .13);
  --line-light: rgba(255, 255, 255, .17);
  --shell: 1220px;
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 40px;
  --radius-xl: 56px;
  --shadow-soft: 0 24px 70px rgba(39, 25, 14, .13);
  --shadow-deep: 0 34px 90px rgba(0, 0, 0, .34);
  --display: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
section[id] { scroll-margin-top: 86px; }

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
  border-radius: 8px;
  box-shadow: 0 0 0 7px #6f2409;
}

.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 132px 0; }
.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;
  top: -100px;
  left: 18px;
  z-index: 999;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  background: rgba(23, 20, 17, .88);
  border-bottom-color: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  flex: 0 0 auto;
}
.wordmark img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(255, 90, 36, .24);
}
.wordmark span { display: grid; line-height: 1; }
.wordmark strong {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -.04em;
}
.wordmark small {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .66;
}
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
  opacity: .78;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.main-nav a:hover { opacity: 1; }
.main-nav .nav-cta {
  gap: 10px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  opacity: 1;
}
.main-nav .nav-cta:hover { transform: translateY(-2px); }
.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
}
.menu-button i {
  display: block;
  width: 20px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .25s ease;
}
.menu-button[aria-expanded="true"] i:first-of-type { transform: translateY(3.5px) rotate(45deg); }
.menu-button[aria-expanded="true"] i:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }

.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 840;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.kicker > span { width: 28px; height: 1px; background: currentColor; }
.kicker-light { color: var(--amber); }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease, color .25s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary {
  color: var(--white);
  background: var(--orange-dark);
  box-shadow: 0 16px 34px rgba(255, 90, 36, .27);
}
.button-primary:hover { background: #7f2508; }
.button-ghost { color: var(--white); border-color: rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .05); }
.button-ghost:hover { background: rgba(255, 255, 255, .11); }
.button-light { color: var(--ink); background: var(--white); box-shadow: 0 18px 36px rgba(0, 0, 0, .18); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: none;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.hero {
  position: relative;
  min-height: 920px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 27%, rgba(255, 117, 47, .17), transparent 25%),
    linear-gradient(135deg, #171411 0%, #211a15 50%, #121417 100%);
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 88%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 88%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-glow-one { width: 530px; height: 530px; top: -300px; right: 3%; background: rgba(255, 110, 44, .14); }
.hero-glow-two { width: 360px; height: 360px; left: -230px; bottom: 40px; background: rgba(175, 207, 224, .08); }
.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 860px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(510px, 1.1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  padding-top: 90px;
  padding-bottom: 70px;
}
.hero-copy { position: relative; z-index: 6; }
.hero-copy h1,
.section-intro h2,
.editorial-copy h2,
.presence-copy h2,
.connections-heading h2,
.identity-copy h2,
.vision-copy h2,
.cieva-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 670;
  letter-spacing: -.058em;
  line-height: .96;
}
.hero-copy h1 { max-width: 720px; font-size: clamp(60px, 6.5vw, 98px); }
.hero-copy h1 em { color: var(--orange-bright); font-style: normal; }
.hero-lead {
  max-width: 620px;
  margin: 30px 0 34px;
  color: rgba(255, 255, 255, .7);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.6;
}
.hero-actions { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.hero-proof {
  display: flex;
  gap: 25px;
  margin-top: 36px;
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 650;
  flex-wrap: wrap;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof i { width: 6px; height: 6px; background: var(--orange-bright); border-radius: 50%; box-shadow: 0 0 0 5px rgba(255, 90, 36, .12); }

.product-stage {
  --stage-x: 0px;
  --stage-y: 0px;
  position: relative;
  min-height: 720px;
  transform: translate3d(var(--stage-x), var(--stage-y), 0);
  transition: transform .9s var(--ease);
  isolation: isolate;
}
.product-stage::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 11% -8% 6% 7%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 105, 44, .23), rgba(255, 105, 44, .04) 55%, transparent 72%);
}
.phone-shell {
  position: relative;
  width: 300px;
  aspect-ratio: 430 / 932;
  padding: 8px;
  background: linear-gradient(150deg, #55514e, #090909 38%, #36322f 72%, #090909);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50px;
  box-shadow: var(--shadow-deep), inset 0 0 0 1px rgba(255, 255, 255, .09);
}
.phone-screen { position: relative; width: 100%; height: 100%; overflow: hidden; background: #f3f1f7; border-radius: 42px; }
.phone-screen img { width: 100%; height: 100%; object-fit: cover; }
.dynamic-island {
  display: none;
}
.phone-buttons::before,
.phone-buttons::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: -4px;
  width: 4px;
  background: #272421;
  border-radius: 4px 0 0 4px;
}
.phone-buttons::before { top: 120px; height: 66px; }
.phone-buttons::after { top: 205px; height: 96px; }
.hero-phone { position: absolute; z-index: 3; width: 314px; left: 24%; top: 5%; transform: rotate(4deg); }
.peek-phone { position: absolute; z-index: 1; width: 218px; right: -1%; top: 19%; transform: rotate(12deg); opacity: .82; }
.float-card {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 252, 247, .9);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 52px rgba(0, 0, 0, .25);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.float-card p { display: grid; margin: 0; line-height: 1.2; }
.float-card strong { font-size: 13px; }
.float-card small { margin-top: 4px; color: var(--ink-muted); font-size: 10px; }
.people-card { left: 0; top: 22%; transform: rotate(-4deg); animation: float-card 7s ease-in-out infinite; }
.conversation-card { right: -2%; bottom: 13%; transform: rotate(3deg); animation: float-card 8s 1s ease-in-out infinite reverse; }
.avatar-stack { display: flex; padding-left: 12px; }
.avatar-stack i {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-left: -12px;
  color: var(--ink);
  background: var(--amber);
  border: 2px solid var(--white);
  border-radius: 50%;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
}
.avatar-stack i:nth-child(2) { background: var(--sage); }
.avatar-stack i:nth-child(3) { background: var(--blue); }
.live-dot { width: 12px; height: 12px; background: #3ca671; border: 3px solid #d9f7e9; border-radius: 50%; }
.place-pin { position: absolute; z-index: 5; width: 20px; height: 20px; border: 1px solid rgba(255, 137, 73, .45); border-radius: 50%; animation: pulse-pin 3.4s ease-out infinite; }
.place-pin i { position: absolute; inset: 6px; background: var(--orange-bright); border-radius: 50%; }
.pin-one { left: 13%; bottom: 19%; }
.pin-two { right: 10%; top: 12%; animation-delay: 1s; }
.pin-three { right: 7%; bottom: 38%; animation-delay: 2s; }
.stage-route { position: absolute; z-index: -1; height: 1px; border-top: 1px solid rgba(255, 117, 47, .38); transform-origin: left center; }
.route-one { width: 50%; left: 12%; top: 34%; transform: rotate(-22deg); }
.route-two { width: 56%; left: 39%; bottom: 32%; transform: rotate(19deg); }
.hero-marquee {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(255, 255, 255, .035);
}
.hero-marquee div {
  min-height: 60px;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  padding-inline: 28px;
  margin-inline: auto;
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-marquee i { color: var(--orange-bright); font-size: 8px; }

.concept-section { background: var(--paper); }
.concept-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr); align-items: center; gap: clamp(55px, 8vw, 110px); }
.campaign-frame {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  background: var(--ink);
}
.campaign-frame picture,
.campaign-frame picture img { width: 100%; height: 100%; }
.campaign-frame picture { position: absolute; inset: 0; }
.campaign-frame img { object-fit: cover; object-position: 56% center; }
.campaign-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 10, 10, .73), transparent 48%); pointer-events: none; }
.campaign-caption {
  position: absolute;
  z-index: 3;
  inset: auto 28px 28px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  color: var(--white);
}
.campaign-caption > span { color: var(--amber); font-family: var(--display); font-size: 13px; font-weight: 800; }
.campaign-caption p { max-width: 360px; margin: 0; color: rgba(255, 255, 255, .74); font-size: 14px; }
.campaign-caption strong { display: block; color: var(--white); font-size: 18px; }
.campaign-pulse { position: absolute; z-index: 2; left: 22%; top: 29%; width: 32px; height: 32px; }
.campaign-pulse i { position: absolute; inset: 0; border: 1px solid rgba(255, 140, 73, .68); border-radius: 50%; animation: campaign-ring 3s ease-out infinite; }
.campaign-pulse i:nth-child(2) { animation-delay: 1s; }
.campaign-pulse i:nth-child(3) { animation-delay: 2s; }
.editorial-copy h2,
.presence-copy h2,
.cieva-copy h2 { max-width: 710px; font-size: clamp(48px, 5.2vw, 72px); }
.editorial-copy > p:not(.kicker),
.presence-copy > p:not(.kicker),
.cieva-copy > p:not(.kicker) {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--ink-muted);
  font-size: 17px;
}
.concept-facts { margin: 43px 0 0; border-top: 1px solid var(--line); }
.concept-facts div { display: grid; grid-template-columns: 115px 1fr; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.concept-facts dt { font-family: var(--display); font-weight: 760; letter-spacing: -.02em; }
.concept-facts dd { margin: 0; color: var(--ink-muted); }

.discover-section {
  position: relative;
  color: var(--white);
  background: #171a19;
  overflow: hidden;
}
.discover-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -250px;
  top: -250px;
  border-radius: 50%;
  background: rgba(201, 223, 211, .09);
}
.section-intro { position: relative; z-index: 2; max-width: 850px; margin-bottom: 70px; }
.section-intro h2 { font-size: clamp(52px, 6vw, 84px); }
.section-intro > p:not(.kicker) { max-width: 680px; margin: 28px 0 0; font-size: 18px; }
.intro-light > p:not(.kicker) { color: rgba(255, 255, 255, .64); }
.discover-canvas {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #d6e3dc;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
}
.abstract-map { position: absolute; inset: 0; overflow: hidden; background: linear-gradient(140deg, #dbe8e1, #bfcfc8); }
.abstract-map::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(39, 65, 54, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 65, 54, .12) 1px, transparent 1px);
  background-size: 54px 54px;
}
.map-road { position: absolute; height: 58px; background: rgba(255, 255, 255, .68); border: 1px solid rgba(68, 94, 84, .15); border-radius: 20px; }
.road-a { width: 130%; left: -15%; top: 18%; transform: rotate(13deg); }
.road-b { width: 100%; right: -25%; top: 55%; transform: rotate(-31deg); }
.road-c { width: 85%; left: -18%; bottom: 8%; transform: rotate(-17deg); }
.road-d { width: 70%; left: 22%; top: 44%; transform: rotate(70deg); }
.map-block { position: absolute; background: rgba(113, 151, 135, .23); border: 1px solid rgba(70, 104, 89, .08); border-radius: 28px; }
.block-a { width: 230px; height: 180px; left: 8%; top: 13%; transform: rotate(7deg); }
.block-b { width: 270px; height: 160px; right: 8%; top: 14%; transform: rotate(-8deg); }
.block-c { width: 320px; height: 170px; left: 8%; bottom: 10%; transform: rotate(-7deg); }
.block-d { width: 250px; height: 220px; right: 10%; bottom: 7%; transform: rotate(11deg); }
.map-dot { position: absolute; width: 46px; height: 46px; border: 1px solid rgba(255, 90, 36, .44); border-radius: 50%; box-shadow: 0 0 0 14px rgba(255, 90, 36, .1); animation: map-dot 4s ease-in-out infinite; }
.map-dot i { position: absolute; inset: 11px; background: var(--orange); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.dot-a { left: 17%; top: 38%; }.dot-b { right: 15%; top: 24%; animation-delay: .8s; }.dot-c { left: 24%; bottom: 17%; animation-delay: 1.6s; }.dot-d { right: 21%; bottom: 24%; animation-delay: 2.4s; }.dot-e { left: 52%; top: 12%; animation-delay: 3.2s; }
.discover-phone { position: absolute; z-index: 4; width: 292px; left: 50%; top: 42px; transform: translateX(-50%) rotate(-2deg); }
.map-note {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 18px;
  color: var(--ink);
  background: rgba(255, 252, 247, .91);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 19px;
  box-shadow: 0 18px 45px rgba(42, 57, 49, .18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.map-note > span { width: 35px; height: 35px; display: grid; place-items: center; color: var(--white); background: var(--orange-dark); border-radius: 12px; font-weight: 900; }
.map-note div { display: grid; }
.map-note b { font-size: 13px; }
.map-note small { margin-top: 3px; color: var(--ink-muted); font-size: 10px; }
.note-top { left: 8%; top: 15%; transform: rotate(-3deg); }
.note-bottom { right: 6%; bottom: 16%; max-width: 255px; transform: rotate(3deg); }
.canvas-label { position: absolute; left: 35px; bottom: 24px; margin: 0; color: rgba(23, 20, 17, .72); font-family: var(--display); font-size: 13px; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }

.presence-section { background: var(--cream); }
.presence-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr); align-items: center; gap: clamp(50px, 8vw, 120px); }
.presence-panel {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(145deg, #25221e, #111311);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}
.presence-panel::before { content: ""; position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(circle, rgba(255, 255, 255, .75) 1px, transparent 1px); background-size: 26px 26px; }
.presence-tabs {
  position: absolute;
  z-index: 5;
  top: 24px;
  right: 24px;
  display: flex;
  padding: 4px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
}
.presence-tabs button {
  min-width: 82px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  background: transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.presence-tabs button.is-active { color: var(--ink); background: var(--white); }
.presence-orbit { position: absolute; width: 360px; height: 360px; left: -56px; top: 112px; }
.orbit { position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, .16); border-radius: 50%; transition: opacity .4s ease, transform .5s var(--ease); }
.orbit-two { inset: 55px; border-color: rgba(255, 112, 48, .34); }
.presence-core { position: absolute; inset: 108px; display: grid; place-items: center; background: radial-gradient(circle, #ffb15d, var(--orange)); border-radius: 50%; box-shadow: 0 0 0 20px rgba(255, 90, 36, .12), 0 20px 45px rgba(0, 0, 0, .32); transition: filter .4s ease, background .4s ease; }
.presence-core i { width: 28px; height: 36px; background: var(--white); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); }
.satellite { position: absolute; width: 13px; height: 13px; background: var(--sage); border: 3px solid rgba(255, 255, 255, .65); border-radius: 50%; box-shadow: 0 0 0 8px rgba(201, 223, 211, .08); }
.sat-a { left: 56px; top: 75px; }.sat-b { right: 12px; top: 157px; }.sat-c { left: 113px; bottom: 7px; }
.presence-details { position: absolute; z-index: 3; width: min(310px, 45%); right: 42px; top: 158px; }
.presence-details article[hidden] { display: none; }
.status-pill { width: max-content; display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; color: #c9f5de; background: rgba(68, 190, 126, .12); border: 1px solid rgba(85, 217, 148, .2); border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.status-pill i { width: 7px; height: 7px; background: #4ec382; border-radius: 50%; }
.status-pill.ghost-pill { color: #d8d8ef; background: rgba(170, 172, 205, .12); border-color: rgba(189, 191, 222, .19); }
.status-pill.ghost-pill i { background: #aeb1ce; }
.presence-details h3 { margin: 24px 0 22px; font-family: var(--display); font-size: 30px; line-height: 1.05; letter-spacing: -.04em; }
.presence-details ul { margin: 0; padding: 0; list-style: none; }
.presence-details li { padding: 12px 0; color: rgba(255, 255, 255, .67); border-top: 1px solid rgba(255, 255, 255, .11); font-size: 13px; }
.presence-note { position: absolute; z-index: 3; inset: auto 32px 27px; margin: 0; color: rgba(255, 255, 255, .68); font-size: 10px; }
.presence-panel[data-active-mode="ghost"] .presence-core { background: linear-gradient(145deg, #8c91a7, #565b73); filter: saturate(.55); }
.presence-panel[data-active-mode="ghost"] .orbit { opacity: .48; transform: scale(.91); }
.presence-panel[data-active-mode="ghost"] .satellite { opacity: .18; }

.conversation-section { overflow: hidden; background: var(--paper); }
.conversation-layout { display: grid; grid-template-columns: minmax(480px, 1.05fr) minmax(0, .95fr); align-items: center; gap: clamp(60px, 9vw, 135px); }
.conversation-visual { position: relative; min-height: 740px; }
.conversation-visual::before { content: ""; position: absolute; width: 590px; height: 590px; left: -40px; top: 70px; background: var(--sage); border-radius: 50%; opacity: .58; }
.chat-phone { position: absolute; z-index: 3; width: 305px; left: 24%; top: 0; transform: rotate(-4deg); }
.chat-excerpt {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 270px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.chat-excerpt > span { width: 36px; height: 36px; flex: 0 0 auto; display: grid; place-items: center; background: var(--amber); border-radius: 50%; font-size: 9px; font-weight: 850; }
.chat-excerpt p { margin: 0; color: var(--ink-muted); font-size: 11px; line-height: 1.4; }
.chat-excerpt b { display: block; color: var(--ink); }
.excerpt-one { left: 0; top: 22%; transform: rotate(-3deg); }
.excerpt-two { right: -3%; bottom: 22%; transform: rotate(4deg); }
.presence-count { position: absolute; z-index: 4; left: 7%; bottom: 12%; display: flex; align-items: center; gap: 10px; color: var(--white); }
.presence-count b { width: 68px; height: 68px; display: grid; place-items: center; background: var(--orange); border-radius: 50%; font-family: var(--display); font-size: 25px; box-shadow: 0 0 0 12px rgba(255, 90, 36, .17); }
.presence-count span { color: var(--ink); font-size: 11px; font-weight: 750; line-height: 1.2; }
.feature-line { display: grid; grid-template-columns: 34px 1fr; gap: 18px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.feature-line > span { color: var(--orange-dark); font-family: var(--display); font-size: 12px; font-weight: 850; }
.feature-line p { margin: 0; color: var(--ink-muted); }
.feature-line strong { color: var(--ink); }

.connections-section { background: var(--cream); }
.connections-heading { max-width: 920px; margin-bottom: 72px; }
.connections-heading h2 { font-size: clamp(50px, 6vw, 82px); }
.connections-layout { display: grid; grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr); align-items: center; gap: clamp(50px, 8vw, 120px); }
.connection-steps { margin: 0; padding: 0; list-style: none; }
.connection-steps li { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line); }
.connection-steps li:last-child { border-bottom: 1px solid var(--line); }
.connection-steps > li > span { color: var(--orange-dark); font-family: var(--display); font-size: 13px; font-weight: 800; }
.connection-steps h3 { margin: 0 0 7px; font-family: var(--display); font-size: 28px; letter-spacing: -.04em; }
.connection-steps p { margin: 0; color: var(--ink-muted); }
.friends-stage { position: relative; min-height: 690px; }
.friends-stage::before { content: ""; position: absolute; inset: 8% 2% 2% 8%; background: linear-gradient(145deg, #ffd493, #f5b47c); border-radius: 49% 51% 42% 58% / 55% 43% 57% 45%; }
.friends-phone { position: absolute; z-index: 3; width: 292px; left: 35%; top: 0; transform: rotate(3deg); }
.friend-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 255px;
  padding: 14px 15px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.friend-card > span { width: 40px; height: 40px; flex: 0 0 auto; display: grid; place-items: center; background: var(--sage); border-radius: 50%; font-size: 9px; font-weight: 850; }
.friend-card p { display: grid; margin: 0; line-height: 1.3; }
.friend-card b { font-size: 12px; }.friend-card small { margin-top: 3px; color: var(--ink-muted); font-size: 10px; }
.friend-card > i { margin-left: auto; color: #25815a; font-size: 9px; font-style: normal; font-weight: 850; }
.card-luna { left: 0; top: 21%; transform: rotate(-4deg); }
.card-noa { right: -4%; bottom: 18%; transform: rotate(4deg); }
.card-noa > span { background: var(--blue); }
.friend-thread { position: absolute; z-index: 2; height: 1px; border-top: 1px dashed rgba(158, 49, 12, .43); transform-origin: left center; }
.thread-one { width: 42%; left: 13%; top: 31%; transform: rotate(18deg); }.thread-two { width: 47%; right: 3%; bottom: 31%; transform: rotate(-16deg); }

.pulse-section { position: relative; overflow: hidden; background: #fbd9b9; }
.pulse-section::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(#9e310c 1px, transparent 1px); background-size: 30px 30px; }
.pulse-section .shell { position: relative; }
.pulse-intro { max-width: 900px; }
.pulse-intro > p:not(.kicker) { color: rgba(23, 20, 17, .65); }
.pulse-composition { position: relative; min-height: 790px; }
.pulse-composition::before { content: ""; position: absolute; width: 670px; height: 670px; left: 50%; top: 20px; transform: translateX(-50%); background: rgba(255, 252, 247, .62); border-radius: 50%; }
.story-ribbon {
  position: absolute;
  z-index: 5;
  top: 8%;
  left: 0;
  display: flex;
  gap: 20px;
  padding: 18px 21px;
  background: rgba(255, 255, 255, .89);
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transform: rotate(-3deg);
}
.story-ribbon figure { display: grid; justify-items: center; gap: 5px; margin: 0; }
.story-ring { width: 48px; height: 48px; display: grid; place-items: center; padding: 3px; background: conic-gradient(var(--orange), var(--amber), var(--orange)); border-radius: 50%; }
.story-ring i { width: 100%; height: 100%; display: grid; place-items: center; background: #ffdfaa; border: 2px solid var(--white); border-radius: 50%; font-size: 9px; font-style: normal; font-weight: 850; }
.story-ring.peach i { background: #f6bea7; }.story-ring.sage i { background: var(--sage); }.story-ring.blue i { background: var(--blue); }
.story-ribbon figcaption { color: var(--ink-muted); font-size: 9px; font-weight: 750; }
.activity-phone { position: absolute; z-index: 3; width: 300px; left: 27%; top: 65px; transform: rotate(-6deg); }
.stories-phone { position: absolute; z-index: 4; width: 280px; right: 21%; top: 27px; transform: rotate(7deg); }
.pulse-copy-card { position: absolute; z-index: 6; right: 0; bottom: 12%; max-width: 270px; padding: 20px 22px; color: var(--white); background: var(--ink); border-radius: 22px; box-shadow: var(--shadow-soft); transform: rotate(3deg); }
.pulse-copy-card span { color: var(--amber); font-family: var(--display); font-size: 26px; font-weight: 750; }
.pulse-copy-card p { margin: 8px 0 0; color: rgba(255, 255, 255, .68); font-size: 12px; }

.identity-section { color: var(--white); background: #191714; overflow: hidden; }
.identity-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr); align-items: center; gap: clamp(60px, 8vw, 115px); }
.identity-copy h2 { font-size: clamp(50px, 5.8vw, 80px); }
.identity-copy > p:not(.kicker) { max-width: 640px; margin: 29px 0 0; color: rgba(255, 255, 255, .64); font-size: 17px; }
.identity-notes { margin-top: 42px; border-top: 1px solid var(--line-light); }
.identity-notes article { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line-light); }
.identity-notes article > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--ink); background: var(--amber); border-radius: 13px; font-weight: 900; }
.identity-notes b { font-family: var(--display); font-size: 17px; }.identity-notes p { margin: 4px 0 0; color: rgba(255, 255, 255, .52); font-size: 12px; }
.identity-stage { position: relative; min-height: 750px; }
.identity-stage::before { content: ""; position: absolute; width: 620px; height: 620px; left: 50%; top: 70px; transform: translateX(-50%); background: radial-gradient(circle, rgba(255, 103, 42, .2), rgba(255, 103, 42, .03) 58%, transparent 72%); border-radius: 50%; }
.profile-phone { position: absolute; z-index: 3; width: 305px; left: 15%; top: 20px; transform: rotate(-4deg); }
.gallery-crop { position: absolute; z-index: 4; width: 260px; aspect-ratio: 1 / .98; right: 1%; bottom: 10%; overflow: hidden; background: var(--white); border: 8px solid #131313; border-radius: 34px; box-shadow: var(--shadow-deep); transform: rotate(5deg); }
.gallery-crop img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; }
.reputation-badge,
.alias-card { position: absolute; z-index: 6; display: flex; align-items: center; gap: 12px; padding: 14px 16px; color: var(--ink); background: rgba(255, 252, 247, .93); border: 1px solid var(--white); border-radius: 18px; box-shadow: var(--shadow-soft); }
.reputation-badge { right: 4%; top: 17%; transform: rotate(4deg); }
.alias-card { left: 0; bottom: 18%; transform: rotate(-4deg); }
.reputation-badge > span,
.alias-card > span { width: 36px; height: 36px; display: grid; place-items: center; color: var(--white); background: var(--orange); border-radius: 12px; font-weight: 900; }
.reputation-badge p,
.alias-card p { display: grid; margin: 0; line-height: 1.15; }
.reputation-badge b { font-family: var(--display); font-size: 21px; }.alias-card b { font-size: 12px; }
.reputation-badge small,
.alias-card small { margin-top: 4px; color: var(--ink-muted); font-size: 9px; }

.vision-section { position: relative; min-height: 790px; display: grid; align-items: end; color: var(--white); overflow: hidden; background: var(--ink); }
.vision-media,
.vision-media img,
.vision-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.vision-media img { object-fit: cover; object-position: center; }
.vision-shade { background: linear-gradient(100deg, rgba(10, 10, 10, .9) 4%, rgba(10, 10, 10, .52) 48%, rgba(10, 10, 10, .12) 80%), linear-gradient(to top, rgba(10, 10, 10, .58), transparent 50%); }
.vision-copy { position: relative; z-index: 2; padding-bottom: 105px; }
.vision-copy h2 { max-width: 850px; font-size: clamp(58px, 8vw, 108px); }
.vision-copy > p:not(.kicker) { max-width: 650px; margin: 28px 0 0; color: rgba(255, 255, 255, .7); font-size: 18px; }
.vision-signature { display: inline-block; margin-top: 36px; padding-top: 15px; color: var(--amber); border-top: 1px solid rgba(255, 189, 85, .42); font-family: var(--display); font-size: 13px; font-weight: 760; letter-spacing: .06em; text-transform: uppercase; }

.cieva-section { background: var(--paper); }
.cieva-layout { display: grid; grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr); align-items: center; gap: clamp(60px, 9vw, 140px); }
.cieva-visual { position: relative; min-height: 470px; display: grid; place-items: center; }
.cieva-halo { position: absolute; width: 390px; height: 390px; background: #ffe2b8; border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(158, 49, 12, .1); }
.cieva-visual img { position: relative; z-index: 2; width: 230px; height: auto; image-rendering: auto; filter: drop-shadow(0 24px 20px rgba(44, 29, 13, .18)); }
.cieva-visual > span { position: absolute; z-index: 3; top: 11%; right: 5%; padding: 12px 17px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 18px 18px 18px 4px; box-shadow: var(--shadow-soft); font-family: var(--display); font-weight: 760; transform: rotate(4deg); }

.final-cta-section { padding-top: 50px; background: var(--paper); }
.final-cta {
  position: relative;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 74px clamp(32px, 7vw, 92px);
  color: var(--white);
  background: linear-gradient(135deg, #b53a10, #922607 62%, #681b06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(149, 46, 13, .22);
}
.final-cta::before { content: ""; position: absolute; width: 500px; height: 500px; right: -120px; top: -130px; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255, 255, 255, .04), 0 0 0 140px rgba(255, 255, 255, .025); }
.final-cta > *:not(.cta-orbit) { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(58px, 7.4vw, 100px); }
.final-cta .kicker { color: #ffe3b1; }
.final-cta > p:not(.kicker) { max-width: 620px; margin: 27px 0 0; color: rgba(255, 255, 255, .9); font-size: 18px; }
.cta-actions { margin-top: 34px; }
.cta-orbit { position: absolute; width: 380px; height: 380px; right: -40px; bottom: -80px; border: 1px solid rgba(255, 255, 255, .24); border-radius: 50%; }
.cta-orbit i { position: absolute; width: 18px; height: 18px; background: var(--white); border: 5px solid rgba(255, 255, 255, .38); border-radius: 50%; box-shadow: 0 0 0 8px rgba(255, 255, 255, .08); }
.cta-orbit i:first-child { left: 30px; top: 80px; }.cta-orbit i:nth-child(2) { right: 15px; top: 160px; }.cta-orbit i:last-child { left: 155px; bottom: -8px; }

.site-footer { margin-top: 120px; padding: 78px 0 28px; color: var(--white); background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 55px; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid > div > b { margin-bottom: 10px; color: rgba(255, 255, 255, .86); font-size: 11px; letter-spacing: .13em; text-transform: uppercase; }
.footer-grid > div > a:not(.wordmark) { min-height: 34px; display: inline-flex; align-items: center; color: rgba(255, 255, 255, .54); font-size: 13px; text-decoration: none; }
.footer-grid > div > a:not(.wordmark):hover { color: var(--white); }
.footer-brand p { max-width: 280px; margin: 18px 0 0; color: rgba(255, 255, 255, .5); font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 22px; color: rgba(255, 255, 255, .62); border-top: 1px solid rgba(255, 255, 255, .1); font-size: 11px; }

.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes float-card {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}
@keyframes pulse-pin {
  0% { box-shadow: 0 0 0 0 rgba(255, 104, 43, .26); }
  70%, 100% { box-shadow: 0 0 0 24px rgba(255, 104, 43, 0); }
}
@keyframes campaign-ring {
  0% { opacity: .9; transform: scale(.35); }
  100% { opacity: 0; transform: scale(3.2); }
}
@keyframes map-dot {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1120px) {
  .hero-layout { grid-template-columns: minmax(0, .92fr) minmax(450px, 1.08fr); gap: 34px; }
  .hero-phone { left: 21%; }
  .peek-phone { right: 1%; }
  .concept-layout,
  .presence-layout,
  .connections-layout,
  .identity-layout { gap: 58px; }
  .conversation-layout { gap: 55px; }
  .discover-canvas { min-height: 670px; }
  .pulse-copy-card { right: 2%; }
}

@media (max-width: 940px) {
  .section { padding: 105px 0; }
  .menu-button { display: block; position: relative; z-index: 4; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 100px 30px 40px;
    background: rgba(23, 20, 17, .98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { width: 100%; min-height: 58px; font-family: var(--display); font-size: 22px; opacity: .9; }
  .main-nav .nav-cta { width: auto; min-height: 50px; margin-top: 18px; padding-inline: 20px; font-family: var(--body); font-size: 13px; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 12px; padding-top: 150px; padding-bottom: 55px; }
  .hero-copy { max-width: 760px; }
  .product-stage { min-height: 680px; width: min(680px, 100%); margin-inline: auto; }
  .hero-phone { left: 30%; }
  .peek-phone { right: 5%; }
  .people-card { left: 4%; }
  .conversation-card { right: 3%; }
  .concept-layout,
  .presence-layout,
  .conversation-layout,
  .connections-layout,
  .identity-layout,
  .cieva-layout { grid-template-columns: 1fr; }
  .campaign-frame { min-height: 650px; }
  .concept-layout .editorial-copy { max-width: 760px; }
  .discover-canvas { min-height: 680px; }
  .presence-copy { max-width: 760px; }
  .presence-panel { min-height: 620px; }
  .conversation-visual { order: 2; width: min(690px, 100%); margin-inline: auto; }
  .conversation-copy { max-width: 760px; }
  .connections-layout { gap: 40px; }
  .connection-steps { max-width: 720px; }
  .friends-stage { width: min(680px, 100%); margin-inline: auto; }
  .activity-phone { left: 18%; }
  .stories-phone { right: 15%; }
  .identity-copy { max-width: 760px; }
  .identity-stage { width: min(680px, 100%); margin-inline: auto; }
  .cieva-visual { order: 2; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }

  html:not(.js) .menu-button { display: none; }
  html:not(.js) .main-nav {
    position: absolute;
    inset: 72px 14px auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px 12px;
    padding: 12px 16px;
    background: rgba(23, 20, 17, .97);
    border: 1px solid var(--line-light);
    border-radius: 18px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  html:not(.js) .main-nav a { min-height: 44px; font-family: var(--body); font-size: 13px; }
  html:not(.js) .main-nav .nav-cta { width: 100%; margin-top: 0; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 28px, var(--shell)); }
  .section { padding: 84px 0; }
  .nav-shell { min-height: 72px; }
  .wordmark img { width: 36px; height: 36px; }
  .wordmark strong { font-size: 17px; }
  .hero-layout { padding-top: 122px; }
  .hero-copy h1 { font-size: clamp(48px, 14.7vw, 67px); }
  .hero-lead { margin-top: 24px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 12px; align-items: flex-start; flex-direction: column; }
  .product-stage { min-height: 560px; margin-top: 18px; }
  .hero-phone { width: 244px; left: 50%; top: 1%; transform: translateX(-50%) rotate(3deg); }
  .peek-phone { width: 154px; right: -3%; top: 18%; transform: rotate(10deg); }
  .people-card { left: 0; top: 17%; transform: scale(.9) rotate(-3deg); transform-origin: left center; }
  .conversation-card { right: 0; bottom: 12%; transform: scale(.9) rotate(3deg); transform-origin: right center; }
  .pin-one { left: 3%; bottom: 23%; }.pin-two { right: 5%; top: 6%; }.pin-three { display: none; }
  .hero-marquee div { width: 100%; justify-content: center; flex-wrap: wrap; gap: 12px 18px; padding-block: 16px; }
  .campaign-frame { min-height: 520px; border-radius: 34px; }
  .campaign-caption { inset: auto 20px 20px; }
  .campaign-caption p { font-size: 12px; }
  .editorial-copy h2,
  .presence-copy h2,
  .cieva-copy h2 { font-size: clamp(42px, 12vw, 58px); }
  .editorial-copy > p:not(.kicker),
  .presence-copy > p:not(.kicker),
  .cieva-copy > p:not(.kicker) { font-size: 16px; }
  .concept-facts div { grid-template-columns: 90px 1fr; font-size: 14px; }
  .section-intro { margin-bottom: 48px; }
  .section-intro h2,
  .connections-heading h2,
  .identity-copy h2 { font-size: clamp(43px, 12vw, 60px); }
  .section-intro > p:not(.kicker) { font-size: 16px; }
  .discover-canvas { min-height: 650px; border-radius: 34px; }
  .discover-phone { width: 248px; top: 54px; }
  .note-top { left: 12px; top: 25px; transform: scale(.9) rotate(-2deg); transform-origin: left top; }
  .note-bottom { right: 10px; bottom: 30px; max-width: 225px; transform: scale(.88) rotate(2deg); transform-origin: right bottom; }
  .map-dot.dot-b,
  .map-dot.dot-c { display: none; }
  .canvas-label { display: none; }
  .presence-panel { min-height: 720px; border-radius: 34px; }
  .presence-tabs { top: 19px; right: 19px; }
  .presence-orbit { width: 300px; height: 300px; left: 50%; top: 94px; transform: translateX(-50%); }
  .presence-core { inset: 92px; }
  .presence-details { width: auto; inset: 420px 24px auto; }
  .presence-note { inset: auto 24px 22px; }
  .conversation-visual { min-height: 640px; }
  .conversation-visual::before { width: 460px; height: 460px; left: 50%; top: 85px; transform: translateX(-50%); }
  .chat-phone { width: 252px; left: 50%; transform: translateX(-50%) rotate(-3deg); }
  .chat-excerpt { max-width: 205px; transform: scale(.88) rotate(-2deg); transform-origin: left center; }
  .excerpt-one { left: -8px; top: 24%; }.excerpt-two { right: -6px; bottom: 17%; transform-origin: right center; }
  .presence-count { left: 6%; bottom: 9%; }
  .connections-heading { margin-bottom: 48px; }
  .connection-steps h3 { font-size: 24px; }
  .friends-stage { min-height: 620px; }
  .friends-phone { width: 250px; left: 50%; transform: translateX(-50%) rotate(2deg); }
  .friend-card { min-width: 215px; transform: scale(.88) rotate(-3deg); }
  .card-luna { left: -5px; top: 20%; transform-origin: left center; }
  .card-noa { right: -6px; bottom: 14%; transform: scale(.88) rotate(3deg); transform-origin: right center; }
  .pulse-composition { min-height: 690px; }
  .pulse-composition::before { width: 500px; height: 500px; }
  .activity-phone { width: 230px; left: 3%; top: 108px; }
  .stories-phone { width: 220px; right: 2%; top: 65px; }
  .story-ribbon { top: 0; left: 50%; gap: 12px; padding: 13px 15px; transform: translateX(-50%) rotate(-2deg); }
  .story-ring { width: 42px; height: 42px; }
  .pulse-copy-card { right: 0; bottom: 5%; max-width: 230px; }
  .identity-stage { min-height: 650px; }
  .profile-phone { width: 255px; left: 50%; top: 0; transform: translateX(-50%) rotate(-3deg); }
  .gallery-crop { width: 205px; right: 0; bottom: 3%; }
  .reputation-badge { right: 0; top: 19%; transform: scale(.9) rotate(3deg); transform-origin: right center; }
  .alias-card { left: 0; bottom: 18%; transform: scale(.9) rotate(-3deg); transform-origin: left center; }
  .vision-section { min-height: 690px; }
  .vision-media img { object-position: 63% center; }
  .vision-shade { background: linear-gradient(to top, rgba(10, 10, 10, .91), rgba(10, 10, 10, .15) 80%); }
  .vision-copy { padding-bottom: 68px; }
  .vision-copy h2 { font-size: clamp(53px, 15vw, 74px); }
  .vision-copy > p:not(.kicker) { font-size: 16px; }
  .cieva-visual { min-height: 390px; }
  .cieva-halo { width: min(315px, calc(100vw - 44px)); height: min(315px, calc(100vw - 44px)); }
  .cieva-visual img { width: 190px; }
  .cieva-visual > span { right: 0; }
  .final-cta-section { padding-top: 20px; }
  .final-cta { min-height: 620px; padding: 55px 25px; border-radius: 36px; }
  .final-cta h2 { font-size: clamp(52px, 15vw, 73px); }
  .final-cta > p:not(.kicker) { font-size: 16px; }
  .cta-actions { width: 100%; }
  .site-footer { margin-top: 85px; padding-top: 62px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 390px) {
  .hero-copy h1 { font-size: 47px; }
  .button { min-height: 52px; padding-inline: 18px; }
  .product-stage { min-height: 530px; }
  .peek-phone { width: 135px; right: -8%; }
  .float-card { padding: 10px 12px; }
  .float-card small { display: none; }
  .conversation-card { bottom: 14%; }
  .campaign-frame { min-height: 480px; }
  .discover-phone { width: 232px; }
  .note-top { max-width: 205px; }
  .note-top small { display: none; }
  .presence-tabs button { min-width: 72px; }
  .conversation-visual { min-height: 610px; }
  .chat-excerpt { max-width: 185px; }
  .chat-excerpt p { font-size: 10px; }
  .friend-card { min-width: 198px; }
  .story-ribbon figure:last-child { display: none; }
  .activity-phone { left: -8%; }
  .stories-phone { right: -7%; }
  .pulse-copy-card { max-width: 210px; }
  .identity-stage { min-height: 620px; }
  .gallery-crop { width: 185px; }
  .alias-card { max-width: 220px; }
}

@keyframes marquee {
  to { transform: translateX(-32%); }
}

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

@media (forced-colors: active) {
  .button,
  .presence-tabs,
  .float-card,
  .map-note,
  .friend-card { border: 1px solid CanvasText; }
}
