:root {
  --bg: #07090e;
  --bg-2: #0d1118;
  --panel: rgba(17, 20, 29, 0.74);
  --panel-solid: #121722;
  --panel-soft: rgba(255, 255, 255, 0.065);
  --text: #f7f2e8;
  --muted: #b7b0a5;
  --dim: #797f89;
  --gold: #e8bf63;
  --gold-2: #fff1b7;
  --red: #e20b26;
  --red-soft: #ff4761;
  --cyan: #20f0e8;
  --green: #6dffb5;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, calc(100vw - 38px));
  --header-h: 82px;
  --ease: cubic-bezier(.2, .85, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(226, 11, 38, 0.24), transparent 36rem),
    radial-gradient(circle at 84% 14%, rgba(32, 240, 232, 0.14), transparent 32rem),
    linear-gradient(135deg, #05070b 0%, #0a0e16 40%, #09080b 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 54vw;
  height: 54vw;
  right: -22vw;
  top: 20vh;
  background: radial-gradient(circle, rgba(232, 191, 99, .14), transparent 60%);
  filter: blur(14px);
}

body::after {
  left: -18vw;
  bottom: 8vh;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgba(226, 11, 38, .18), transparent 65%);
  filter: blur(20px);
}

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

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

button,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  transform: translateY(-140%);
  background: var(--gold);
  color: #130b00;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-noise {
  position: fixed;
  inset: 0;
  opacity: .2;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black, transparent 75%);
}

.sala-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
  border-bottom: 1px solid transparent;
}

.sala-header.is-scrolled {
  background: rgba(7, 9, 14, 0.8);
  backdrop-filter: blur(18px);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.nav-shell {
  width: var(--container);
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-lockup,
.footer-logo {
  display: inline-flex;
  align-items: center;
}

.brand-lockup img,
.footer-logo img {
  width: clamp(132px, 14vw, 176px);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(226, 11, 38, .22));
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 999px;
}

.site-menu a {
  color: var(--muted);
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--text);
  background: rgba(255,255,255,.09);
  transform: translateY(-1px);
}

.header-cta,
.btn-primary,
.btn-secondary,
.floating-cta,
.cookie-notice button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  border-radius: 999px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease), background .22s var(--ease);
}

.header-cta,
.btn-primary {
  color: #170a00;
  background:
    linear-gradient(135deg, var(--gold-2), var(--gold) 45%, #ad6b18 100%);
  box-shadow: 0 14px 30px rgba(232, 191, 99, .22), inset 0 1px 0 rgba(255,255,255,.5);
}

.header-cta {
  min-height: 44px;
  padding: 0 18px;
  white-space: nowrap;
  font-size: 14px;
}

.btn-primary,
.btn-secondary {
  min-height: 52px;
  padding: 0 24px;
}

.btn-secondary {
  color: var(--text);
  border: 1px solid rgba(32,240,232,.44);
  background: rgba(32,240,232,.07);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.header-cta:hover,
.btn-primary:hover,
.btn-secondary:hover,
.cookie-notice button:hover,
.floating-cta:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255,255,255,.06);
  place-items: center;
  gap: 4px;
  padding: 12px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.duo-hero {
  position: relative;
  width: var(--container);
  margin: 36px auto 0;
  min-height: calc(100vh - 128px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(24px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: clamp(30px, 5vw, 62px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
    radial-gradient(circle at 76% 42%, rgba(226, 11, 38, .22), transparent 30rem),
    radial-gradient(circle at 90% 72%, rgba(32,240,232,.18), transparent 24rem),
    rgba(9, 11, 17, .74);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.08);
}

.hero-orbit {
  position: absolute;
  inset: auto -18% -38% 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid rgba(232,191,99,.24);
  box-shadow:
    0 0 0 18px rgba(226, 11, 38, .06),
    0 0 0 46px rgba(32, 240, 232, .04),
    0 0 160px rgba(226, 11, 38, .26);
  transform: rotate(-10deg);
}

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

.eyebrow,
.section-marker,
.timer-label {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 900;
}

h1,
h2,
h3 {
  color: var(--text);
  line-height: 1.02;
  margin: 0;
}

.hero-copy h1 {
  margin-top: 18px;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 86px);
  letter-spacing: -.055em;
}

.hero-copy p:not(.eyebrow):not(#country-status) {
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.72;
  max-width: 680px;
}

.hero-copy strong,
.paper-section strong {
  color: var(--gold-2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.country-console {
  margin-top: 24px;
  max-width: 520px;
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(0,0,0,.22);
}

.country-console label {
  color: var(--dim);
  font-size: 13px;
  font-weight: 800;
}

.country-console select {
  width: 100%;
  color: var(--text);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(232,191,99,.32);
  border-radius: 14px;
  padding: 12px 14px;
  outline: none;
}

.country-console option {
  color: #111;
}

#country-status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  margin: 0;
  transform: rotate(1.5deg);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 7% 4% 6% 8%;
  border-radius: 38px;
  background: linear-gradient(90deg, rgba(32,240,232,.28), rgba(226,11,38,.22));
  filter: blur(36px);
  z-index: -1;
}

.hero-visual img {
  width: 100%;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 34px 100px rgba(0,0,0,.62);
  object-fit: cover;
}

.hero-visual figcaption {
  margin: -36px auto 0;
  position: relative;
  width: min(92%, 680px);
  color: var(--muted);
  line-height: 1.5;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(7,9,14,.76);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.quick-ledger,
.image-runway,
.audit-tabs,
.content-frame,
.final-cta,
.site-footer .footer-grid {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.quick-ledger {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ledger-card,
.timer-card,
.audit-tabs,
.paper-section,
.faq-zone,
.final-cta,
.cookie-notice {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: 0 18px 54px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.07);
  backdrop-filter: blur(18px);
}

.ledger-card,
.timer-card {
  min-height: 172px;
  border-radius: 26px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}

.ledger-card::after,
.timer-card::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,191,99,.24), transparent 62%);
}

.counter,
.timer-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--gold-2);
  text-shadow: 0 0 24px rgba(232,191,99,.25);
}

.ledger-card small {
  color: var(--gold-2);
  font-size: 34px;
  font-weight: 900;
}

.ledger-card p,
.timer-card p,
.audit-tabs p,
.final-cta p,
.site-footer p {
  color: var(--muted);
  line-height: 1.6;
}

.image-runway {
  margin-top: 74px;
  display: grid;
  grid-template-columns: 1.1fr .82fr 1.1fr;
  gap: 18px;
  align-items: end;
}

.image-runway figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.image-runway figure:nth-child(2) {
  transform: translateY(-24px);
}

.image-runway img {
  height: 330px;
  width: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease), filter .55s var(--ease);
}

.image-runway figure:hover img {
  transform: scale(1.045);
  filter: saturate(1.12) contrast(1.04);
}

.audit-tabs {
  margin-top: 74px;
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(20px, 3vw, 38px);
  position: relative;
  overflow: hidden;
}

.audit-tabs::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(90deg, rgba(226,11,38,.17), transparent 25%, rgba(32,240,232,.15)),
    repeating-linear-gradient(120deg, transparent 0 18px, rgba(255,255,255,.035) 18px 19px);
  pointer-events: none;
}

.audit-tabs > * {
  position: relative;
}

.tabs-intro h2,
.final-cta h2,
.faq-zone h2,
.paper-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4.4vw, 56px);
  letter-spacing: -.045em;
  margin-top: 12px;
}

.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.tab-button {
  border: 1px solid rgba(255,255,255,.14);
  color: var(--muted);
  background: rgba(0,0,0,.24);
  border-radius: 999px;
  padding: 12px 16px;
  cursor: pointer;
  font-weight: 850;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}

.tab-button.active,
.tab-button:hover,
.tab-button:focus-visible {
  color: #140c00;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: transparent;
}

.tab-panels {
  grid-column: 2;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(0,0,0,.26);
}

.tab-panel h3 {
  font-size: clamp(22px, 2.4vw, 34px);
  margin-bottom: 10px;
}

.tab-panel p {
  margin-bottom: 0;
}

.content-frame {
  margin-top: 74px;
  display: grid;
  gap: 22px;
}

.paper-section,
.faq-zone {
  position: relative;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 48px);
  overflow: hidden;
}

.paper-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(232,191,99,.12), transparent 30rem),
    linear-gradient(90deg, rgba(255,255,255,.035), transparent);
  pointer-events: none;
}

.paper-section > *,
.faq-zone > * {
  position: relative;
}

.section-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.section-number {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--gold-2);
  border: 1px solid rgba(232,191,99,.32);
  background: rgba(232,191,99,.08);
  font-weight: 900;
}

.paper-section h2 + p,
.paper-section h3 + p,
.paper-section p + p,
.paper-section p + ol,
.paper-section p + ul,
.paper-section table + h2 {
  margin-top: 18px;
}

.paper-section p,
.paper-section li,
.faq-answer p {
  color: var(--muted);
  line-height: 1.78;
  font-size: 16.5px;
}

.paper-section h3 {
  margin-top: 30px;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: -.025em;
}

.paper-section ul,
.paper-section ol {
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.paper-section li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.18);
  border-radius: 16px;
}

.paper-section li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-soft), var(--gold));
  box-shadow: 0 0 18px rgba(226, 11, 38, .32);
}

.paper-section ol {
  counter-reset: steps;
}

.paper-section ol li {
  counter-increment: steps;
}

.paper-section ol li::before {
  content: counter(steps);
  top: 13px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #130900;
  font-size: 12px;
  font-weight: 900;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.table-shell {
  overflow-x: auto;
  margin-top: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--gold-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .11em;
  background: rgba(232,191,99,.08);
}

td {
  color: var(--muted);
  line-height: 1.6;
}

tr:last-child td {
  border-bottom: 0;
}

.visual-note {
  margin: 30px 0 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(0,0,0,.2);
}

.visual-note img {
  width: 100%;
  max-height: 490px;
  object-fit: cover;
}

.visual-note figcaption {
  color: var(--muted);
  padding: 16px 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.24);
  line-height: 1.55;
}

.spotlight-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.spotlight-section::after,
.trust-section::after,
.table-section::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 74px;
  height: 74px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(226,11,38,.26), rgba(32,240,232,.16));
  filter: blur(.2px);
  opacity: .7;
  transform: rotate(12deg);
}

#vantaggi h3:nth-of-type(1),
#adatto h2,
#finale h2 {
  color: var(--gold-2);
}

#vantaggi h3:nth-of-type(2),
#alternative h2,
#responsabile h2 {
  color: #ffd7dc;
}

.faq-zone {
  background:
    radial-gradient(circle at 92% 0%, rgba(226,11,38,.2), transparent 24rem),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.faq-zone > .section-marker {
  display: inline-block;
  margin-bottom: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.faq-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(0,0,0,.24);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  color: var(--text);
  background: transparent;
  text-align: left;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
}

.faq-icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(232,191,99,.5);
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 2px;
  background: var(--gold-2);
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity .2s var(--ease);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  margin-top: 28px;
  margin-bottom: 70px;
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(226,11,38,.16), rgba(32,240,232,.08)),
    rgba(255,255,255,.045);
}

.final-cta p {
  max-width: 720px;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  min-height: 50px;
  padding: 0 18px;
  color: #081012;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 18px 45px rgba(32,240,232,.22);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.floating-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-notice {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 110;
  width: min(560px, calc(100vw - 40px));
  border-radius: 24px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}

.cookie-notice.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-notice p {
  margin: 6px 0 0;
  font-size: 14px;
}

.cookie-notice button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  background: var(--text);
  color: #090b0f;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 50px;
  background: rgba(0,0,0,.28);
}

.footer-grid {
  display: grid;
  grid-template-columns: .8fr 1.4fr .8fr;
  gap: 28px;
  align-items: start;
}

.site-footer h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.site-footer nav {
  display: grid;
  gap: 10px;
  justify-items: start;
}

.site-footer nav a {
  color: var(--muted);
  font-weight: 800;
}

.site-footer nav a:hover {
  color: var(--gold-2);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .site-menu {
    position: fixed;
    top: var(--header-h);
    right: 18px;
    left: 18px;
    display: grid;
    gap: 8px;
    border-radius: 28px;
    padding: 18px;
    background: rgba(9, 11, 17, .94);
    backdrop-filter: blur(20px);
    transform: translateY(-12px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .24s var(--ease), transform .24s var(--ease);
  }

  .site-menu.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .site-menu a {
    padding: 14px 16px;
  }

  .menu-toggle {
    display: grid;
  }

  .header-cta {
    display: none;
  }

  .duo-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    transform: none;
  }

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

  .audit-tabs {
    grid-template-columns: 1fr;
  }

  .tab-panels {
    grid-column: 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 24px, 1180px);
    --header-h: 72px;
  }

  .nav-shell {
    gap: 10px;
  }

  .duo-hero {
    margin-top: 16px;
    padding: 18px;
    border-radius: 30px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-actions,
  .final-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-visual figcaption {
    margin-top: 10px;
    width: 100%;
  }

  .quick-ledger,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .image-runway {
    margin-top: 44px;
    grid-template-columns: 1fr;
  }

  .image-runway figure:nth-child(2) {
    transform: none;
  }

  .image-runway img {
    height: 240px;
  }

  .audit-tabs,
  .content-frame {
    margin-top: 44px;
  }

  .paper-section,
  .faq-zone {
    padding: 22px 16px;
    border-radius: 26px;
  }

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

  table {
    min-width: 620px;
  }

  th,
  td {
    padding: 14px 12px;
  }

  .cookie-notice {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
