:root {
  --bg: #05070b;
  --bg-soft: #0b1018;
  --panel: #0c111a;
  --panel-2: #101722;
  --text: #f4f7fb;
  --muted: #a0acbd;
  --line: rgba(62, 117, 255, 0.38);
  --line-soft: rgba(255, 255, 255, 0.1);
  --blue: #1e6bff;
  --blue-strong: #0e54db;
  --yellow: #ffd329;
  --yellow-strong: #f1c20d;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.5);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 12%, rgba(30, 107, 255, 0.18), transparent 20%),
    radial-gradient(circle at 26% 62%, rgba(30, 107, 255, 0.12), transparent 18%),
    linear-gradient(180deg, #030406 0%, #06090d 100%);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.55));
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(30, 107, 255, 0.2);
}

.brand-name {
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.site-nav,
.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  color: #09101b;
  background: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 32px 0 72px;
}

.eyebrow,
.section-kicker {
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
}

h1,
h2,
h3,
.step-number {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
  line-height: 0.96;
}

h1 {
  font-size: clamp(4.2rem, 11vw, 8.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

h1 span {
  color: var(--blue);
}

h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.02em;
}

.lead {
  max-width: 56ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.lead.compact {
  max-width: 52rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.stat-card {
  padding: 18px 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(13, 18, 28, 0.9), rgba(9, 13, 20, 0.9));
}

.stat-card strong {
  display: block;
  color: var(--blue);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 16px;
  font-weight: 800;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #080d14;
  background: var(--yellow);
  box-shadow: 0 22px 48px rgba(255, 211, 41, 0.18);
}

.button-store {
  border: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}

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

.phone-glow {
  position: absolute;
  inset: 70px 30px 90px 30px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(30, 107, 255, 0.22), rgba(30, 107, 255, 0));
  filter: blur(16px);
}

.hero-phone-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
}

.hero-phone-frame img {
  width: 100%;
  border-radius: 36px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48);
}

.hero-ring {
  position: absolute;
  bottom: 36px;
  left: 50%;
  width: 88%;
  height: 110px;
  transform: translateX(-50%);
  border: 2px solid rgba(53, 131, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 0 30px rgba(30, 107, 255, 0.45);
}

.section {
  padding: 72px 0;
}

.section-bordered {
  border-top: 1px solid var(--line);
}

.section-heading {
  max-width: 740px;
  margin: 10px 0 30px;
}

.section-heading.wide {
  max-width: 900px;
}

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

.feature-column {
  padding: 24px 22px 10px 0;
  border-right: 1px solid var(--line-soft);
}

.feature-column:last-child {
  border-right: none;
}

.feature-icon {
  margin-bottom: 26px;
  color: var(--blue);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3.4rem;
  line-height: 1;
}

.feature-label {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-column p:last-child,
.screen-card figcaption span,
.step-card p,
.article-card p,
.faq-list p,
.trust-card p {
  color: var(--muted);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.screen-card,
.step-card,
.article-card,
.faq-list details,
.trust-card,
.support-main .section-heading,
.legal-card,
.card,
.not-found {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(10, 14, 22, 0.96), rgba(7, 10, 16, 0.96));
  box-shadow: var(--shadow);
}

.screen-card,
.step-card,
.article-card,
.faq-list details,
.trust-card,
.legal-card,
.card,
.not-found {
  padding: 22px;
}

.screen-card {
  margin: 0;
}

.screen-card img {
  width: 100%;
  border-radius: 24px;
}

.screen-card figcaption {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.screen-card figcaption strong {
  font-size: 1.45rem;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

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

.step-number {
  color: transparent;
  -webkit-text-stroke: 1.6px var(--blue);
  font-size: clamp(4.6rem, 8vw, 7rem);
}

.step-orb {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 12px 0 20px;
  border-radius: 999px;
  color: var(--blue);
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line-soft);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
}

.article-card h3 {
  margin-top: 30px;
  margin-bottom: 14px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list p {
  margin-bottom: 0;
}

.cta-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: stretch;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.cta-copy {
  padding: 18px 0;
}

.trust-card {
  display: grid;
  align-content: start;
  gap: 14px;
  border-color: rgba(255, 211, 41, 0.55);
}

.trust-title {
  margin: 0;
  color: var(--text);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

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

.trust-links a,
.support-links a,
.support-email a {
  color: var(--yellow);
  font-weight: 700;
}

.site-footer {
  padding: 26px 0 40px;
  margin-top: 20px;
  border-top: 1px solid var(--line-soft);
}

.support-shell {
  min-height: 100vh;
}

.support-main,
.legal-main {
  padding: 56px 0 24px;
}

.support-heading {
  padding: 26px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.support-list,
.legal-card ol,
.legal-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.legal-layout {
  display: grid;
  gap: 20px;
}

.legal-card h2 {
  margin-bottom: 12px;
}

.legal-card li + li {
  margin-top: 10px;
}

.not-found {
  width: min(calc(100% - 32px), 680px);
  margin: 14vh auto 0;
  text-align: center;
}

@media (max-width: 1080px) {
  .hero,
  .cta-block {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

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

@media (max-width: 820px) {
  .feature-columns,
  .screen-grid,
  .steps-grid,
  .support-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .feature-column {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
    padding-bottom: 24px;
  }

  .feature-column:last-child {
    border-bottom: none;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .site-header,
  .site-footer,
  .site-nav,
  .footer-links {
    display: block;
  }

  .site-nav,
  .footer-links {
    margin-top: 12px;
  }

  .site-nav a,
  .footer-links a {
    display: inline-block;
    margin-right: 14px;
    margin-bottom: 10px;
  }

  .hero {
    padding-bottom: 48px;
  }

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

  .hero-ring {
    height: 84px;
    bottom: 18px;
  }

  .section {
    padding: 54px 0;
  }
}
