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

:root {
  --bg: #08131d;
  --bg-soft: #0e1d2b;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f6fbff;
  --muted: rgba(246, 251, 255, 0.72);
  --sea: #37a6c4;
  --sea-deep: #0a6f8b;
  --sand: #f1c170;
  --mint: #8fd8d2;
  --danger: #ff8b73;
  --max: 1240px;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 18%, rgba(55, 166, 196, 0.22), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(241, 193, 112, 0.14), transparent 20%),
    radial-gradient(circle at 50% 85%, rgba(143, 216, 210, 0.14), transparent 20%),
    linear-gradient(180deg, #08131d 0%, #0a1722 42%, #08131d 100%);
  min-height: 100vh;
}

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

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

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.site-shell::before {
  top: 100px;
  left: -160px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(55, 166, 196, 0.24), transparent 70%);
  filter: blur(12px);
}

.site-shell::after {
  right: -120px;
  bottom: 10vh;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 193, 112, 0.16), transparent 70%);
  filter: blur(24px);
}

.container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(8, 19, 29, 0.88), rgba(8, 19, 29, 0.62));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(55, 166, 196, 0.28), rgba(10, 111, 139, 0.7)),
    linear-gradient(180deg, #163244, #10202d);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 18px 34px rgba(0, 0, 0, 0.22);
  font-family: "Space Grotesk", sans-serif;
  font-size: 19px;
  font-weight: 700;
}

.brand-copy {
  min-width: 0;
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand-copy span {
  font-size: 12px;
  color: var(--muted);
}

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

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  transition: 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sand), #ffd89a);
  color: #10212e;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero {
  padding: 42px 0 28px;
}

.hero-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.section-panel,
.legal-panel,
.download-card,
.feature-card,
.story-card,
.cta-band,
.footer-panel {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.hero-visual {
  border-radius: 38px;
  overflow: hidden;
  position: relative;
  min-height: 620px;
  background:
    radial-gradient(circle at 24% 20%, rgba(143, 216, 210, 0.24), transparent 24%),
    radial-gradient(circle at 75% 20%, rgba(241, 193, 112, 0.2), transparent 20%),
    linear-gradient(180deg, #10273a 0%, #0a1520 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
  filter: saturate(1.08) contrast(1.02);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 16, 24, 0.22), rgba(6, 16, 24, 0.68)),
    radial-gradient(circle at 72% 22%, rgba(241, 193, 112, 0.14), transparent 22%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(143, 216, 210, 0.08);
  border: 1px solid rgba(143, 216, 210, 0.16);
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 0 8px rgba(241, 193, 112, 0.12);
}

.hero h1,
.page-hero h1 {
  margin: 22px 0 18px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero p,
.page-hero p,
.section-heading p,
.card-copy p,
.download-card p,
.legal-panel p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

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

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: 180ms ease;
}

.button {
  background: linear-gradient(135deg, var(--sea), #72d6ee);
  color: #08202e;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button:hover,
.button-secondary:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

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

.stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  letter-spacing: -0.05em;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

.visual-grid {
  position: absolute;
  inset: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  z-index: 1;
}

.visual-card {
  position: relative;
  padding: 18px;
  border-radius: 26px;
  overflow: hidden;
  min-height: 180px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, #0d2030, #0a1622);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-card.tall {
  grid-row: span 2;
  min-height: 376px;
}

.visual-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.visual-card p {
  margin: 0;
  max-width: 24ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.orb,
.wave,
.ring {
  position: absolute;
  border-radius: 50%;
}

.orb {
  width: 240px;
  height: 240px;
  right: -50px;
  bottom: -40px;
  background: radial-gradient(circle, rgba(55, 166, 196, 0.6), transparent 66%);
  filter: blur(3px);
}

.wave {
  inset: auto -30px -30px auto;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ring {
  inset: 26px auto auto 26px;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.page-hero {
  padding: 52px 0 16px;
}

.page-hero .section-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.section {
  padding: 22px 0;
}

.section-panel {
  padding: 30px;
  border-radius: 30px;
}

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

.section-heading h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.section-grid,
.story-grid,
.legal-grid,
.download-grid {
  display: grid;
  gap: 16px;
}

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

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

.legal-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

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

.feature-card,
.story-card,
.download-card {
  padding: 22px;
  border-radius: 26px;
}

.feature-card {
  min-height: 320px;
}

.feature-card.feature-card--wide {
  grid-column: span 2;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea);
}

.kicker::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.card-copy h3,
.download-card h3,
.story-card h3 {
  margin: 16px 0 10px;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
}

.card-visual {
  margin-top: 22px;
  min-height: 120px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(55, 166, 196, 0.2), rgba(8, 19, 29, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bars,
.radar,
.steps {
  display: flex;
  gap: 10px;
}

.bars span,
.steps span {
  display: block;
  width: 38px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(114, 214, 238, 0.95), rgba(55, 166, 196, 0.14));
}

.bars span:nth-child(1) {
  height: 56px;
}

.bars span:nth-child(2) {
  height: 88px;
}

.bars span:nth-child(3) {
  height: 122px;
}

.bars span:nth-child(4) {
  height: 78px;
}

.radar {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  align-items: center;
  justify-content: center;
}

.radar::before,
.radar::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.radar::before {
  inset: 20px;
}

.radar::after {
  inset: 46px;
}

.radar-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--sand);
  box-shadow: 0 0 0 10px rgba(241, 193, 112, 0.12);
}

.radar-dot.is-one {
  top: 26px;
  right: 38px;
}

.radar-dot.is-two {
  left: 34px;
  bottom: 40px;
}

.steps span {
  width: 92px;
  height: 14px;
  background: linear-gradient(90deg, rgba(143, 216, 210, 0.22), rgba(143, 216, 210, 0.92));
}

.steps span:nth-child(2) {
  width: 132px;
}

.steps span:nth-child(3) {
  width: 72px;
}

.story-card {
  min-height: 240px;
}

.story-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.download-card {
  min-height: 280px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-band {
  margin: 22px 0 38px;
  padding: 26px;
  border-radius: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 8px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.7;
}

.footer-panel {
  margin: 0 0 28px;
  padding: 24px;
  border-radius: 26px;
}

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

.footer-panel h4 {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint);
}

.footer-panel p,
.footer-panel li,
.footer-panel a {
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.footer-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-panel li + li {
  margin-top: 8px;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.legal-panel h2 {
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.legal-section {
  margin-top: 26px;
}

.legal-section h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

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

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 1100px) {
  .hero-frame,
  .legal-grid,
  .download-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .site-header-inner {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .hero-copy,
  .hero-visual,
  .section-panel,
  .legal-panel,
  .cta-band,
  .footer-panel,
  .download-card,
  .feature-card,
  .story-card {
    border-radius: 24px;
  }

  .hero-copy,
  .section-panel,
  .page-hero .section-panel,
  .legal-panel,
  .download-card,
  .story-card,
  .feature-card,
  .footer-panel {
    padding: 22px;
  }

  .hero-meta,
  .section-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .feature-card.feature-card--wide {
    grid-column: span 1;
  }

  .visual-grid {
    position: static;
    padding: 18px;
  }

  .hero-visual {
    min-height: auto;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}
