:root {
  color-scheme: light;
  --page: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef3f7;
  --ink: #101828;
  --muted: #617187;
  --faint: #8491a4;
  --line: rgba(16, 24, 40, 0.14);
  --blue: #025c96;
  --blue-strong: #007bb4;
  --green: #0f6d73;
  --amber: #d98a2d;
  --shadow: 0 22px 60px -34px rgba(16, 24, 40, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
.section {
  width: 100%;
}

.inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 248, 251, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

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

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: transparent;
  background: var(--blue);
  color: #ffffff;
}

.hero {
  padding: 78px 0 48px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(246, 248, 251, 0)),
    radial-gradient(circle at 84% 18%, rgba(15, 109, 115, 0.14), transparent 32%),
    var(--page);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(42px, 7vw, 78px);
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 20px;
}

.lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.product-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 16px;
}

.panel-top img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.status-pill {
  border-radius: 999px;
  background: rgba(15, 109, 115, 0.1);
  color: var(--green);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.memory {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: #fbfcfe;
}

.memory strong {
  display: block;
  margin-bottom: 5px;
}

.memory span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--surface-soft);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-head p,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

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

.feature,
.legal-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(2, 92, 150, 0.1);
  color: var(--blue);
  font-weight: 900;
}

.legal-page {
  padding: 54px 0 72px;
}

.legal-page h1 {
  font-size: clamp(36px, 6vw, 60px);
}

.legal-box {
  margin-top: 22px;
}

.legal-box h2 {
  margin-top: 0;
  font-size: 26px;
}

.legal-meta {
  color: var(--faint);
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  background: var(--surface);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-row nav {
  display: flex;
  gap: 16px;
}

@media (max-width: 820px) {
  .inner {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

