:root {
  --bg: #0b1220;
  --bg2: #070b14;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.085);
  --stroke: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.6);
  --brand: #74f7c4;
  --brand2: #78a6ff;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 0%, rgba(120, 166, 255, 0.18), transparent 55%),
    radial-gradient(900px 700px at 70% 10%, rgba(116, 247, 196, 0.15), transparent 50%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a {
  color: inherit;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
}

a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11, 18, 32, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(116, 247, 196, 0.95), rgba(120, 166, 255, 0.95));
  box-shadow: 0 8px 30px rgba(120, 166, 255, 0.22);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.65), transparent 55%);
  transform: rotate(12deg);
}

.brand-text {
  font-size: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 10px;
  color: #fff;
}

.nav-toggle-bars {
  display: block;
  width: 22px;
  height: 14px;
  background: linear-gradient(#fff, #fff) 0 0 / 100% 2px no-repeat,
    linear-gradient(#fff, #fff) 0 50% / 100% 2px no-repeat,
    linear-gradient(#fff, #fff) 0 100% / 100% 2px no-repeat;
  opacity: 0.9;
}

.hero {
  padding: 66px 0 34px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 14px;
  font-size: 13px;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(38px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 54ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-weight: 600;
}

.button.primary {
  border-color: rgba(116, 247, 196, 0.35);
  background: linear-gradient(135deg, rgba(116, 247, 196, 0.22), rgba(120, 166, 255, 0.18));
  box-shadow: 0 18px 50px rgba(120, 166, 255, 0.12);
}

.fineprint {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted2);
}

.hero-art {
  display: flex;
  justify-content: center;
}

.phone {
  width: min(360px, 100%);
  aspect-ratio: 9/16;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.phone-top {
  height: 34px;
  background: rgba(0, 0, 0, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-body {
  padding: 18px;
}

.phone-chip {
  height: 12px;
  width: 120px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  margin: 2px auto 18px;
}

.phone-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 11, 20, 0.45);
  padding: 14px;
  margin-bottom: 12px;
}

.phone-photo {
  height: 128px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, rgba(116, 247, 196, 0.25), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(120, 166, 255, 0.25), transparent 55%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-lines {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.phone-lines span {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.phone-lines span:nth-child(1) {
  width: 88%;
}

.phone-lines span:nth-child(2) {
  width: 70%;
}

.phone-lines span:nth-child(3) {
  width: 60%;
}

.phone-card.small .phone-lines span:nth-child(1) {
  width: 64%;
}
.phone-card.small .phone-lines span:nth-child(2) {
  width: 52%;
}

.phone-badge {
  width: 82px;
  height: 26px;
  border-radius: 999px;
  background: rgba(116, 247, 196, 0.14);
  border: 1px solid rgba(116, 247, 196, 0.25);
}

.section {
  padding: 54px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.muted {
  color: var(--muted);
}

.grid.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--card);
  padding: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  counter-reset: step;
}

.steps li {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--card);
  padding: 16px;
  position: relative;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.steps p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.callout {
  border-radius: var(--radius);
  border: 1px solid rgba(116, 247, 196, 0.2);
  background: linear-gradient(135deg, rgba(116, 247, 196, 0.12), rgba(120, 166, 255, 0.09));
  padding: 18px;
}

.callout h3 {
  margin: 0 0 8px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-weight: 600;
}

.store-button[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
}

.legal-note {
  margin-top: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--card);
  padding: 16px;
}

.legal-note h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.legal-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}

.contact-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--card);
  padding: 16px;
}

.contact-card p {
  margin: 0 0 10px;
  line-height: 1.7;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 34px 0 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.legal {
  padding-top: 42px;
}

.legal-top {
  margin-bottom: 10px;
}

.back-link {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  text-decoration: none;
}

.markdown h1,
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
  margin: 18px 0 10px;
}

.markdown h1 {
  font-size: 28px;
}

.markdown h2 {
  font-size: 22px;
}

.markdown h3 {
  font-size: 18px;
}

.markdown p,
.markdown li {
  color: var(--muted);
  line-height: 1.75;
}

.markdown ul {
  padding-left: 20px;
}

.markdown pre {
  overflow: auto;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
}

.markdown code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

.markdown hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 20px 0;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-art {
    justify-content: flex-start;
  }
  .grid.cards,
  .steps {
    grid-template-columns: 1fr;
  }
  .two-col {
    grid-template-columns: 1fr;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: absolute;
    right: 20px;
    top: 62px;
    width: min(92vw, 360px);
    display: none;
    flex-direction: column;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(11, 18, 32, 0.92);
    box-shadow: var(--shadow);
  }
  .site-nav[data-open="true"] {
    display: flex;
  }
}

