@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f4f8ff;
  --bg-strong: #eaf3ff;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --ink-950: #0c1830;
  --ink-900: #142543;
  --ink-800: #223556;
  --ink-700: #35507b;
  --ink-500: #687b99;
  --line: rgba(34, 115, 255, 0.14);
  --line-strong: rgba(34, 115, 255, 0.24);
  --blue: #2273ff;
  --blue-2: #58bbff;
  --blue-3: #7be3ff;
  --mint: #6bf5cc;
  --navy: #102347;
  --danger: #ff4968;
  --shadow: 0 22px 60px rgba(22, 45, 89, 0.14);
  --shadow-soft: 0 16px 34px rgba(26, 49, 95, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-pill: 999px;
  --page-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Avenir Next', sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 12% 12%, rgba(88, 187, 255, 0.26), transparent 0 28%),
    radial-gradient(circle at 88% 14%, rgba(107, 245, 204, 0.18), transparent 0 24%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 52%, #f7fbff 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(34, 115, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 115, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.4), transparent 82%);
}

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

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(244, 248, 255, 0.72);
  border-bottom: 1px solid rgba(34, 115, 255, 0.08);
}

.site-header-inner {
  width: min(var(--page-width), calc(100vw - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(34, 115, 255, 0.14));
}

.brand-copy strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-copy span {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-500);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link,
.nav-button,
.link-button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.nav-link {
  color: var(--ink-700);
}

.nav-link:hover,
.link-button:hover {
  transform: translateY(-1px);
  background: rgba(34, 115, 255, 0.06);
}

.nav-button,
.hero-primary,
.cta-button {
  border: 1px solid rgba(34, 115, 255, 0.18);
  background: linear-gradient(140deg, var(--blue), #4a9bff);
  color: white;
  box-shadow: 0 14px 28px rgba(34, 115, 255, 0.2);
}

.nav-button:hover,
.hero-primary:hover,
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(34, 115, 255, 0.24);
}

.hero {
  padding: 58px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 26px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.section-card,
.info-panel,
.legal-shell,
.support-card,
.delete-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), rgba(255,255,255,0.72));
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(34, 115, 255, 0.08);
  color: var(--blue);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-title {
  margin: 18px 0 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  color: var(--ink-950);
  max-width: 10ch;
}

.hero-intro,
.page-intro {
  max-width: 60ch;
  font-size: 1.03rem;
  line-height: 1.7;
  color: var(--ink-700);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.hero-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.8);
  color: var(--ink-900);
}

.hero-secondary:hover {
  transform: translateY(-2px);
  background: white;
}

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

.point-card {
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(34, 115, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.point-card strong,
.stat-card strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.point-card span,
.stat-card span {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-500);
}

.hero-visual {
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(123, 227, 255, 0.3), transparent 34%),
    linear-gradient(160deg, #15305f 0%, #0e2144 100%);
  color: white;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.hero-visual::before {
  width: 280px;
  height: 280px;
  top: -92px;
  right: -88px;
}

.hero-visual::after {
  width: 180px;
  height: 180px;
  bottom: -70px;
  left: -54px;
}

.visual-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.mock-shell {
  border-radius: 28px;
  padding: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
}

.mock-topbar,
.mock-offer-row,
.mock-list-item,
.mock-price-row,
.mock-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-topbar {
  margin-bottom: 18px;
}

.mock-pill,
.inline-pill,
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

.mock-pill {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}

.inline-pill {
  background: rgba(34, 115, 255, 0.1);
  color: var(--blue);
}

.stat-pill {
  background: rgba(107, 245, 204, 0.16);
  color: #0b8c7b;
}

.mock-headline {
  margin: 0 0 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.mock-body {
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

.mock-price-row {
  margin: 18px 0;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
}

.mock-price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.mock-offer-list,
.list-grid,
.footer-links,
.legal-list,
.steps-list,
.feature-grid,
.stat-grid,
.info-grid {
  display: grid;
  gap: 14px;
}

.mock-offer-row,
.mock-list-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mock-offer-row:last-child,
.mock-list-item:last-child {
  border-bottom: none;
}

.mock-title {
  display: block;
  font-weight: 700;
}

.mock-subtitle {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.62);
  font-size: 0.88rem;
}

.mock-footer {
  margin-top: 18px;
  gap: 12px;
}

.mock-footer strong {
  font-size: 0.88rem;
  font-weight: 800;
}

.mock-mini {
  color: rgba(255,255,255,0.62);
  font-size: 0.84rem;
}

.section {
  padding: 24px 0;
}

.section-card,
.info-panel,
.legal-shell,
.support-card,
.delete-card {
  padding: 28px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-title,
.panel-title,
.legal-shell h1,
.support-card h1,
.delete-card h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  color: var(--ink-950);
}

.section-subtitle,
.panel-body,
.legal-shell p,
.support-card p,
.delete-card p,
.legal-shell li,
.support-card li,
.delete-card li {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.7;
}

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

.feature-card,
.stat-card,
.info-cell {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(34, 115, 255, 0.08);
  background: rgba(255,255,255,0.76);
  box-shadow: var(--shadow-soft);
}

.feature-card::before,
.info-cell::before {
  content: "";
  position: absolute;
  top: -34px;
  right: -18px;
  width: 84px;
  height: 84px;
  border-radius: 42px;
  background: rgba(123, 227, 255, 0.18);
}

.feature-index {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(145deg, var(--blue), #4b9dff);
  box-shadow: 0 10px 20px rgba(34, 115, 255, 0.18);
}

.feature-card h3,
.info-cell h3 {
  margin: 18px 0 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  letter-spacing: -0.04em;
}

.stat-grid,
.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.accent-panel {
  background:
    radial-gradient(circle at 12% 10%, rgba(107, 245, 204, 0.18), transparent 0 20%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,248,255,0.9));
}

.steps-list {
  margin: 18px 0 0;
}

.step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(34, 115, 255, 0.08);
}

.step-item:first-child {
  border-top: none;
}

.step-index {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(34, 115, 255, 0.08);
}

.info-grid {
  margin-top: 18px;
}

.legal-shell,
.support-card,
.delete-card {
  width: min(900px, calc(100vw - 32px));
  margin: 40px auto;
}

.legal-shell header,
.support-card header,
.delete-card header {
  margin-bottom: 24px;
}

.legal-list {
  margin-top: 18px;
}

.legal-list li {
  margin-left: 18px;
}

.footer {
  padding: 20px 0 48px;
}

.footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(34, 115, 255, 0.1);
  background: rgba(255,255,255,0.84);
  box-shadow: var(--shadow-soft);
}

.footer-links {
  grid-auto-flow: column;
  gap: 10px;
}

.footer-links a {
  color: var(--ink-700);
}

.footer-meta {
  color: var(--ink-500);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.stagger-1 { transition-delay: 80ms; }
.stagger-2 { transition-delay: 140ms; }
.stagger-3 { transition-delay: 200ms; }
.stagger-4 { transition-delay: 260ms; }

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

  .hero-copy,
  .hero-visual {
    min-height: unset;
  }
}

@media (max-width: 780px) {
  .site-header-inner,
  .footer-card,
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav,
  .footer-links {
    grid-auto-flow: row;
  }

  .hero-grid,
  .feature-grid,
  .stat-grid,
  .info-grid,
  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding-top: 18px;
  }

  .hero-copy,
  .hero-visual,
  .section-card,
  .info-panel,
  .legal-shell,
  .support-card,
  .delete-card,
  .footer-card {
    padding: 22px;
  }

  .hero h1,
  .page-title {
    max-width: none;
  }
}

.store-note {
  margin: 0 0 6px;
  color: var(--ink-500);
  font-size: 0.92rem;
}

.hero-download-actions {
  align-items: stretch;
}

.store-button,
.store-panel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(34, 115, 255, 0.14);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-soft);
}

.store-button {
  min-width: 190px;
  min-height: 72px;
  padding: 14px 18px;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  color: var(--ink-950);
}

.store-panel {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.store-button:hover,
.store-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 115, 255, 0.24);
  box-shadow: 0 18px 32px rgba(26, 49, 95, 0.12);
}

.store-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

.store-button strong,
.store-panel strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.store-panel span:last-child {
  color: var(--ink-500);
  line-height: 1.6;
}

.download-card {
  background:
    radial-gradient(circle at top right, rgba(88, 187, 255, 0.18), transparent 0 28%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,248,255,0.92));
}

.download-header {
  margin-bottom: 22px;
}

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

@media (max-width: 780px) {
  .hero-download-actions,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .hero-download-actions {
    display: grid;
  }

  .store-button {
    width: 100%;
  }
}


.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(34, 115, 255, 0.1);
}

.lang-chip {
  min-height: 36px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--ink-700);
  font-size: 0.84rem;
  font-weight: 700;
}

.lang-chip.is-active {
  background: linear-gradient(140deg, var(--blue), #4a9bff);
  color: white;
  box-shadow: 0 10px 20px rgba(34, 115, 255, 0.16);
}

.store-button,
.store-panel-top,
.store-copy {
  display: inline-flex;
  align-items: center;
}

.store-button {
  gap: 12px;
  align-items: center;
}

.store-copy {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.store-panel-top {
  gap: 14px;
  align-items: center;
}

.store-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 115, 255, 0.08);
  color: var(--ink-950);
  flex: 0 0 auto;
}

.store-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
