/* =========================================================================
   Building Brand Authority — Webinar landing + thank-you
   Shared styles. Flat HTML/CSS/JS.
   ========================================================================= */

:root {
  /* Ink / surfaces */
  --ink:        #0E1230;   /* deep indigo hero base            */
  --ink-2:      #151A45;   /* raised ink surface               */
  --ink-line:   #2A3068;   /* hairline on dark                 */
  --paper:      #FFFFFF;
  --paper-soft: #F5F6FB;
  --paper-tint: #ECEEF8;
  --vpr-bg:     #242424;   /* matches Vigilante logo tile      */

  /* Type colours */
  --text:   #13163A;
  --muted:  #595E80;
  --muted-2:#7E82A0;
  --on-dark:      #EEF0FB;
  --on-dark-mut:  #A6ABD4;
  --line:   #E4E7F2;

  /* Brand-bridging accents (Clarion blue -> Vigilante magenta, INO coral) */
  --blue:    #3D5AFE;
  --violet:  #7A2FF6;
  --magenta: #F0338D;
  --coral:   #FF6A3D;
  --grad: linear-gradient(103deg, #3D5AFE 0%, #7A2FF6 52%, #F0338D 100%);

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body:    "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --wrap: 1120px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-lift: 0 18px 50px -22px rgba(16, 20, 60, .45);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; margin: 0; line-height: 1.08; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }

.section { padding-block: clamp(56px, 8vw, 104px); }

/* Eyebrow — small structural label, not all-caps tracked chrome */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600; letter-spacing: .01em;
  color: var(--violet);
  margin: 0 0 20px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(122, 47, 246, .14);
}
.on-dark .eyebrow { color: #C4B3FF; }
.on-dark .eyebrow .dot { box-shadow: 0 0 0 4px rgba(240, 51, 141, .18); }

/* -------- Buttons -------- */
.btn {
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 16px; line-height: 1;
  padding: 16px 26px; border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn-primary {
  color: var(--btn-fg);
  background: var(--grad);
  background-size: 140% 140%;
  box-shadow: 0 14px 30px -12px rgba(122, 47, 246, .6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(240, 51, 141, .55); }
.btn-ghost {
  color: var(--text);
  background: var(--paper);
  border-color: var(--line);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: #C9CEE6; }
.on-dark .btn-ghost { color: var(--on-dark); background: transparent; border-color: var(--ink-line); }
.on-dark .btn-ghost:hover { border-color: #4A5299; }
.btn-lg { padding: 19px 34px; font-size: 17px; }

@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

/* Visible keyboard focus everywhere */
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =========================================================================
   Sticky header
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(16,20,60,.5); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 14px; }
.brandmark { display: flex; align-items: baseline; gap: 10px; text-decoration: none; font-family: var(--font-display); font-weight: 600; color: var(--text); font-size: 17px; letter-spacing: -.01em; }
.brandmark .spark { width: 20px; height: 20px; align-self: center; }
.brandmark .sub { color: var(--muted-2); font-weight: 500; font-size: 14px; }
.header-cta { font-size: 15px; padding: 12px 20px; }
@media (max-width: 560px) {
  .brandmark .sub { display: none; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(240,51,141,.30), transparent 55%),
    radial-gradient(120% 120% at 6% 8%, rgba(61,90,254,.32), transparent 52%),
    var(--ink);
  color: var(--on-dark);
  overflow: hidden;
}
.hero::after { /* fine grid texture */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 40%, transparent 90%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 68px);
  align-items: center;
  padding-block: clamp(52px, 7vw, 92px);
}
.hero h1 {
  font-size: clamp(34px, 5.4vw, 60px);
  font-weight: 600;
  color: #fff;
  max-width: 15ch;
  margin-bottom: 22px;
}
.hero .lede { font-size: clamp(17px, 1.5vw, 19px); color: var(--on-dark-mut); max-width: 46ch; margin-bottom: 30px; }

/* Date / time block */
.when {
  display: flex; flex-wrap: wrap; gap: 12px 26px; align-items: center;
  padding: 16px 20px; margin-bottom: 30px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--ink-line);
  border-radius: 14px;
}
.when .when-item { display: flex; align-items: center; gap: 12px; }
.when svg { width: 22px; height: 22px; color: #C4B3FF; flex: none; }
.when .k { display: block; font-size: 12.5px; color: var(--on-dark-mut); }
.when .v { display: block; font-family: var(--font-display); font-weight: 500; color: #fff; font-size: 16px; }
.when .v small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12.5px; color: var(--on-dark-mut); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-actions .note { font-size: 13.5px; color: var(--on-dark-mut); }

/* AI answer visual — the signature element */
.ai-card {
  background: linear-gradient(180deg, #1B2050, #12163A);
  border: 1px solid var(--ink-line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(122,47,246,.12);
}
.ai-head { display: flex; align-items: center; gap: 11px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 18px; }
.ai-orb { width: 30px; height: 30px; border-radius: 9px; background: var(--grad); display: grid; place-items: center; flex: none; }
.ai-orb svg { width: 17px; height: 17px; color: #fff; }
.ai-head .who { font-family: var(--font-display); font-weight: 500; color: #fff; font-size: 15px; }
.ai-head .who span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12px; color: var(--on-dark-mut); }
.ai-q {
  align-self: flex-end;
  margin: 0 0 18px auto; max-width: 82%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  color: #EDEEFB;
  padding: 12px 15px; border-radius: 14px 14px 4px 14px;
  font-size: 14.5px;
}
.ai-a { font-size: 14.5px; color: #D7DAF2; }
.ai-a p { margin-bottom: 12px; }
.ai-list { display: flex; flex-direction: column; gap: 9px; margin: 4px 0 0; }
.ai-item {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 13px; border-radius: 11px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  color: var(--on-dark-mut); font-size: 14px;
}
.ai-item .rank { font-family: var(--font-display); font-size: 13px; color: var(--on-dark-mut); width: 16px; }
.ai-item.you {
  background: linear-gradient(100deg, rgba(61,90,254,.22), rgba(240,51,141,.22));
  border-color: rgba(196,179,255,.5);
  color: #fff; font-weight: 500;
}
.ai-item.you .rank { color: #fff; }
.ai-item.you .tag { margin-left: auto; font-size: 11.5px; font-family: var(--font-display); color: #fff; background: rgba(255,255,255,.16); padding: 3px 9px; border-radius: 999px; }
.ai-caption { margin-top: 18px; font-size: 13px; color: var(--on-dark-mut); font-style: italic; }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .ai-card { order: 2; }
}

/* Reveal-on-load (single orchestrated moment) */
.reveal { opacity: 0; transform: translateY(14px); }
.is-ready .reveal { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.is-ready .reveal.d1 { transition-delay: .06s; }
.is-ready .reveal.d2 { transition-delay: .14s; }
.is-ready .reveal.d3 { transition-delay: .22s; }
.is-ready .reveal.d4 { transition-delay: .30s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .is-ready .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   Presented-by logo band
   ========================================================================= */
.presented { background: var(--paper); border-bottom: 1px solid var(--line); }
.presented .wrap { padding-block: clamp(44px, 6vw, 64px); display: flex; flex-direction: column; align-items: center; gap: 26px; }
.presented .label { font-size: 14px; color: var(--muted-2); font-weight: 600; letter-spacing: .03em; }
.logo-row { display: flex; align-items: center; gap: clamp(16px, 3vw, 30px); flex-wrap: wrap; justify-content: center; }
.logo-tile {
  height: 62px; padding: 0 22px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--paper);
}
.logo-tile img { max-height: 30px; width: auto; }
.logo-tile.dark { background: var(--vpr-bg); border-color: #2f2f2f; }
.logo-tile.dark img { max-height: 40px; }

/* Linked logo tiles */
a.logo-tile { text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
a.logo-tile:hover { transform: translateY(-3px); border-color: #C9CEE6; box-shadow: 0 16px 34px -20px rgba(16,20,60,.5); }
a.logo-tile.dark:hover { border-color: #4a4a4a; }
@media (prefers-reduced-motion: reduce) { a.logo-tile:hover { transform: none; } }

/* Prominent tiles for the top "Presented by" band */
.presented .logo-tile { height: 100px; padding: 18px 36px; border-radius: 16px; box-shadow: 0 12px 34px -24px rgba(16,20,60,.55); }
.presented .logo-tile img { max-height: 50px; max-width: 270px; object-fit: contain; }
.presented .logo-tile.dark img { max-height: 62px; max-width: 176px; }

/* =========================================================================
   Generic light section bits
   ========================================================================= */
.section-head { max-width: 60ch; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 16px; }
.section-head p { font-size: 18px; color: var(--muted); }

/* Stakes / editorial statement */
.stakes { background: var(--paper-soft); }
.stakes-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.statement { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 3vw, 34px); line-height: 1.22; letter-spacing: -.015em; color: var(--text); }
.statement em { font-style: normal; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stakes-body p { color: var(--muted); font-size: 17px; margin-bottom: 18px; }
.stakes-body p:last-child { margin-bottom: 0; }
.stakes-body strong { color: var(--text); font-weight: 600; }
@media (max-width: 820px){ .stakes-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   What you'll learn — topic rows (not identical cards)
   ========================================================================= */
.learn-grid { display: grid; grid-template-columns: 320px 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.learn-aside { position: sticky; top: 96px; }
.learn-aside .kicker { font-size: 17px; color: var(--muted); margin-top: 16px; }
.learn-list { display: flex; flex-direction: column; }
.learn-item { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 26px 0; border-top: 1px solid var(--line); }
.learn-item:last-child { border-bottom: 1px solid var(--line); }
.learn-ic { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--paper-tint); }
.learn-ic svg { width: 26px; height: 26px; color: var(--violet); }
.learn-item h3 { font-size: 21px; margin-bottom: 8px; }
.learn-item p { color: var(--muted); font-size: 16px; }
.learn-item .mini { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.pill { font-size: 13px; color: var(--text); background: var(--paper); border: 1px solid var(--line); padding: 6px 12px; border-radius: 999px; }
@media (max-width: 820px){
  .learn-grid { grid-template-columns: 1fr; }
  .learn-aside { position: static; }
}
@media (max-width: 480px){
  .learn-item { grid-template-columns: 1fr; gap: 14px; }
}

/* =========================================================================
   Score callout
   ========================================================================= */
.score { background: var(--ink); color: var(--on-dark); }
.score .inner {
  background:
    radial-gradient(90% 140% at 100% 0%, rgba(240,51,141,.22), transparent 60%),
    radial-gradient(90% 140% at 0% 100%, rgba(61,90,254,.24), transparent 60%),
    var(--ink-2);
  border: 1px solid var(--ink-line);
  border-radius: 22px;
  padding: clamp(32px, 5vw, 60px);
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.score h2 { color: #fff; font-size: clamp(26px, 3.2vw, 38px); margin-bottom: 16px; max-width: 20ch; }
.score p { color: var(--on-dark-mut); font-size: 17px; max-width: 52ch; margin-bottom: 26px; }
.gauge { width: 190px; flex: none; }
.gauge .val { font-family: var(--font-display); font-weight: 600; font-size: 40px; fill: #fff; }
.gauge .lab { font-family: var(--font-body); font-size: 8.5px; fill: var(--on-dark-mut); letter-spacing: .04em; }
@media (max-width: 720px){ .score .inner { grid-template-columns: 1fr; } .gauge { margin-inline: auto; } }

/* =========================================================================
   Panel
   ========================================================================= */
.panel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.panelist { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; }
.panelist .avatar {
  width: 100%; aspect-ratio: 1/1; border-radius: 12px; margin-bottom: 20px; overflow: hidden;
  background: linear-gradient(135deg, var(--paper-tint), #DFE3F4);
  display: grid; place-items: center; color: #A9AECB;
  font-family: var(--font-display); font-size: 34px; font-weight: 600; letter-spacing: .02em;
}
.panelist .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; display: block; }
.panelist h3 { font-size: 21px; margin-bottom: 4px; }
.panelist .role { font-size: 14.5px; color: var(--muted); margin-bottom: 16px; }
.panelist .bio { font-size: 15px; color: var(--muted); margin-bottom: 20px; }
.panelist .org { margin-top: auto; height: 48px; display: flex; align-items: center; justify-content: center; }
.panelist .org img { max-height: 22px; width: auto; }
.panelist .org img[alt="Vigilante PR"] { max-height: 42px; }
.org.dark { background: var(--vpr-bg); border-radius: 8px; padding: 6px 12px; align-self: flex-start; }
.org.dark img { max-height: 26px; }
@media (max-width: 820px){ .panel-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* Editable placeholder marker (for client to fill) */
.ph { color: var(--muted-2); border-bottom: 1px dashed #C4C9E0; font-style: italic; }

/* =========================================================================
   Resources (thank-you page)
   ========================================================================= */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.res { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: var(--paper); display: flex; flex-direction: column; }
.res .tag { font-size: 13px; font-weight: 600; color: var(--violet); margin-bottom: 14px; }
.res h3 { font-size: 20px; margin-bottom: 10px; }
.res p { color: var(--muted); font-size: 15px; margin-bottom: 20px; }
.res .go { margin-top: auto; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text); text-decoration: none; border-bottom: 2px solid var(--violet); padding-bottom: 2px; align-self: flex-start; }
.res .go:hover { color: var(--violet); }
@media (max-width: 820px){ .res-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   CTA band + footer
   ========================================================================= */
.cta-band { background: var(--ink); color: var(--on-dark); text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 46px); max-width: 20ch; margin: 0 auto 18px; }
.cta-band p { color: var(--on-dark-mut); font-size: 18px; max-width: 46ch; margin: 0 auto 30px; }
.cta-band .when { display: inline-flex; justify-content: center; margin-bottom: 30px; }
.cta-band .free-badge {
  display: inline-block; margin: 0 auto 18px; padding: 8px 20px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase; color: #fff;
  background: linear-gradient(90deg, #3D5AFE, #7A2FF6, #F0338D);
  box-shadow: 0 12px 30px -12px rgba(240,51,141,.65);
}
.cta-band .cta-final { text-align: center; }
.cta-band .cta-final .note { display: block; margin-top: 14px; font-size: 13.5px; color: var(--on-dark-mut); }

.site-footer { background: #0A0D24; color: var(--on-dark-mut); }
.site-footer .wrap { padding-block: 44px; }
.foot-top { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-bottom: 26px; border-bottom: 1px solid var(--ink-line); }
.foot-top .logo-row .logo-tile { height: 54px; background: rgba(255,255,255,.96); }
.foot-top .logo-row .logo-tile.dark { background: var(--vpr-bg); }
.foot-note { font-size: 13.5px; color: #7C82AE; }
.foot-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #6B7099; }
.foot-bottom a { text-decoration: none; }
.foot-bottom a:hover { color: var(--on-dark); }

/* =========================================================================
   Thank-you specifics
   ========================================================================= */
.confirm { background:
    radial-gradient(100% 90% at 85% -10%, rgba(240,51,141,.28), transparent 55%),
    radial-gradient(90% 110% at 8% 0%, rgba(61,90,254,.30), transparent 52%),
    var(--ink);
  color: var(--on-dark); }
.confirm .wrap { padding-block: clamp(56px, 8vw, 96px); text-align: center; }
.check {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 26px;
  background: var(--grad); display: grid; place-items: center;
  box-shadow: 0 16px 40px -14px rgba(240,51,141,.6);
}
.check svg { width: 34px; height: 34px; color: #fff; }
.confirm h1 { color: #fff; font-size: clamp(34px, 5vw, 58px); margin-bottom: 18px; }
.confirm .lede { color: var(--on-dark-mut); font-size: 19px; max-width: 52ch; margin: 0 auto 30px; }
.confirm .when { display: inline-flex; justify-content: center; text-align: left; margin-bottom: 28px; }
.cal-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.next-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.next { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.next .n { font-family: var(--font-display); font-weight: 600; color: var(--violet); font-size: 15px; margin-bottom: 12px; }
.next h3 { font-size: 18px; margin-bottom: 8px; }
.next p { color: var(--muted); font-size: 15px; }
@media (max-width: 820px){ .next-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Registration form (Route B)
   ========================================================================= */
.reg { background: var(--paper-soft); }
.reg-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.reg-intro h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 16px; }
.reg-intro > p { font-size: 18px; color: var(--muted); max-width: 42ch; }
.reg-facts { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.reg-facts li { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-weight: 500; color: var(--text); }
.reg-facts svg { width: 22px; height: 22px; color: var(--violet); flex: none; }
.reg-facts small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--muted); }

.reg-form {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px); box-shadow: var(--shadow-lift);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field-row .field { margin-bottom: 16px; }
.field label { font-family: var(--font-display); font-weight: 500; font-size: 14px; color: var(--text); margin-bottom: 7px; }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 15.5px; color: var(--text);
  padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--paper-soft); width: 100%;
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.field textarea { resize: vertical; min-height: 60px; }
.field input:hover, .field textarea:hover { border-color: #C9CEE6; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); background: var(--paper);
  box-shadow: 0 0 0 3px rgba(61, 90, 254, .16);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--magenta); }

.reg-btn { width: 100%; margin-top: 4px; }
.reg-consent { margin-top: 14px; font-size: 13px; color: var(--muted-2); line-height: 1.5; text-align: center; }
.reg-error {
  margin-top: 14px; padding: 12px 14px; border-radius: var(--radius-sm);
  background: rgba(240, 51, 141, .08); border: 1px solid rgba(240, 51, 141, .35);
  color: #B01560; font-size: 14.5px;
}

/* Honeypot — kept in the DOM for bots, removed from view + a11y tree for humans */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 860px) {
  .reg-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}
