:root {
  --bg-top: #fbfdfb;
  --bg-mid: #eef7fb;
  --bg-bottom: #fffaf0;
  --ink: #13222c;
  --muted: #5b6b73;
  --line: rgba(19, 34, 44, 0.12);
  --glass: rgba(255, 255, 255, 0.74);
  --teal: #126d69;
  --shadow: 0 24px 60px rgba(26, 44, 54, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg-top);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 58%, var(--bg-bottom) 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--teal);
}

.page {
  width: min(1000px, calc(100% - 32px));
  margin: 0 auto;
  padding: 14px 0 52px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 8px 0;
}

.brand {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.brand:hover,
.menu a[aria-current="page"] {
  color: var(--ink);
}

.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.menu a {
  padding: 8px 0;
}

.hero,
.card,
.callout {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero {
  margin-top: 24px;
  padding: clamp(26px, 6vw, 58px);
}

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.98;
}

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

p,
li,
td,
th {
  color: var(--muted);
  line-height: 1.7;
}

.hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(1.06rem, 2vw, 1.22rem);
}

.section {
  margin-top: clamp(48px, 8vw, 88px);
}

.section > p {
  max-width: 760px;
  margin: 14px 0 0;
}

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

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

.card p {
  margin: 12px 0 0;
}

.card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.callout {
  margin-top: 24px;
  padding: 22px 24px;
  box-shadow: none;
}

.callout p {
  margin: 0;
}

.comparison-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.52);
}

table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

thead th {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

tbody th {
  width: 28%;
  color: var(--ink);
}

td strong {
  color: var(--teal);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.text-link {
  color: var(--teal);
  font-weight: 760;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.store-link {
  display: inline-flex;
  margin-top: 24px;
}

.store-link img {
  width: auto;
  height: 56px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 52px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(19, 34, 44, 0.58);
  font-size: 13px;
}

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

@media (max-width: 760px) {
  .page {
    width: min(100% - 24px, 560px);
    padding-top: 10px;
  }

  .nav {
    align-items: flex-start;
  }

  .menu {
    max-width: 270px;
    gap: 10px 13px;
    font-size: 13px;
  }

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

  .footer {
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .brand {
    max-width: 100px;
    padding-top: 8px;
  }

  .menu {
    max-width: 230px;
  }

  .hero {
    margin-top: 18px;
  }
}
