:root {
  --hero-bg: #07111f;
  --hero-surface: rgba(255, 255, 255, 0.06);
  --hero-border: rgba(255, 255, 255, 0.1);

  --bg: #f3f7fb;
  --surface: #ffffff;
  --surface-2: #e9f0f7;
  --surface-3: #d9e4f1;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.14);

  --ink: #0f172a;
  --muted: #64748b;
  --subtle: #94a3b8;

  --accent: #1277d3;
  --accent-deep: #0b5fb0;
  --accent-light: #e8f4ff;
  --accent-glow: rgba(18, 119, 211, 0.24);
  --accent-warm: #f59e0b;

  --green: #10b981;
  --green-light: rgba(16, 185, 129, 0.12);

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;
  --radius-pill: 999px;

  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(circle at top left, rgba(18, 119, 211, 0.08), transparent 28%),
    linear-gradient(180deg, #eef5fb 0%, #f7fafd 28%, #f3f7fb 100%);
  -webkit-font-smoothing: antialiased;
}

html[lang="zh-Hant"] body {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
}

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

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

.page-shell {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--hero-bg);
  background-image:
    linear-gradient(180deg, rgba(3, 10, 24, 0.72), rgba(3, 10, 24, 0.72)),
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(18, 119, 211, 0.24), transparent 60%),
    radial-gradient(ellipse 70% 55% at 100% 100%, rgba(245, 158, 11, 0.14), transparent 60%);
  padding-bottom: 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 85%);
  pointer-events: none;
}

.hero .page-shell {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
  border: 1px solid var(--hero-border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-bottom: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), #49a4f0);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.brand-name {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
}

html[lang="zh-Hant"] .brand-name {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.topbar-links {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.topbar-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  transition: color 150ms ease;
}

.topbar-links a:hover {
  color: #fff;
}

.topbar-note {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.875rem;
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  text-align: right;
}

.topbar-meta {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
}

.lang-switch-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 150ms ease, color 150ms ease;
}

.lang-switch-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.lang-switch-link.is-active {
  color: #fff;
  background: rgba(18, 119, 211, 0.32);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  padding: 5px 12px;
  border: 1px solid rgba(18, 119, 211, 0.34);
  border-radius: var(--radius-pill);
  background: rgba(18, 119, 211, 0.14);
  color: #9fd2ff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.1;
}

h1,
h2 {
  font-family: "Space Grotesk", "Instrument Sans", sans-serif;
}

html[lang="zh-Hant"] h1,
html[lang="zh-Hant"] h2,
html[lang="zh-Hant"] h3 {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 14ch;
  line-height: 1.05;
}

html[lang="zh-Hant"] h1 {
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

html[lang="zh-Hant"] h2 {
  line-height: 1.2;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

html[lang="zh-Hant"] .hero-text,
html[lang="zh-Hant"] .audience-card p,
html[lang="zh-Hant"] .feature-card p,
html[lang="zh-Hant"] .workflow-step p,
html[lang="zh-Hant"] .screen-copy p,
html[lang="zh-Hant"] .deployment-copy p,
html[lang="zh-Hant"] .faq-card p,
html[lang="zh-Hant"] .comparison-panel li,
html[lang="zh-Hant"] .benefit-panel li,
html[lang="zh-Hant"] .quick-answer-card p,
html[lang="zh-Hant"] .final-cta-copy p:last-child {
  line-height: 1.8;
}

.hero-text {
  margin: 20px 0 0;
  max-width: 52ch;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, opacity 150ms ease;
  cursor: pointer;
}

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

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 4px 16px var(--accent-glow), 0 1px 3px rgba(0, 0, 0, 0.2);
}

.button-primary:hover {
  background: #0e67ba;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.button-secondary {
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-secondary-dark {
  color: var(--ink);
  border-color: rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.7);
}

.button-secondary-dark:hover {
  background: #fff;
}

.hero-points {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
}

.hero-points li::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-light);
  border: 1.5px solid var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 5l2.5 2.5L8 3' stroke='%2310b981' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.hero-metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.hero-metrics strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  padding: 24px;
  border: 1px solid var(--hero-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.stat-card {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
}

.stat-card strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.stat-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-shot {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-shot img {
  width: 100%;
}

.hero-aside {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
}

.aside-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #8ecbff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-aside strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.5;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0 64px;
}

.proof-strip div {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.proof-strip strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.proof-strip span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading .eyebrow {
  background: var(--accent-light);
  border-color: rgba(18, 119, 211, 0.22);
  color: var(--accent-deep);
}

.section-heading h2 {
  color: var(--ink);
  margin-top: 12px;
}

.audience-section,
.feature-section,
.workflow-section,
.screens-section,
.benefits-section,
.comparison-section,
.deployment-section,
.faq-section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.quick-answer-section {
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.quick-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quick-answer-card {
  padding: 24px;
  border: 1px solid rgba(18, 119, 211, 0.16);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f7fbff, #ffffff);
  box-shadow: var(--shadow-sm);
}

.quick-answer-card h3 {
  color: var(--accent-deep);
}

.quick-answer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.audience-grid,
.workflow-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

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

.audience-card,
.feature-card,
.workflow-step,
.screen-card,
.benefit-panel,
.comparison-panel,
.faq-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.audience-card,
.feature-card,
.workflow-step,
.benefit-panel,
.comparison-panel,
.faq-card {
  padding: 28px;
}

.audience-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.audience-card p,
.feature-card p,
.workflow-step p,
.faq-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.7;
}

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

.feature-card {
  transition: box-shadow 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.feature-card:hover,
.screen-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card:hover {
  border-color: rgba(18, 119, 211, 0.22);
}

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

.workflow-step {
  position: relative;
  overflow: hidden;
}

.workflow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #49a4f0);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92rem;
  font-weight: 500;
}

.workflow-step::after {
  content: "";
  position: absolute;
  inset: auto -18% -30% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 119, 211, 0.08), transparent 70%);
}

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

.screen-card {
  overflow: hidden;
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.screen-card-wide {
  grid-column: 1 / -1;
}

.screen-copy {
  padding: 22px 24px 16px;
}

.screen-copy p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
}

.screen-card img {
  width: 100%;
  border-top: 1px solid var(--border);
}

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

.benefit-panel h3,
.comparison-panel h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.benefit-panel ul,
.comparison-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.benefit-panel li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

.benefit-panel li::before {
  content: "";
  flex-shrink: 0;
  margin-top: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

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

.comparison-panel-muted {
  background: linear-gradient(180deg, #ffffff, #f7fafc);
}

.comparison-panel-accent {
  background: linear-gradient(180deg, #ebf6ff, #f4faff);
  border-color: rgba(18, 119, 211, 0.2);
}

.comparison-panel li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.925rem;
  line-height: 1.7;
}

.comparison-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.deployment-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16px;
  align-items: stretch;
}

.code-panel {
  display: flex;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #08101e, #0d1627);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.code-panel pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}

.code-panel code {
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 1rem;
  color: #7dd3fc;
}

.code-panel code::before {
  content: "$ ";
  color: rgba(255, 255, 255, 0.25);
  user-select: none;
}

.deployment-copy {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.deployment-copy p {
  margin: 0 0 14px;
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--muted);
}

.deployment-copy p:last-child {
  margin-bottom: 0;
}

.deployment-copy code {
  padding: 2px 6px;
  border-radius: 5px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-family: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 0.85em;
  color: var(--ink);
}

.deployment-checklist {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.deployment-checklist div {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--surface-2);
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.55;
}

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

.final-cta {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
  margin: 24px 0 32px;
  padding: 36px;
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at top right, rgba(245, 158, 11, 0.14), transparent 32%),
    linear-gradient(135deg, #0a182b, #10233b);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.final-cta-copy p:last-child {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 58ch;
}

.final-cta .eyebrow {
  color: #9fd2ff;
}

.final-cta h2 {
  color: #fff;
  max-width: 18ch;
}

.final-cta-actions {
  display: grid;
  align-content: center;
  gap: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  margin: 16px 0 40px;
}

.footer strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 0.9rem;
}

.footer span {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 16px;
  border: 1px solid rgba(18, 119, 211, 0.25);
  border-radius: var(--radius-pill);
  background: var(--accent-light);
  transition: background 150ms, border-color 150ms;
}

.footer a:hover {
  background: #d6ebff;
  border-color: rgba(18, 119, 211, 0.4);
}

main section,
.footer,
.hero-copy,
.hero-visual {
  animation: rise-in 700ms ease both;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .topbar,
  .hero-grid,
  .audience-grid,
  .quick-answer-grid,
  .feature-grid,
  .workflow-grid,
  .proof-strip,
  .screens-grid,
  .benefits-grid,
  .comparison-grid,
  .deployment-layout,
  .faq-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .topbar {
    border-radius: 20px;
  }

  .topbar-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .topbar-note {
    text-align: left;
  }

  .topbar-meta {
    justify-items: start;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    max-width: 16ch;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero {
    padding-bottom: 40px;
  }

  .hero .page-shell {
    padding-top: 14px;
  }

  .topbar {
    margin-bottom: 48px;
    padding: 14px 18px;
  }

  .topbar-note {
    font-size: 0.8rem;
  }

  .audience-card,
  .feature-card,
  .workflow-step,
  .benefit-panel,
  .comparison-panel,
  .faq-card,
  .code-panel,
  .deployment-copy,
  .screen-copy,
  .proof-strip div,
  .footer,
  .final-cta {
    padding: 20px;
  }

  .hero-visual {
    padding: 16px;
  }

  .button {
    width: 100%;
  }

  .audience-section,
  .quick-answer-section,
  .feature-section,
  .workflow-section,
  .screens-section,
  .benefits-section,
  .comparison-section,
  .deployment-section,
  .faq-section {
    padding: 48px 0;
  }

  h2,
  .final-cta h2 {
    max-width: none;
  }
}
