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

:root {
  --bg: #f4f8fe;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --ink: #10213e;
  --muted: #5f7088;
  --line: rgba(16, 33, 62, 0.09);
  --line-strong: rgba(16, 33, 62, 0.14);
  --blue: #2166f3;
  --blue-deep: #0f2f82;
  --blue-soft: #dce9ff;
  --shadow: 0 28px 70px rgba(33, 61, 118, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(33, 102, 243, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(187, 214, 255, 0.7), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, var(--bg) 55%, #eef4fd 100%);
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

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

.shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 88px;
}

.topbar,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar {
  margin-bottom: 52px;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 4px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(16, 33, 62, 0.06);
  box-shadow: 0 10px 28px rgba(33, 61, 118, 0.08);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span,
.nav a,
.hero-lede,
.feature-card p,
.legal-card p,
.footer,
.legal-page p,
.legal-page li,
.meta {
  color: var(--muted);
}

.brand-copy span {
  font-size: 0.94rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.nav a,
.footer a,
.legal-links a {
  text-decoration: none;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.9fr);
  gap: 52px;
  align-items: center;
}

.hero-copy {
  padding: 32px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

h1 {
  max-width: 9ch;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

h3 {
  font-size: 1.25rem;
}

.hero-lede {
  max-width: 34ch;
  margin: 24px 0 0;
  font-size: 1.06rem;
  line-height: 1.9;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2c72ff, #1652df);
  box-shadow: 0 18px 36px rgba(33, 102, 243, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

.hero-points {
  display: grid;
  gap: 18px;
  margin-top: 54px;
}

.hero-point {
  display: grid;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.hero-point strong {
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.hero-point span {
  color: var(--muted);
  line-height: 1.75;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.screen-card,
.feature-card,
.gallery-card,
.legal-card,
.legal-page {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.screen-card {
  overflow: hidden;
  max-width: 700px;
  border-radius: 40px;
  background: var(--surface-strong);
}

.section {
  margin-top: 148px;
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading-wide h2 {
  max-width: 16ch;
}

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

.feature-card {
  min-height: 0;
  padding: 8px 8px 0 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  background: transparent;
}

.feature-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card h3 {
  max-width: 12ch;
}

.feature-card p {
  max-width: 29ch;
  margin: 16px 0 0;
  line-height: 1.8;
}

.gallery-rail {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 4px 4px 14px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(16, 33, 62, 0.2) transparent;
}

.gallery-card {
  flex: 0 0 min(340px, 82vw);
  overflow: hidden;
  border-radius: 34px;
  scroll-snap-align: start;
}

.gallery-card img {
  width: 100%;
  height: auto;
}

.legal-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
}

.legal-card h2 {
  max-width: 12ch;
}

.legal-card p {
  max-width: 44ch;
  margin: 16px 0 0;
  line-height: 1.8;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer {
  margin-top: 72px;
  padding-top: 26px;
  border-top: 1px solid var(--line-strong);
}

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

.legal-shell {
  width: min(920px, calc(100% - 32px));
  margin: 32px auto 72px;
}

.legal-page {
  padding: 44px;
  border-radius: 30px;
}

.legal-page .brand {
  margin-bottom: 30px;
}

.legal-page nav,
.support-list {
  display: grid;
  gap: 12px;
}

.legal-page h2 {
  margin-top: 32px;
  font-size: 1.45rem;
}

.legal-page ul {
  padding-left: 22px;
}

.notice,
.contact {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
}

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

  .hero-visual {
    justify-content: flex-start;
  }

  .screen-card {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 22px, 1240px);
    padding-top: 18px;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar {
    margin-bottom: 34px;
  }

  .hero {
    gap: 34px;
  }

  .section {
    margin-top: 104px;
  }

  .feature-grid {
    gap: 40px;
  }

  .gallery-rail {
    gap: 18px;
  }

  .screen-card,
  .gallery-card,
  .legal-card,
  .legal-page {
    border-radius: 24px;
  }

  .legal-page {
    padding: 28px;
  }
}
