:root {
  --ink: #0b1424;
  --ink-soft: #17243a;
  --paper: #f2f5f9;
  --paper-2: #e6ecf3;
  --white: #fff;
  --sand: #0770ff;
  --sand-light: #709dd9;
  --blue: #0770ff;
  --muted: #657083;
  --border: rgba(11, 20, 36, 0.13);
  --font-geist-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 36px));
  height: 68px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 18px;
  background: rgba(242, 245, 249, 0.86);
  box-shadow: 0 12px 44px rgba(11, 20, 36, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.brand img {
  border-radius: 10px;
}

.site-header nav {
  display: flex;
  gap: 32px;
  color: #3f495b;
  font-size: 0.9rem;
  font-weight: 560;
}

.site-header nav a,
.text-link,
footer a {
  transition: color 180ms ease;
}

.site-header nav a:hover,
.text-link:hover,
footer a:hover {
  color: var(--blue);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  font-weight: 690;
  box-shadow: 0 10px 24px rgba(11, 20, 36, 0.2);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--blue);
  box-shadow: 0 14px 30px rgba(45, 117, 232, 0.25);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
video:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  box-shadow: none;
  font-size: 0.86rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 1120px;
  padding: 174px 24px 110px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 12%, rgba(104, 145, 190, 0.16), transparent 33%),
    linear-gradient(180deg, #f9fbfd 0%, var(--paper) 70%);
}

.hero-glow {
  position: absolute;
  top: 80px;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translateX(-50%);
  border: 1px solid rgba(199, 165, 122, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(199, 165, 122, 0.035), 0 0 0 220px rgba(199, 165, 122, 0.025);
  pointer-events: none;
}

.eyebrow,
.section-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 26px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero h1 {
  position: relative;
  max-width: 1040px;
  margin: 28px auto 24px;
  font-size: clamp(3.4rem, 7.5vw, 7rem);
  font-weight: 610;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.hero h1 span {
  color: var(--sand);
}

.hero-copy {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  color: #515c6d;
  font-size: clamp(1.05rem, 1.5vw, 1.26rem);
  line-height: 1.65;
}

.hero-actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 640;
}

.trust-line {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

.price-note {
  position: relative;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.74rem;
}

.hero-product {
  position: relative;
  z-index: 1;
  width: min(1180px, 94vw);
  margin: 78px auto 0;
  padding: 11px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 45px 100px rgba(11, 20, 36, 0.2);
  transform: perspective(1600px) rotateX(2deg);
}

.hero-product > img {
  width: 100%;
  border-radius: 0 0 16px 16px;
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 36px;
  padding: 0 10px;
  border-radius: 14px 14px 0 0;
  background: #fff;
}

.browser-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4d8df;
}

.browser-bar b {
  margin: auto;
  padding-right: 40px;
  color: #9aa1ae;
  font-size: 0.64rem;
  font-weight: 500;
}

.floating-score {
  position: absolute;
  right: -34px;
  bottom: -32px;
  display: grid;
  gap: 4px;
  min-width: 224px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: var(--ink);
  color: var(--white);
  text-align: left;
  box-shadow: 0 18px 50px rgba(11, 20, 36, 0.28);
}

.floating-score small,
.floating-score span {
  color: #aeb7c6;
  font-size: 0.68rem;
}

.floating-score strong {
  color: var(--sand-light);
  font-size: 1.25rem;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1240px, calc(100% - 48px));
  margin: -1px auto 0;
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.metric-strip div {
  display: grid;
  gap: 8px;
  padding: 0 28px;
  border-right: 1px solid var(--border);
}

.metric-strip div:last-child {
  border-right: 0;
}

.metric-strip strong {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 610;
  letter-spacing: -0.05em;
}

.metric-strip span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.intro {
  padding: 150px 0;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 100px;
  align-items: end;
  margin-top: 24px;
}

.section-heading h2,
.showcase h2,
.checks-copy h2,
.video-section h2,
.workflow h2,
.faq-section h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.section-heading p,
.showcase-copy p,
.checks-copy p,
.video-copy p,
.workflow-copy p,
.faq-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

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

.feature-card {
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.38);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.feature-card:hover {
  transform: translateY(-7px);
  background: #fff;
  box-shadow: 0 24px 60px rgba(11, 20, 36, 0.08);
}

.feature-number {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.8rem;
}

.feature-card h3 {
  max-width: 250px;
  margin: 108px 0 14px;
  font-size: 1.45rem;
  line-height: 1.16;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.showcase {
  overflow: hidden;
  padding: 145px 0 120px;
  background: var(--ink);
  color: var(--white);
}

.section-kicker.light {
  color: var(--sand-light);
}

.showcase-heading {
  margin-bottom: 100px;
}

.showcase-heading h2 {
  margin-top: 26px;
}

.showcase-row {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 78px;
  align-items: center;
  margin-bottom: 170px;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

.showcase-row.reverse {
  grid-template-columns: 1.18fr 0.82fr;
}

.showcase-row.reverse .showcase-copy {
  order: 2;
}

.step-badge {
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(231, 215, 193, 0.35);
  border-radius: 999px;
  color: var(--sand-light);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-copy h3 {
  margin: 24px 0 22px;
  font-size: clamp(2.1rem, 3.7vw, 3.9rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.showcase-copy p {
  color: #aeb7c6;
}

.showcase-copy ul {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.showcase-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d9dfe8;
  font-size: 0.9rem;
}

.showcase-copy li::before {
  content: "✓";
  color: var(--sand);
}

.showcase-image {
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
}

.showcase-image img {
  width: 100%;
  border-radius: 11px;
}

.tilt-right {
  transform: perspective(1200px) rotateY(-5deg) rotateZ(0.5deg);
}

.tilt-left {
  transform: perspective(1200px) rotateY(5deg) rotateZ(-0.5deg);
}

.checks-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
  padding: 150px 0;
}

.checks-copy {
  position: sticky;
  top: 130px;
}

.checks-copy h2 {
  margin-top: 24px;
}

.checks-copy p {
  margin: 28px 0 34px;
}

.check-list {
  border-top: 1px solid var(--border);
}

.check-list div {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--border);
}

.check-list span {
  color: var(--blue);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.7rem;
}

.check-list strong {
  font-size: 1.03rem;
  font-weight: 560;
}

.check-list b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(45, 117, 232, 0.1);
  color: var(--blue);
  font-size: 0.82rem;
}

.video-section {
  overflow: hidden;
  padding: 140px 0 0;
  background: #111d30;
  color: var(--white);
}

.video-copy {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: end;
}

.video-copy h2 {
  margin-top: 24px;
}

.video-copy p {
  color: #aeb7c6;
}

.video-frame {
  position: relative;
  margin-top: 70px;
  padding: 10px 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 -15px 80px rgba(45, 117, 232, 0.14);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px 16px 0 0;
  background: #0a111d;
  object-fit: cover;
}

.video-note {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 22px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(11, 20, 36, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.play-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink);
  font-size: 0.85rem;
}

.video-note div {
  display: grid;
  gap: 4px;
}

.video-note small {
  color: #abb5c5;
}

.workflow {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: center;
  padding: 150px 0;
}

.workflow-image {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(11, 20, 36, 0.14);
}

.workflow-image img {
  width: 100%;
}

.workflow-copy h2 {
  margin: 24px 0 28px;
}

.workflow-points {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.workflow-points span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  color: #5c6677;
  font-size: 0.78rem;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 110px;
  padding: 70px 0 150px;
}

.faq-heading h2 {
  margin: 24px 0;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 590;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 620px;
  margin: -6px 40px 28px 0;
  color: var(--muted);
  line-height: 1.7;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 145px 24px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  position: relative;
  margin: 26px 0 22px;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

.final-cta p {
  position: relative;
  margin: 0 0 34px;
  color: #b8c0cc;
  font-size: 1.1rem;
}

.final-cta .button {
  position: relative;
  background: var(--sand);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(199, 165, 122, 0.2);
}

.final-cta .button:hover {
  background: #dfc39f;
}

.final-cta > small {
  position: relative;
  display: block;
  margin-top: 20px;
  color: #748096;
  font-size: 0.7rem;
}

.cta-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 860px;
  height: 860px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(199, 165, 122, 0.12);
  border-radius: 50%;
}

.orbit-two {
  width: 1120px;
  height: 1120px;
  border-color: rgba(45, 117, 232, 0.08);
}

footer {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.4fr;
  gap: 40px;
  align-items: center;
  padding: 40px max(24px, calc((100% - 1180px) / 2));
  background: #070e19;
  color: #fff;
}

footer p {
  margin: 0;
  color: #737f91;
  font-size: 0.78rem;
}

footer > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  color: #8e98a8;
  font-size: 0.75rem;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(104, 145, 190, 0.14), transparent 30rem),
    var(--paper);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.legal-back {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 620;
}

.legal-back:hover,
.legal-content a:hover {
  color: var(--blue);
}

.legal-article {
  width: min(780px, calc(100% - 48px));
  margin: 0 auto;
  padding: 110px 0 130px;
}

.legal-article h1 {
  margin: 24px 0 22px;
  font-size: clamp(3.2rem, 8vw, 6.4rem);
  font-weight: 590;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.legal-intro {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.legal-content {
  margin-top: 78px;
  counter-reset: legal-section;
}

.legal-content section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.legal-content section:last-child {
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  margin: 0 0 22px;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 610;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 30px 0 12px;
  font-size: 1.08rem;
  font-weight: 680;
  letter-spacing: -0.015em;
}

.legal-content p,
.legal-content address,
.legal-content li {
  color: #505b6d;
  font-size: 0.95rem;
  line-height: 1.78;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content address {
  font-style: normal;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(45, 117, 232, 0.3);
  text-underline-offset: 3px;
}

.legal-content code {
  padding: 2px 5px;
  border-radius: 4px;
  background: rgba(11, 20, 36, 0.07);
  color: var(--ink-soft);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.88em;
}

.legal-footer {
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  min-height: 100px;
}

.consent-banner {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  width: min(960px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(11, 20, 36, 0.97);
  box-shadow: 0 28px 80px rgba(7, 14, 25, 0.38);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.consent-label {
  color: var(--sand-light);
  font-family: var(--font-geist-mono), monospace;
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consent-copy h2 {
  margin: 10px 0 10px;
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
  font-weight: 610;
  letter-spacing: -0.035em;
}

.consent-copy p {
  max-width: 620px;
  margin: 0;
  color: #b7c0ce;
  font-size: 0.82rem;
  line-height: 1.65;
}

.consent-copy a {
  color: var(--sand-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  min-width: 342px;
}

.consent-button {
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 680;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.consent-button-primary {
  border-color: var(--sand);
  background: var(--sand);
  color: var(--white);
}

.consent-button-secondary {
  background: transparent;
  color: var(--white);
}

.consent-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.consent-button:focus-visible,
.consent-settings:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.consent-settings {
  position: fixed;
  z-index: 90;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(11, 20, 36, 0.92);
  color: #d9dfe8;
  cursor: pointer;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 620;
  box-shadow: 0 8px 24px rgba(7, 14, 25, 0.2);
  backdrop-filter: blur(12px);
}

.consent-settings span {
  color: var(--sand);
  font-size: 0.58rem;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  animation: rise 700ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.delay-1 { animation-delay: 90ms; }
.delay-2 { animation-delay: 170ms; }
.delay-3 { animation-delay: 250ms; }

@media (max-width: 900px) {
  .site-header nav { display: none; }
  .hero { min-height: auto; padding-top: 150px; }
  .hero h1 { max-width: 760px; }
  .floating-score { right: 12px; bottom: -56px; }
  .metric-strip { grid-template-columns: repeat(2, 1fr); }
  .metric-strip div:nth-child(2) { border-right: 0; }
  .metric-strip div:nth-child(-n + 2) { padding-bottom: 28px; border-bottom: 1px solid var(--border); }
  .metric-strip div:nth-child(n + 3) { padding-top: 28px; }
  .split-heading,
  .checks-section,
  .video-copy,
  .workflow,
  .faq-section { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 250px; }
  .feature-card h3 { margin-top: 70px; }
  .showcase-row,
  .showcase-row.reverse { grid-template-columns: 1fr; gap: 48px; }
  .showcase-row.reverse .showcase-copy { order: 0; }
  .checks-copy { position: static; }
  .workflow-image { order: 2; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer .brand, footer > div { justify-content: center; }
  .consent-banner { grid-template-columns: 1fr; gap: 22px; }
  .consent-actions { min-width: 0; }
}

@media (max-width: 620px) {
  .site-header { top: 10px; width: calc(100% - 20px); height: 62px; }
  .site-header .button { display: none; }
  .hero { padding: 130px 18px 90px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
  .hero-actions { flex-direction: column; gap: 18px; }
  .trust-line { flex-direction: column; gap: 7px; }
  .hero-product { width: 100%; margin-top: 56px; padding: 5px; border-radius: 14px; }
  .browser-bar { display: none; }
  .hero-product > img { border-radius: 9px; }
  .floating-score { position: static; min-width: 0; margin: 8px 0 0; border-radius: 10px; }
  .metric-strip { width: calc(100% - 36px); }
  .metric-strip div { padding-right: 14px; padding-left: 14px; }
  .metric-strip span { font-size: 0.7rem; }
  .section { width: calc(100% - 36px); }
  .intro, .checks-section, .workflow { padding-top: 100px; padding-bottom: 100px; }
  .showcase { padding-top: 100px; }
  .showcase-heading { margin-bottom: 72px; }
  .showcase-row { margin-bottom: 110px; }
  .tilt-right, .tilt-left { transform: none; }
  .video-section { padding-top: 100px; }
  .video-note { padding: 12px; white-space: nowrap; }
  .video-note small { display: none; }
  .play-icon { width: 38px; height: 38px; }
  .faq-section { padding-bottom: 100px; }
  .final-cta { padding: 110px 18px; }
  .final-cta .button { width: 100%; }
  footer > div { flex-direction: column; gap: 10px; }
  .legal-header { width: calc(100% - 36px); }
  .legal-header .brand span { display: none; }
  .legal-article { width: calc(100% - 36px); padding: 80px 0 100px; }
  .legal-content { margin-top: 56px; }
  .legal-content section { padding: 32px 0; }
  .legal-footer { grid-template-columns: 1fr; }
  .consent-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    padding: 20px;
    border-radius: 16px;
  }
  .consent-actions { grid-template-columns: 1fr; }
  .consent-button { width: 100%; }
}

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