@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --navy-980: #07131f;
  --navy-940: #0d2134;
  --navy-900: #163650;
  --blue-500: #2d78e6;
  --cyan-400: #2fd2c5;
  --teal-500: #1de8d5;
  --slate-950: #111827;
  --slate-800: #1f2937;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --site-background:
    radial-gradient(circle at top left, rgba(47, 210, 197, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(45, 120, 230, 0.08), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f7fafc 100%);
  --hero-background:
    radial-gradient(circle at 15% 20%, rgba(47, 210, 197, 0.18), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(45, 120, 230, 0.22), transparent 26%),
    linear-gradient(135deg, #07131f 0%, #0d2134 58%, #163650 100%);
  --accent-gradient: linear-gradient(135deg, #2d78e6 0%, #2fd2c5 100%);
  --surface-shadow: 0 28px 80px rgba(7, 19, 31, 0.12);
  --card-shadow: 0 18px 40px rgba(15, 23, 42, 0.07);
  --radius-2xl: 34px;
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--slate-950);
  background: var(--site-background);
  line-height: 1.6;
}

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

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

.page-shell {
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 253, 255, 0.82);
  border-bottom: 1px solid rgba(203, 213, 225, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--slate-600);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:hover,
.inline-link,
.support-card a.inline-link {
  color: var(--blue-500);
}

.button-row,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--accent-gradient);
  box-shadow: 0 14px 28px rgba(45, 120, 230, 0.22);
}

.button-secondary {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(148, 163, 184, 0.28);
}

.hero {
  padding: 72px 0 30px;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 32px;
  align-items: center;
  padding: 58px;
  border-radius: 38px;
  background: var(--hero-background);
  color: var(--white);
  box-shadow: var(--surface-shadow);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.panel-label,
.card-index,
.workflow-number {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}

.hero h1,
.section-intro h2,
.editorial-copy h2,
.cta-banner h2,
.legal-hero h1,
.section-header h2 {
  margin: 16px 0 14px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(44px, 7vw, 76px);
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 24px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.hero-panel {
  position: relative;
  min-height: 430px;
}

.hero-orbit {
  position: absolute;
  inset: 22px 34px auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(47, 210, 197, 0.2), transparent 44%),
    radial-gradient(circle at center, rgba(45, 120, 230, 0.22), transparent 68%);
  filter: blur(8px);
}

.panel-card,
.capability-card,
.workflow-step,
.point-item,
.legal-surface,
.support-card,
.legal-nav {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--card-shadow);
}

.panel-card {
  position: relative;
  padding: 24px;
  color: var(--navy-900);
}

.panel-card-primary {
  margin: 0 0 18px auto;
  max-width: 380px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: none;
}

.panel-card-primary h2 {
  margin: 10px 0 12px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 32px;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.panel-card-primary p,
.panel-card-primary .panel-label {
  color: rgba(255, 255, 255, 0.78);
}

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

.panel-stack .panel-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94));
  border-color: rgba(148, 163, 184, 0.22);
  backdrop-filter: blur(14px);
}

.panel-stack .panel-label {
  margin: 0;
  color: rgba(15, 23, 42, 0.56);
}

.panel-note {
  margin: 10px 0 0;
  color: var(--slate-700);
  font-size: 15px;
  line-height: 1.45;
}

.panel-label,
.section-kicker,
.card-index {
  color: var(--slate-400);
}

.section {
  padding: 44px 0;
}

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

.section-bottom {
  padding-bottom: 72px;
}

.section-intro,
.section-header {
  margin-bottom: 24px;
}

.section-intro h2,
.section-header h2,
.editorial-copy h2,
.cta-banner h2 {
  font-size: clamp(32px, 5vw, 52px);
}

.section-intro h2,
.editorial-copy h2,
.cta-banner h2,
.section-header h2 {
  max-width: 760px;
}

.section-header p,
.editorial-copy p,
.cta-banner p,
.legal-surface p,
.legal-surface li,
.support-card p,
.muted {
  color: var(--slate-700);
}

.capability-grid,
.support-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.capability-card {
  padding: 26px;
}

.card-index {
  margin-bottom: 26px;
}

.capability-card h3,
.workflow-step h3,
.point-item strong,
.faq-item h3,
.support-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.editorial-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: start;
}

.editorial-copy,
.cta-banner {
  padding: 0 6px 0 0;
}

.editorial-points {
  display: grid;
  gap: 16px;
}

.point-item {
  padding: 22px 24px;
}

.point-item p {
  margin: 0;
}

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

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: start;
}

.gallery-editorial,
.gallery-card,
.phone-frame,
.faq-item {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--card-shadow);
}

.gallery-editorial {
  padding: 28px;
}

.gallery-editorial h3 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.gallery-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.gallery-status,
.gallery-type,
.gallery-badge,
.screen-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery-status,
.screen-chip {
  background: rgba(15, 23, 42, 0.06);
  color: var(--slate-700);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.gallery-card {
  display: flex;
  flex-direction: column;
  min-height: 204px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.92)),
    linear-gradient(135deg, rgba(45, 120, 230, 0.06), rgba(47, 210, 197, 0.06));
}

.gallery-card-feature {
  min-height: 252px;
  background:
    radial-gradient(circle at top right, rgba(45, 120, 230, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(7, 19, 31, 0.98), rgba(22, 54, 80, 0.96));
  color: var(--white);
}

.gallery-card h3,
.phone-caption h3 {
  margin: 14px 0 10px;
  font-size: 24px;
  line-height: 1.08;
}

.gallery-card p,
.phone-caption p {
  margin: 0;
  color: var(--slate-700);
}

.gallery-card-feature p,
.gallery-card-feature .gallery-type,
.gallery-card-feature .gallery-link {
  color: rgba(255, 255, 255, 0.84);
}

.gallery-type {
  width: fit-content;
  background: rgba(15, 23, 42, 0.06);
  color: var(--slate-600);
}

.gallery-card-feature .gallery-type {
  background: rgba(255, 255, 255, 0.14);
}

.gallery-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.gallery-badge {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.gallery-link {
  font-size: 14px;
  font-weight: 700;
}

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

.phone-frame {
  padding: 22px;
}

.phone-screen {
  position: relative;
  padding: 18px;
  min-height: 420px;
  border-radius: 34px;
  background: linear-gradient(180deg, #081725 0%, #163650 100%);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.screen-topbar,
.screen-list-row,
.screen-chip-row,
.screen-stats,
.screen-card-stack {
  display: flex;
}

.screen-topbar,
.screen-list-row {
  justify-content: space-between;
  align-items: center;
}

.screen-topbar {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.screen-hero-block,
.screen-card,
.screen-stat-card {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.screen-hero-block strong,
.screen-card strong,
.screen-stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.screen-hero-block p,
.screen-card p,
.screen-stat-card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.screen-chip-row {
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.screen-chip-active {
  color: var(--white);
  background: linear-gradient(135deg, rgba(45, 120, 230, 0.82), rgba(47, 210, 197, 0.82));
}

.screen-card-stack {
  flex-direction: column;
  gap: 12px;
}

.screen-card-muted {
  background: rgba(255, 255, 255, 0.05);
}

.screen-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 104px;
  gap: 10px;
  margin-bottom: 14px;
}

.gallery-thumb {
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(45, 120, 230, 0.6), rgba(47, 210, 197, 0.42)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.26), transparent 42%);
}

.gallery-thumb-large {
  grid-column: span 2;
}

.screen-stats {
  gap: 12px;
  margin-bottom: 14px;
}

.screen-stat-card {
  flex: 1 1 0;
}

.screen-stat-card strong {
  font-size: 24px;
}

.screen-stat-card-accent {
  background: linear-gradient(135deg, rgba(45, 120, 230, 0.3), rgba(47, 210, 197, 0.3));
}

.screen-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.screen-list-row {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.phone-caption {
  padding-top: 18px;
}

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

.workflow-step {
  padding: 24px;
}

.workflow-number {
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-bottom: 18px;
  color: var(--blue-500);
  background: linear-gradient(180deg, rgba(45, 120, 230, 0.12), rgba(47, 210, 197, 0.16));
}

.mini-list,
.legal-surface ul {
  margin: 0;
  padding-left: 18px;
}

.mini-list li + li {
  margin-top: 8px;
}

.panel-stack .mini-list {
  margin-top: 18px;
  padding-left: 0;
  list-style: none;
}

.panel-stack .mini-list li {
  position: relative;
  padding: 11px 0 11px 18px;
  color: var(--slate-950);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.panel-stack .mini-list li:first-child {
  padding-top: 0;
  border-top: none;
}

.panel-stack .mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-500), var(--teal-500));
  transform: translateY(-50%);
}

.panel-stack .mini-list li:first-child::before {
  top: 6px;
  transform: none;
}

.cta-banner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  border: 1px solid rgba(203, 213, 225, 0.76);
  box-shadow: var(--card-shadow);
}

.legal-hero {
  padding: 72px 0 26px;
}

.legal-hero-card {
  padding: 38px;
  border-radius: 30px;
  color: var(--white);
  background: var(--hero-background);
  box-shadow: var(--surface-shadow);
}

.legal-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.legal-wrap {
  padding: 26px 0 72px;
}

.legal-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.legal-nav,
.legal-surface,
.support-card,
.faq-item {
  padding: 24px;
}

.legal-nav {
  position: sticky;
  top: 92px;
  background: rgba(255, 255, 255, 0.82);
}

.legal-nav h2 {
  margin: 0 0 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-400);
}

.legal-nav a {
  display: block;
  padding: 9px 0;
  color: var(--slate-700);
  font-size: 14px;
}

.legal-nav a:hover {
  color: var(--blue-500);
}

.legal-surface h2 {
  margin: 32px 0 10px;
  font-size: 25px;
}

.legal-surface h2:first-child {
  margin-top: 0;
}

.legal-surface h3 {
  margin: 22px 0 10px;
  font-size: 18px;
}

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

.site-footer {
  padding: 0 0 44px;
}

.footer-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
  border-radius: 26px;
  background: var(--navy-980);
  color: rgba(255, 255, 255, 0.78);
}

.footer-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .hero-shell,
  .editorial-band,
  .capability-grid,
  .gallery-showcase,
  .gallery-grid,
  .app-preview-grid,
  .workflow-line,
  .support-grid,
  .legal-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    padding: 36px;
  }

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

   .hero-orbit {
    width: 220px;
    height: 220px;
    inset: 16px 20px auto auto;
  }

  .panel-card-primary {
    max-width: none;
  }

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

  .legal-nav {
    position: static;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max-width), calc(100% - 26px));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 14px 0;
  }

  .header-inner > .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .header-inner > .button {
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero {
    padding: 28px 0 20px;
  }

  .hero-shell,
  .legal-hero-card,
  .legal-nav,
  .legal-surface,
  .gallery-editorial,
  .gallery-card,
  .phone-frame,
  .support-card,
  .faq-item,
  .footer-card,
  .cta-banner,
  .capability-card,
  .workflow-step,
  .point-item {
    padding: 22px;
  }

  .hero-shell {
    gap: 24px;
    border-radius: 28px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.02;
  }

  .hero-lead {
    margin-bottom: 20px;
  }

  .hero-meta {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-meta span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 12px;
  }

  .panel-card,
  .capability-card,
  .gallery-card,
  .workflow-step,
  .point-item,
  .phone-frame,
  .support-card,
  .faq-item {
    border-radius: 20px;
  }

  .panel-card-primary h2 {
    font-size: 26px;
  }

  .section {
    padding: 32px 0;
  }

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

  .section-bottom {
    padding-bottom: 48px;
  }

  .section-intro,
  .section-header {
    margin-bottom: 18px;
  }

  .section-intro h2,
  .section-header h2,
  .editorial-copy h2,
  .cta-banner h2,
  .legal-hero h1 {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.04;
  }

  .capability-card h3,
  .workflow-step h3,
  .point-item strong,
  .faq-item h3,
  .support-card h3 {
    font-size: 20px;
  }

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

  .gallery-card-feature,
  .gallery-card {
    min-height: auto;
  }

  .phone-screen {
    min-height: 360px;
  }

  .button-row,
  .cta-actions {
    width: 100%;
  }

  .button-row .button,
  .cta-actions .button {
    width: 100%;
  }

  .hero-lead,
  .section-header p,
  .editorial-copy p,
  .cta-banner p,
  .legal-surface p,
  .legal-surface li,
  .support-card p {
    font-size: 15px;
  }

  .legal-hero {
    padding: 34px 0 18px;
  }

  .legal-wrap {
    padding: 18px 0 44px;
  }

  .legal-grid {
    gap: 14px;
  }

  .legal-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .legal-nav::-webkit-scrollbar {
    display: none;
  }

  .legal-nav h2 {
    display: none;
  }

  .legal-nav a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(203, 213, 225, 0.9);
    white-space: nowrap;
    font-size: 13px;
  }

  .legal-surface h2 {
    margin: 26px 0 10px;
    font-size: 22px;
  }

  .legal-surface h3 {
    margin: 18px 0 8px;
    font-size: 17px;
  }

  .cta-banner {
    gap: 18px;
  }

  .footer-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .footer-links {
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(var(--max-width), calc(100% - 20px));
  }

  .hero-shell,
  .legal-hero-card,
  .legal-nav,
  .legal-surface,
  .support-card,
  .faq-item,
  .footer-card,
  .cta-banner,
  .capability-card,
  .workflow-step,
  .point-item {
    padding: 18px;
  }

  .brand {
    gap: 10px;
    font-size: 15px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-lead,
  .section-header p,
  .editorial-copy p,
  .cta-banner p,
  .legal-surface p,
  .legal-surface li,
  .support-card p {
    font-size: 14px;
  }

  .workflow-number {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }
}
