:root {
  --site-bg-top: #08111c;
  --site-bg-bottom: #050912;
  --site-surface: rgba(9, 20, 34, 0.86);
  --site-surface-strong: rgba(10, 24, 40, 0.96);
  --site-line: rgba(182, 209, 235, 0.12);
  --site-line-strong: rgba(231, 240, 255, 0.18);
  --site-text: #eff6ff;
  --site-muted: #9cb2c7;
  --site-accent: #f3b55c;
  --site-accent-strong: #ffd49a;
  --site-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  --site-radius: 28px;
  --site-max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Futura", "Segoe UI", sans-serif;
  color: var(--site-text);
  background:
    radial-gradient(circle at top left, rgba(120, 212, 255, 0.09), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(243, 181, 92, 0.14), transparent 26%),
    linear-gradient(180deg, var(--site-bg-top), var(--site-bg-bottom));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 88%);
  pointer-events: none;
}

a {
  color: inherit;
}

.brand-link,
.preview-bar-title,
.trust-pill,
.step-head,
.preview-overlay {
  display: inline-flex;
}

.brand-mark svg,
.mini-icon svg,
.info-icon svg,
.use-case-icon svg,
.overlay-icon svg,
.cta-mark svg,
.hero-sketch svg,
.preview-shell svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--site-max-width));
  margin: 0 auto;
}

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

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: var(--site-accent-strong);
  background: linear-gradient(180deg, rgba(243, 181, 92, 0.18), rgba(120, 212, 255, 0.08));
  border: 1px solid rgba(255, 222, 173, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--site-line);
  border-radius: 999px;
  background: rgba(10, 20, 34, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.lang-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--site-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.lang-link:hover {
  color: var(--site-text);
  transform: translateY(-1px);
}

.lang-link.is-active {
  color: var(--site-text);
  background: linear-gradient(180deg, rgba(243, 181, 92, 0.16), rgba(120, 212, 255, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 224, 184, 0.16);
}

.nav-action,
.site-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 650;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.nav-action {
  border: 1px solid var(--site-line-strong);
  background: rgba(10, 20, 34, 0.64);
}

.site-button {
  background: linear-gradient(135deg, var(--site-accent), #f58e56);
  color: #1d1308;
  box-shadow: 0 14px 28px rgba(243, 181, 92, 0.22);
}

.nav-action:hover,
.site-button:hover,
.preview-link:hover {
  transform: translateY(-1px);
}

.nav-action:focus-visible,
.site-button:focus-visible,
.lang-link:focus-visible,
.preview-link:focus-visible,
.site-footer a:focus-visible,
.brand-link:focus-visible {
  outline: 2px solid rgba(120, 212, 255, 0.65);
  outline-offset: 4px;
}

.site-main {
  padding: 36px 0 100px;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 36px;
  align-items: center;
  min-height: calc(100vh - 152px);
}

.hero-copy {
  position: relative;
  max-width: 36rem;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--site-accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-summary {
  margin-top: 18px;
  max-width: 29rem;
  color: var(--site-muted);
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-secondary-action {
  background: rgba(10, 20, 34, 0.48);
}

.trust-line {
  color: var(--site-muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-pill {
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--site-line);
  background: rgba(9, 19, 32, 0.66);
  color: var(--site-text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.mini-icon,
.overlay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--site-accent-strong);
}

.hero-sketch {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 4px;
  width: 100%;
  max-width: 100%;
  color: rgba(120, 212, 255, 0.52);
  opacity: 0.9;
}

.hero-sketch svg {
  display: block;
  width: 100%;
  height: clamp(26px, 3vw, 40px);
}

.hero-sketch path:last-child {
  color: rgba(243, 181, 92, 0.48);
}

.hero-preview {
  position: relative;
  min-width: 0;
}

.info-card,
.cta-card,
.page-article {
  background: linear-gradient(180deg, rgba(14, 29, 48, 0.96), var(--site-surface));
  border: 1px solid var(--site-line);
  border-radius: var(--site-radius);
  box-shadow: var(--site-shadow);
  backdrop-filter: blur(18px);
}

.preview-shell {
  position: relative;
  margin-left: auto;
  overflow: visible;
  transform: translateY(-28px);
  isolation: isolate;
}

.preview-shell::before {
  content: "";
  position: absolute;
  inset: 20% -5% 8% 12%;
  border-radius: 44px;
  background:
    radial-gradient(circle at 24% 28%, rgba(120, 212, 255, 0.18), transparent 26%),
    radial-gradient(circle at 74% 36%, rgba(243, 181, 92, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  filter: blur(22px);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.preview-shell::after {
  content: "";
  position: absolute;
  inset: auto 10% -3% 18%;
  height: 52px;
  background: radial-gradient(circle, rgba(2, 6, 11, 0.5), transparent 72%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--site-line);
  color: var(--site-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-bar-title {
  align-items: center;
  gap: 10px;
}

.preview-dots {
  display: inline-flex;
  gap: 5px;
}

.preview-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.preview-dots span:first-child {
  background: rgba(243, 181, 92, 0.74);
}

.preview-dots span:nth-child(2) {
  background: rgba(120, 212, 255, 0.65);
}

.preview-bar-note {
  color: var(--site-accent-strong);
}

.preview-frame {
  position: relative;
  aspect-ratio: auto;
  background: transparent;
}

.preview-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.preview-link {
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 34px;
  text-decoration: none;
}

.preview-overlay {
  position: absolute;
  z-index: 2;
  align-items: center;
  gap: 10px;
  max-width: 212px;
  padding: 10px 12px;
  border: 1px solid rgba(232, 242, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(9, 18, 31, 0.76), rgba(7, 14, 24, 0.6));
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.preview-overlay strong {
  font-size: 0.88rem;
  font-weight: 650;
}

.preview-overlay-copy {
  display: block;
  color: var(--site-text);
}

.preview-overlay-detail {
  display: block;
  color: var(--site-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.preview-overlay-live {
  top: 20px;
  left: 8px;
  animation: float-card 5.4s ease-in-out infinite;
}

.preview-overlay-review {
  right: 18px;
  bottom: 18px;
  animation: float-card 6.4s ease-in-out infinite reverse;
}

.hero-demo-svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.28));
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  border: 1px solid var(--site-line);
  border-radius: calc(var(--site-radius) - 2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  overflow: hidden;
}

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

.proof-item + .proof-item {
  border-left: 1px solid var(--site-line);
}

.proof-item strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
}

.proof-item p {
  margin-top: 10px;
  color: var(--site-muted);
  line-height: 1.6;
}

.proof-link {
  color: var(--site-accent-strong);
  text-underline-offset: 0.18em;
}

.content-section,
.final-cta {
  margin-top: 96px;
}

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

.section-kicker {
  margin-bottom: 10px;
  color: var(--site-accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2,
.cta-card h2,
.page-article h1 {
  font-size: clamp(2rem, 3vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-body {
  margin-top: 12px;
  max-width: 34rem;
  color: var(--site-muted);
  line-height: 1.65;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.info-card,
.cta-card,
.page-article {
  padding: 24px;
}

.info-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  overflow: hidden;
}

.info-card::before,
.use-case-card::before,
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 46%);
  pointer-events: none;
}

.info-icon,
.use-case-icon,
.cta-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  color: var(--site-accent-strong);
  background: linear-gradient(180deg, rgba(243, 181, 92, 0.16), rgba(120, 212, 255, 0.08));
  border: 1px solid rgba(255, 224, 184, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.info-card h3 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.info-card p,
.cta-card p,
.page-article p,
.page-article li {
  color: var(--site-muted);
  line-height: 1.65;
}

.info-card p,
.cta-card p {
  margin-top: 10px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.use-case-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-height: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--site-line);
}

.use-case-card::before {
  display: none;
}

.use-case-copy {
  display: grid;
  gap: 8px;
}

.use-case-copy strong {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.35;
}

.use-case-copy span {
  color: var(--site-muted);
  line-height: 1.6;
}

.motion-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(14, 29, 48, 0.96), var(--site-surface));
  border: 1px solid var(--site-line);
  border-radius: calc(var(--site-radius) + 4px);
  box-shadow: var(--site-shadow);
}

.motion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(120, 212, 255, 0.08), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(243, 181, 92, 0.12), transparent 22%);
  pointer-events: none;
}

.motion-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.feature-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 24px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(10, 22, 37, 0.82), rgba(7, 16, 27, 0.66));
  border: 1px solid rgba(231, 240, 255, 0.12);
  border-radius: calc(var(--site-radius) + 4px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.feature-spotlight::before {
  content: "";
  position: absolute;
  inset: auto -8% 4% 42%;
  height: 260px;
  background:
    radial-gradient(circle, rgba(120, 212, 255, 0.16), transparent 66%),
    radial-gradient(circle at 30% 35%, rgba(243, 181, 92, 0.12), transparent 28%);
  filter: blur(22px);
  pointer-events: none;
}

.feature-spotlight-copy,
.feature-review-panel {
  position: relative;
  z-index: 1;
}

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

.feature-point {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 0 16px;
  border-left: 1px solid rgba(231, 240, 255, 0.18);
}

.feature-point strong {
  font-size: 0.98rem;
  line-height: 1.35;
}

.feature-point span,
.feature-spotlight-note {
  color: var(--site-muted);
  line-height: 1.6;
}

.feature-spotlight-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
}

.feature-spotlight-note {
  max-width: 34rem;
  font-size: 0.96rem;
}

.feature-review-shell {
  display: grid;
  gap: 16px;
}

.feature-review-heading,
.feature-review-card-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.feature-review-heading {
  align-items: center;
}

.feature-review-eyebrow {
  color: var(--site-accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-review-toggle,
.feature-review-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 224, 184, 0.14);
  background: rgba(12, 23, 37, 0.72);
  color: var(--site-text);
  font-size: 0.8rem;
  font-weight: 650;
}

.feature-review-stack {
  display: grid;
  gap: 14px;
}

.feature-review-card {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(231, 240, 255, 0.12);
  border-radius: 20px;
  background: rgba(8, 17, 28, 0.5);
  overflow: hidden;
}

.feature-review-card::before {
  display: none;
}

.feature-review-card-head {
  align-items: flex-start;
  margin-bottom: 14px;
}

.feature-review-card-head strong {
  font-size: 1rem;
  line-height: 1.3;
}

.feature-review-card-head span {
  max-width: 13rem;
  color: var(--site-muted);
  font-size: 0.84rem;
  line-height: 1.45;
  text-align: right;
}

.feature-review-graph {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.feature-review-grid-line {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.feature-review-target-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1.5;
  stroke-dasharray: 4 6;
}

.feature-review-trace-original,
.feature-review-trace-corrected {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-review-trace-original {
  stroke: #f3b55c;
}

.feature-review-trace-corrected {
  stroke: #8bd5ff;
}

.feature-review-node-original {
  fill: #f3b55c;
}

.feature-review-node-corrected {
  fill: #8bd5ff;
}

.feature-review-card p {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: var(--site-muted);
  line-height: 1.6;
}

.feature-review-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-review-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--site-accent-strong);
}

.step-card {
  position: relative;
  min-height: 0;
  padding: 22px 0 0;
  border-radius: 0;
  border: 0;
  border-top: 1px solid var(--site-line);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.step-card::before {
  display: none;
}

.step-head {
  justify-content: space-between;
  align-items: center;
}

.step-number {
  color: var(--site-accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 224, 184, 0.14);
  background: rgba(12, 23, 37, 0.66);
}

.cta-card {
  position: relative;
  text-align: center;
  padding: 10px 24px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.cta-card::before {
  display: none;
}

.cta-mark {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
}

.final-cta {
  padding-top: 28px;
  border-top: 1px solid var(--site-line);
}

.cta-card p {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-card .site-button {
  margin-top: 22px;
}

.cta-note {
  margin-top: 14px;
  font-size: 0.94rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 24px;
  padding: 0 0 30px;
  color: var(--site-muted);
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  text-decoration: none;
}

.site-page-detail .site-main {
  padding-top: 60px;
}

.page-shell {
  max-width: 760px;
}

.site-page-seo .site-main {
  padding-top: 30px;
}

.site-page-seo .hero-section {
  min-height: auto;
  align-items: start;
}

.site-page-seo .hero-copy {
  max-width: 38rem;
}

.site-page-seo .hero-summary {
  max-width: 34rem;
}

.site-page-seo .hero-proof-strip {
  margin-top: 30px;
}

.site-page-seo .preview-shell {
  transform: translateY(-10px);
}

.site-page-seo .content-section:first-of-type {
  margin-top: 72px;
}

.page-article {
  display: grid;
  gap: 18px;
}

.page-article ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.page-kicker {
  color: var(--site-accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-meta {
  color: var(--site-muted);
  font-size: 0.95rem;
}

.email-link {
  color: var(--site-text);
}

@keyframes float-card {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -6px, 0);
  }
}

@media (max-width: 980px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-preview {
    order: 3;
  }

  .hero-sketch {
    order: 2;
    margin-top: 0;
  }

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

  .proof-item + .proof-item {
    border-left: 0;
  }

  .proof-item:nth-child(2n) {
    border-left: 1px solid var(--site-line);
  }

  .proof-item:nth-child(n + 3) {
    border-top: 1px solid var(--site-line);
  }

  .preview-shell {
    margin: 0 auto;
    transform: none;
  }

  .feature-spotlight,
  .card-grid-three,
  .card-grid-steps {
    grid-template-columns: 1fr;
  }

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

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

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

  .content-section,
  .final-cta {
    margin-top: 76px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .site-main,
  .site-footer {
    width: min(calc(100% - 28px), var(--site-max-width));
  }

  .site-main {
    padding-bottom: 72px;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 18px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-section {
    gap: 24px;
  }

  .hero-summary {
    margin-top: 14px;
  }

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

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-cta-row .site-button,
  .hero-cta-row .nav-action {
    width: 100%;
  }

  .trust-pills,
  .card-grid-two,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .trust-pills {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-proof-strip {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  .proof-item:nth-child(2n) {
    border-left: 0;
  }

  .proof-item:nth-child(n + 3) {
    border-top: 0;
  }

  .proof-item + .proof-item {
    border-top: 1px solid var(--site-line);
  }

  .preview-bar {
    padding: 12px 14px;
  }

  .preview-frame {
    display: grid;
    gap: 12px;
  }

  .preview-overlay {
    position: static;
    max-width: none;
    width: fit-content;
    justify-self: start;
    padding: 8px 12px;
    border-radius: 999px;
    box-shadow: none;
  }

  .preview-overlay strong {
    font-size: 0.84rem;
  }

  .preview-overlay-detail {
    display: none;
  }

  .preview-overlay-live,
  .preview-overlay-review {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    animation: none;
  }

  .feature-spotlight {
    padding: 20px;
  }

  .feature-review-shell,
  .info-card,
  .cta-card,
  .page-article {
    padding: 20px;
  }

  .feature-review-heading,
  .feature-review-card-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-review-card-head span {
    max-width: none;
    text-align: left;
  }

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