/* ==========================================================================
   VEYRONPLUG — core stylesheet
   Fonts are system-stack only. No Google Fonts CDN: serving fonts from
   Google's servers transmits visitor IPs to a US provider and has been ruled
   a GDPR violation in Germany (LG München I, 3 O 17493/20). If you want Sora
   or Inter, self-host the .woff2 files in /assets/fonts and add @font-face.
   ========================================================================== */

:root {
  /* Brand */
  --navy-900: #060f24;
  --navy-800: #0a1730;
  --navy-700: #0e2145;
  --navy-600: #16305e;
  --navy-500: #24457f;
  --gold-500: #f5b301;
  --gold-400: #ffc635;
  --gold-600: #cf9500;

  /* Neutrals */
  --white: #ffffff;
  --paper: #f7f9fc;
  --line: #e3e9f2;
  --ink-900: #0b1220;
  --ink-700: #2c3a52;
  --ink-500: #5a6b85;
  --ink-400: #8493aa;

  /* System */
  --ok: #0f9d58;
  --warn: #b45309;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(6, 15, 36, .06), 0 2px 8px rgba(6, 15, 36, .04);
  --shadow: 0 4px 12px rgba(6, 15, 36, .07), 0 16px 40px rgba(6, 15, 36, .07);
  --shadow-lg: 0 8px 24px rgba(6, 15, 36, .1), 0 32px 64px rgba(6, 15, 36, .12);

  --wrap: 1160px;
  --gutter: clamp(20px, 5vw, 40px);

  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/* --- reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-600); text-decoration-color: rgba(22, 48, 94, .3); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }
h1, h2, h3, h4 { color: var(--ink-900); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 1.2rem + 3.6vw, 3.6rem); letter-spacing: -.03em; }
h2 { font-size: clamp(1.6rem, 1.1rem + 2vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 1rem + .7vw, 1.4rem); }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--tight { padding-block: clamp(40px, 5vw, 64px); }
.section--paper { background: var(--paper); }
.section--navy { background: var(--navy-800); color: #c9d5ea; }
.section--navy h2, .section--navy h3 { color: var(--white); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold-500); color: var(--navy-900); padding: 12px 18px; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* --- header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; letter-spacing: -.03em; color: var(--navy-800); font-size: 1.16rem; }
.brand__mark { width: 30px; height: 30px; flex: none; }
.brand span i { color: var(--gold-600); font-style: normal; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  text-decoration: none; color: var(--ink-700); font-size: .95rem; font-weight: 500;
  padding: 9px 13px; border-radius: var(--radius-sm);
}
.nav a:hover { background: var(--paper); color: var(--navy-700); }
.nav a[aria-current="page"] { color: var(--navy-700); font-weight: 650; }
.nav .btn { margin-left: 8px; }

.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 9px 11px; cursor: pointer; color: var(--navy-800);
}
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 72px 0 auto; margin: 0; flex-direction: column; align-items: stretch;
    gap: 2px; background: var(--white); border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 22px; box-shadow: var(--shadow); display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: 13px 12px; font-size: 1.05rem; }
  .nav .btn { margin: 8px 0 0; text-align: center; }
}

/* --- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-weight: 650; font-size: .97rem; line-height: 1;
  padding: 14px 22px; border-radius: 999px; border: 1px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .12s ease, box-shadow .18s ease, background .18s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--gold-500); color: var(--navy-900); box-shadow: 0 6px 18px rgba(245, 179, 1, .32); }
.btn--primary:hover { background: var(--gold-400); box-shadow: 0 10px 26px rgba(245, 179, 1, .4); }
.btn--dark { background: var(--navy-700); color: var(--white); }
.btn--dark:hover { background: var(--navy-600); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .28); }
.btn--ghost:hover { border-color: rgba(255, 255, 255, .6); background: rgba(255, 255, 255, .06); }
.btn--outline { background: var(--white); color: var(--navy-700); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--outline:hover { border-color: var(--navy-500); }
.btn--lg { padding: 17px 30px; font-size: 1.03rem; }
.btn--block { width: 100%; }

/* --- hero ----------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; color: #cfdaee;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(245, 179, 1, .17), transparent 62%),
    radial-gradient(760px 420px at 8% 108%, rgba(36, 69, 127, .55), transparent 60%),
    linear-gradient(168deg, var(--navy-900), var(--navy-700) 58%, var(--navy-800));
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 70% 30%, #000, transparent 72%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(64px, 9vw, 118px); }
.hero__grid { display: grid; gap: clamp(36px, 5vw, 60px); grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); align-items: center; }
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }
.hero h1 { color: var(--white); max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--gold-400); }
.hero__sub { font-size: clamp(1.03rem, .95rem + .5vw, 1.22rem); max-width: 54ch; color: #c2cfe6; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 30px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--gold-400);
  border: 1px solid rgba(245, 179, 1, .32); background: rgba(245, 179, 1, .09);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow--light { color: var(--navy-600); border-color: var(--line); background: var(--paper); }

.trust-row { display: flex; flex-wrap: wrap; gap: 10px 26px; padding-top: 6px; border-top: 1px solid rgba(255, 255, 255, .12); }
.trust-row li { list-style: none; display: flex; align-items: center; gap: 9px; font-size: .92rem; color: #b6c4dd; margin: 0; padding-top: 14px; }
.trust-row svg { flex: none; color: var(--gold-400); }
.trust-row ul { display: contents; }

/* card that sits in the hero */
.hero__card {
  background: rgba(255, 255, 255, .055); border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 30px); backdrop-filter: blur(8px);
}
.hero__card h2 { font-size: 1.16rem; color: var(--white); margin-bottom: 4px; }
.hero__card p { font-size: .93rem; color: #b0bfd8; }
.mini-steps { list-style: none; padding: 0; margin: 18px 0 0; counter-reset: s; }
.mini-steps li { display: flex; gap: 14px; padding: 13px 0; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .95rem; color: #c6d3e8; }
.mini-steps li::before {
  counter-increment: s; content: counter(s); flex: none;
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(245, 179, 1, .16); color: var(--gold-400); font-size: .8rem; font-weight: 700;
}

/* --- generic layout helpers ---------------------------------------------- */
.lede { font-size: clamp(1.02rem, .96rem + .4vw, 1.18rem); color: var(--ink-500); max-width: 62ch; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.stack > * + * { margin-top: 18px; }
.section-head { max-width: 64ch; margin-bottom: clamp(30px, 4vw, 48px); }
.section-head.center { margin-inline: auto; }

.grid { display: grid; gap: clamp(18px, 2.4vw, 26px); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(212px, 1fr)); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 2.6vw, 30px); box-shadow: var(--shadow-sm);
}
.card--link { text-decoration: none; color: inherit; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; display: block; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cfd9e8; }
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-500)); color: var(--gold-400); margin-bottom: 16px;
}
.card__meta { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 10px; }

/* numbered process steps */
.steps { counter-reset: step; display: grid; gap: 20px; }
.step { display: grid; grid-template-columns: 58px 1fr; gap: 20px; align-items: start; }
.step__num {
  counter-increment: step; width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--navy-800); color: var(--gold-400); font-size: 1.25rem; font-weight: 800;
}
.step__num::before { content: counter(step, decimal-leading-zero); }
.step h3 { margin-top: 8px; }
@media (max-width: 560px) { .step { grid-template-columns: 46px 1fr; gap: 14px; } .step__num { width: 46px; height: 46px; font-size: 1.05rem; border-radius: 13px; } }

/* stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2px; background: rgba(255, 255, 255, .1); border-radius: var(--radius); overflow: hidden; }
.stats div { background: var(--navy-800); padding: 26px 20px; text-align: center; }
.stats b { display: block; font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem); color: var(--gold-400); letter-spacing: -.03em; line-height: 1.1; }
.stats span { font-size: .86rem; color: #a8b8d2; }

/* comparison / before-after */
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.panel { border-radius: var(--radius); padding: clamp(22px, 2.6vw, 28px); border: 1px solid var(--line); }
.panel--bad { background: #fff6f5; border-color: #f6d6d2; }
.panel--good { background: #f2fbf6; border-color: #cbe9d8; }
.panel h3 { font-size: 1.05rem; }
.panel ul { list-style: none; padding: 0; margin: 0; }
.panel li { display: flex; gap: 10px; font-size: .96rem; }
.panel li::before { content: "—"; color: var(--ink-400); flex: none; }
.panel--good li::before { content: "✓"; color: var(--ok); font-weight: 700; }

/* pricing table */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); background: var(--white); }
table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: .96rem; }
th, td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--line); }
thead th { background: var(--paper); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-500); }
tbody tr:last-child td { border-bottom: 0; }
td:first-child { font-weight: 600; color: var(--ink-900); }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 44px 20px 0; position: relative;
  font-weight: 650; color: var(--ink-900); font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 8px; top: 50%; translate: 0 -50%;
  font-size: 1.5rem; font-weight: 400; color: var(--navy-500); line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details > *:not(summary) { margin-bottom: 20px; color: var(--ink-500); max-width: 78ch; }

/* placeholder blocks that must be replaced before launch */
.placeholder {
  border: 2px dashed #d7c07a; background: #fffaeb; border-radius: var(--radius);
  padding: 22px 24px; color: #7a5c00;
}
.placeholder b { color: #5c4500; }

/* callouts */
.note { border-left: 3px solid var(--gold-500); background: var(--paper); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: .95rem; }
.note--dark { background: rgba(255, 255, 255, .05); color: #b8c6de; }

/* CTA band */
.cta-band { background: linear-gradient(140deg, var(--navy-800), var(--navy-600)); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 60px); text-align: center; color: #c6d3e8; }
.cta-band h2 { color: var(--white); max-width: 22ch; margin-inline: auto; }
.cta-band .btn { margin-top: 10px; }

/* --- forms ---------------------------------------------------------------- */
.form { display: grid; gap: 20px; }
/* align-content:start stops a short field stretching to match a taller sibling
   in the same .field-row (e.g. one with a hint line underneath). */
.field { display: grid; gap: 7px; align-content: start; }
.field label { font-weight: 600; font-size: .93rem; color: var(--ink-900); }
.field label .req { color: #c0392b; }
.field .hint { font-size: .84rem; color: var(--ink-400); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink-900); background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 14px; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--navy-500); outline: 3px solid rgba(36, 69, 127, .15); outline-offset: 0; }
.field textarea { min-height: 150px; resize: vertical; }
.field input[type="file"] { padding: 11px; background: var(--paper); }
.field-row { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.checkbox { display: grid; grid-template-columns: 22px 1fr; gap: 11px; align-items: start; font-size: .92rem; color: var(--ink-500); }
.checkbox input { width: 20px; height: 20px; margin-top: 2px; }
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { border-radius: var(--radius-sm); padding: 14px 16px; font-size: .95rem; display: none; }
.form-status[data-state="ok"] { display: block; background: #eefaf3; border: 1px solid #bfe6d1; color: #12613a; }
.form-status[data-state="error"] { display: block; background: #fff3f2; border: 1px solid #f3ccc7; color: #96271b; }
.form-status[data-state="busy"] { display: block; background: var(--paper); border: 1px solid var(--line); color: var(--ink-500); }

/* --- article / prose ------------------------------------------------------ */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.5em; }
.prose ul li::marker { color: var(--gold-600); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.4em 0; }
.prose table { min-width: 0; }
.page-head { background: var(--paper); border-bottom: 1px solid var(--line); padding-block: clamp(44px, 6vw, 76px); }
.page-head .lede { margin-top: 4px; }
.crumbs { font-size: .86rem; color: var(--ink-400); margin-bottom: 14px; }
.crumbs a { color: var(--ink-500); }

/* --- footer --------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #93a3bf; font-size: .93rem; padding-block: clamp(44px, 6vw, 70px) 28px; }
.site-footer h4 { color: var(--white); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer a { color: #b3c1da; text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-grid { display: grid; gap: 32px; grid-template-columns: minmax(230px, 1.4fr) repeat(auto-fit, minmax(140px, 1fr)); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer .brand { color: var(--white); }
.footer-bottom {
  margin-top: 38px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: .86rem; color: #6f809d;
}
.footer-disclaimer { max-width: 68ch; font-size: .84rem; color: #6f809d; margin-top: 18px; }
