:root {
  --red: #ff3158;
  --red-deep: #df1740;
  --ink: #101012;
  --ink-soft: #19191c;
  --paper: #f2efe8;
  --paper-deep: #e8e3da;
  --white: #fff;
  --muted: #716f6a;
  --line-light: rgba(16, 16, 18, .14);
  --line-dark: rgba(255, 255, 255, .13);
  --shell: min(1240px, calc(100% - 64px));
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
::selection { background: var(--red); color: var(--white); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { color: inherit; font: inherit; }
p, h1, h2, h3, h4 { text-wrap: balance; }
.shell { width: var(--shell); margin-inline: auto; position: relative; }
.skip-link { position: fixed; top: -80px; left: 18px; z-index: 200; padding: 13px 18px; background: #fff; color: #000; }
.skip-link:focus { top: 18px; }
.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 110;
  height: 3px;
  width: calc(var(--scroll-progress, 0) * 100%);
  background: var(--red);
  pointer-events: none;
}
.dark-section { background: var(--ink); color: var(--white); }
.light-section { background: var(--paper); color: var(--ink); }

.site-header {
  height: 86px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  border-bottom: 1px solid transparent;
  transition: background .35s, border-color .35s, height .35s;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(16, 16, 18, .9);
  border-color: var(--line-dark);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 100%; display: flex; justify-content: space-between; align-items: center; }
.brand, .footer-brand { display: flex; align-items: flex-end; gap: 10px; color: var(--white); font-size: 9px; font-weight: 800; letter-spacing: .27em; }
.brand img { width: 110px; height: 52px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.brand span, .footer-brand span { margin-bottom: 10px; }
nav { display: flex; align-items: center; gap: 34px; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 600; }
nav a { position: relative; transition: color .2s; }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--red); transition: right .25s; }
nav a:hover { color: #fff; }
nav a:hover::after { right: 0; }
.nav-cta { min-height: 43px; padding: 0 6px 0 17px; border: 1px solid rgba(255,255,255,.35); display: inline-flex; align-items: center; gap: 16px; color: #fff; font-size: 11px; font-weight: 700; }
.nav-cta i { width: 31px; height: 31px; background: var(--red); display: grid; place-items: center; font-style: normal; font-size: 15px; transition: transform .25s; }
.nav-cta:hover i { transform: rotate(45deg); }
.menu-button { display: none; background: none; border: 0; width: 43px; height: 43px; padding: 10px 6px; }
.menu-button span { height: 2px; display: block; background: #fff; margin: 7px 0; transition: .25s; }

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-top: 86px;
  background:
    radial-gradient(circle at 75% 46%, rgba(255,49,88,.13), transparent 25%),
    linear-gradient(120deg, #101012, #141416 64%, #101012);
}
.hero::after { content: ""; position: absolute; inset: auto 0 52px; height: 1px; background: var(--line-dark); z-index: -1; }
.hero-glow { position: absolute; width: 520px; height: 520px; border-radius: 50%; right: 5vw; top: 18vh; background: var(--red); filter: blur(170px); opacity: .13; z-index: -1; }
.hero-rings { position: absolute; right: -7vw; top: 13vh; width: 55vw; aspect-ratio: 1; z-index: -1; }
.hero-rings i { position: absolute; inset: 0; border: 1px solid rgba(255,49,88,.12); border-radius: 50%; }
.hero-rings i:nth-child(2) { inset: 13%; }
.hero-rings i:nth-child(3) { inset: 26%; }
.hero-inner { min-height: calc(100svh - 138px); display: grid; grid-template-columns: .89fr 1.11fr; align-items: center; gap: 4vw; padding-block: 70px 95px; }
.hero-copy { position: relative; z-index: 5; }
.hero-kicker { display: flex; align-items: center; gap: 11px; margin-bottom: 30px; color: rgba(255,255,255,.67); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.live-dot { width: 7px; height: 7px; background: #67dc8a; border-radius: 50%; box-shadow: 0 0 0 6px rgba(103,220,138,.1); }
.hero h1, .display-title, .cta-content h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 760;
  letter-spacing: -.072em;
}
.hero h1 { font-size: clamp(60px, 6.2vw, 99px); line-height: .89; }
.hero h1 em, .display-title em, .cta-content h2 em { color: var(--red); font-style: normal; }
.hero-bottom { margin-top: 35px; max-width: 540px; }
.hero-bottom > p { max-width: 500px; margin: 0 0 30px; color: rgba(255,255,255,.62); font-size: 16px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.button {
  min-height: 58px;
  padding: 0 8px 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 12px;
  font-weight: 750;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.button i { width: 42px; height: 42px; display: grid; place-items: center; font-style: normal; font-size: 19px; transition: transform .25s; }
.button:hover { transform: translateY(-3px); box-shadow: 0 20px 45px rgba(0,0,0,.22); }
.button:hover i { transform: rotate(45deg); }
.button-primary { background: var(--red); color: #fff; }
.button-primary i { background: rgba(0,0,0,.12); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark i { background: var(--red); }
.scroll-link { display: flex; align-items: center; gap: 13px; color: rgba(255,255,255,.66); font-size: 11px; font-weight: 700; }
.scroll-link i { width: 35px; height: 35px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; font-style: normal; }

.hero-product { position: relative; min-height: 600px; display: flex; align-items: center; justify-content: center; perspective: 1200px; }
.product-halo { position: absolute; width: 88%; aspect-ratio: 1; border-radius: 50%; background: var(--red); opacity: .16; filter: blur(100px); }
.dashboard-window {
  position: relative;
  z-index: 2;
  width: 760px;
  max-width: 120%;
  overflow: hidden;
  color: var(--ink);
  background: #f8f7f3;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 45px 100px rgba(0,0,0,.55);
  transform: rotateY(-6deg) rotateX(2deg);
}
.window-bar { height: 56px; display: flex; align-items: center; justify-content: space-between; padding: 0 19px; background: #fff; border-bottom: 1px solid #e7e4df; }
.window-brand { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 750; }
.window-brand img { width: 23px; height: 23px; object-fit: contain; }
.window-search { width: 210px; border: 1px solid #e8e5df; border-radius: 5px; padding: 8px 12px; color: #aaa59e; font-size: 8px; }
.window-user { width: 27px; height: 27px; background: #efd2c6; border-radius: 50%; display: grid; place-items: center; font-size: 8px; font-weight: 700; }
.dashboard-body { min-height: 400px; display: grid; grid-template-columns: 112px 1fr; }
.dashboard-body aside { background: #151517; color: #888; padding: 22px 13px; }
.dashboard-body aside div { height: 41px; padding: 0 9px; display: flex; align-items: center; gap: 9px; font-size: 8px; }
.dashboard-body aside i { font-style: normal; font-size: 12px; }
.dashboard-body aside .side-active { background: var(--red); color: #fff; border-radius: 4px; }
.dashboard-main { padding: 24px; }
.dashboard-heading { display: flex; justify-content: space-between; align-items: center; }
.dashboard-heading small { color: #9a9690; font-size: 7px; letter-spacing: .08em; }
.dashboard-heading h2 { margin: 4px 0 0; font-size: 19px; letter-spacing: -.04em; }
.dashboard-heading button { padding: 9px 13px; border: 0; border-radius: 3px; background: var(--red); color: #fff; font-size: 7px; font-weight: 700; }
.metric-grid { margin-top: 19px; display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.metric-grid article { min-height: 126px; position: relative; background: #fff; border: 1px solid #ece9e4; padding: 15px; overflow: hidden; }
.metric-grid small { color: #9c9893; font-size: 6px; letter-spacing: .1em; }
.metric-grid strong { display: block; margin: 8px 0 0; font-size: 27px; letter-spacing: -.06em; }
.trend { position: absolute; top: 42px; right: 14px; color: #35a962; font-size: 7px; }
.spark { position: absolute; left: 15px; right: 15px; bottom: 13px; height: 33px; display: flex; gap: 5px; align-items: end; }
.spark i { flex: 1; background: rgba(255,49,88,.18); height: 35%; }
.spark i:nth-child(2) { height: 58%; }.spark i:nth-child(3) { height: 44%; }.spark i:nth-child(4) { height: 76%; }
.spark i:nth-child(5) { height: 63%; }.spark i:nth-child(6) { height: 92%; background: var(--red); }.spark i:nth-child(7) { height: 75%; background: var(--red); }
.metric-note { display: block; margin-top: 7px; color: #97938e; font-size: 7px; }
.avatar-stack { display: flex; margin-top: 17px; }
.avatar-stack i { width: 22px; height: 22px; margin-right: -5px; border: 2px solid #fff; border-radius: 50%; background: #e8c9bf; display: grid; place-items: center; font-size: 5px; font-style: normal; }
.avatar-stack i:nth-child(2) { background: #c9d5e8; }.avatar-stack i:nth-child(3) { background: #e5d6b9; }.avatar-stack i:nth-child(4) { background: var(--ink); color: #fff; }
.status-text { font-size: 17px !important; display: flex !important; align-items: center; gap: 7px; letter-spacing: -.03em !important; }
.status-text i { width: 7px; height: 7px; border-radius: 50%; background: #46bd6f; box-shadow: 0 0 0 4px rgba(70,189,111,.1); }
.activity-panel { margin-top: 10px; background: #fff; border: 1px solid #ece9e4; }
.activity-header { padding: 13px 15px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eeebe7; }
.activity-header small { font-size: 6px; color: #96918b; }
.activity-header b { display: block; margin-top: 2px; font-size: 9px; }
.activity-header > span { font-size: 6px; color: var(--red); }
.activity-row { height: 51px; display: grid; grid-template-columns: 27px 1fr 35px 16px; gap: 9px; align-items: center; padding: 0 15px; border-bottom: 1px solid #f0ede8; }
.activity-row:last-child { border: 0; }
.activity-icon { width: 27px; height: 27px; border-radius: 4px; background: rgba(255,49,88,.08); color: var(--red); display: grid; place-items: center; font-style: normal; font-size: 9px; }
.activity-row b { display: block; font-size: 7px; }
.activity-row small { display: block; margin-top: 3px; color: #aaa59e; font-size: 6px; }
.activity-row time { color: #aaa59e; font-size: 6px; }
.ok { width: 14px; height: 14px; border-radius: 50%; display: grid; place-items: center; background: #e0f5e6; color: #40aa62; font-size: 7px; }
.floating-label { position: absolute; z-index: 4; background: rgba(255,255,255,.96); color: var(--ink); box-shadow: 0 20px 45px rgba(0,0,0,.25); }
.label-one { left: -15px; bottom: 115px; padding: 13px 17px; display: flex; align-items: center; gap: 9px; font-size: 9px; font-weight: 700; }
.label-one span { width: 7px; height: 7px; border-radius: 50%; background: #49c873; box-shadow: 0 0 0 4px #dff5e5; }
.label-two { right: -22px; top: 82px; width: 132px; padding: 15px; }
.label-two small { display: block; color: #999; font-size: 6px; letter-spacing: .1em; }
.label-two b { display: inline-block; margin-top: 6px; font-size: 27px; }
.label-two i { margin-left: 8px; color: #34a85e; font-size: 7px; font-style: normal; }
.hero-marquee { position: absolute; z-index: 3; left: 0; right: 0; bottom: 0; height: 52px; overflow: hidden; background: var(--red); color: #fff; display: flex; align-items: center; }
.hero-marquee div { width: max-content; display: flex; align-items: center; animation: marquee 24s linear infinite; }
.hero-marquee span { white-space: nowrap; font-size: 10px; font-weight: 800; letter-spacing: .16em; padding-inline: 36px; }
.hero-marquee i { font-style: normal; color: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-label { display: flex; gap: 14px; align-items: center; color: var(--muted); font-size: 9px; font-weight: 750; letter-spacing: .17em; }
.section-label span { color: var(--red); }
.intro { min-height: 720px; position: relative; overflow: hidden; padding: 145px 0 170px; }
.intro-grid { display: grid; grid-template-columns: .38fr 1fr; gap: 6vw; position: relative; z-index: 2; }
.intro-overline { margin: 0 0 28px; color: var(--muted); font-size: 14px; }
.display-title { font-size: clamp(51px, 6vw, 86px); line-height: .96; }
.intro-copy { max-width: 570px; margin: 42px 0 0 26%; color: var(--muted); font-size: 17px; line-height: 1.75; }
.oversize-word { position: absolute; left: -2vw; bottom: -4vw; color: transparent; -webkit-text-stroke: 1px rgba(16,16,18,.08); font-size: 15vw; font-weight: 800; letter-spacing: -.08em; line-height: .7; white-space: nowrap; }

.experience { position: relative; min-height: 1100px; padding: 130px 0; overflow: clip; }
.experience::before { content: ""; position: absolute; width: 650px; height: 650px; right: -8%; top: 20%; background: var(--red); opacity: .1; filter: blur(150px); border-radius: 50%; }
.experience-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: start; }
.experience-copy { padding-top: 45px; }
.experience .section-label { color: #858589; }
.story-steps { margin-top: 85px; border-top: 1px solid var(--line-dark); }
.story-step { min-height: 190px; display: grid; grid-template-columns: 52px 1fr; gap: 25px; padding: 34px 0; border-bottom: 1px solid var(--line-dark); opacity: .35; transition: opacity .45s, transform .45s; }
.story-step.active { opacity: 1; transform: translateX(12px); }
.story-step > span { color: var(--red); font-size: 10px; padding-top: 8px; }
.story-step h3 { margin: 0 0 15px; font-size: clamp(29px,3vw,42px); line-height: 1; letter-spacing: -.055em; }
.story-step p { max-width: 440px; margin: 0; color: #929296; font-size: 14px; line-height: 1.65; }
.phone-stage { min-height: 810px; position: sticky; top: 110px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.phone-orbit { position: absolute; width: 620px; height: 620px; border: 1px solid rgba(255,49,88,.2); border-radius: 50%; }
.orbit-b { width: 470px; height: 470px; border-color: rgba(255,255,255,.08); }
.phone-shell { position: relative; z-index: 2; width: 306px; height: 626px; padding: 8px; background: #08080a; border: 1px solid #45454a; border-radius: 47px; box-shadow: 0 55px 100px rgba(0,0,0,.55), inset 0 0 0 2px #242428; overflow: hidden; }
.phone-speaker { position: absolute; top: 17px; left: 50%; z-index: 6; transform: translateX(-50%); width: 82px; height: 22px; border-radius: 18px; background: #09090b; }
.phone-screen { position: absolute; inset: 8px; padding: 42px 22px 22px; background: #f4f1ea; color: var(--ink); border-radius: 39px; opacity: 0; transform: translateY(20px) scale(.98); pointer-events: none; transition: opacity .5s, transform .5s; overflow: hidden; }
.phone-screen.active { opacity: 1; transform: none; pointer-events: auto; }
.mobile-head { height: 38px; display: flex; align-items: center; justify-content: space-between; }
.mobile-head > i { font-style: normal; font-size: 10px; letter-spacing: .1em; }
.mobile-head > b { font-size: 14px; }
.mobile-logo { width: 26px; height: 26px; border-radius: 50%; background: var(--red); display: grid; place-items: center; overflow: hidden; }
.mobile-logo img { width: 20px; height: 20px; object-fit: contain; filter: brightness(0) invert(1); }
.phone-screen > small { display: block; color: #9a9690; margin-top: 18px; font-size: 7px; letter-spacing: .12em; }
.phone-screen h4 { margin: 8px 0 24px; font-size: 32px; line-height: .96; letter-spacing: -.06em; }
.mobile-status { padding: 14px; display: flex; align-items: center; gap: 12px; color: #fff; background: var(--ink); }
.mobile-status > i { width: 9px; height: 9px; background: #5bd07b; border-radius: 50%; box-shadow: 0 0 0 5px rgba(91,208,123,.13); }
.mobile-status small, .mobile-status b { display: block; }
.mobile-status small { color: #7c7c80; font-size: 5px; letter-spacing: .09em; }
.mobile-status b { margin-top: 4px; font-size: 8px; }
.quick-title { display: flex; justify-content: space-between; margin: 23px 0 10px; font-size: 9px; }
.quick-title span { color: var(--red); font-size: 7px; }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.quick-grid div { height: 85px; padding: 13px; display: flex; flex-direction: column; justify-content: space-between; background: #fff; border: 1px solid #e5e1db; }
.quick-grid i { color: var(--red); font-size: 19px; font-style: normal; }
.quick-grid b { font-size: 8px; }
.next-visit { margin-top: 18px; }
.next-visit > small { color: #999; font-size: 6px; letter-spacing: .1em; }
.next-visit > div { margin-top: 8px; padding: 10px; background: #fff; display: grid; grid-template-columns: 31px 1fr 10px; gap: 9px; align-items: center; }
.next-visit div > span, .resident-list div > span { width: 31px; height: 31px; border-radius: 50%; display: grid; place-items: center; background: #efd1c6; color: var(--ink); font-size: 7px; }
.next-visit p, .resident-list p { margin: 0; }
.next-visit b, .next-visit small, .resident-list b, .resident-list small { display: block; }
.next-visit b, .resident-list b { font-size: 8px; }
.next-visit p small, .resident-list p small { margin-top: 3px; color: #999; font-size: 6px; }
.next-visit div > i { font-style: normal; }
.resident-list { border-top: 1px solid #dfdbd4; }
.resident-list > div { padding: 14px 0; display: grid; grid-template-columns: 36px 1fr 20px; gap: 10px; align-items: center; border-bottom: 1px solid #dfdbd4; }
.resident-list > div:nth-child(2) > span { background: #c9d8ea; }
.resident-list > div:nth-child(3) > span { background: #d8e2c7; }
.resident-list div > i { width: 18px; height: 18px; display: grid; place-items: center; background: #e0f4e6; color: #3daa60; border-radius: 50%; font-size: 7px; font-style: normal; }
.mobile-chart { background: var(--ink); color: #fff; padding: 17px; }
.mobile-chart > div { height: 110px; display: flex; align-items: end; gap: 8px; border-bottom: 1px solid #3c3c40; }
.mobile-chart > div i { flex: 1; background: var(--red); opacity: .35; }
.mobile-chart > div i:nth-last-child(-n+2) { opacity: 1; }
.mobile-chart strong { display: block; margin-top: 13px; font-size: 27px; }
.mobile-chart > small { display: block; color: #77777d; margin-top: 2px; font-size: 6px; }
.mobile-insight { margin-top: 11px; padding: 12px; display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid #e5e1db; }
.mobile-insight > i { width: 30px; height: 30px; display: grid; place-items: center; background: #e5f5e9; color: #45aa62; font-style: normal; }
.mobile-insight p { margin: 0; }
.mobile-insight b, .mobile-insight small { display: block; font-size: 8px; }
.mobile-insight small { margin-top: 3px; color: #999; font-size: 6px; }
.phone-caption { width: 360px; margin-top: 30px; display: flex; justify-content: space-between; color: #67676b; font-size: 7px; letter-spacing: .15em; }

.capabilities { padding: 145px 0; }
.capabilities-head { display: grid; grid-template-columns: .43fr 1fr; align-items: start; margin-bottom: 75px; }
.bento-grid { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: 510px 465px; gap: 14px; }
.bento-card { position: relative; overflow: hidden; padding: 34px; border: 1px solid var(--line-light); background: #ebe7df; }
.bento-card h3 { position: relative; z-index: 2; margin: 0 0 14px; font-size: 32px; line-height: 1.04; letter-spacing: -.055em; }
.bento-card > p { position: relative; z-index: 2; max-width: 390px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.card-top { position: relative; z-index: 2; display: flex; justify-content: space-between; font-size: 8px; font-weight: 750; letter-spacing: .14em; }
.card-top i { font-size: 16px; font-style: normal; letter-spacing: 0; }
.bento-access { display: flex; flex-direction: column; justify-content: flex-end; background: var(--ink); color: #fff; }
.bento-access p { color: #85858a; }
.gate-visual { position: absolute; inset: 65px 35px 145px; display: flex; align-items: end; justify-content: center; gap: 16px; }
.gate-visual > i { width: 26%; height: 75%; background: var(--red); }
.gate-visual > i:nth-child(2) { height: 100%; }
.gate-visual > i:nth-child(3) { height: 57%; }
.car { position: absolute; left: 8%; bottom: 5%; width: 46px; height: 24px; display: grid; place-items: center; background: #fff; color: var(--ink); font-size: 14px; }
.bento-community { background: var(--red); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; }
.bento-community p { color: rgba(255,255,255,.72); }
.people-visual { position: absolute; top: 97px; left: 34px; right: 34px; height: 210px; }
.people-visual span { position: absolute; width: 118px; height: 118px; border-radius: 50%; display: grid; place-items: center; border: 6px solid var(--red); background: #efd1c7; color: var(--ink); font-size: 20px; font-weight: 700; box-shadow: 0 18px 35px rgba(77,0,14,.18); }
.people-visual span:nth-child(2) { left: 27%; top: 55px; background: #cbd8e9; }
.people-visual span:nth-child(3) { right: 4%; top: 4px; background: #dbe3c9; }
.people-visual span:nth-child(4) { width: 64px; height: 64px; right: 26%; top: 127px; background: var(--ink); color: #fff; font-size: 25px; }
.bento-insights { background: #ded9cf; display: flex; flex-direction: column; justify-content: flex-end; }
.insights-visual { position: absolute; top: 73px; left: 34px; right: 34px; display: flex; align-items: center; gap: 28px; }
.radial { width: 185px; height: 185px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--red) 0 84%, rgba(16,16,18,.09) 84% 100%); position: relative; }
.radial::before { content: ""; position: absolute; inset: 16px; border-radius: 50%; background: #ded9cf; }
.radial span { position: relative; z-index: 1; font-size: 38px; font-weight: 750; letter-spacing: -.06em; }
.radial small { font-size: 17px; }
.insights-visual p { margin: 0; }
.insights-visual b, .insights-visual small { display: block; }
.insights-visual b { font-size: 13px; }
.insights-visual small { margin-top: 7px; color: var(--muted); font-size: 9px; }
.bento-comms { background: #fff; display: flex; flex-direction: column; justify-content: flex-end; }
.message-visual { position: absolute; top: 80px; left: 8%; right: 8%; }
.message-visual > div { width: 84%; padding: 17px; background: #f0ede7; box-shadow: 0 17px 35px rgba(16,16,18,.08); transform: rotate(-2deg); }
.message-visual > div:nth-child(2) { margin: -3px 0 0 auto; background: var(--red); color: #fff; transform: rotate(2deg); }
.message-visual span, .message-visual b, .message-visual small { display: block; }
.message-visual span { font-size: 6px; letter-spacing: .1em; opacity: .6; }
.message-visual b { margin-top: 8px; font-size: 11px; }
.message-visual small { margin-top: 5px; font-size: 7px; opacity: .6; }

.transformation { padding: 140px 0 160px; overflow: hidden; }
.transformation-head { display: grid; grid-template-columns: .43fr 1fr; margin-bottom: 90px; }
.transformation .section-label { color: #77777b; }
.comparison { min-height: 480px; display: grid; grid-template-columns: 1fr .6fr 1fr; align-items: center; position: relative; }
.comparison::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--line-dark); }
.comparison-side > span { display: block; margin-bottom: 35px; color: #6e6e73; font-size: 8px; font-weight: 750; letter-spacing: .17em; }
.comparison-side ul { list-style: none; padding: 0; margin: 0; }
.comparison-side li { min-height: 64px; padding: 21px 0; border-bottom: 1px solid var(--line-dark); color: #77777c; font-size: 18px; }
.comparison-side li::before { content: "×"; margin-right: 16px; color: #4b4b50; }
.comparison-side.after > span { color: var(--red); }
.comparison-side.after li { color: #fff; }
.comparison-side.after li::before { content: "✓"; color: var(--red); }
.comparison-mark { position: relative; z-index: 2; width: 145px; height: 145px; justify-self: center; display: grid; place-items: center; background: var(--red); border-radius: 50%; box-shadow: 0 0 0 24px var(--ink); }
.comparison-mark img { width: 95px; height: 95px; object-fit: contain; filter: brightness(0) invert(1); }

.audiences { padding: 145px 0; }
.audiences-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 68px; }
.audiences-intro p { margin: 0; color: var(--red); font-size: 9px; font-weight: 750; letter-spacing: .15em; line-height: 1.7; }
.audiences-intro h2 { margin: 0; font-size: clamp(52px,6vw,84px); line-height: .9; letter-spacing: -.07em; }
.audience-track { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.audience-track article { min-height: 330px; padding: 30px; display: flex; flex-direction: column; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); transition: color .35s, background .35s, transform .35s; }
.audience-track article:hover { color: #fff; background: var(--ink); transform: translateY(-8px); }
.audience-track article > span { color: var(--red); font-size: 9px; }
.audience-track h3 { margin: auto 0 15px; font-size: 32px; letter-spacing: -.05em; }
.audience-track p { margin: 0 0 38px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.audience-track i { color: var(--red); font-size: 8px; font-weight: 750; letter-spacing: .15em; font-style: normal; }

.faq { padding: 135px 0; border-top: 1px solid var(--line-light); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.faq .display-title { margin-top: 45px; font-size: clamp(48px,5vw,70px); }
.faq-contact { margin: 80px 0 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.faq-contact a { color: var(--red); font-weight: 700; }
.accordion { border-top: 1px solid var(--ink); }
details { border-bottom: 1px solid var(--line-light); }
summary { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 16px; font-weight: 650; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--red); font-size: 24px; font-weight: 400; transition: transform .25s; }
details[open] summary span { transform: rotate(45deg); }
details > p { max-width: 630px; margin: -5px 0 28px; color: var(--muted); font-size: 14px; line-height: 1.7; }
details > p a { color: var(--red); }

.final-cta { min-height: 720px; position: relative; overflow: hidden; display: grid; place-items: center; background: var(--red); color: #fff; }
.cta-symbol { position: absolute; width: 690px; height: 590px; object-fit: contain; filter: brightness(0) invert(1); opacity: .08; }
.cta-rays { position: absolute; inset: -25%; }
.cta-rays i { position: absolute; left: 50%; top: 50%; width: 150%; height: 1px; transform-origin: left; background: rgba(255,255,255,.09); }
.cta-rays i:nth-child(1) { transform: rotate(20deg); }.cta-rays i:nth-child(2) { transform: rotate(145deg); }.cta-rays i:nth-child(3) { transform: rotate(265deg); }
.cta-content { z-index: 2; text-align: center; }
.cta-content > span { font-size: 9px; font-weight: 750; letter-spacing: .18em; }
.cta-content h2 { margin-top: 28px; font-size: clamp(62px,8vw,112px); line-height: .86; }
.cta-content h2 em { color: var(--ink); }
.cta-content p { margin: 30px 0; font-size: 16px; }

footer { padding: 75px 0 28px; background: var(--ink); color: #fff; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; padding-bottom: 75px; }
.footer-brand img { width: 146px; height: 68px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.footer-brand span { margin-bottom: 14px; }
.footer-main > p { margin: 10px 0 0; color: #85858a; font-size: 14px; line-height: 1.65; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; }
.footer-contact small { color: #66666b; font-size: 8px; letter-spacing: .16em; }
.footer-contact a { padding-bottom: 6px; border-bottom: 1px solid var(--red); font-size: 17px; }
.footer-bottom { padding-top: 24px; border-top: 1px solid #303034; display: flex; justify-content: space-between; color: #67676c; font-size: 9px; letter-spacing: .05em; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease) var(--delay, 0s), transform .8s var(--ease) var(--delay, 0s); }
.reveal.visible { opacity: 1; transform: none; }
.parallax { will-change: transform; }

@media (max-width: 1080px) {
  :root { --shell: min(100% - 44px, 900px); }
  nav { gap: 22px; }
  .hero-inner { grid-template-columns: .85fr 1.15fr; gap: 0; }
  .hero h1 { font-size: clamp(57px, 7.5vw, 78px); }
  .dashboard-window { width: 620px; }
  .dashboard-main { padding: 18px; }
  .metric-grid article { min-height: 115px; padding: 11px; }
  .activity-row:nth-last-child(1) { display: none; }
  .label-one { left: -5px; }
  .experience-grid { gap: 4vw; }
  .bento-grid { grid-template-rows: 480px 440px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 34px, 680px); }
  .site-header, .site-header.scrolled { height: 72px; background: rgba(16,16,18,.92); backdrop-filter: blur(16px); }
  nav {
    position: fixed;
    inset: 72px 0 auto;
    padding: 32px 24px 42px;
    flex-direction: column;
    align-items: flex-start;
    gap: 27px;
    background: rgba(16,16,18,.98);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-130%);
    transition: transform .35s var(--ease);
  }
  nav.open { transform: translateY(0); }
  .nav-cta { margin-left: auto; }
  .menu-button { display: block; }
  .menu-button.active span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-button.active span:last-child { transform: translateY(-5px) rotate(-45deg); }
  .hero { padding-top: 72px; }
  .hero-inner { display: block; padding-top: 75px; }
  .hero-copy { max-width: 630px; }
  .hero h1 { font-size: clamp(62px, 12vw, 90px); }
  .hero-bottom { display: grid; grid-template-columns: 1fr 1fr; max-width: none; gap: 35px; align-items: end; }
  .hero-bottom > p { margin: 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-product { min-height: 610px; margin: 45px auto 0; }
  .dashboard-window { width: 690px; max-width: 98%; transform: rotateY(-3deg) rotateX(1deg); }
  .hero-rings { width: 90vw; right: -25vw; top: 40vh; }
  .intro-grid, .capabilities-head, .transformation-head { grid-template-columns: 1fr; gap: 50px; }
  .intro-copy { margin-left: 18%; }
  .experience { min-height: auto; }
  .experience-grid { grid-template-columns: 1fr; }
  .story-steps { margin-top: 55px; }
  .phone-stage { position: relative; top: auto; margin-top: 60px; }
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 470px); }
  .comparison { grid-template-columns: 1fr; gap: 50px; }
  .comparison::before { left: 50%; top: 47%; bottom: 47%; }
  .comparison-mark { order: 2; }
  .comparison-side.after { order: 3; }
  .audience-track { grid-template-columns: 1fr; }
  .audience-track article { min-height: 270px; }
  .faq-grid { grid-template-columns: 1fr; gap: 70px; }
  .faq-contact { margin-top: 40px; }
}

@media (max-width: 580px) {
  :root { --shell: min(100% - 26px, 520px); }
  .brand img { width: 95px; }
  .brand span { font-size: 7px; margin-bottom: 12px; }
  .nav-cta { display: none; }
  .hero-inner { padding-top: 50px; padding-bottom: 75px; }
  .hero-kicker { font-size: 8px; }
  .hero h1 { font-size: clamp(53px, 17.7vw, 74px); }
  .hero-bottom { grid-template-columns: 1fr; gap: 25px; margin-top: 30px; }
  .hero-actions { flex-direction: row; align-items: center; }
  .button { min-height: 54px; gap: 17px; padding-left: 17px; font-size: 10px; }
  .button i { width: 38px; height: 38px; }
  .scroll-link span { display: none; }
  .hero-product { min-height: 410px; margin-top: 25px; }
  .dashboard-window { width: 580px; max-width: 137%; transform: translateX(8%) scale(.77); }
  .label-one { left: 0; bottom: 62px; }
  .label-two { right: -5px; top: 25px; transform: scale(.85); }
  .hero-marquee { height: 46px; }
  .intro { min-height: 650px; padding: 100px 0 130px; }
  .intro-grid { gap: 45px; }
  .display-title { font-size: clamp(45px, 14vw, 64px); }
  .intro-copy { margin: 35px 0 0; font-size: 15px; }
  .oversize-word { font-size: 23vw; }
  .experience { padding: 95px 0; }
  .story-step { min-height: 170px; grid-template-columns: 35px 1fr; gap: 10px; }
  .story-step.active { transform: none; }
  .story-step h3 { font-size: 28px; }
  .phone-stage { min-height: 690px; margin-top: 30px; }
  .phone-shell { transform: scale(.9); }
  .phone-orbit { width: 440px; height: 440px; }
  .orbit-b { width: 330px; height: 330px; }
  .phone-caption { width: 300px; margin-top: 0; }
  .capabilities { padding: 100px 0; }
  .capabilities-head { margin-bottom: 50px; }
  .bento-grid { grid-template-rows: 450px 430px 430px 430px; }
  .bento-card { padding: 26px; }
  .bento-card h3 { font-size: 28px; }
  .people-visual { left: 20px; right: 20px; }
  .people-visual span { width: 100px; height: 100px; }
  .radial { width: 155px; height: 155px; }
  .insights-visual { gap: 16px; left: 25px; right: 25px; }
  .transformation { padding: 100px 0; }
  .transformation-head { margin-bottom: 65px; }
  .comparison-side li { font-size: 15px; }
  .comparison-mark { width: 110px; height: 110px; }
  .comparison-mark img { width: 75px; height: 75px; }
  .audiences { padding: 100px 0; }
  .audiences-intro { display: block; }
  .audiences-intro h2 { margin-top: 35px; font-size: 52px; }
  .audience-track article { min-height: 250px; padding: 25px; }
  .faq { padding: 100px 0; }
  summary { min-height: 78px; font-size: 14px; }
  .final-cta { min-height: 610px; }
  .cta-content h2 { font-size: clamp(58px, 18vw, 84px); }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-contact { align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}

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