*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy-dark: #112438;
  --navy-mid:  #162d47;
  --gold:      #C8960C;
  --gold-lt:   #f0b429;
  --white:     #ffffff;
  --muted:     #a3bad0;
  --muted-soft:#8ba3bc;
  --border:    rgba(255,255,255,0.12);
  --focus:     #f0b429;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gold); color: var(--navy-dark);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .9rem; font-weight: 700;
  padding: .6rem 1.2rem; border-radius: 0 0 .4rem .4rem;
  text-decoration: none; z-index: 9999;
  transition: top .15s;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 3px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(27,58,92,.38) 0%, rgba(17,36,56,0) 34rem),
    var(--navy-dark);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  padding: 1.35rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 10;
}

.logo-wrap { display: flex; align-items: center; }
.logo-img  { display: block; max-height: 44px; width: auto; }

.logo-fallback {
  display: none;
  align-items: center;
  gap: .6rem;
}
.logo-text       { font-size: 1.4rem; font-weight: 800; letter-spacing: -.02em; color: var(--white); }
.logo-text span  { color: var(--gold); }
.by-startec      { font-size: .72rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; font-weight: 500; display: block; }

.contact-btn {
  background: transparent;
  border: 1.5px solid rgba(200,150,12,.5);
  color: var(--muted);
  font-family: inherit;
  font-size: .85rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: .4rem;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.contact-btn:hover {
  border-color: var(--gold);
  color: var(--white);
  background: rgba(200,150,12,.08);
}

/* ── HERO ── */
.hero {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4.25rem 1.5rem 3.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,150,12,.12);
  border: 1px solid rgba(200,150,12,.5);
  color: var(--gold-lt);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(.8); }
}

.hero-shield {
  width: 86px; height: 86px;
  margin: 0 auto 1.75rem;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform:translateY(0); }
  50%      { transform:translateY(-6px); }
}

h1 {
  font-size: clamp(2.2rem,5vw,3.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  max-width: 780px;
  margin-bottom: 1.65rem;
}
h1 em { font-style: normal; color: var(--gold); }

.hero-sub {
  font-size: clamp(1rem,2vw,1.15rem);
  color: var(--muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── NOTIFY FORM ── */
.notify-group { max-width: 460px; width: 100%; margin: 0 auto 1.25rem; }

.notify-wrap {
  display: flex;
  border-radius: .5rem;
  overflow: hidden;
  border: 2px solid rgba(200,150,12,.75);
  transition: border-color .2s;
}
.notify-wrap:focus-within {
  border-color: var(--gold-lt);
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.notify-wrap input[type="email"] {
  flex: 1;
  padding: .85rem 1.1rem;
  font-size: .95rem;
  font-family: inherit;
  background: rgba(255,255,255,.06);
  border: none;
  color: var(--white);
  outline: none;
  min-width: 0;
}
.notify-wrap input::placeholder { color: var(--muted); }
.notify-wrap button {
  padding: .85rem 1.4rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: .9rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}
.notify-wrap button:hover { background: var(--gold-lt); }
.notify-wrap button:focus-visible { outline: 3px solid var(--white); outline-offset: -3px; }

.notify-note { font-size: .78rem; color: var(--muted); margin-bottom: 1rem; min-height: 1.2em; }
.turnstile-wrap { display: flex; justify-content: center; margin: 0 auto 1.75rem; min-height: 65px; }
.modal-intro { font-size: .88rem; color: var(--muted); line-height: 1.6; margin: -.75rem 0 1.25rem; }

/* ── COUNTDOWN ── */
.cd-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 1rem; }
.cd-wrap  { display: flex; gap: 1.5rem; justify-content: center; }
.cd-unit  { display: flex; flex-direction: column; align-items: center; gap: .25rem; }
.cd-num   { font-size: 2.2rem; font-weight: 800; letter-spacing: -.04em; color: var(--white); line-height: 1; min-width: 2.5ch; text-align: center; }
.cd-tag   { font-size: .7rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; font-weight: 500; }
.cd-sep   { font-size: 2rem; font-weight: 300; color: var(--muted); align-self: center; margin-top: -.4rem; }

/* ── DIFF STRIP ── */
.diff-strip { background: rgba(255,255,255,.03); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 4.5rem 1.5rem; }
.diff-grid  { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.25rem; }
.diff-item  { display: flex; flex-direction: column; gap: .65rem; background: rgba(255,255,255,.035); border: 1px solid var(--border); border-radius: .75rem; padding: 1.35rem; }
.diff-icon  { width: 40px; height: 40px; border-radius: .5rem; background: rgba(200,150,12,.1); border: 1px solid rgba(200,150,12,.3); display: flex; align-items: center; justify-content: center; margin-bottom: .25rem; }
.diff-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.diff-h3 { font-size: .95rem; font-weight: 700; color: var(--white); }
.diff-p  { font-size: .85rem; color: var(--muted); line-height: 1.6; }

/* ── WORKFLOW ── */
.workflow { padding: 4rem 1.5rem 4.25rem; text-align: center; max-width: 960px; margin: 0 auto; }
.sec-label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .75rem; }
.sec-title { font-size: clamp(1.4rem,3vw,1.9rem); font-weight: 700; letter-spacing: -.02em; margin-bottom: .75rem; color: var(--white); }
.sec-body  { font-size: .95rem; color: var(--muted); line-height: 1.7; max-width: 520px; margin: 0 auto 3rem; }

.wf-steps { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .5rem; list-style: none; }
.wf-step  { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: .5rem; padding: .7rem 1.15rem; font-size: .84rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--white); transition: border-color .2s, background .2s; }
.wf-step:hover { border-color: rgba(200,150,12,.5); background: rgba(200,150,12,.06); }
.wf-step:not(:last-child)::after { content: "→"; color: var(--muted); margin-left: 1rem; font-weight: 400; }

/* ── NOT OVERLAY ── */
.not-overlay      { margin: 0 auto; max-width: 780px; padding: 3rem 1.5rem 3.75rem; }
.not-overlay-card { background: rgba(200,150,12,.06); border: 1px solid rgba(200,150,12,.25); border-left: 3px solid var(--gold); border-radius: .5rem; padding: 1.5rem 1.75rem; text-align: left; }
.not-overlay-card strong { display: block; font-size: .78rem; font-weight: 700; color: var(--gold-lt); margin-bottom: .5rem; text-transform: uppercase; letter-spacing: .05em; }
.not-overlay-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; }


/* ── AUDIENCE ── */
.audience { padding: 4.5rem 1.5rem; max-width: 1020px; margin: 0 auto; text-align: center; }
.audience-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.15rem; margin-top: 2rem; }
.audience-card { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: .65rem; padding: 1.25rem 1.15rem; text-align: left; }
.audience-card strong { display: block; color: var(--white); font-size: .9rem; margin-bottom: .35rem; }
.audience-card span { display: block; color: var(--muted); font-size: .78rem; line-height: 1.5; }

/* ── SCANNER PREVIEW ── */
.scan-preview { max-width: 780px; margin: 0 auto; padding: 4.25rem 1.5rem; }
.scan-card { background: linear-gradient(135deg, rgba(255,255,255,.045), rgba(200,150,12,.07)); border: 1px solid rgba(200,150,12,.24); border-radius: .75rem; padding: 2rem; text-align: center; }
.scan-card h2 { font-size: clamp(1.35rem,3vw,1.8rem); color: var(--white); margin-bottom: .75rem; letter-spacing: -.02em; }
.scan-card p { color: var(--muted); line-height: 1.7; font-size: .94rem; max-width: 560px; margin: 0 auto 1.5rem; }
.scan-fake { display: flex; gap: .5rem; max-width: 520px; margin: 0 auto; border: 1.5px solid rgba(255,255,255,.18); border-radius: .5rem; padding: .45rem; background: rgba(255,255,255,.04); }
.scan-fake-input { flex: 1; min-width: 0; color: var(--muted); font-family: inherit; padding: .55rem .65rem; text-align: left; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.scan-fake-button { border-radius: .35rem; background: rgba(200,150,12,.35); color: var(--navy-dark); font-family: inherit; font-weight: 800; padding: .55rem .9rem; opacity: .85; }
.scan-note { margin-top: .85rem; font-size: .78rem; color: var(--muted); }

/* ── SECONDARY CTA ── */
.secondary-cta { padding: 4.5rem 1.5rem; text-align: center; }
.secondary-cta-inner { max-width: 620px; margin: 0 auto; background: rgba(255,255,255,.035); border: 1px solid var(--border); border-radius: .75rem; padding: 2rem; }
.secondary-cta h2 { color: var(--white); font-size: clamp(1.25rem,3vw,1.65rem); margin-bottom: .75rem; }
.secondary-cta p { color: var(--muted); line-height: 1.7; font-size: .92rem; margin-bottom: 1.25rem; }
.secondary-cta a, .secondary-cta button { display: inline-flex; align-items: center; justify-content: center; gap: .4rem; background: var(--gold); color: var(--navy-dark); border: 0; border-radius: .45rem; padding: .75rem 1.25rem; font-family: inherit; font-weight: 800; text-decoration: none; cursor: pointer; }
.secondary-cta a:hover, .secondary-cta button:hover { background: var(--gold-lt); }

/* ── SEO SECTION ── */
.seo-sec  { max-width: 900px; margin: 0 auto; padding: 4.5rem 1.5rem 3.25rem; }
.seo-sec h2 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.seo-sec p  { font-size: .88rem; color: var(--muted); line-height: 1.8; max-width: 680px; }
.seo-grid   { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 1rem; margin-top: 1.5rem; }
.seo-grid div  { font-size: .8rem; color: var(--muted); line-height: 1.6; }
.seo-grid span { color: var(--gold); font-weight: 600; display: block; margin-bottom: .2rem; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .75rem; }
.footer-brand, .footer-links a { font-size: .82rem; color: var(--muted); }
.footer-brand a, .footer-links a { color: var(--muted); text-decoration: underline; transition: color .2s; }
.footer-brand a:hover, .footer-links a:hover { color: var(--white); }
.footer-links { display: flex; gap: 1.5rem; }

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,18,28,.88);
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 1rem;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--navy-mid);
  border: 1px solid rgba(200,150,12,.35);
  border-radius: .75rem;
  width: 100%;
  max-width: 500px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 2rem;
  position: relative;
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.modal-title { font-size: 1.25rem; font-weight: 700; color: var(--white); letter-spacing: -.02em; }
.modal-close {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}
.modal-close:hover { border-color: var(--gold); color: var(--white); }

/* ── CONTACT FORM FIELDS ── */
.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}
.field label { font-size: .82rem; font-weight: 600; color: var(--muted); }
.field label .req { color: var(--gold); margin-left: .1rem; }

.field input, .field textarea {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.18);
  border-radius: .4rem;
  color: var(--white);
  font-family: inherit;
  font-size: .92rem;
  padding: .65rem .85rem;
  width: 100%;
  transition: border-color .2s;
  outline: none;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(139,163,188,.6); }
.field input:focus, .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,150,12,.25);
}
.field textarea { resize: vertical; min-height: 110px; }

.field-err { font-size: .78rem; color: #f87171; display: none; }
.field.err input, .field.err textarea { border-color: #f87171; }
.field.err .field-err { display: block; }

.cf-turnstile { margin: 1rem 0; }

.submit-btn {
  width: 100%;
  padding: .85rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  border: none;
  border-radius: .4rem;
  cursor: pointer;
  transition: background .2s, opacity .2s;
  margin-top: .5rem;
}
.submit-btn:hover:not([disabled]) { background: var(--gold-lt); }
.submit-btn[disabled] { opacity: .55; cursor: not-allowed; }
.submit-btn:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; }

.form-status {
  margin-top: 1rem;
  font-size: .88rem;
  line-height: 1.5;
  min-height: 1.4em;
  text-align: center;
}
.form-status.ok  { color: #86efac; }
.form-status.err { color: #f87171; }


/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, rgba(200,150,12,.08) 0%, rgba(27,58,92,.4) 100%);
  border-top: 1px solid rgba(200,150,12,.2);
  border-bottom: 1px solid rgba(200,150,12,.2);
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-inner   { max-width: 680px; margin: 0 auto; }
.cta-tag     { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: .75rem; }
.cta-h2      { font-size: clamp(1.5rem,3vw,2.1rem); font-weight: 800; letter-spacing: -.02em; color: var(--white); margin-bottom: 1rem; }
.cta-body    { font-size: .98rem; color: var(--muted); line-height: 1.7; max-width: 520px; margin: 0 auto 2rem; }
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  color: var(--navy-dark);
  font-size: .95rem;
  font-weight: 700;
  padding: .85rem 1.75rem;
  border-radius: .45rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.cta-link:hover { background: var(--gold-lt); transform: translateY(-1px); }
.cta-link svg   { width: 18px; height: 18px; flex-shrink: 0; }
.cta-note { margin-top: 1rem; font-size: .78rem; color: var(--muted); }

/* ── RESPONSIVE + REDUCED MOTION ── */
@media (max-width: 820px) {
  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .notify-wrap, .scan-fake { flex-direction: column; }
  .audience-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 3.25rem; }
  .hero-shield { width: 74px; height: 74px; }
  .notify-wrap button { width: 100%; }
  footer { flex-direction: column; align-items: flex-start; }
  .cd-wrap { gap: 1rem; }
  .cd-num  { font-size: 1.8rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}

/* ── FOOTER BUTTON LINKS ───────────────────────────────────────────────────── */
.footer-link-button {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: .82rem;
  color: var(--muted);
  text-decoration: underline;
  cursor: pointer;
  transition: color .2s;
}
.footer-link-button:hover { color: var(--white); }
.footer-link-button:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 3px; }

/* ── PRIVACY PAGE ───────────────────────────────────────────────────────────── */
.page-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.page-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: .85rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}
.page-kicker {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .75rem;
}
.page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--white);
}
.page-lead {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 2.25rem;
}
.policy-section {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 1.5rem;
}
.policy-section h2 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 750;
  margin-bottom: .65rem;
  letter-spacing: -.01em;
}
.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
}
.policy-section ul {
  margin-left: 1.25rem;
  display: grid;
  gap: .35rem;
}
.inline-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .85rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: inherit;
  font-size: .92rem;
  font-weight: 800;
  border: none;
  border-radius: .45rem;
  padding: .75rem 1.15rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.inline-contact-button:hover { background: var(--gold-lt); transform: translateY(-1px); }
.inline-contact-button:focus-visible { outline: 3px solid var(--white); outline-offset: 3px; }
.back-link {
  display: inline-flex;
  margin-top: 2rem;
  color: var(--gold-lt);
  font-weight: 700;
  text-decoration: none;
}
.back-link:hover { text-decoration: underline; }
