:root {
  color-scheme: light;
  --bg: #f7f1e7;
  --bg-soft: #efe5d7;
  --panel: #fffaf0;
  --panel-strong: #fff6e6;
  --ink: #241c15;
  --muted: #786c60;
  --faint: #9b8e80;
  --line: rgba(36, 28, 21, 0.1);
  --line-strong: rgba(36, 28, 21, 0.16);
  --accent: #c96442;
  --accent-deep: #9b442b;
  --accent-soft: rgba(201, 100, 66, 0.12);
  --green: #247650;
  --gold: #a66716;
  --shadow: 0 24px 80px rgba(65, 39, 22, 0.16);
  --shadow-soft: 0 12px 36px rgba(65, 39, 22, 0.1);
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display-zh: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --max: 1400px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(201, 100, 66, 0.09), transparent 32rem),
    radial-gradient(circle at 82% 14%, rgba(36, 118, 80, 0.08), transparent 22rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(201, 100, 66, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--ink);
  color: var(--panel);
  padding: 10px 14px;
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: calc(var(--max) + 64px);
  margin: 0 auto;
  padding: 18px 32px;
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 10px 22px;
  z-index: -1;
  border: 1px solid rgba(36, 28, 21, 0.08);
  border-radius: 999px;
  background: rgba(247, 241, 231, 0.78);
  box-shadow: 0 10px 36px rgba(65, 39, 22, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: var(--ink);
  color: var(--panel);
  box-shadow: 0 8px 20px rgba(36, 28, 21, 0.18);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(36, 28, 21, 0.08);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.74);
  padding: 4px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 13px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  background: rgba(36, 28, 21, 0.06);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-toggle span + span {
  margin-top: 4px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(620px, 1.22fr);
  align-items: center;
  gap: clamp(64px, 6vw, 96px);
  max-width: var(--max);
  min-height: calc(76vh - 84px);
  margin: 0 auto;
  padding: clamp(22px, 4vh, 44px) 32px 58px;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: var(--display-zh);
  font-size: clamp(42px, 4.3vw, 62px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.14;
}

h1 span {
  white-space: nowrap;
}

.hero-subtitle {
  max-width: 640px;
  color: #44372c;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 13px 19px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff8ef;
  box-shadow: 0 12px 28px rgba(201, 100, 66, 0.3);
}

.button-primary:hover {
  box-shadow: 0 18px 36px rgba(201, 100, 66, 0.36);
}

.button-secondary {
  border: 1px solid rgba(36, 28, 21, 0.34);
  background: rgba(255, 250, 240, 0.54);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.button-icon {
  font-size: 18px;
  line-height: 1;
}

.hero-badges {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.hero-badges li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-badges li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 900px;
  margin-right: clamp(-56px, -3vw, -18px);
  transform: translateY(42px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: 10%;
  bottom: -3%;
  z-index: 0;
  width: 72%;
  height: 16%;
  border-radius: 999px;
  background: rgba(36, 28, 21, 0.18);
  filter: blur(28px);
  transform: skewX(-8deg);
}

.hero-art {
  position: relative;
  z-index: 1;
  margin: 0;
}

.hero-image-frame {
  position: relative;
  display: block;
  width: min(900px, calc(100% + 40px));
  max-width: none;
  line-height: 0;
  transform: translateX(-20px);
}

.hero-art img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  filter:
    drop-shadow(0 26px 44px rgba(65, 39, 22, 0.16))
    drop-shadow(0 8px 18px rgba(65, 39, 22, 0.09));
}

.product-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36, 28, 21, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffaf0, #f5ebdd);
  box-shadow: var(--shadow);
}

.product-screenshot {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(245, 235, 221, 0.92)),
    var(--panel);
}

.product-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 246, 230, 0.74);
  padding: 13px 16px;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #ef6a55;
}

.window-bar span:nth-child(2) {
  background: #e6a642;
}

.window-bar span:nth-child(3) {
  background: #5da96b;
}

.window-bar strong {
  margin-left: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
}

.product-layout {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 360px;
}

.product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line);
  background: rgba(239, 229, 215, 0.52);
  padding: 20px 14px;
}

.product-sidebar b {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-sidebar span {
  border-radius: 7px;
  color: var(--muted);
  font-size: 13px;
  padding: 8px 10px;
}

.product-sidebar .active {
  background: var(--ink);
  color: var(--panel);
}

.product-panel {
  padding: 26px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.panel-heading p {
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.panel-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
}

.status-pill {
  border-radius: 999px;
  background: rgba(36, 118, 80, 0.12);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  padding: 7px 10px;
}

.scan-list {
  display: grid;
  gap: 12px;
}

.scan-list div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.72);
  padding: 13px 14px;
  font-size: 14px;
}

.scan-list span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: var(--green);
}

.scan-list b {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.command-card {
  margin-top: 18px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--panel);
  padding: 18px;
}

.command-card small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 250, 240, 0.62);
}

code {
  font-family: var(--mono);
  font-size: 0.92em;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(calc(100% - 64px), calc(var(--max) - 64px));
  max-width: calc(var(--max) - 64px);
  margin: -18px auto 0;
  overflow: hidden;
  border: 1px solid rgba(36, 28, 21, 0.08);
  border-radius: 12px;
  background: rgba(36, 28, 21, 0.08);
}

.trust-strip div {
  background: rgba(255, 250, 240, 0.56);
  padding: 16px 18px;
}

.trust-strip strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.trust-strip span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 32px;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.split {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading.split > div {
  max-width: 860px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-family: var(--display-zh);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.22;
}

#features .section-heading {
  max-width: none;
}

#features .section-heading h2 {
  white-space: nowrap;
}

.section-heading p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 0;
  border: 1px solid rgba(36, 28, 21, 0.08);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.46);
  padding: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.feature-index {
  display: inline-flex;
  margin-bottom: 32px;
  border-bottom: 1px solid currentColor;
  color: var(--accent-deep);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-family: var(--display-zh);
  font-size: 23px;
  font-weight: 650;
  line-height: 1.3;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.screenshots-section {
  max-width: none;
  border-top: 1px solid rgba(36, 28, 21, 0.08);
  border-bottom: 1px solid rgba(36, 28, 21, 0.08);
  background: rgba(239, 229, 215, 0.42);
  padding-top: 84px;
  padding-bottom: 84px;
}

.screenshots-section > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.screenshots-section .section-heading.split {
  display: grid;
  justify-content: center;
  justify-items: center;
  gap: 20px;
  text-align: center;
}

.screenshots-section .section-heading.split > div {
  max-width: 860px;
}

.screenshots-section .preview-tabs {
  justify-self: center;
}

.preview-tabs {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 5px;
  border: 1px solid rgba(36, 28, 21, 0.09);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.66);
  padding: 5px;
}

.preview-tabs button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  padding: 9px 14px;
}

.preview-tabs button.active,
.preview-tabs button[aria-selected="true"] {
  background: var(--ink);
  color: var(--panel);
}

.preview-stage {
  position: relative;
}

.preview-panel {
  min-height: auto;
}

.preview-panel[hidden] {
  display: none;
}

.preview-stage .product-screenshot {
  max-width: min(1280px, 100%);
}

.preview-stage .product-screenshot img {
  border-bottom: 1px solid rgba(36, 28, 21, 0.08);
}

.screenshot-caption {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  padding: 16px 20px 18px;
  text-align: center;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 28px;
}

.metric-card {
  border: 1px solid rgba(36, 28, 21, 0.09);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.68);
  padding: 22px;
}

.metric-card small,
.download-card dt {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.metric-card b {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}

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

.metric-card.success {
  background: rgba(36, 118, 80, 0.11);
}

.metric-card.warning {
  background: rgba(166, 103, 22, 0.11);
}

.timeline {
  display: grid;
  gap: 10px;
  padding: 0 28px 28px;
}

.timeline p {
  margin: 0;
  border: 1px solid rgba(36, 28, 21, 0.08);
  border-radius: 10px;
  background: rgba(255, 250, 240, 0.72);
  color: var(--muted);
  padding: 15px 18px;
}

.timeline b {
  color: var(--green);
}

.provider-list,
.extension-table {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.provider-list div,
.extension-table div {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid rgba(36, 28, 21, 0.08);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.64);
  padding: 18px 20px;
}

.provider-list span,
.extension-table span {
  color: var(--muted);
}

.provider-list b:last-child,
.extension-table em {
  border-radius: 999px;
  background: rgba(36, 118, 80, 0.11);
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  padding: 6px 9px;
}

.workflow {
  position: relative;
}

.workflow .section-heading {
  max-width: none;
}

.workflow .section-heading h2 {
  white-space: nowrap;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  border-top: 2px solid var(--accent);
  padding-top: 20px;
}

.workflow-list span {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 9px;
}

.workflow-list h3 {
  margin-bottom: 10px;
  font-family: var(--display-zh);
  font-size: 24px;
  font-weight: 650;
  line-height: 1.3;
}

.workflow-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.download-section {
  max-width: none;
  background: var(--ink);
  color: var(--panel);
}

.download-section > * {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.download-section .eyebrow {
  color: #f0aa88;
}

.download-section .section-heading p:not(.eyebrow),
.download-section .release-note,
.download-card p,
.download-card dd {
  color: rgba(255, 250, 240, 0.66);
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.download-card {
  border: 1px solid rgba(255, 250, 240, 0.13);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.07);
  padding: 28px;
}

.download-card.is-muted {
  background: rgba(255, 250, 240, 0.04);
}

.download-card-head {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.os-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.16);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.08);
  font-size: 24px;
}

.download-card h3 {
  margin-bottom: 5px;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 750;
  line-height: 1.25;
}

.download-card p {
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: 12px;
}

.download-card .button {
  width: 100%;
  margin-bottom: 24px;
}

.download-card dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.download-card dl > div {
  border-top: 1px solid rgba(255, 250, 240, 0.13);
  padding-top: 16px;
}

.download-card dd {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
}

.download-card code {
  overflow-wrap: anywhere;
}

.download-card button {
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.08);
  color: var(--panel);
  cursor: pointer;
  padding: 5px 8px;
}

.release-note {
  max-width: 820px;
  margin-top: 22px;
  text-align: center;
}

.faq-section .section-heading a {
  color: var(--accent-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(36, 28, 21, 0.08);
  border-radius: 12px;
  background: rgba(36, 28, 21, 0.08);
}

.faq-list article {
  background: rgba(255, 250, 240, 0.54);
  padding: 26px;
}

.faq-list h3 {
  margin-bottom: 10px;
  font-family: var(--display-zh);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.35;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 42px 32px 54px;
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
  color: var(--muted);
}

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

.copyright {
  grid-column: 1 / -1;
  font-size: 13px;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
  }

  .hero-visual {
    max-width: min(840px, 100%);
    margin-right: 0;
    transform: none;
  }

  .hero-art img {
    width: 100%;
    max-width: 100%;
  }

  .hero-image-frame {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .feature-grid,
  .workflow-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 14px 18px;
  }

  .site-header::before {
    inset: 8px 12px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 18px;
    left: 18px;
    display: none;
    border-radius: 16px;
    background: rgba(255, 250, 240, 0.98);
    box-shadow: var(--shadow);
    padding: 10px;
  }

  body.nav-open .site-nav {
    display: grid;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .hero,
  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 58px;
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.14;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .trust-strip,
  .download-grid,
  .faq-list {
    grid-template-columns: 1fr;
    width: auto;
    margin-right: 20px;
    margin-left: 20px;
  }

  .trust-strip {
    margin-top: 0;
  }

  .section-heading.split {
    display: grid;
    align-items: start;
    gap: 18px;
  }

  #features .section-heading h2 {
    white-space: normal;
  }

  .workflow .section-heading h2 {
    white-space: normal;
  }

  .dashboard-grid,
  .provider-list div,
  .extension-table div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-right: 20px;
    padding-left: 20px;
  }

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

@media (max-width: 680px) {
  h1 span {
    white-space: normal;
  }

  .hero-actions,
  .button {
    width: 100%;
    max-width: 100%;
  }

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

  .product-sidebar {
    display: none;
  }

  .product-panel {
    padding: 20px;
  }

  .scan-list div {
    grid-template-columns: auto 1fr;
  }

  .scan-list b {
    grid-column: 2;
  }

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

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

  .preview-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .preview-tabs button {
    flex: 1 0 auto;
  }

  .preview-panel {
    min-height: auto;
  }

  .dashboard-grid,
  .provider-list,
  .extension-table {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
