:root {
  --bg: #f7faf8;
  --surface: #ffffff;
  --surface-soft: #f1f6fb;
  --surface-blue: #eef6ff;
  --surface-warm: #fff5e8;
  --ink: #111827;
  --muted: #617086;
  --muted-strong: #405066;
  --line: #dfe7ef;
  --line-strong: #c9d5e3;
  --blue: #2563eb;
  --blue-strong: #1d4ed8;
  --cyan: #06b6d4;
  --peach: #f3b26b;
  --sage: #7f9b86;
  --success: #15803d;
  --warning: #b45309;
  --danger: #b91c1c;
  --shadow: 0 18px 50px rgba(20, 35, 55, 0.10);
  --shadow-soft: 0 8px 24px rgba(20, 35, 55, 0.08);
  --shadow-hover: 0 22px 56px rgba(20, 35, 55, 0.14);
  --radius: 8px;
  --header-height: 74px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(247,250,248,0.98) 44%, #ffffff 100%),
    linear-gradient(135deg, rgba(243,178,107,0.18), rgba(6,182,212,0.12));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 10px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 900;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

img {
  display: block;
  max-width: 100%;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(37,99,235,0.28);
  outline-offset: 3px;
}

p,
li {
  line-height: 1.7;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px 42px;
  background: rgba(255,255,255,0.82);
  border-bottom: 1px solid rgba(201,213,227,0.72);
  box-shadow: 0 6px 24px rgba(20, 35, 55, 0.05);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 17px;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
}

.site-nav,
.footer-nav,
.inline-actions,
.hero-actions,
.price-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav {
  justify-content: flex-end;
}

.site-nav a,
.footer-nav a {
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 9px 11px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
  background: rgba(37,99,235,0.08);
}

.footer-nav a.active {
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 1px 0 rgba(255,255,255,0.8) inset;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn.primary {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.btn.primary:hover {
  color: #ffffff;
}

.btn.quiet {
  box-shadow: none;
  background: transparent;
}

.section,
.page-main {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-home {
  position: relative;
  min-height: 78vh;
  max-height: 760px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: 34px;
  padding: 92px 42px 58px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 18%, rgba(6,182,212,0.22), transparent 32%),
    radial-gradient(circle at 88% 14%, rgba(243,178,107,0.22), transparent 34%),
    linear-gradient(135deg, #101827 0%, #172033 48%, #263541 100%);
  overflow: hidden;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.36), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.hero-preview,
.workspace-mock,
.phone-mock {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.14);
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-preview {
  min-height: 470px;
  padding: 18px;
}

.hero-preview::before,
.workspace-mock::before,
.phone-mock::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.24), transparent 42%);
}

.mock-topbar,
.mock-card,
.mock-search {
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.82);
  color: #152238;
}

.mock-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.mock-brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.mock-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37,99,235,0.10);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.mock-time {
  margin: 14px 0;
  padding: 26px 20px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.86);
  color: #111827;
}

.mock-time strong {
  display: block;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: 0;
}

.mock-time span {
  display: block;
  margin-top: 10px;
  color: #617086;
  font-weight: 700;
}

.mock-search {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) 76px;
  gap: 10px;
  align-items: center;
  padding: 12px;
  margin-bottom: 14px;
}

.mock-search span {
  color: #617086;
  font-weight: 700;
}

.mock-search b {
  display: inline-flex;
  justify-content: center;
  padding: 10px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--blue);
}

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

.mock-card {
  min-height: 94px;
  padding: 14px;
}

.mock-card strong {
  display: block;
  margin-top: 16px;
}

.mock-card span {
  color: #617086;
  font-size: 12px;
  font-weight: 700;
}

.workspace-mock {
  min-height: 430px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.72), rgba(239,246,255,0.82)),
    linear-gradient(135deg, #f3b26b, #7f9b86);
}

.workspace-mock .mock-topbar,
.workspace-mock .mock-time,
.workspace-mock .mock-search,
.workspace-mock .mock-card {
  background: rgba(255,255,255,0.88);
}

.phone-mock {
  width: min(360px, 100%);
  min-height: 520px;
  margin: 0 auto;
  padding: 16px;
  background: linear-gradient(155deg, #f8fafc, #eaf5ff 58%, #fff5e8);
  color: #111827;
}

.phone-mock .mock-time strong {
  font-size: 44px;
}

.phone-mock .mock-search {
  grid-template-columns: 1fr 54px;
}

.phone-mock .mock-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.hero-home .eyebrow {
  color: #b8f3ff;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

h1 {
  font-size: 4.5rem;
}

h2 {
  font-size: 2.3rem;
}

h3 {
  font-size: 1.3rem;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted-strong);
  font-size: 1.15rem;
}

.hero-home .lead {
  color: rgba(255,255,255,0.84);
}

.hero-actions {
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin: 36px 0 0;
}

.hero-stats div,
.metric-card {
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(12px);
}

.hero-stats dt {
  color: rgba(255,255,255,0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 5px 0 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.section {
  padding: 74px 0;
}

.section.tight {
  padding-top: 36px;
}

.section.band {
  width: 100%;
  max-width: none;
  padding: 74px max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, rgba(238,246,255,0.8), rgba(255,255,255,0.92));
  border-block: 1px solid rgba(223,231,239,0.8);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.feature-grid,
.pricing-grid,
.steps-grid,
.support-grid,
.policy-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.policy-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-grid,
.summary-grid,
.faq-grid,
.detail-grid {
  display: grid;
  gap: 16px;
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.summary-grid,
.faq-grid,
.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.price-card,
.step-card,
.support-card,
.document,
.toc,
.notice,
.screenshot-card,
.mini-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card,
.price-card,
.step-card,
.support-card,
.mini-card {
  padding: 22px;
}

.card h3,
.price-card h3,
.step-card h3,
.support-card h3,
.mini-card h3 {
  margin-bottom: 10px;
}

.card p,
.step-card p,
.support-card p,
.mini-card p {
  margin: 0;
  color: var(--muted);
}

.support-card h2,
.support-card h3 {
  overflow-wrap: anywhere;
}

.contact-panel h2 {
  font-size: clamp(24px, 6.2vw, 34px);
  line-height: 1.1;
  word-break: break-word;
}

.card .tag,
.price-card .tag,
.step-card .tag {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 28px;
  padding: 5px 9px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(37,99,235,0.09);
  font-size: 12px;
  font-weight: 900;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 16px;
  align-items: stretch;
}

.screenshot-card {
  overflow: hidden;
  background: #f8fafc;
}

.screenshot-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.showcase-copy {
  display: grid;
  gap: 16px;
}

.mini-card {
  box-shadow: none;
  background: rgba(255,255,255,0.72);
}

.card:hover,
.price-card:hover,
.step-card:hover,
.support-card:hover,
.mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37,99,235,0.22);
  box-shadow: var(--shadow-hover);
}

.trust-card,
.summary-card,
.faq-card,
.doc-callout {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-soft);
}

.trust-card strong,
.summary-card strong,
.faq-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 16px;
}

.trust-card span,
.summary-card span,
.faq-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.page-hero {
  padding: 72px 0 34px;
}

.page-hero .lead {
  font-size: 1.08rem;
}

.page-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.page-title-row h1 {
  font-size: 3.2rem;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.page-hero .summary-grid {
  margin-top: 24px;
}

.meta-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 800;
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  position: relative;
}

.price-card.highlight {
  border-color: rgba(37,99,235,0.38);
  background:
    linear-gradient(180deg, rgba(37,99,235,0.08), rgba(255,255,255,0.92) 38%),
    #ffffff;
}

.price-card.highlight::after {
  content: "Annual option: $50/year";
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(37,99,235,0.10);
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin: 16px 0 18px;
  font-size: 2.6rem;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.feature-list,
.doc-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list {
  display: grid;
  gap: 11px;
  margin-bottom: 24px;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted-strong);
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.price-actions {
  margin-top: auto;
}

.plan-switch {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
}

.plan-switch button {
  min-height: 34px;
  padding: 7px 12px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted-strong);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.plan-switch button.active {
  color: #ffffff;
  background: var(--blue);
}

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

.compare-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

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

.compare-table th {
  color: var(--muted-strong);
  background: var(--surface-soft);
  font-size: 13px;
  text-transform: uppercase;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.compare-table td:first-child {
  font-weight: 800;
}

.compare-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.install-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 16px;
  align-items: stretch;
}

.install-visual img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.notice {
  padding: 20px;
  color: var(--muted-strong);
  background: var(--surface-warm);
  box-shadow: none;
}

.notice strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
}

.doc-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 80px;
}

.toc {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  padding: 16px;
  box-shadow: none;
}

.toc strong {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--muted);
}

.toc a {
  display: block;
  padding: 8px 0;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 700;
  border-top: 1px solid rgba(223,231,239,0.78);
  transition: color 160ms ease, padding-left 160ms ease, background 160ms ease;
}

.toc a:first-of-type {
  border-top: 0;
}

.toc a.active {
  padding-left: 10px;
  color: var(--blue);
  background: linear-gradient(90deg, rgba(37,99,235,0.08), transparent);
}

.document {
  padding: 34px;
  box-shadow: var(--shadow-soft);
}

.document section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.document h2 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.document h3 {
  margin: 18px 0 8px;
  font-size: 1rem;
}

.document p {
  margin: 0 0 13px;
  color: var(--muted-strong);
}

.document a:not(.contact-link) {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.doc-callout {
  margin: 18px 0 0;
  background: linear-gradient(135deg, rgba(238,246,255,0.94), rgba(255,245,232,0.72));
  box-shadow: none;
}

.data-table {
  width: 100%;
  margin-top: 14px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  width: 28%;
  color: var(--muted-strong);
  background: var(--surface-soft);
}

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

.doc-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.doc-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: var(--surface-soft);
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: max-content;
  max-width: 100%;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(37,99,235,0.08);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.status-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.status-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.status-list li:last-child {
  border-bottom: 0;
}

.status-list strong {
  display: block;
}

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

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 38px 42px;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 900;
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-footer p {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-nav {
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    padding: 14px 24px;
  }

  .brand small {
    white-space: normal;
  }

  .site-nav {
    max-width: 520px;
  }

  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-home {
    min-height: 76vh;
    padding: 82px 24px 44px;
    grid-template-columns: 1fr;
  }

  .section,
  .page-main {
    width: min(100% - 32px, 1180px);
  }

  .section-heading,
  .page-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-grid,
  .pricing-grid,
  .steps-grid,
  .support-grid,
  .policy-grid,
  .trust-grid,
  .summary-grid,
  .faq-grid,
  .detail-grid,
  .product-showcase,
  .install-visual,
  .doc-layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

  .price-card {
    min-height: 0;
  }

  .screenshot-card img,
  .install-visual img {
    min-height: 280px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 122px;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    padding-inline: 18px;
  }

  .site-nav,
  .footer-nav {
    justify-content: flex-start;
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 13px;
  }

  .hero-home {
    min-height: 74vh;
    padding: 60px 18px 34px;
  }

  .hero-preview {
    min-height: 360px;
    padding: 12px;
  }

  .mock-time strong {
    font-size: 42px;
  }

  .mock-search {
    grid-template-columns: 1fr 54px;
  }

  .mock-search .mock-pill {
    display: none;
  }

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

  h1 {
    font-size: 2.8rem;
  }

  h2,
  .page-title-row h1 {
    font-size: 2rem;
  }

  .lead {
    font-size: 1rem;
  }

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

  .price-card.highlight::after {
    position: static;
    align-self: flex-start;
    margin: 0 0 12px;
  }

  .section {
    padding: 52px 0;
  }

  .document {
    padding: 22px;
  }

  .compare-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table th,
  .data-table td {
    display: block;
    width: 100%;
  }

  .data-table th {
    border-bottom: 0;
  }

  .btn {
    width: 100%;
  }

  .inline-actions,
  .hero-actions,
  .price-actions {
    width: 100%;
  }
}
