:root {
  color-scheme: light;
  --bg: #f7fbf8;
  --bg-soft: #eef6f0;
  --paper: #fffdf6;
  --paper-warm: #fff9ea;
  --ink: #21352b;
  --ink-soft: #4f6358;
  --dim: #5f6d66;
  --line: #c9d8cd;
  --accent: #3a7a5f;
  --accent-soft: #d8eadf;
  --accent-blue: #5f88f0;
  --highlight: #fff1a6;
  --shadow: 0 28px 80px rgba(31, 55, 43, .16);
  --radius: 28px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 8%, rgba(95, 136, 240, .12), transparent 30%),
    linear-gradient(180deg, var(--bg) 0%, #f4f9f5 44%, #edf5f0 100%);
  color: var(--ink);
  font-family: var(--sans);
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 30px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
}

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

.site-nav a:hover {
  color: var(--accent);
}

.button {
  align-items: center;
  justify-content: center;
  display: inline-flex;
  min-height: 48px;
  border: 1px solid color-mix(in srgb, var(--accent) 82%, transparent);
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  padding: 0 22px;
  font: 850 15px/1 var(--sans);
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(58, 122, 95, .18);
  cursor: pointer;
}

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

.button-small {
  min-height: 38px;
  padding-inline: 16px;
  font-size: 13px;
}

.button-secondary {
  background: color-mix(in srgb, var(--paper) 88%, var(--accent-soft));
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
  width: min(1240px, calc(100% - 36px));
  margin: 42px auto 0;
  padding: clamp(28px, 5vw, 62px);
  border: 1px solid color-mix(in srgb, var(--line) 78%, transparent);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 760;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(62px, 10vw, 122px);
  line-height: .86;
}

h2 {
  font-size: clamp(38px, 6vw, 76px);
  line-height: .94;
}

h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.hero-lede,
.copy-stack,
.wide-card p,
.download-section p,
.lede {
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions,
.download-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-points span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--ink);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
}

.hero-shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 30px 70px rgba(45, 66, 54, .2);
  overflow: hidden;
  transform: rotate(.6deg);
}

.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.split-section,
.wide-card,
.download-section {
  width: min(1120px, calc(100% - 36px));
  margin: clamp(66px, 10vw, 120px) auto 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, calc(100% - 36px));
  margin: clamp(66px, 10vw, 120px) auto 0;
}

.feature-grid article {
  display: grid;
  gap: 18px;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--paper) 88%, var(--bg-soft));
  padding: 24px;
}

.feature-grid article:nth-child(2n) {
  background: color-mix(in srgb, var(--accent-soft) 46%, var(--paper));
}

.feature-number {
  color: var(--accent-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.feature-grid p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

.wide-card,
.download-section,
.activate-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.wide-card {
  display: grid;
  gap: 18px;
  padding: clamp(34px, 6vw, 72px);
  text-align: center;
}

.wide-card h2 {
  margin-inline: auto;
  max-width: 780px;
}

.wide-card p {
  margin-inline: auto;
  max-width: 760px;
}

.download-section {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: clamp(28px, 5vw, 52px);
}

.download-section div:first-child {
  display: grid;
  gap: 12px;
}

.download-section h2 {
  font-size: clamp(40px, 6vw, 72px);
}

.site-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1120px, calc(100% - 36px));
  margin: 40px auto 0;
  padding: 34px 0 44px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 750;
}

.activate-page {
  min-height: calc(100vh - 94px);
  display: grid;
  place-items: center;
  padding: 28px;
}

.activate-card {
  width: min(100%, 640px);
  display: grid;
  gap: 18px;
  padding: clamp(28px, 6vw, 54px);
}

.activate-card .brand {
  margin-bottom: 10px;
}

.activate-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--dim);
  font-size: 13px;
  font-weight: 850;
}

input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--paper) 72%, #fff);
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
}

code {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  color: var(--ink);
  font-size: clamp(18px, 4vw, 28px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.activate-message {
  min-height: 22px;
  color: var(--accent);
  font-weight: 800;
}

.activate-message.is-error {
  color: #c64a4a;
}

.small {
  color: var(--dim);
  font-size: 13px;
  line-height: 1.5;
}

.legal-page {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-page h1 {
  margin: 0 0 16px;
  font-size: clamp(38px, 8vw, 72px);
}

.legal-page h2 {
  margin: 36px 0 10px;
  font-size: 24px;
}

.legal-page p {
  max-width: 72ch;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

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

  .site-nav {
    flex-wrap: wrap;
  }

  .hero,
  .split-section,
  .download-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 24px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .download-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .hero,
  .split-section,
  .feature-grid,
  .wide-card,
  .download-section,
  .site-footer {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: clamp(54px, 19vw, 82px);
  }

  .brand {
    font-size: 30px;
  }

  .site-nav {
    gap: 14px;
  }
}
