@font-face {
  font-family: Vazirmatn;
  src: url("./assets/Vazirmatn-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Vazirmatn;
  src: url("./assets/Vazirmatn-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #1b2845;
  --ink-soft: #59627e;
  --blue: #78baff;
  --blue-deep: #589de7;
  --lavender: #b79ce9;
  --mint: #8dd8bd;
  --yellow: #f4c85e;
  --paper: #f9fbff;
  --paper-blue: #edf6ff;
  --line: rgba(77, 105, 153, 0.14);
  --glass: rgba(255, 255, 255, 0.68);
  --shadow: 0 30px 90px rgba(73, 102, 151, 0.16);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --page: min(1220px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Vazirmatn, "Noto Sans Arabic", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

img,
svg,
canvas {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

button {
  font: inherit;
}

.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: 10px;
  right: 10px;
  z-index: 999;
  padding: 9px 15px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform 0.2s;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: max(14px, env(safe-area-inset-top)) 0 0;
  transition: transform 0.35s ease;
}

.header-inner {
  width: var(--page);
  min-height: 72px;
  margin: 0 auto;
  padding: 8px 10px 8px 18px;
  display: flex;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background: rgba(250, 252, 255, 0.7);
  box-shadow: 0 16px 50px rgba(63, 94, 144, 0.1);
  backdrop-filter: blur(22px) saturate(145%);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.brand-icon {
  width: 51px;
  height: 51px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 17px;
  background: white;
  box-shadow: 0 9px 26px rgba(103, 147, 209, 0.17);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  margin-bottom: -4px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.8px;
}

.brand small {
  color: var(--ink-soft);
  font-size: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.site-nav a {
  position: relative;
  color: #59617a;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.2s;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-deep);
  opacity: 0;
  transform: translateX(50%) scale(0);
  transition: 0.2s;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: translateX(50%) scale(1);
}

.manager-link {
  min-height: 44px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.manager-link svg {
  width: 18px;
}

.manager-link:hover,
.manager-link:focus-visible {
  border-color: rgba(87, 158, 228, 0.38);
  box-shadow: 0 12px 24px rgba(87, 143, 205, 0.13);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  padding: 12px;
  border: 0;
  border-radius: 14px;
  background: var(--paper-blue);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.2s;
}

.hero {
  position: relative;
  min-height: min(900px, 100svh);
  padding: 155px 0 86px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 16%, rgba(216, 198, 247, 0.5), transparent 27%),
    radial-gradient(circle at 78% 38%, rgba(183, 217, 255, 0.52), transparent 31%),
    linear-gradient(145deg, #fbfdff 0%, #f3f8ff 52%, #fbfaff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(109, 145, 194, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 145, 194, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 70%, transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: minmax(420px, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 32px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow,
.kicker {
  color: #6281aa;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 13px;
  border: 1px solid rgba(102, 154, 220, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 30px rgba(77, 115, 170, 0.08);
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--blue));
  box-shadow: 0 0 0 5px rgba(141, 216, 189, 0.16);
}

.hero h1 {
  margin: 25px 0 20px;
  font-size: clamp(56px, 6.2vw, 93px);
  line-height: 1.13;
  letter-spacing: -5px;
  font-weight: 900;
}

.hero h1 em {
  position: relative;
  color: transparent;
  font-style: normal;
  background: linear-gradient(115deg, #68aaf0, #a991e5 47%, #72c6a6 86%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 3%;
  bottom: -9px;
  width: 84%;
  height: 9px;
  border-radius: 50%;
  border-top: 3px solid rgba(127, 189, 245, 0.5);
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 570px;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 2;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.button {
  min-height: 60px;
  padding: 8px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 19px;
  font-weight: 800;
  line-height: 1.4;
  transition: transform 0.22s, box-shadow 0.22s, opacity 0.22s;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  min-width: 240px;
  background: linear-gradient(125deg, #263957, #334d72 55%, #41658d);
  color: white;
  box-shadow: 0 18px 40px rgba(41, 66, 103, 0.25), inset 0 1px rgba(255, 255, 255, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 48px rgba(41, 66, 103, 0.3), inset 0 1px rgba(255, 255, 255, 0.22);
}

.button-primary > span:nth-child(2) {
  text-align: right;
}

.button strong,
.button small {
  display: block;
}

.button strong {
  font-size: 13px;
}

.button small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 9px;
  font-weight: 400;
}

.button-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.13);
}

.button-icon svg {
  width: 21px;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.57);
  border-color: rgba(89, 113, 153, 0.13);
  color: var(--ink);
  font-size: 12px;
  box-shadow: 0 12px 30px rgba(74, 105, 153, 0.07);
}

.button-ghost svg {
  width: 17px;
  transform: rotate(180deg);
}

.button.is-checking {
  opacity: 0.75;
  cursor: progress;
}

.button.is-unavailable {
  background: linear-gradient(125deg, #77849a, #929db0);
  box-shadow: none;
  cursor: not-allowed;
}

.button.is-unavailable:hover {
  transform: none;
}

.trust-row {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: #6d7690;
  font-size: 10px;
  font-weight: 700;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.trust-row i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

#soundscape {
  position: absolute;
  inset: -4% -6% -4% -5%;
  width: 111%;
  height: 108%;
  z-index: 2;
  touch-action: pan-y;
}

.visual-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.95), rgba(183, 217, 255, 0.25) 48%, transparent 71%);
  filter: blur(2px);
  transform: translate(-50%, -50%);
}

.float-card {
  position: absolute;
  z-index: 4;
  min-width: 178px;
  padding: 13px 15px;
  display: grid;
  grid-template-columns: 39px 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 21px 45px rgba(67, 100, 150, 0.13);
  backdrop-filter: blur(18px) saturate(135%);
  animation: hover-card 5s ease-in-out infinite;
}

.float-card b {
  align-self: end;
  font-size: 11px;
}

.float-card small {
  grid-column: 2;
  color: #78839a;
  font-size: 8px;
}

.float-card-top {
  top: 13%;
  right: 1%;
}

.float-card-bottom {
  bottom: 10%;
  left: -2%;
  animation-delay: -2.1s;
}

.mini-wave {
  grid-row: 1 / 3;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(183, 217, 255, 0.55), rgba(216, 198, 247, 0.45));
}

.mini-wave i {
  width: 2px;
  height: 11px;
  border-radius: 3px;
  background: #768ec9;
  animation: mini-wave 1.4s ease-in-out infinite;
}

.mini-wave i:nth-child(2),
.mini-wave i:nth-child(4) {
  height: 20px;
  animation-delay: -0.6s;
}

.mini-wave i:nth-child(3) {
  height: 27px;
  animation-delay: -0.9s;
}

.privacy-pulse {
  grid-row: 1 / 3;
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(141, 216, 189, 0.28);
  color: #4ca482;
}

.privacy-pulse svg {
  width: 21px;
}

.orbit-label {
  position: absolute;
  z-index: 4;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: #687894;
  font-size: 9px;
  box-shadow: 0 10px 30px rgba(86, 113, 154, 0.08);
}

.orbit-label-one {
  top: 32%;
  left: 3%;
}

.orbit-label-two {
  right: 7%;
  bottom: 25%;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.58;
}

.hero-glow-one {
  width: 240px;
  height: 240px;
  top: 18%;
  left: -110px;
  background: rgba(255, 231, 167, 0.35);
}

.hero-glow-two {
  width: 340px;
  height: 340px;
  right: -180px;
  bottom: 5%;
  background: rgba(199, 238, 216, 0.38);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: 50%;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #78849b;
  font-size: 9px;
  transform: translateX(50%);
}

.scroll-cue span {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(88, 115, 154, 0.28);
  border-radius: 999px;
}

.scroll-cue span::after {
  content: "";
  width: 3px;
  height: 6px;
  display: block;
  margin: 6px auto;
  border-radius: 2px;
  background: #78849b;
  animation: scroll-dot 1.7s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 125px 0;
}

.section-heading {
  width: var(--page);
  margin: 0 auto 66px;
  display: grid;
  grid-template-columns: 0.55fr 1.18fr 0.8fr;
  align-items: end;
  gap: 42px;
}

.section-index {
  display: block;
  color: rgba(69, 96, 135, 0.25);
  font-size: 43px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

.section-heading .kicker {
  margin: 10px 0 0;
}

.section-heading h2,
.library-copy h2,
.questions-copy h2 {
  margin: 0;
  font-size: clamp(35px, 4.2vw, 58px);
  line-height: 1.35;
  letter-spacing: -2.4px;
}

.section-heading > p,
.library-copy > p,
.questions-copy > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

.experience {
  background: #fff;
}

.phone-stage {
  width: var(--page);
  min-height: 675px;
  margin: auto;
  padding: 62px 58px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  border: 1px solid rgba(102, 137, 184, 0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 72% 45%, rgba(185, 218, 255, 0.52), transparent 34%),
    radial-gradient(circle at 84% 75%, rgba(215, 198, 246, 0.3), transparent 27%),
    linear-gradient(135deg, #f6faff, #fbfaff);
  box-shadow: var(--shadow);
}

.stage-copy {
  position: relative;
  z-index: 5;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border: 1px solid rgba(84, 174, 138, 0.16);
  border-radius: 999px;
  background: rgba(141, 216, 189, 0.12);
  color: #4a8c73;
  font-size: 9px;
  font-weight: 800;
}

.live-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(141, 216, 189, 0.17);
}

.stage-copy h3 {
  max-width: 400px;
  margin: 20px 0 15px;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.45;
  letter-spacing: -1.7px;
}

.stage-copy > p {
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 2;
}

.feature-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 13px;
}

.feature-list li > span {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  flex: none;
  border: 1px solid rgba(108, 151, 211, 0.2);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.67);
  color: #6592ca;
  font-size: 10px;
  font-weight: 900;
}

.feature-list b,
.feature-list small {
  display: block;
}

.feature-list b {
  font-size: 12px;
}

.feature-list small {
  color: #80899c;
  font-size: 9px;
}

.phones {
  position: relative;
  min-height: 560px;
  direction: ltr;
  perspective: 1300px;
}

.phone {
  position: absolute;
  width: 238px;
  margin: 0;
  overflow: hidden;
  border: 6px solid #20283a;
  border-radius: 37px;
  background: #20283a;
  box-shadow: 0 35px 65px rgba(51, 70, 105, 0.23), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 29px;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 50%;
  width: 52px;
  height: 14px;
  border-radius: 999px;
  background: #151a27;
  transform: translateX(-50%);
}

.phone-main {
  z-index: 3;
  top: 0;
  left: 50%;
  width: 265px;
  transform: translateX(-50%);
}

.phone-back {
  top: 74px;
  z-index: 2;
  opacity: 0.94;
}

.phone-right {
  left: 3%;
  transform: rotateY(15deg) rotateZ(-4deg) scale(0.89);
}

.phone-left {
  right: 3%;
  transform: rotateY(-15deg) rotateZ(4deg) scale(0.89);
}

.why {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 82%, rgba(75, 113, 168, 0.18), transparent 25%),
    radial-gradient(circle at 80% 12%, rgba(120, 92, 172, 0.16), transparent 28%),
    #1b2843;
  color: white;
}

.section-heading.light .section-index {
  color: rgba(255, 255, 255, 0.18);
}

.section-heading.light .kicker {
  color: #a9c9f0;
}

.section-heading.light > p {
  color: #aab4c8;
}

.value-grid {
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr;
  gap: 17px;
}

.value-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
}

.value-card:hover {
  border-color: rgba(183, 217, 255, 0.2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  transform: translateY(-6px);
}

.value-large {
  grid-row: span 2;
  min-height: 680px;
}

.value-wide {
  grid-column: 2 / 4;
  min-height: 333px;
  display: grid;
  grid-template-columns: auto 1fr 0.8fr;
  align-items: center;
  gap: 24px;
}

.value-icon {
  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.22);
}

.value-icon svg {
  width: 28px;
}

.gradient-blue {
  background: linear-gradient(135deg, rgba(120, 186, 255, 0.35), rgba(75, 115, 179, 0.18));
  color: #b9dcff;
}

.gradient-mint {
  background: linear-gradient(135deg, rgba(141, 216, 189, 0.34), rgba(67, 128, 111, 0.16));
  color: #a9ead1;
}

.gradient-purple {
  background: linear-gradient(135deg, rgba(183, 156, 233, 0.38), rgba(102, 78, 153, 0.16));
  color: #d5c0fa;
}

.gradient-yellow {
  background: linear-gradient(135deg, rgba(244, 200, 94, 0.36), rgba(159, 114, 42, 0.16));
  color: #f9dc99;
}

.card-number {
  position: absolute;
  top: 27px;
  left: 29px;
  color: rgba(255, 255, 255, 0.23);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2px;
}

.value-card h3 {
  margin: 24px 0 10px;
  font-size: 22px;
  letter-spacing: -0.7px;
}

.value-card p {
  margin: 0;
  color: #aab5c9;
  font-size: 12px;
  line-height: 2;
}

.value-large h3 {
  margin-top: 28px;
  font-size: 31px;
}

.sound-rings {
  position: absolute;
  right: 50%;
  bottom: 42px;
  width: 270px;
  height: 270px;
  transform: translateX(50%);
}

.sound-rings i {
  position: absolute;
  inset: calc(var(--ring, 0) * 26px);
  border: 1px solid rgba(159, 204, 248, calc(0.34 - var(--ring, 0) * 0.07));
  border-radius: 50%;
}

.sound-rings i:nth-child(2) { --ring: 1; }
.sound-rings i:nth-child(3) { --ring: 2; }

.sound-rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65px;
  height: 102px;
  border: 2px solid #a9d4fb;
  border-radius: 34px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 55px rgba(120, 186, 255, 0.3);
}

.sound-rings span::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -27px;
  width: 2px;
  height: 27px;
  background: #a9d4fb;
  transform: translateX(50%);
}

.sound-rings span::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -28px;
  width: 50px;
  height: 2px;
  border-radius: 2px;
  background: #a9d4fb;
  transform: translate(50%, 25px);
}

.value-wide .card-number {
  position: static;
  display: block;
}

.value-wide h3 {
  margin: 7px 0 8px;
}

.device-pair {
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.device-pair span {
  width: 78px;
  height: 142px;
  border: 3px solid rgba(255, 255, 255, 0.42);
  border-radius: 22px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.16), inset 0 0 24px rgba(120, 186, 255, 0.12);
}

.device-pair span:last-child {
  width: 63px;
  height: 119px;
  border-color: rgba(167, 229, 206, 0.5);
}

.device-pair i {
  width: 32px;
  border-top: 1px dashed rgba(255, 255, 255, 0.45);
}

.library-showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 45%, rgba(199, 238, 216, 0.55), transparent 27%),
    linear-gradient(135deg, #f3fbf8, #f7faff 60%, #fbf8ff);
}

.library-grid {
  width: var(--page);
  min-height: 670px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 80px;
}

.library-copy .kicker {
  margin: 11px 0 19px;
}

.library-copy > p {
  max-width: 490px;
  margin-top: 20px;
}

.category-pills {
  margin-top: 27px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-pills span {
  padding: 6px 13px;
  border: 1px solid rgba(103, 147, 177, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #65768e;
  font-size: 10px;
  box-shadow: 0 9px 20px rgba(78, 114, 148, 0.06);
}

.single-phone {
  position: relative;
  min-height: 650px;
  perspective: 1200px;
}

.phone-library {
  top: 0;
  right: 50%;
  width: 292px;
  transform: translateX(50%) rotateY(-4deg) rotateZ(1.5deg);
}

.track-card {
  position: absolute;
  z-index: 4;
  min-width: 235px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.73);
  box-shadow: 0 23px 55px rgba(59, 95, 136, 0.17);
  backdrop-filter: blur(18px);
}

.track-card > div {
  flex: 1;
}

.track-card b,
.track-card small {
  display: block;
}

.track-card b {
  font-size: 11px;
}

.track-card small {
  color: #78859a;
  font-size: 8px;
}

.track-card > i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #293d5d;
  color: white;
  font-size: 9px;
  font-style: normal;
}

.track-art {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(135deg, #d8c6f7, #b7d9ff);
  color: white;
  font-size: 24px;
}

.track-art.mint {
  background: linear-gradient(135deg, #c7eed8, #91cabb);
}

.track-one {
  top: 25%;
  left: -3%;
}

.track-two {
  right: -2%;
  bottom: 20%;
}

.roadmap {
  overflow: hidden;
  background: #fff;
}

.roadmap-orb {
  position: absolute;
  top: 140px;
  left: -190px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(216, 198, 247, 0.2);
  filter: blur(2px);
}

.future-grid {
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 19px;
}

.future-card {
  overflow: hidden;
  border: 1px solid rgba(76, 107, 152, 0.11);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 23px 70px rgba(68, 95, 137, 0.11);
  transition: transform 0.35s, box-shadow 0.35s;
}

.future-card:hover {
  box-shadow: 0 32px 85px rgba(68, 95, 137, 0.17);
  transform: translateY(-8px);
}

.future-card-offset {
  margin-top: 55px;
}

.future-image {
  position: relative;
  aspect-ratio: 1.28;
  overflow: hidden;
  background: var(--paper-blue);
}

.future-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, rgba(26, 38, 63, 0.25));
}

.future-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.future-card:hover .future-image img {
  transform: scale(1.035);
}

.future-status {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: #52657d;
  font-size: 8px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.future-step {
  position: absolute;
  z-index: 2;
  bottom: 11px;
  left: 17px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 31px;
  font-weight: 900;
}

.future-body {
  min-height: 350px;
  padding: 28px 26px 25px;
  display: flex;
  flex-direction: column;
}

.future-body .kicker {
  margin: 0 0 10px;
  font-size: 9px;
}

.future-body h3 {
  margin: 0 0 13px;
  font-size: 21px;
  line-height: 1.65;
  letter-spacing: -0.7px;
}

.future-body > p:not(.kicker) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 2.1;
}

.future-detail {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #6d7d94;
  font-size: 9px;
}

.facts {
  width: var(--page);
  margin: auto;
  padding: 45px 0 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.fact-card {
  min-height: 165px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fbfdff;
  text-align: center;
}

.fact-card:first-child {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.fact-card:last-child {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.fact-card strong {
  color: transparent;
  background: linear-gradient(120deg, #5f9fdf, #a38bd8);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.fact-card span {
  color: var(--ink-soft);
  font-size: 10px;
}

.questions {
  background: linear-gradient(135deg, #f5f9ff, #faf8ff);
}

.questions-grid {
  width: var(--page);
  margin: auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 90px;
}

.questions-copy .kicker {
  margin: 0 0 14px;
}

.questions-copy > p:last-child {
  margin-top: 21px;
}

.accordion {
  display: grid;
  align-content: start;
  gap: 11px;
}

.accordion details {
  padding: 0 22px;
  border: 1px solid rgba(79, 107, 151, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 35px rgba(70, 98, 143, 0.06);
}

.accordion summary {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span {
  position: relative;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 9px;
  background: var(--paper-blue);
}

.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  border-top: 1.5px solid #6784a9;
  transform: translate(-50%, -50%);
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s;
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion details p {
  margin: -4px 0 22px;
  padding-left: 42px;
  color: var(--ink-soft);
  font-size: 11px;
  line-height: 2.1;
}

.final-cta {
  position: relative;
  min-height: 680px;
  padding: 105px 24px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(120, 186, 255, 0.18), transparent 25%),
    radial-gradient(circle at 20% 80%, rgba(141, 216, 189, 0.11), transparent 24%),
    #182640;
  color: white;
  text-align: center;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.cta-content > img {
  width: 100px;
  height: 100px;
  margin: 0 auto 21px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 29px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.22);
}

.cta-content .kicker {
  color: #aecdf0;
}

.cta-content h2 {
  margin: 12px 0 16px;
  font-size: clamp(45px, 6vw, 76px);
  line-height: 1.28;
  letter-spacing: -3px;
}

.cta-content > p:not(.kicker) {
  margin: 0 auto 28px;
  color: #abb7ca;
  font-size: 13px;
}

.cta-content .button-primary {
  background: linear-gradient(125deg, #79bafd, #a58dda);
  color: #14223a;
  box-shadow: 0 20px 50px rgba(105, 155, 221, 0.22);
}

.cta-content .button small {
  color: rgba(19, 34, 58, 0.62);
}

.cta-content .button-icon {
  background: rgba(255, 255, 255, 0.27);
}

.cta-content .button.is-unavailable {
  background: linear-gradient(125deg, #6f7c91, #8994a7);
  color: white;
}

.cta-content .button.is-unavailable small {
  color: rgba(255, 255, 255, 0.64);
}

.cta-rings i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(310px + var(--i) * 180px);
  height: calc(310px + var(--i) * 180px);
  border: 1px solid rgba(173, 207, 243, calc(0.13 - var(--i) * 0.025));
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cta-rings i:nth-child(1) { --i: 0; }
.cta-rings i:nth-child(2) { --i: 1; }
.cta-rings i:nth-child(3) { --i: 2; }

.site-footer {
  padding: 55px max(24px, calc((100vw - 1220px) / 2)) 25px;
  background: #101a2d;
  color: white;
}

.footer-main {
  padding-bottom: 42px;
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1fr;
  align-items: center;
  gap: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .brand-icon {
  border-color: rgba(255, 255, 255, 0.12);
}

.footer-brand small,
.footer-main > p,
.footer-bottom {
  color: #8996ac;
}

.footer-main > p {
  margin: 0;
  font-size: 10px;
  line-height: 2;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  color: #b7c1d0;
  font-size: 10px;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
}

.noscript-note {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 999;
  padding: 12px 18px;
  border-radius: 12px;
  background: #263957;
  color: white;
  text-align: center;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@keyframes hover-card {
  50% { transform: translateY(-9px); }
}

@keyframes mini-wave {
  50% { transform: scaleY(0.45); opacity: 0.5; }
}

@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  75%, 100% { transform: translateY(11px); opacity: 0; }
}

@media (max-width: 1100px) {
  :root {
    --page: min(940px, calc(100vw - 36px));
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a {
    font-size: 11px;
  }

  .hero-grid {
    grid-template-columns: minmax(360px, 0.9fr) minmax(430px, 1.1fr);
  }

  .hero h1 {
    font-size: clamp(54px, 7vw, 72px);
  }

  .hero-visual {
    min-height: 540px;
  }

  .phone-stage {
    padding: 48px 40px;
  }

  .phone {
    width: 205px;
  }

  .phone-main {
    width: 235px;
  }

  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-large {
    min-height: 550px;
    grid-row: span 1;
  }

  .value-wide {
    grid-column: 1 / 3;
  }

  .future-body {
    min-height: 395px;
  }
}

@media (max-width: 820px) {
  :root {
    --page: calc(100vw - 30px);
    --radius-xl: 31px;
  }

  html {
    scroll-padding-top: 85px;
  }

  .site-header {
    padding-top: max(9px, env(safe-area-inset-top));
  }

  .header-inner {
    position: relative;
    min-height: 63px;
    padding: 6px 8px 6px 12px;
    gap: 9px;
    border-radius: 20px;
  }

  .brand-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-right: auto;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    left: 0;
    padding: 17px;
    display: grid;
    gap: 3px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    background: rgba(250, 252, 255, 0.94);
    box-shadow: 0 24px 55px rgba(62, 91, 136, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-9px);
    transition: opacity 0.2s, transform 0.2s;
    backdrop-filter: blur(22px);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 10px 12px;
    border-radius: 11px;
    font-size: 12px;
  }

  .site-nav a:hover {
    background: var(--paper-blue);
  }

  .manager-link {
    width: 44px;
    min-height: 44px;
    padding: 0;
    justify-content: center;
    overflow: hidden;
    color: transparent;
    white-space: nowrap;
  }

  .manager-link svg {
    position: absolute;
    width: 19px;
    color: var(--ink);
  }

  .hero {
    min-height: auto;
    padding: 128px 0 64px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: clamp(50px, 14vw, 76px);
    letter-spacing: -3.5px;
  }

  .hero-lead {
    margin: auto;
    max-width: 620px;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    min-height: 520px;
  }

  #soundscape {
    inset: -5% 0;
    width: 100%;
  }

  .float-card-top {
    right: 2%;
  }

  .float-card-bottom {
    left: 2%;
  }

  .orbit-label-one { left: 2%; }
  .orbit-label-two { right: 4%; }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 42px;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .section-heading h2,
  .library-copy h2,
  .questions-copy h2 {
    font-size: clamp(34px, 8vw, 49px);
  }

  .phone-stage {
    min-height: 980px;
    padding: 42px 25px;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .stage-copy {
    text-align: center;
  }

  .stage-copy h3,
  .stage-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .feature-list {
    max-width: 440px;
    margin-right: auto;
    margin-left: auto;
    text-align: right;
  }

  .phones {
    min-height: 535px;
  }

  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-card,
  .value-large {
    min-height: 360px;
  }

  .value-large {
    grid-column: 1 / 3;
    min-height: 540px;
  }

  .value-wide {
    grid-template-columns: auto 1fr;
  }

  .device-pair {
    display: none;
  }

  .library-grid,
  .questions-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .library-copy {
    text-align: center;
  }

  .library-copy > p {
    margin-right: auto;
    margin-left: auto;
  }

  .category-pills {
    justify-content: center;
  }

  .single-phone {
    min-height: 645px;
  }

  .track-one { left: 4%; }
  .track-two { right: 4%; }

  .future-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .future-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .future-card-offset {
    margin-top: 0;
  }

  .future-image {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .future-body {
    min-height: 410px;
  }

  .facts {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-bottom: 75px;
  }

  .fact-card,
  .fact-card:first-child,
  .fact-card:last-child {
    border-radius: 20px;
  }

  .questions-copy {
    text-align: center;
  }

  .questions-copy > p {
    max-width: 520px;
    margin-right: auto;
    margin-left: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }

  .footer-brand,
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  :root {
    --page: calc(100vw - 22px);
    --radius-lg: 24px;
  }

  .hero {
    padding-top: 112px;
  }

  .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    margin-bottom: 17px;
    font-size: clamp(45px, 16vw, 67px);
    line-height: 1.2;
    letter-spacing: -3px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
  }

  .button,
  .button-primary {
    width: min(100%, 330px);
    margin: auto;
  }

  .trust-row {
    gap: 8px 14px;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 7px;
  }

  .float-card {
    min-width: 150px;
    padding: 10px;
    transform: scale(0.87);
  }

  .float-card-top {
    top: 8%;
    right: -6%;
    transform-origin: right center;
  }

  .float-card-bottom {
    bottom: 4%;
    left: -6%;
    transform-origin: left center;
  }

  .orbit-label-one { top: 35%; left: 0; }
  .orbit-label-two { right: 0; bottom: 26%; }

  .section {
    padding: 72px 0;
  }

  .section-heading {
    text-align: center;
  }

  .section-index {
    font-size: 34px;
  }

  .section-heading h2,
  .library-copy h2,
  .questions-copy h2 {
    font-size: 32px;
    letter-spacing: -1.5px;
  }

  .section-heading > p,
  .library-copy > p,
  .questions-copy > p {
    font-size: 12px;
  }

  .phone-stage {
    min-height: 840px;
    padding: 32px 16px;
  }

  .stage-copy h3 {
    font-size: 28px;
  }

  .phones {
    min-height: 430px;
    margin: 6px -18px 0;
  }

  .phone {
    width: 150px;
    border-width: 4px;
    border-radius: 27px;
  }

  .phone img {
    border-radius: 22px;
  }

  .phone-main {
    width: 185px;
  }

  .phone-right { left: -1%; }
  .phone-left { right: -1%; }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .value-large,
  .value-wide {
    grid-column: auto;
    min-height: 320px;
    padding: 25px;
  }

  .value-large {
    min-height: 500px;
  }

  .value-wide {
    grid-template-columns: 1fr;
  }

  .sound-rings {
    width: 220px;
    height: 220px;
  }

  .library-grid {
    gap: 40px;
  }

  .single-phone {
    min-height: 550px;
  }

  .phone-library {
    width: 245px;
  }

  .track-card {
    min-width: 185px;
  }

  .track-one {
    top: 23%;
    left: -4%;
  }

  .track-two {
    right: -4%;
    bottom: 19%;
  }

  .future-card {
    display: block;
  }

  .future-image {
    aspect-ratio: 1.35;
  }

  .future-body {
    min-height: 350px;
    padding: 25px 22px 22px;
  }

  .future-body h3 {
    font-size: 19px;
  }

  .facts {
    padding-top: 30px;
  }

  .fact-card {
    min-height: 145px;
    padding: 17px;
  }

  .fact-card strong {
    font-size: 31px;
  }

  .accordion details {
    padding: 0 16px;
  }

  .accordion summary {
    min-height: 67px;
    font-size: 11px;
  }

  .accordion details p {
    padding-left: 0;
  }

  .final-cta {
    min-height: 620px;
  }

  .cta-content h2 {
    font-size: 47px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-bottom {
    display: grid;
    justify-content: center;
    gap: 5px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
