:root {
  --bg-0: #070a12;
  --bg-1: #090d1a;
  --text-0: rgba(255, 255, 255, 0.92);
  --text-1: rgba(255, 255, 255, 0.72);
  --text-2: rgba(255, 255, 255, 0.52);
  --accent: #7c5cff;
  --accent-2: #9a86ff;
  --accent-rgb: 124, 92, 255;
  --accent-2-rgb: 154, 134, 255;

  --glass: rgba(255, 255, 255, 0.08);
  --glass-2: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.14);

  --radius-xl: 20px;
  --radius-2xl: 28px;

  --shadow-1: 0 10px 40px rgba(0, 0, 0, 0.45);
  --shadow-2: 0 18px 70px rgba(0, 0, 0, 0.55);

  --ink-0: var(--text-0);
  --ink-1: var(--text-1);
  --ink-2: var(--text-2);
  --border-a: rgba(255, 255, 255, 0.14);
  --border-b: rgba(var(--accent-rgb), 0.22);
  --shadow-soft: var(--shadow-1);
  --shadow-glow:
    0 0 0 1px rgba(var(--accent-rgb), 0.14),
    0 10px 28px rgba(var(--accent-rgb), 0.12),
    0 18px 52px rgba(0, 0, 0, 0.44);
  --radius-lg: 16px;
  --mesh-accent: rgba(var(--accent-rgb), 0.08);
  --mesh-violet: rgba(var(--accent-2-rgb), 0.05);
  --mesh-neutral: rgba(180, 195, 214, 0.05);
  --grid-line: rgba(255, 255, 255, 0.04);
  --grid-spot: rgba(var(--accent-rgb), 0.26);
  --grid-size: 48px;
  --mesh-opacity: 0.66;
  --grid-opacity: 0.05;
  --ease-premium: cubic-bezier(0.2, 0.8, 0.2, 1);

  --bg: var(--bg-0);
  --bg2: var(--bg-1);
  --surface: rgba(255, 255, 255, 0.05);
  --surface2: rgba(255, 255, 255, 0.08);
  --text: var(--ink-0);
  --muted: var(--ink-1);
  --muted2: var(--ink-2);
  --primary: var(--accent);
  --primary2: var(--accent-2);
  --success: #4cc38a;
  --warning: #f5a623;
  --danger: #e14d4d;

  --radius: 14px;
  --radius-control: 12px;
  --shadow: var(--shadow-1);

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 56px;
  --space-8: 64px;

  --container-max: 1120px;
  --focus-ring: 0 0 0 3px rgba(var(--accent-rgb), 0.34);

}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[lang="fr"] [data-lang="en"],
html[lang="en"] [data-lang="fr"] {
  display: none !important;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-feature-settings: "calt", "tnum";
  color: var(--text);
  background:
    radial-gradient(1200px 780px at 8% -10%, rgba(var(--accent-rgb), 0.08), transparent 70%),
    radial-gradient(900px 760px at 94% 14%, rgba(var(--accent-2-rgb), 0.07), transparent 72%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1));
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  z-index: 0;
  isolation: isolate;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: var(--mesh-opacity);
  background:
    radial-gradient(78% 62% at 8% 12%, var(--mesh-accent), transparent 72%),
    radial-gradient(66% 56% at 92% 18%, var(--mesh-violet), transparent 73%),
    radial-gradient(82% 74% at 56% 66%, var(--mesh-neutral), transparent 78%),
    linear-gradient(180deg, rgba(12, 17, 27, 0.34), rgba(12, 17, 27, 0.56));
  background-size:
    132% 132%,
    128% 128%,
    120% 120%,
    100% 100%;
  background-position:
    0% 0%,
    100% 0%,
    50% 100%,
    0% 0%;
  filter: blur(42px);
  transform: translate3d(0, 0, 0) scale(1.06);
  will-change: transform, opacity, background-position;
  animation: mesh-drift 24s ease-in-out alternate infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: var(--grid-opacity);
  background:
    radial-gradient(120% 72% at 50% 10%, var(--grid-spot), rgba(var(--accent-rgb), 0) 70%),
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size:
    100% 100%,
    var(--grid-size) var(--grid-size),
    var(--grid-size) var(--grid-size);
  background-position:
    50% 0%,
    0 0,
    0 0;
  background-blend-mode: screen, normal, normal;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.76) 46%, transparent 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.76) 46%, transparent 100%);
  will-change: opacity;
  animation: grid-breathe 8s ease-in-out alternate infinite;
}

::selection {
  background: rgba(var(--accent-rgb), 0.32);
  color: #ffffff;
}

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

a {
  color: var(--text);
  text-decoration: none;
  text-underline-offset: 2px;
  transition: color 200ms var(--ease-premium);
}

a:hover {
  color: #ffffff;
}

a:not(.btn):not(.brand):not(.skip-link) {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 1px;
  transition:
    color 200ms var(--ease-premium),
    background-size 200ms var(--ease-premium);
}

a:not(.btn):not(.brand):not(.skip-link):hover,
a:not(.btn):not(.brand):not(.skip-link):focus-visible {
  background-size: 100% 1px;
}

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.skip-link {
  position: absolute;
  top: -120px;
  left: var(--space-2);
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-control);
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
}

.skip-link:focus-visible {
  top: var(--space-2);
}

.container {
  width: min(var(--container-max), 100% - 2 * var(--space-3));
  margin-inline: auto;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass {
    background: rgba(18, 22, 34, 0.86);
  }
}

.section-block {
  padding: clamp(84px, 10vw, 132px) 0;
  border-top: 1px solid var(--border);
}

#features,
#how,
#trust,
#output,
#faq,
#demo {
  scroll-margin-top: 98px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 13, 25, 0.62);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.24);
  transition:
    background-color 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium);
}

.site-header.is-scrolled {
  background: rgba(9, 12, 22, 0.86);
  border-bottom-color: rgba(var(--accent-rgb), 0.12);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  min-height: 108px;
  padding-top: var(--space-1);
  padding-bottom: var(--space-1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  line-height: 0;
}

.brand img {
  min-height: 88px;
  height: 88px;
  width: auto;
  flex: 0 0 auto;
}

.brand:hover {
  border-color: var(--border);
  background: var(--surface);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 8px 0;
}

.site-nav a + a {
  position: relative;
  padding-left: 14px;
}

.site-nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 1px;
  height: 14px;
  background: var(--border);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: var(--radius-control);
  border: 1px solid transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 200ms var(--ease-premium),
    transform 200ms var(--ease-premium),
    filter 200ms var(--ease-premium),
    box-shadow 200ms var(--ease-premium);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #ffffff;
  border-color: rgba(var(--accent-rgb), 0.28);
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 10px 28px rgba(var(--accent-rgb), 0.26);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -130%;
  left: -40%;
  width: 32%;
  height: 340%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-120%, 0, 0) rotate(24deg);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition:
    transform 260ms var(--ease-premium),
    opacity 260ms var(--ease-premium);
}

.btn-primary:hover::after,
.btn-primary:focus-visible::after {
  opacity: 0.95;
  transform: translate3d(540%, 0, 0) rotate(24deg);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-primary:focus-visible {
  border-color: rgba(var(--accent-2-rgb), 0.7);
  box-shadow:
    0 0 0 3px rgba(var(--accent-rgb), 0.3),
    0 14px 30px rgba(var(--accent-rgb), 0.26);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.22);
  background: rgba(255, 255, 255, 0.085);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.28);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-secondary:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.3);
  box-shadow:
    0 0 0 3px rgba(var(--accent-rgb), 0.25),
    0 10px 24px rgba(0, 0, 0, 0.22);
}

.lang-toggle {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: var(--radius-control);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
}

.lang-toggle:hover {
  background: var(--surface2);
  border-color: rgba(var(--accent-rgb), 0.35);
}

.hero {
  --hero-px: 0px;
  --hero-py: 0px;
  border-top: 0;
  padding-top: clamp(16px, 3.8vw, 34px);
  position: relative;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(72% 58% at 14% 8%, rgba(var(--accent-rgb), 0.08), transparent 72%),
    radial-gradient(58% 52% at 88% 12%, rgba(var(--accent-2-rgb), 0.07), transparent 70%);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3.2vw, 38px);
  align-items: start;
}

.hero-copy {
  grid-area: hero-copy;
}

.hero-visual {
  grid-area: hero-visual;
}

.hero-grid > .lead-card {
  grid-area: hero-lead;
  grid-column: 1 / -1;
  justify-self: center;
}

.hero-grid > .hero-trust-strip {
  grid-area: hero-trust;
  grid-column: 1 / -1;
}

.hero-visual {
  align-self: start;
}

.hero-copy {
  max-width: 68ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 var(--space-2);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-1);
  font-size: 0.82rem;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.07;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--ink-0);
  opacity: 0;
  transform: translateY(14px);
  animation: hero-fade-up 0.72s var(--ease-premium) forwards;
  animation-delay: 0.2s;
  text-shadow: 0 8px 28px rgba(var(--accent-rgb), 0.09);
}

.hero-brand-token {
  display: none;
}

.hero-subheadline {
  margin: 18px 0 0;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.5;
  max-width: 64ch;
  color: var(--muted);
  opacity: 0;
  transform: translateY(14px);
  animation: hero-fade-up 0.72s var(--ease-premium) forwards;
  animation-delay: 0.4s;
}

.soft-break {
  display: none;
}

.proof-row {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translateY(14px);
  animation: hero-fade-up 0.72s var(--ease-premium) forwards;
  animation-delay: 0.5s;
}

.proof-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.2;
}

.proof-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 auto;
}

.hero-actions {
  margin-top: var(--space-3);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  opacity: 0;
  transform: translateY(14px);
  animation: hero-fade-up 0.72s var(--ease-premium) forwards;
  animation-delay: 0.56s;
}

.hero-actions .btn {
  min-height: 48px;
  padding-inline: 18px;
}

.card-surface,
.lead-card,
.feature-card,
.trust-card,
.step-card,
.mockup-card,
details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card,
.trust-card,
.step-card,
.card-surface,
.mockup-card,
details {
  position: relative;
  border: 1px solid transparent;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, var(--glass), rgba(10, 15, 24, 0.56)) padding-box,
    linear-gradient(130deg, var(--border-a) 0%, var(--border-b) 48%, rgba(255, 255, 255, 0.06) 100%)
      border-box;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-card::after,
.trust-card::after,
.step-card::after,
.card-surface::after,
.mockup-card::after,
details::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.14),
    rgba(var(--accent-rgb), 0.2),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
  opacity: 0.75;
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .feature-card,
  .trust-card,
  .step-card,
  .card-surface,
  .mockup-card,
  details {
    background:
      linear-gradient(180deg, rgba(18, 24, 36, 0.86), rgba(11, 16, 26, 0.8)) padding-box,
      linear-gradient(130deg, var(--border-a) 0%, var(--border-b) 48%, rgba(255, 255, 255, 0.06) 100%)
        border-box;
  }
}

.lead-card {
  margin: var(--space-4) auto 0;
  width: min(840px, 100%);
  padding: clamp(24px, 3.2vw, 32px);
  border-radius: var(--radius-2xl);
  border: 1px solid transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(var(--accent-rgb), 0.22), rgba(255, 255, 255, 0.08))
      border-box;
  box-shadow: var(--shadow-1);
  opacity: 0;
  transform: translateY(14px);
  animation: hero-fade-up 0.72s var(--ease-premium) forwards;
  animation-delay: 0.6s;
}

.hero-grid > .lead-card {
  grid-column: 1 / -1;
  justify-self: center;
}

.hero-grid > .hero-trust-strip {
  grid-column: 1 / -1;
}


.hero-trust-strip {
  margin-top: var(--space-2);
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.hero-trust-strip::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 1px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.12),
    rgba(var(--accent-rgb), 0.18),
    rgba(255, 255, 255, 0)
  );
  opacity: 0.7;
  pointer-events: none;
}

.hero-trust-label {
  margin: 0;
  color: var(--text-2);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.hero-trust-items span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-1);
  font-size: 0.84rem;
  line-height: 1.1;
  white-space: nowrap;
}

.lead-title {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
}

.lead-note {
  margin: 10px 0 var(--space-2);
}

.demo-form {
  display: grid;
  gap: 10px;
}

label {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.93rem;
  font-weight: 560;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border-radius: var(--radius-control);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
  transition:
    border-color 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    background-color 220ms var(--ease-premium);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(var(--accent-rgb), 0.42);
}

input:focus,
input:focus-visible,
select:focus,
select:focus-visible,
textarea:focus,
textarea:focus-visible {
  border-color: rgba(var(--accent-rgb), 0.72);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.22);
  background: rgba(255, 255, 255, 0.09);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-help,
.helper {
  margin-top: -1px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.field-error {
  margin: 0 0 var(--space-1);
  min-height: 1.15rem;
  color: var(--danger);
  font-size: 0.9rem;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 2px 0 0;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.form-fallback {
  margin: 0;
}

.form-fallback a {
  color: var(--primary);
}

.demo-form .btn-primary {
  margin-top: 4px;
  min-height: 50px;
  transition:
    transform 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    filter 220ms var(--ease-premium);
  cursor: pointer;
}

.demo-form .btn-primary:hover {
  transform: scale(1.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 14px 34px rgba(var(--accent-rgb), 0.28);
}

.demo-form .btn-primary:active {
  transform: scale(0.98);
}

.secure-note {
  margin: 2px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-1);
  font-size: 0.88rem;
  line-height: 1.25;
}

.secure-note-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.18);
  color: #fff;
  font-size: 0.75rem;
  line-height: 1;
}

.mockup-card {
  padding: var(--space-3);
}

.hero-visual .mockup-card {
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
  background:
    linear-gradient(180deg, rgba(14, 20, 32, 0.7), rgba(9, 14, 24, 0.68)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(var(--accent-rgb), 0.24), rgba(255, 255, 255, 0.06))
      border-box;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium);
}

.hero-visual .mockup-card::before {
  content: "";
  position: absolute;
  inset: -24% -18% auto -18%;
  height: 62%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.62;
  transform: translate3d(calc(var(--hero-px) * 0.45), calc(var(--hero-py) * 0.45), 0);
  background:
    radial-gradient(58% 70% at 44% 36%, rgba(var(--accent-rgb), 0.08), rgba(var(--accent-rgb), 0) 72%),
    radial-gradient(46% 56% at 62% 42%, rgba(var(--accent-2-rgb), 0.06), rgba(var(--accent-2-rgb), 0) 74%);
  transition: transform 260ms var(--ease-premium);
}

.hero-visual .mockup-card > * {
  position: relative;
  z-index: 1;
}

.hero-visual .mockup-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.pdf-preview {
  border-radius: var(--radius-control);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(160deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-2-rgb), 0.08));
  padding: var(--space-2);
}

.hero-visual-image {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

@media (min-width: 900px) {
  .hero-visual .mockup-card {
    max-width: 320px;
  }
}

@media (max-width: 759px) {
  .hero-visual .mockup-card {
    max-width: 260px;
  }
}

.pdf-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
  color: var(--muted);
  font-size: 0.86rem;
}

.pdf-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pdf-brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.hero-chart-line {
  stroke-dasharray: 420;
  stroke-dashoffset: 0;
  filter: drop-shadow(0 0 4px rgba(var(--accent-rgb), 0.28));
  animation: hero-chart-line-breathe 8s var(--ease-premium) infinite alternate;
}

.hero-chart-area {
  animation: hero-chart-area-breathe 8s var(--ease-premium) infinite alternate;
}

.pdf-date {
  color: var(--muted2);
}

.pdf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-2);
}

.chip {
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 0.76rem;
  border: 1px solid transparent;
}

.chip-warning {
  background: rgba(245, 166, 35, 0.14);
  border-color: rgba(245, 166, 35, 0.35);
  color: var(--warning);
}

.chip-danger {
  background: rgba(225, 77, 77, 0.14);
  border-color: rgba(225, 77, 77, 0.35);
  color: var(--danger);
}

.chip-success {
  background: rgba(76, 195, 138, 0.14);
  border-color: rgba(76, 195, 138, 0.35);
  color: var(--success);
}

.chip-primary {
  background: rgba(var(--accent-rgb), 0.14);
  border-color: rgba(var(--accent-rgb), 0.35);
  color: #d7ceff;
}

.pdf-lines {
  display: grid;
  gap: 8px;
  margin-bottom: var(--space-2);
}

.pdf-lines span {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.pdf-lines span:nth-child(1) {
  width: 82%;
}

.pdf-lines span:nth-child(2) {
  width: 67%;
}

.pdf-lines span:nth-child(3) {
  width: 91%;
}

.pdf-lines span:nth-child(4) {
  width: 58%;
}

.pdf-chart {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px;
  margin-bottom: var(--space-2);
}

.pdf-chart svg {
  width: 100%;
  height: auto;
  transform-origin: 50% 60%;
  animation: hero-chart-drift 9s ease-in-out infinite alternate;
}

.pdf-table {
  display: grid;
  gap: 8px;
}

.pdf-table .row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 8px;
}

.pdf-table .row span {
  height: 7px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.14);
}

.mockup-card figcaption {
  margin-top: 10px;
  color: var(--muted2);
  font-size: 0.9rem;
}

.section-head {
  margin-bottom: var(--space-3);
}

h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3.1vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: -0.008em;
  color: var(--ink-0);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  h1 {
    background-image: linear-gradient(180deg, #ffffff 0%, #c9d3e0 60%, rgba(var(--accent-2-rgb), 0.92) 120%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  h2 {
    background-image: linear-gradient(180deg, #ffffff 0%, #d8e0ea 72%, rgba(201, 211, 224, 0.95) 120%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.35;
  letter-spacing: -0.003em;
}

.muted,
p,
li,
small {
  color: var(--muted);
  line-height: 1.6;
}

.section-note {
  margin: var(--space-3) 0 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.feature-card {
  padding: 24px;
  border-radius: 16px;
  display: grid;
  gap: 10px;
  align-content: start;
  transition:
    transform 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    background-color 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  overflow: hidden;
  position: relative;
}

.feature-icon::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.4), transparent 55%);
  opacity: 0.35;
  pointer-events: none;
}

.feature-icon-img {
  width: 40px;
  height: 40px;
  display: block;
  object-fit: contain;
  object-position: center;
  filter: none;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.feature-icon-img.is-loose {
  transform: scale(1.7);
  transform-origin: center;
  filter: none;
}

.icon--invert {
  filter: invert(1) brightness(1.1);
}

.icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 700;
}

.badge {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.badge--primary {
  background: rgba(var(--accent-rgb), 0.14);
  border-color: rgba(var(--accent-rgb), 0.35);
  color: #d6cbff;
}

.badge--secondary {
  background: rgba(123, 97, 255, 0.14);
  border-color: rgba(123, 97, 255, 0.35);
  color: #c1b4ff;
}

.badge--warning {
  background: rgba(245, 166, 35, 0.14);
  border-color: rgba(245, 166, 35, 0.35);
  color: var(--warning);
}

.badge--danger {
  background: rgba(225, 77, 77, 0.14);
  border-color: rgba(225, 77, 77, 0.35);
  color: var(--danger);
}

.badge--success {
  background: rgba(76, 195, 138, 0.14);
  border-color: rgba(76, 195, 138, 0.35);
  color: var(--success);
}

.how-section {
  /* How section tokens (adjust palette here) */
  --bg-ink: #070a12;
  --surface-1: rgba(12, 18, 34, 0.72);
  --surface-2: rgba(10, 16, 32, 0.62);
  --text-1: #eaf0ff;
  --text-2: #a7b2d6;
  --border: rgba(255, 255, 255, 0.1);
  --accent: #7c5cff;
  position: relative;
  overflow: hidden;
  background: radial-gradient(1200px 520px at 8% -18%, rgba(124, 92, 255, 0.12), transparent 68%),
    radial-gradient(1200px 620px at 96% 120%, rgba(124, 92, 255, 0.12), transparent 70%);
}

.how-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 10, 18, 0.22), rgba(7, 10, 18, 0.7));
  opacity: 0.8;
  z-index: 0;
}

.how-section--ultra-ultra::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 520px at 10% -10%, rgba(124, 92, 255, 0.2), transparent 65%),
    radial-gradient(1200px 620px at 92% 110%, rgba(124, 92, 255, 0.18), transparent 68%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.how-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.28'/%3E%3C/svg%3E");
  opacity: 0.03;
  mix-blend-mode: screen;
  z-index: 0;
}

.how-section--ultra-ultra .how-grain {
  opacity: 0.05;
  mix-blend-mode: soft-light;
}

.how-section .container {
  position: relative;
  z-index: 1;
}

.how-head h2 {
  font-size: clamp(40px, 4vw, 56px); /* Adjust headline size here */
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.how-subtitle {
  margin: 12px 0 0;
  color: var(--text-2);
  font-size: clamp(18px, 2vw, 20px);
  max-width: 60ch;
}

.how-grid-wrap {
  position: relative;
}

.how-timeline {
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, rgba(124, 92, 255, 0.08), rgba(124, 92, 255, 0.4), rgba(124, 92, 255, 0.08));
  opacity: 0.55;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 900ms var(--ease-premium); /* Adjust line draw timing here */
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  position: relative;
  padding-top: 24px;
  list-style: none;
  margin: 0;
  align-items: stretch;
}

.step-card {
  padding: clamp(28px, 3vw, 32px);
  border-radius: 22px;
  display: grid;
  gap: 14px;
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  min-height: 240px;
  transition:
    transform 260ms var(--ease-premium),
    box-shadow 260ms var(--ease-premium),
    border-color 260ms var(--ease-premium),
    background-color 260ms var(--ease-premium); /* Adjust hover timing here */
  will-change: transform, box-shadow;
}

.step-card::after {
  z-index: 0;
}

.step-card > * {
  position: relative;
  z-index: 1;
}

.step-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(160deg, rgba(124, 92, 255, 0.08), transparent 48%);
  opacity: 0;
  transition: opacity 260ms var(--ease-premium);
  pointer-events: none;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(160px 120px at var(--sheen-x, 50%) var(--sheen-y, 50%), rgba(124, 92, 255, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 260ms var(--ease-premium);
  pointer-events: none;
}

.step-card:hover,
.step-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 255, 0.45);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(124, 92, 255, 0.24),
    0 0 28px rgba(124, 92, 255, 0.2);
}

.step-card:hover::before,
.step-card:focus-visible::before {
  opacity: 1;
}

.how-section--ultra-ultra .step-card:hover::after,
.how-section--ultra-ultra .step-card:focus-visible::after {
  opacity: 0.58;
}

.step-card:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring), 0 18px 48px rgba(0, 0, 0, 0.35), 0 0 28px rgba(124, 92, 255, 0.2);
}

.step-number {
  width: 58px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(124, 92, 255, 0.45);
  background: rgba(124, 92, 255, 0.22);
  color: #e1d9ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 1px solid rgba(124, 92, 255, 0.2);
  opacity: 0.6;
}

.step-card h3 {
  font-size: 1.25rem;
  color: var(--text-1);
  margin: 0;
}

.step-card p {
  margin: 0;
  color: var(--text-2);
}

.how-note {
  margin-top: var(--space-4);
  color: var(--text-2);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.trust-card {
  padding: clamp(26px, 3vw, 34px);
  display: grid;
  gap: 10px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  transition:
    transform 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    background-color 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium);
}

.trust-card:hover,
.trust-card:focus-within {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(var(--accent-rgb), 0.28);
  box-shadow: var(--shadow-glow);
}

#trust .section-head {
  margin-bottom: var(--space-4);
}

.trust-subtitle {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 19px);
  max-width: 66ch;
}

.trust-head {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.trust-head .icon-wrap {
  width: 48px;
  height: 48px;
  font-size: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(var(--accent-rgb), 0.2),
    0 8px 18px rgba(0, 0, 0, 0.24);
  color: #e7ddff;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-icon {
  width: 22px;
  height: 22px;
}

.trust-lead {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.trust-proof {
  margin: 0;
  color: var(--muted2);
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
  opacity: 0;
  transform: translateY(6px);
  filter: blur(4px);
  transition:
    opacity 200ms var(--ease-premium),
    transform 200ms var(--ease-premium),
    filter 200ms var(--ease-premium);
}

.trust-chip {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.06);
}

.trust-card:hover .trust-chips,
.trust-card:focus-within .trust-chips {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.trust-card:focus-within {
  outline: none;
  box-shadow: var(--focus-ring), var(--shadow-glow);
}

.trust-evidence {
  margin-top: var(--space-3);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted2);
  font-family: "SF Mono", "SFMono-Regular", ui-monospace, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.82rem;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.output-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
}

.output-content {
  padding: var(--space-3);
}

.output-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-control);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.inside-list {
  margin: 0;
  padding-left: 1.15rem;
}

.inside-list li + li {
  margin-top: 7px;
}

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

details {
  padding: 0;
  overflow: hidden;
  transition:
    transform 220ms var(--ease-premium),
    box-shadow 220ms var(--ease-premium),
    border-color 220ms var(--ease-premium);
}

summary {
  list-style: none;
  cursor: pointer;
  color: var(--text);
  font-weight: 550;
  padding: var(--space-2) var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: ">";
  color: var(--muted2);
  transform: rotate(90deg);
  transition: transform 200ms var(--ease-premium);
}

details[open] summary::after {
  transform: rotate(270deg);
}

details p {
  margin: 0;
  padding: 0 var(--space-3) var(--space-2);
  color: var(--muted);
}

details:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-glow);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-4) 0 var(--space-5);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.site-footer p {
  margin: 0;
  color: var(--muted2);
}

.site-footer a {
  color: var(--muted);
}

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

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 760ms var(--ease-premium),
    transform 760ms var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms); /* Adjust reveal timing here */
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step-card.reveal-on-scroll {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(10px);
  transition:
    opacity 680ms var(--ease-premium),
    transform 680ms var(--ease-premium),
    filter 680ms var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms); /* Adjust reveal timing here */
  will-change: opacity, transform, filter;
}

.step-card.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes hero-chart-line-breathe {
  0% {
    filter: drop-shadow(0 0 3px rgba(var(--accent-rgb), 0.18));
    opacity: 0.9;
  }

  100% {
    filter: drop-shadow(0 0 6px rgba(var(--accent-rgb), 0.32));
    opacity: 1;
  }
}

@keyframes hero-chart-area-breathe {
  0% {
    opacity: 0.72;
  }

  100% {
    opacity: 0.96;
  }
}

@keyframes hero-chart-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }

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

  100% {
    transform: translate3d(0, 1px, 0);
  }
}

@keyframes mesh-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1.06) rotate(0deg);
    background-position:
      0% 0%,
      100% 0%,
      50% 100%,
      0% 0%;
    opacity: var(--mesh-opacity);
  }

  50% {
    transform: translate3d(-1.2%, 0.9%, 0) scale(1.08) rotate(0.32deg);
    background-position:
      7% 3%,
      94% 4%,
      53% 95%,
      0% 0%;
    opacity: 0.7;
  }

  100% {
    transform: translate3d(1.4%, -1%, 0) scale(1.07) rotate(-0.28deg);
    background-position:
      13% 8%,
      88% 9%,
      58% 90%,
      0% 0%;
    opacity: 0.62;
  }
}

@keyframes grid-breathe {
  0% {
    opacity: 0.04;
  }

  100% {
    opacity: 0.06;
  }
}

@media (min-width: 760px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-4);
  }

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

  .output-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: start;
  }
}

@media (max-width: 759px) {
  /* Adjust mobile spacing/breakpoints here */
  .how-timeline {
    display: none;
  }

  .step-card {
    min-height: auto;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.7fr);
    grid-template-areas:
      "hero-copy hero-visual"
      "hero-lead hero-lead"
      "hero-trust hero-trust";
    align-items: start;
  }

  .hero-visual {
    margin-top: clamp(6px, 1vw, 12px);
  }

  .hero-visual .mockup-card {
    margin-left: auto;
    max-width: 320px;
  }

  .hero-visual-image {
    aspect-ratio: 4 / 5;
  }

  .hero-grid > .lead-card,
  .hero-grid > .hero-trust-strip {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .header-inner {
    min-height: 120px;
  }
}

@media (max-width: 979px) {
  .header-inner {
    flex-wrap: wrap;
    padding-top: var(--space-2);
    padding-bottom: var(--space-2);
    min-height: auto;
  }

  .brand img {
    min-height: 72px;
    height: 72px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    border-top: 1px solid var(--border);
    padding-top: 10px;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 700px) {
  .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .feature-icon-img {
    width: 32px;
    height: 32px;
  }

  .feature-icon-img.is-loose {
    transform: scale(1.45);
    filter: none;
  }

  .eyebrow {
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    padding: 6px 10px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust-strip {
    padding: 12px 14px;
  }

  .lead-card {
    margin-top: var(--space-3);
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  body::before,
  body::after {
    animation: none !important;
    transform: none !important;
  }

  body::before {
    opacity: var(--mesh-opacity);
  }

  body::after {
    opacity: var(--grid-opacity);
  }

  .hero {
    --hero-px: 0px !important;
    --hero-py: 0px !important;
  }

  .hero-visual .mockup-card::before {
    transform: none !important;
  }

  .btn-primary::after {
    opacity: 0 !important;
    transform: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .step-card.reveal-on-scroll {
    filter: none !important;
  }

  .step-card.reveal-on-scroll.is-visible .step-number {
    animation: none !important;
  }

  .step-card::after {
    opacity: 0 !important;
  }

  h1,
  .hero-subheadline,
  .proof-row,
  .hero-actions,
  .lead-card {
    opacity: 1 !important;
    transform: none !important;
  }
}
