:root {
  color-scheme: dark;
  --bg: #07142e;
  --bg-soft: #10244d;
  --panel: rgba(255, 255, 255, 0.1);
  --panel-strong: rgba(255, 255, 255, 0.16);
  --text: #f7fbff;
  --muted: #bdd1f5;
  --cyan: #50e4ff;
  --blue: #4f8bff;
  --pink: #ff83cc;
  --gold: #ffc65a;
  --green: #54e3a6;
  --border: rgba(255, 255, 255, 0.2);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(80, 228, 255, 0.28), transparent 28rem),
    radial-gradient(circle at 92% 12%, rgba(255, 131, 204, 0.2), transparent 24rem),
    linear-gradient(155deg, #07142e 0%, #0b2355 44%, #162a70 100%);
  min-height: 100vh;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.6px),
    radial-gradient(circle, rgba(80, 228, 255, 0.6) 0 1px, transparent 1.5px);
  background-position:
    0 0,
    45px 70px;
  background-size:
    140px 140px,
    190px 190px;
  opacity: 0.23;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(7, 20, 46, 0.76);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(22px);
}

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

.brand img,
.site-footer img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(80, 228, 255, 0.28);
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.13);
}

.nav-link:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

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

.page-section {
  margin-top: 54px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: center;
  gap: 56px;
  min-height: calc(100vh - 82px);
  padding-top: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  font-size: clamp(4rem, 10vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

.page-section h1 {
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

h4 {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 1rem;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 36px;
}

.button,
.email-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: #092140;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 16px 34px rgba(80, 228, 255, 0.28);
}

.button.secondary,
.email-link {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.11);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin: 0;
}

.quick-facts div,
.feature-card,
.contact-panel,
.legal,
.showcase-copy {
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quick-facts div {
  padding: 16px;
  border-radius: 18px;
}

.quick-facts dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0;
  font-weight: 800;
}

.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  min-height: 620px;
}

.phone-frame {
  position: relative;
  overflow: hidden;
  border: 12px solid rgba(240, 249, 255, 0.18);
  border-radius: 36px;
  background: #07142e;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-large {
  width: min(380px, 100%);
  aspect-ratio: 498 / 1074;
}

.app-badge {
  position: absolute;
  right: 0;
  bottom: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
  padding: 12px 16px 12px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(7, 20, 46, 0.82);
  box-shadow: var(--shadow);
  font-weight: 800;
  backdrop-filter: blur(18px);
}

.app-badge img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) minmax(0, 1fr);
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 280px;
  padding: 24px;
  border-radius: 24px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 16px;
  color: #082142;
  background: linear-gradient(135deg, var(--gold), var(--pink));
  font-weight: 900;
}

.feature-card p,
.showcase-copy li,
.contact-panel p,
.legal-body p,
.legal-body li {
  color: var(--muted);
  line-height: 1.72;
}

.screenshot-layout {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(220px, 320px) minmax(260px, 1fr);
  align-items: center;
  gap: 22px;
}

.screenshot-layout .phone-frame {
  aspect-ratio: 496 / 1074;
}

figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(7, 20, 46, 0.66);
  color: var(--text);
  font-weight: 800;
  text-align: center;
  backdrop-filter: blur(14px);
}

.showcase-copy {
  padding: 28px;
  border-radius: 26px;
}

.showcase-copy ul,
.legal-body ul {
  padding-left: 1.25rem;
}

.showcase-copy li + li,
.legal-body li + li {
  margin-top: 10px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 34px;
  border-radius: 30px;
}

.contact-panel h2 {
  margin-bottom: 14px;
}

.contact-panel p {
  max-width: 720px;
  margin-bottom: 0;
}

.email-link {
  white-space: nowrap;
}

.legal {
  padding: 34px;
  border-radius: 30px;
  scroll-margin-top: 110px;
}

.legal-header {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-header p:last-child {
  margin: 0;
  color: var(--muted);
}

.legal-body {
  max-width: 930px;
}

.legal-body h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.legal-body h3 {
  margin-top: 24px;
  color: var(--text);
}

.legal-body a {
  color: var(--cyan);
  font-weight: 800;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 42px;
  color: var(--muted);
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 900;
}

.site-footer a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hero,
  .section-heading,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding-top: 72px;
  }

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

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

  .showcase-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    display: none;
    flex-basis: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-link {
    justify-content: center;
    padding: 0 10px;
  }

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

  h1 {
    font-size: clamp(3.3rem, 18vw, 5.2rem);
  }

  .quick-facts,
  .intro-grid,
  .screenshot-layout {
    grid-template-columns: 1fr;
  }

  .phone-large {
    width: min(340px, 100%);
  }

  .app-badge {
    right: 10px;
    bottom: 20px;
  }

  .feature-card {
    min-height: auto;
  }

  .contact-panel,
  .legal {
    padding: 24px;
  }

  .email-link {
    width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}
