:root {
  color-scheme: dark;
  --bg: #000;
  --bg-soft: #070616;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(91, 176, 255, 0.36);
  --text: #f8fafc;
  --muted: rgba(248, 250, 252, 0.68);
  --faint: rgba(248, 250, 252, 0.46);
  --blue: #2563eb;
  --cyan: #38d5f5;
  --violet: #5a4ad8;
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.52);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: #000;
  color: var(--text);
}

body::before {
  display: none;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 820;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #000;
  object-fit: cover;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 820;
}

.site-footer nav a {
  opacity: 0.82;
  transition: opacity 160ms ease;
}

.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  opacity: 0.9;
  white-space: nowrap;
  transition: opacity 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  opacity: 1;
}

.legal-sheet {
  width: min(880px, 100vw);
  height: min(88svh, 900px);
  margin: auto auto 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px 28px 0 0;
  background: #080813;
  color: var(--text);
  box-shadow: 0 -26px 80px rgba(0, 0, 0, 0.58);
}

.legal-sheet::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.legal-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.legal-sheet-header h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1;
}

.legal-sheet-close {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.legal-sheet-frame {
  display: block;
  width: 100%;
  height: calc(100% - 68px);
  border: 0;
  background: #080813;
}

.site-header nav a:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: calc(92svh - 66px);
  padding-top: 6px;
  padding-bottom: 30px;
  place-items: center;
}

.hero::before {
  display: none;
}

.hero-inner {
  display: grid;
  justify-items: center;
  width: 100%;
  text-align: center;
}

.hero-logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  margin-bottom: 0;
}

.hero-logo-stage::before {
  display: none;
}

.hero-logo-stage img {
  width: auto;
  height: min(720px, 60svh);
  max-height: 720px;
  background: transparent;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.58));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(50px, 6.5vw, 78px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5.1vw, 68px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede,
.section-heading p,
.feature-copy p,
.premium-copy p,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 16px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.32;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-store-actions {
  align-items: center;
  justify-content: center;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 60px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.app-store-badge:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.app-store-badge img {
  width: 100%;
  height: auto;
}

.store-button,
.support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.065);
  color: var(--text);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.store-button {
  gap: 12px;
  min-width: 184px;
  padding: 10px 18px 10px 12px;
}

.store-button.primary,
.support-button {
  border-color: rgba(56, 213, 245, 0.38);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.94), rgba(56, 213, 245, 0.72));
  color: #fff;
}

.store-button:hover,
.support-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.28);
}

.store-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 18px;
  font-weight: 900;
}

.store-button small,
.store-button span span {
  display: block;
}

.store-button small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.2;
}

.store-button > span:last-child {
  display: grid;
  gap: 2px;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.1;
}

.section-heading {
  max-width: 840px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.feature-showcase {
  padding-top: 72px;
}

.feature-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 44px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 100px rgba(0, 0, 0, 0.28);
}

.feature-copy {
  max-width: 570px;
}

.slide-kicker {
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.42;
}

.signal-list li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(56, 213, 245, 0.38);
}

.feature-phone-area {
  display: grid;
  grid-template-columns: 52px minmax(250px, 360px) 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.iphone-shell {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 430 / 900;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 58px;
  background: #050505;
  box-shadow: var(--shadow);
}

.iphone-shell::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 3;
  width: 96px;
  height: 22px;
  border-radius: 999px;
  background: #030303;
  transform: translateX(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

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

.iphone-buttons::before,
.iphone-buttons::after {
  content: "";
  position: absolute;
  left: -3px;
  width: 3px;
  border-radius: 3px 0 0 3px;
  background: rgba(255, 255, 255, 0.26);
}

.iphone-buttons::before {
  top: 142px;
  height: 56px;
}

.iphone-buttons::after {
  top: 214px;
  height: 74px;
}

.iphone-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 45px;
  background: #000;
}

.iphone-screen img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 180ms ease;
}

.slide-control {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
}

.slide-control span {
  font-size: 38px;
  line-height: 1;
  transform: translateY(-2px);
}

.slide-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.slide-dots button {
  width: 42px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  cursor: pointer;
}

.slide-dots button[aria-current="true"] {
  background: var(--cyan);
}

.premium {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: center;
  gap: 52px;
  width: 100%;
  max-width: none;
  padding-right: max(16px, calc((100vw - 1180px) / 2));
  padding-left: max(16px, calc((100vw - 1180px) / 2));
  background: #000;
}

.premium-copy {
  max-width: 800px;
}

.premium-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.premium-benefits span {
  display: block;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 17px;
  font-weight: 800;
}

.premium-phone-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 16px;
  width: 100%;
}

.premium-phone-grid .iphone-shell {
  width: min(270px, 100%);
}

.premium-phone-grid .iphone-shell:first-child {
  transform: translateY(-18px);
}

.premium-phone-grid .iphone-shell:last-child {
  transform: translateY(18px);
}

.support {
  text-align: center;
}

.support-button {
  min-width: min(100%, 380px);
  padding: 0 26px;
  font-size: 16px;
  font-weight: 850;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 50px;
}

.site-footer nav {
  justify-content: flex-start;
  gap: 18px;
}

.legal-main {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-copy {
  padding-top: 32px;
}

.legal-copy h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.95;
}

.legal-copy h2 {
  margin-top: 44px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.06;
}

.legal-header {
  margin-bottom: 0;
}

.legal-language-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 34px;
}

.legal-language-switcher a {
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.legal-language-switcher a[aria-current="page"] {
  border-color: rgba(92, 176, 255, 0.5);
  background: rgba(56, 132, 255, 0.2);
  color: #fff;
}

.legal-note {
  margin: 26px 0 0;
  padding: 20px;
  border: 1px solid rgba(255, 193, 7, 0.34);
  border-radius: 8px;
  background: rgba(255, 193, 7, 0.08);
  color: rgba(255, 246, 220, 0.9);
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
    padding-top: 34px;
  }

  .feature-stage,
  .premium {
    grid-template-columns: 1fr;
  }

  .feature-copy,
  .premium-copy {
    max-width: none;
  }

  .feature-phone-area {
    grid-template-columns: 52px minmax(250px, 330px) 52px;
  }

  .premium-phone-grid {
    max-width: 640px;
    margin: 0 auto;
  }

}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
  }

  .site-header nav {
    gap: 8px;
  }

  .site-header nav a {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }

  .legal-header {
    align-items: center;
  }

  .legal-header nav {
    display: none;
  }

  .section {
    width: min(100% - 24px, 1180px);
    padding: 68px 0;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-logo-stage {
    height: auto;
  }

  .hero-logo-stage img {
    height: min(420px, 44svh);
  }

  .store-button {
    width: 100%;
    max-width: 320px;
  }

  .hero-store-actions {
    width: 100%;
  }

  .feature-stage {
    padding: 22px;
  }

  .feature-phone-area {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 8px;
  }

  .premium-phone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .premium-phone-grid .iphone-shell:first-child,
  .premium-phone-grid .iphone-shell:last-child {
    transform: none;
  }

  .premium-phone-grid .iphone-shell {
    width: min(160px, 100%);
    padding: 6px;
    border-radius: 30px;
  }

  .premium-phone-grid .iphone-shell::before {
    top: 6px;
    width: 48px;
    height: 12px;
  }

  .premium-phone-grid .iphone-shell::after {
    inset: 4px;
    border-radius: 26px;
  }

  .premium-phone-grid .iphone-screen {
    border-radius: 24px;
  }

  .iphone-shell {
    width: min(290px, 100%);
    padding: 10px;
    border-radius: 48px;
  }

  .iphone-shell::before {
    top: 10px;
    width: 74px;
    height: 18px;
  }

  .iphone-screen {
    border-radius: 38px;
  }

  .slide-control {
    width: 42px;
    height: 42px;
  }

  .slide-control span {
    font-size: 32px;
  }

  .premium-benefits {
    grid-template-columns: 1fr;
  }

  .premium-benefits span {
    font-size: 15px;
  }

  .site-footer nav {
    gap: 14px;
    font-size: 13px;
  }
}

@media (max-width: 460px) {
  .site-header {
    display: grid;
    gap: 12px;
  }

  .site-header nav {
    width: 100%;
    justify-content: flex-start;
  }

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

  h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .hero-lede,
  .section-heading p,
  .feature-copy p,
  .premium-copy p {
    font-size: 16px;
  }

  .feature-stage {
    padding: 18px;
  }

  .feature-phone-area {
    grid-template-columns: 36px minmax(0, 1fr) 36px;
  }

  .slide-control {
    width: 36px;
    height: 36px;
  }
}
