:root {
  --bg: #090b16;
  --bg-soft: #0e1120;
  --surface: rgba(18, 23, 42, 0.72);
  --surface-solid: #12172a;
  --surface-raised: #18203a;
  --line: rgba(186, 199, 255, 0.14);
  --line-strong: rgba(186, 199, 255, 0.24);
  --text: #f3f5ff;
  --muted: #a4abc1;
  --subtle: #737c98;
  --cyan: #8be8ff;
  --indigo: #9e8cff;
  --lime: #caff66;
  --lime-deep: #a6df3f;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
  --radius-lg: 28px;
  --radius-md: 18px;
  --mx: 50%;
  --my: 20%;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  touch-action: pan-y;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(91, 112, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 14%, rgba(105, 228, 255, 0.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(152, 168, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(152, 168, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 75%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 11, 22, 0.08), rgba(9, 11, 22, 0.7));
  content: "";
}

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

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

button {
  font: inherit;
}

svg {
  display: block;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--lime);
  color: #0c1117;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.ambient {
  position: absolute;
  z-index: -1;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.28;
  pointer-events: none;
}

.ambient-one {
  top: 38rem;
  left: -18rem;
  background: radial-gradient(circle, rgba(158, 140, 255, 0.28), transparent 68%);
}

.ambient-two {
  top: 108rem;
  right: -17rem;
  background: radial-gradient(circle, rgba(139, 232, 255, 0.22), transparent 68%);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.035;
  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='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(186, 199, 255, 0.07);
  background: rgba(9, 11, 22, 0.58);
  backdrop-filter: blur(20px);
}

.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--lime);
  box-shadow: none;
  overflow: visible;
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 500;
}

.brand-name strong {
  font-weight: 760;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.9rem;
}

.desktop-nav a,
.footer-top {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-top:hover,
.footer-top:focus-visible {
  color: var(--text);
}

.nav-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid rgba(202, 255, 102, 0.25);
  border-radius: 12px;
  background: rgba(202, 255, 102, 0.08);
  color: var(--lime);
  font-size: 0.84rem;
  font-weight: 700;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-download svg {
  width: 16px;
  height: 16px;
}

.nav-download:hover,
.nav-download:focus-visible {
  border-color: rgba(202, 255, 102, 0.58);
  background: rgba(202, 255, 102, 0.15);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 10px;
  background: currentColor;
}

.mobile-menu {
  display: grid;
  gap: 2px;
  padding-bottom: 16px;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.mobile-menu-download {
  color: var(--lime) !important;
}

.hero {
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: 28px 56px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 12px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-dot,
.status-dot,
.mini-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(202, 255, 102, 0.09), 0 0 18px rgba(202, 255, 102, 0.8);
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  color: var(--text);
  font-size: clamp(4rem, 8vw, 7.6rem);
  font-weight: 780;
  letter-spacing: -0.095em;
  line-height: 0.91;
}

.hero h1 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(105deg, var(--cyan) 4%, var(--indigo) 88%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 510px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 31px;
}

.hero-download-row {
  grid-column: 1 / -1;
  width: min(90vw, 1044px);
  margin-inline: auto;
}

.hero-download-row .button {
  width: 100%;
  min-height: 72px;
  padding-inline: clamp(22px, 4vw, 46px);
  border-radius: 20px;
  font-size: 1.05rem;
  box-shadow: 0 18px 48px rgba(202, 255, 102, 0.2);
}

.hero-download-row .button > span {
  font-size: 1.05rem;
  font-weight: 850;
}

.hero-download-row .button small {
  margin-left: 8px;
  color: rgba(9, 17, 14, 0.62);
  font-size: 0.78rem;
  font-weight: 650;
}

.hero-download-row .button svg {
  margin-left: auto;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 780;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-primary {
  background: var(--lime);
  color: #0a1115;
  box-shadow: 0 14px 30px rgba(202, 255, 102, 0.16);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d9ff8d;
  box-shadow: 0 18px 38px rgba(202, 255, 102, 0.26);
  transform: translateY(-3px);
}

.button-light {
  min-width: 198px;
  background: var(--text);
  color: #101527;
  box-shadow: 0 16px 34px rgba(1, 4, 12, 0.22);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 650;
}

.text-link span {
  color: var(--lime);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, 3px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 23px;
  margin-top: 34px;
  color: var(--subtle);
  font-size: 0.77rem;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta .status-dot {
  width: 5px;
  height: 5px;
  box-shadow: 0 0 0 4px rgba(202, 255, 102, 0.08), 0 0 12px rgba(202, 255, 102, 0.6);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 540px;
  place-items: center;
}

.hero-visual::before {
  position: absolute;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(158, 140, 255, 0.15);
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(158, 140, 255, 0.23), rgba(139, 232, 255, 0.06) 48%, transparent 70%);
  box-shadow: inset 0 0 70px rgba(139, 232, 255, 0.08), 0 0 100px rgba(104, 111, 255, 0.1);
  content: "";
}

.orbit {
  position: absolute;
  border: 1px solid rgba(139, 232, 255, 0.12);
  border-radius: 50%;
  transform: rotate(-26deg);
}

.orbit-one {
  width: 37rem;
  height: 13rem;
}

.orbit-two {
  width: 29rem;
  height: 9rem;
  border-color: rgba(202, 255, 102, 0.13);
  transform: rotate(48deg);
}

.phone {
  position: relative;
  z-index: 2;
  width: min(286px, 66%);
  padding: 9px;
  border: 1px solid rgba(206, 214, 255, 0.29);
  border-radius: 39px;
  background: linear-gradient(145deg, #303a61, #11162b 34%, #080b18 90%);
  box-shadow: 22px 28px 62px rgba(0, 0, 0, 0.5), -10px -14px 40px rgba(161, 142, 255, 0.12);
  transform: rotate(5deg);
  animation: phone-float 7s ease-in-out infinite;
}

.phone::after {
  position: absolute;
  inset: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  pointer-events: none;
  content: "";
}

.phone-speaker {
  position: absolute;
  z-index: 4;
  top: 17px;
  left: 50%;
  width: 66px;
  height: 5px;
  border-radius: 20px;
  background: rgba(2, 5, 12, 0.82);
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  min-height: 548px;
  overflow: hidden;
  padding: 5px;
  border-radius: 31px;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 232, 255, 0.11), transparent 35%),
    linear-gradient(165deg, #121a35, #0d1123 62%, #0b0e1c);
}

.phone-flow-video {
  display: block;
  width: 100%;
  height: 538px;
  border-radius: 26px;
  object-fit: contain;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b9c3de;
  font-size: 0.63rem;
}

.phone-brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-weight: 760;
}

.tiny-mark {
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 1px solid rgba(202, 255, 102, 0.44);
  border-radius: 6px;
  color: var(--lime);
  font-size: 0.72rem;
  line-height: 1;
}

.phone-time {
  color: #737e9c;
}

.phone-greeting {
  margin-top: 48px;
  color: #a4aecb;
  font-size: 0.82rem;
  line-height: 1.28;
}

.phone-greeting strong {
  color: #f6f8ff;
  font-size: 1.28rem;
  letter-spacing: -0.05em;
}

.phone-input {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 0 10px;
  border: 1px solid rgba(139, 232, 255, 0.2);
  border-radius: 13px;
  background: rgba(8, 11, 26, 0.55);
  color: #7582a5;
  font-size: 0.65rem;
}

.play-glyph {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 8px;
  background: rgba(139, 232, 255, 0.14);
  color: var(--cyan);
  font-size: 0.55rem;
}

.paste-label {
  margin-left: auto;
  color: var(--lime);
  font-size: 0.6rem;
  font-weight: 800;
}

.phone-section-label {
  margin-top: 28px;
  color: #717d9f;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.format-row {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}

.format-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 0.59rem;
  font-weight: 780;
}

.format-chip span {
  font-size: 0.66rem;
}

.format-video {
  background: rgba(202, 255, 102, 0.12);
  color: var(--lime);
}

.format-audio {
  background: rgba(158, 140, 255, 0.15);
  color: #c9beff;
}

.format-wave {
  background: rgba(139, 232, 255, 0.12);
  color: var(--cyan);
}

.download-preview {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 29px;
  padding: 9px;
  border: 1px solid rgba(186, 199, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
}

.preview-thumb {
  display: grid;
  width: 45px;
  height: 43px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(139, 232, 255, 0.22), transparent),
    linear-gradient(135deg, #313a78, #1b2447);
  color: #e4e9ff;
  font-size: 0.68rem;
}

.preview-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.preview-copy strong {
  overflow: hidden;
  color: #e8ecff;
  font-size: 0.61rem;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-copy span {
  color: #7581a0;
  font-size: 0.55rem;
}

.preview-arrow {
  margin-left: auto;
  color: var(--lime);
  font-size: 1rem;
}

.phone-footer {
  position: absolute;
  right: 15px;
  bottom: 18px;
  left: 15px;
  display: flex;
  justify-content: space-around;
  padding-top: 12px;
  border-top: 1px solid rgba(186, 199, 255, 0.1);
}

.footer-item {
  display: grid;
  justify-items: center;
  gap: 2px;
  color: #65708d;
  font-size: 0.54rem;
}

.footer-item span {
  font-size: 0.82rem;
}

.footer-item.active {
  color: var(--lime);
}

.visual-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(14, 18, 35, 0.76);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  color: #dfe4fa;
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(15px);
}

.badge-top {
  top: 83px;
  right: 4%;
}

.badge-bottom {
  bottom: 97px;
  left: 0;
  color: var(--cyan);
}

.badge-icon {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 7px;
  background: rgba(139, 232, 255, 0.13);
}

.source-strip {
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.source-label {
  color: var(--subtle);
  font-size: 0.83rem;
  white-space: nowrap;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 21px;
  color: #d2d8ea;
  font-size: 0.83rem;
  font-weight: 700;
}

.source-list span::before {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 9px 3px 0;
  border-radius: 50%;
  background: var(--indigo);
  content: "";
}

.section {
  padding-top: 150px;
  padding-bottom: 20px;
}

.section-heading {
  max-width: 620px;
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.section-heading h2 span {
  color: #818ba9;
}

.section-heading > p:last-child {
  max-width: 460px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 62px;
}

.feature-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(24, 32, 58, 0.8), rgba(13, 17, 32, 0.76));
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.14);
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}

.feature-card:hover {
  border-color: var(--line-strong);
  background: linear-gradient(145deg, rgba(29, 39, 70, 0.88), rgba(13, 17, 32, 0.85));
  transform: translateY(-5px);
}

.feature-card-wide {
  grid-column: span 2;
  min-height: 328px;
  background:
    radial-gradient(circle at 84% 50%, rgba(139, 232, 255, 0.12), transparent 24rem),
    linear-gradient(145deg, rgba(24, 32, 58, 0.8), rgba(13, 17, 32, 0.76));
}

.feature-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-number {
  color: var(--subtle);
  font-size: 0.73rem;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.feature-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 12px;
  background: rgba(139, 232, 255, 0.1);
  color: var(--cyan);
  font-size: 1.2rem;
  font-weight: 500;
}

.icon-sliders {
  background: rgba(158, 140, 255, 0.12);
  color: #c9beff;
}

.icon-device {
  background: rgba(202, 255, 102, 0.1);
  color: var(--lime);
}

.feature-card h3 {
  margin: 31px 0 8px;
  color: var(--text);
  font-size: 1.34rem;
  letter-spacing: -0.04em;
}

.feature-card p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.link-demo {
  display: flex;
  max-width: 525px;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  padding: 12px 14px;
  border: 1px solid rgba(139, 232, 255, 0.14);
  border-radius: 11px;
  background: rgba(6, 10, 22, 0.42);
  color: #8692b2;
  font-size: 0.78rem;
}

.link-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px rgba(139, 232, 255, 0.8);
}

.demo-check {
  margin-left: auto;
  color: var(--lime);
}

.stacked-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 25px;
}

.stacked-chips span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #cbd2e8;
  font-size: 0.71rem;
  font-weight: 720;
}

.stacked-chips span:nth-child(2) {
  border-color: rgba(158, 140, 255, 0.32);
  color: #c9beff;
}

.stacked-chips span:nth-child(3) {
  border-color: rgba(139, 232, 255, 0.3);
  color: var(--cyan);
}

.stacked-chips span:nth-child(4) {
  border-color: rgba(202, 255, 102, 0.26);
  color: var(--lime);
}

.device-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 27px;
  color: #cbd2e8;
  font-size: 0.75rem;
}

.device-line-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 8px;
  background: rgba(202, 255, 102, 0.1);
  color: var(--lime);
}

.device-line .status-dot {
  width: 5px;
  height: 5px;
  margin-left: auto;
  box-shadow: 0 0 0 4px rgba(202, 255, 102, 0.08), 0 0 12px rgba(202, 255, 102, 0.6);
}

.how-section {
  margin-top: 130px;
  padding: 110px 0 120px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(105deg, rgba(17, 22, 41, 0.62), rgba(8, 11, 22, 0.04));
}

.how-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
  gap: 110px;
}

.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.step-index {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(202, 255, 102, 0.24);
  border-radius: 12px;
  background: rgba(202, 255, 102, 0.07);
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 780;
}

.step h3 {
  margin: 1px 0 4px;
  color: var(--text);
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.step p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.download-banner {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 125px;
  padding: 42px 48px;
  overflow: hidden;
  border: 1px solid rgba(202, 255, 102, 0.23);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 83% 22%, rgba(202, 255, 102, 0.26), transparent 18rem),
    radial-gradient(circle at 70% 100%, rgba(139, 232, 255, 0.17), transparent 26rem),
    linear-gradient(115deg, #1a2840, #18223d 45%, #253850);
  box-shadow: var(--shadow);
}

.download-banner .section-kicker {
  margin-bottom: 14px;
}

.download-banner h2 {
  margin: 0;
  color: #f6f8ff;
  font-size: clamp(2.3rem, 4vw, 4rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.98;
}

.download-banner h2 span {
  color: var(--lime);
}

.faq-section {
  padding-bottom: 150px;
}

.faq-list {
  max-width: 790px;
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  list-style: none;
  cursor: pointer;
  color: var(--text);
  font-size: 1rem;
  font-weight: 670;
}

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

.faq-list summary span {
  color: var(--lime);
  font-size: 1.6rem;
  font-weight: 350;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -5px 0 25px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(5, 7, 14, 0.4);
}

.footer-wrap {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-note,
.footer-top {
  color: var(--subtle);
  font-size: 0.76rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.reveal-delay {
  transition-delay: 110ms;
}

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

@keyframes phone-float {
  0%, 100% {
    transform: translateY(0) rotate(5deg);
  }
  50% {
    transform: translateY(-13px) rotate(3deg);
  }
}

@media (min-width: 701px) and (max-width: 1180px) {
  .container {
    width: 90%;
    max-width: none;
  }
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 64px;
    padding-bottom: 42px;
  }

  .hero-copy {
    max-width: 700px;
    grid-row: 1;
  }

  .hero-download-row {
    grid-row: 2;
  }

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

  .how-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .how-grid .section-heading {
    max-width: 700px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 32px, 1160px);
  }

  .desktop-nav,
  .nav-download {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
    gap: 22px;
    padding-top: 42px;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 17vw, 5.2rem);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-download-row {
    width: 90vw;
  }

  .hero-download-row .button {
    min-height: 66px;
    border-radius: 16px;
  }

  .text-link {
    justify-content: center;
  }

  .hero-meta {
    gap: 12px 18px;
    font-size: 0.7rem;
  }

  .hero-visual {
    min-height: 500px;
    margin-top: 0;
  }

  .hero-visual::before {
    width: 20rem;
    height: 20rem;
  }

  .orbit-one {
    width: 26rem;
    height: 10rem;
  }

  .orbit-two {
    width: 22rem;
    height: 7rem;
  }

  .phone {
    width: min(255px, 72vw);
  }

  .phone-screen {
    min-height: 485px;
  }

  .phone-flow-video {
    height: 475px;
  }

  .visual-badge {
    padding: 8px 10px;
    font-size: 0.64rem;
  }

  .badge-top {
    top: 52px;
    right: 0;
  }

  .badge-bottom {
    bottom: 64px;
    left: -4px;
  }

  .source-strip {
    display: block;
    padding: 22px 0;
  }

  .source-list {
    justify-content: flex-start;
    margin-top: 14px;
    gap: 8px 13px;
    font-size: 0.75rem;
  }

  .source-list span::before {
    margin-right: 6px;
  }

  .section {
    padding-top: 105px;
  }

  .section-heading h2 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    min-height: 0;
  }

  .feature-card-wide {
    min-height: 280px;
  }

  .how-section {
    margin-top: 95px;
    padding: 86px 0 92px;
  }

  .download-banner {
    display: block;
    margin-top: 92px;
    padding: 31px 25px;
  }

  .download-banner h2 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .button-light {
    width: 100%;
    margin-top: 28px;
  }

  .hero-download-row .button small {
    display: none;
  }

  .faq-section {
    padding-bottom: 105px;
  }

  .faq-list {
    margin-top: 38px;
  }

  .faq-list summary {
    min-height: 70px;
    font-size: 0.94rem;
  }

  .footer-wrap {
    min-height: 150px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

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

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

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