:root {
  color-scheme: light;
  --bg: #fbf7ef;
  --ink: #20303f;
  --muted: #68727c;
  --line: #e6d9c9;
  --panel: #fffdf8;
  --blue: #d9eaff;
  --blue-line: #a9cffb;
  --mint: #def4e9;
  --mint-line: #acd9c4;
  --lilac: #efe7ff;
  --gold: #fff1c8;
  --shadow: 0 18px 50px rgba(66, 50, 28, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  background:
    radial-gradient(circle at top left, rgba(212, 232, 255, 0.7), transparent 34rem),
    radial-gradient(circle at top right, rgba(222, 244, 233, 0.72), transparent 30rem),
    var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  margin: 0;
}

a {
  color: #2869d8;
  font-weight: 800;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  margin: 0 auto;
  max-width: 1080px;
  padding: 24px 20px 56px;
}

.site-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 40px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-size: 15px;
  font-weight: 950;
  gap: 10px;
  letter-spacing: 0;
}

.brand-mark {
  align-items: center;
  background: var(--blue);
  border: 1px solid var(--blue-line);
  border-radius: 12px;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.nav-links a {
  color: #59636d;
  font-size: 14px;
}

.hero {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  margin-bottom: 28px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  color: #81776c;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 4.6rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 0 18px;
}

h2 {
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 0 0 8px;
}

h3 {
  font-size: 1rem;
  line-height: 1.25;
  margin: 0;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
}

p {
  margin: 0;
}

.hero-text {
  font-size: 1.15rem;
  max-width: 42rem;
}

.hero-card,
.panel,
.plan,
.support-card {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 18px;
}

.mock-log {
  background: #f6eee4;
  border: 1px solid #eadcca;
  border-radius: 8px;
  padding: 14px;
}

.mock-header,
.mock-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.dot {
  background: #3578e5;
  border-radius: 999px;
  height: 14px;
  width: 14px;
}

.shortcut-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.shortcut {
  background: var(--blue);
  border-radius: 999px;
  color: #164064;
  font-size: 12px;
  font-weight: 950;
  padding: 6px 10px;
}

.mock-row {
  background: #e4f7ef;
  border-radius: 8px;
  margin-top: 10px;
  padding: 14px;
}

.mock-row:nth-of-type(2) {
  background: var(--lilac);
}

.mock-time {
  color: #6f6a63;
  font-size: 12px;
  font-weight: 900;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
}

.button.primary {
  background: var(--blue);
  border: 1px solid var(--blue-line);
  color: #123d63;
}

.button.secondary {
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
}

.plans {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.plan {
  box-shadow: none;
  padding: 20px;
}

.plan.plus {
  background: rgba(222, 244, 233, 0.92);
  border-color: var(--mint-line);
}

.plan.pro {
  background: rgba(217, 234, 255, 0.94);
  border-color: var(--blue-line);
}

.tag {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 48, 63, 0.12);
  border-radius: 999px;
  color: var(--ink);
  display: inline-block;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 14px;
  padding: 6px 10px;
  text-transform: uppercase;
}

ul {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  margin: 14px 0 0;
  padding-left: 20px;
}

li {
  margin: 8px 0;
}

.panel {
  margin-top: 18px;
  padding: 20px;
}

.panel.gold {
  background: rgba(255, 241, 200, 0.9);
  border-color: #ead694;
  box-shadow: none;
}

.document {
  max-width: 860px;
}

.document .hero {
  display: block;
  margin-bottom: 24px;
}

.document h1 {
  max-width: 760px;
}

.document h2 {
  border-top: 1px solid var(--line);
  font-size: 1.25rem;
  line-height: 1.2;
  margin: 26px 0 8px;
  padding-top: 22px;
}

.updated {
  color: #81776c;
  font-weight: 850;
}

.doc-card {
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 22px 0;
  padding: 20px;
}

.doc-section {
  border-top: 1px solid var(--line);
  padding: 22px 0 0;
  margin: 24px 0 0;
}

.support-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
  margin-top: 22px;
}

.support-card {
  box-shadow: none;
  padding: 20px;
}

.note {
  margin-top: 20px;
}

@media (max-width: 760px) {
  .shell {
    padding: 20px 16px 44px;
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .nav-links {
    justify-content: flex-start;
  }

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