@font-face {
  font-family: Inter;
  src: url("../assets/fonts/inter-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../assets/fonts/inter-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../assets/fonts/inter-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("../assets/fonts/inter-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --canvas: #F4F5F7;
  --surface: #FFFFFF;
  --stone: #E7E9EE;
  --text: #1C1F24;
  --muted: #5F6670;
  --faint: #8A929C;
  --accent: #0A84FF;
  --accent-deep: #0068D6;
  --border: rgba(28, 31, 36, 0.10);
  --header: 56px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--canvas);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
}
.skip:focus {
  left: 12px;
  z-index: 80;
  background: var(--surface);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--stone);
}

/* Header */
.site-header {
  height: var(--header);
  display: flex;
  align-items: center;
  background: var(--canvas);
}
.header-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  color: var(--text);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.045em;
  line-height: 1;
}
.wordmark .i {
  position: relative;
  display: inline-block;
}
.wordmark .i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.02em;
  width: 0.28em;
  height: 0.28em;
  transform: translateX(-50%);
  background: var(--canvas);
  z-index: 1;
}
.wordmark .i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.05em;
  width: 0.215em;
  height: 0.215em;
  transform: translateX(-50%);
  background: var(--accent);
  border-radius: 1px;
  z-index: 2;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
}
.nav a:hover { color: var(--text); }
.nav a[aria-current="page"] { color: var(--text); }
.nav a:focus-visible,
.btn:focus-visible,
.link:focus-visible,
.downloads a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.28);
}
.nav .trial-link {
  color: var(--accent);
  font-weight: 600;
}
.nav .trial-link:hover { color: var(--accent-deep); }

/* Buttons / links */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  background: var(--accent);
  color: #fff;
}
.btn:hover { background: var(--accent-deep); }
.btn-block { width: 100%; height: 44px; font-size: 15px; }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--stone);
}
.btn-ghost:hover { background: #fafbfc; }
.link {
  color: var(--accent);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.link:hover { color: var(--accent-deep); }

/* Landing hero */
.hero {
  padding: 72px 24px 96px;
  text-align: center;
}
.hero-copy { width: min(640px, 100%); margin: 0 auto; }
.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.038em;
  line-height: 1.12;
}
.lede {
  margin: 0 auto;
  max-width: 460px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  font-weight: 400;
}
.lede + .lede { margin-top: 20px; }

.scene {
  width: min(560px, 100%);
  margin: 36px auto 8px;
}
.scene img { width: 100%; height: auto; }

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.downloads {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.downloads a {
  color: var(--faint);
  font-size: 14px;
  font-weight: 500;
}
.downloads a:hover { color: var(--muted); }

/* Pricing page */
.page {
  padding: 56px 24px 80px;
  text-align: center;
}
.kicker {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 12px;
}
.page h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4.6vw, 48px);
  font-weight: 600;
  letter-spacing: -0.036em;
  line-height: 1.15;
}
.page .lede { margin-bottom: 40px; }

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: left;
}
.card {
  background: var(--surface);
  border: 1px solid var(--stone);
  border-radius: 16px;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 1px 2px rgba(28, 31, 36, 0.05);
}
.card.featured {
  border: 1.5px solid var(--accent);
  box-shadow: 0 10px 30px rgba(28, 31, 36, 0.07);
}
.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  color: var(--accent-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}
.plan {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.amount {
  font-size: 48px;
  font-weight: 650;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 10px 0 6px;
}
.amount span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--muted);
  margin-left: 4px;
}
.fine {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 18px;
}
.card ul {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.card li {
  font-size: 14px;
  color: var(--text);
  padding-left: 22px;
  position: relative;
  letter-spacing: -0.01em;
}
.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--accent);
}

.foot-note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; }
  .header-inner { width: calc(100% - 32px); }
  .hero { padding: 48px 20px 72px; }
  .page { padding: 40px 20px 64px; }
  .nav a { padding: 8px 8px; }
  .amount { font-size: 40px; }
}
@media (max-width: 560px) {
  .nav .trial-link { display: none; }
  .wordmark { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

.help-copy {
  width: min(520px, 100%);
  margin: 8px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.help-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  font-weight: 400;
}
.foot-note + .foot-note { margin-top: 8px; }
.foot-note a,
.help-copy a {
  color: var(--accent);
  font-weight: 600;
}
.foot-note a:hover,
.help-copy a:hover { color: var(--accent-deep); }
.foot-note a:focus-visible,
.help-copy a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.28);
}
