/* ============================================================
   Magic-Shield — public site (landing, sign in, password reset,
   early-bird). Separate from app.css, which dresses the
   signed-in dashboard.
   ============================================================ */

:root{
  /* brand */
  --red:#e5232c;
  --red-600:#d01822;
  --red-700:#b3131c;
  --red-tint:#fdeff1;      /* filled chips / info panels */
  --red-wash:#fff6f7;      /* very light section wash */

  /* ink */
  --ink:#0f1f3d;
  --ink-2:#22314b;
  --muted:#53637e;
  --faint:#8493ab;

  /* surfaces */
  --page:#ffffff;
  --card:#ffffff;
  --line:#e6ecf4;
  --line-soft:#f0f4f9;

  --green:#17a34a;
  --green-tint:#e7f8ee;
  --blue-link:#1f6fd0;

  /* geometry */
  --r-sm:8px;
  --r:12px;
  --r-lg:16px;
  --r-xl:22px;
  --shadow-sm:0 1px 2px rgba(15,31,61,.05), 0 2px 8px rgba(15,31,61,.04);
  --shadow:0 2px 6px rgba(15,31,61,.06), 0 12px 32px rgba(15,31,61,.07);
  --shadow-lg:0 4px 10px rgba(15,31,61,.06), 0 24px 60px rgba(15,31,61,.10);
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;
  background:var(--page);
  color:var(--ink);
  font:400 16px/1.55 Figtree,"Segoe UI",system-ui,-apple-system,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,p,figure,ul,ol,dl{margin:0}
ul,ol{padding:0;list-style:none}
img{max-width:100%;height:auto;display:block}   /* width/height attrs must not force a size */
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit;color:inherit}
[hidden]{display:none !important}
:focus-visible{outline:2px solid var(--red);outline-offset:3px;border-radius:6px}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.001ms !important;transition-duration:.001ms !important}
  html{scroll-behavior:auto}
}

/* ---------- wordmark ---------- */
.wordmark{display:inline-flex;flex-direction:column;align-items:center;gap:.28em;line-height:1}
.wordmark__name{
  font-size:var(--wm,44px);font-weight:800;letter-spacing:-.028em;
  color:var(--ink);white-space:nowrap;
}
.wordmark__name b{color:var(--red);font-weight:800}
.wordmark__tag{
  font-size:calc(var(--wm,44px)*.205);font-weight:700;letter-spacing:.20em;
  color:var(--muted);white-space:nowrap;text-transform:uppercase;
}
.wordmark--left{align-items:flex-start}

/* ---------- buttons ---------- */
.btn{
  --btn-bg:var(--red); --btn-ink:#fff;
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:13px 22px;border:1px solid transparent;border-radius:var(--r);
  background:var(--btn-bg);color:var(--btn-ink);
  font-size:15px;font-weight:700;cursor:pointer;white-space:nowrap;
  transition:background .15s ease, border-color .15s ease, color .15s ease,
             box-shadow .15s ease, transform .1s ease;
}
.btn svg{flex:none}
.btn:hover{--btn-bg:var(--red-600);box-shadow:0 8px 20px rgba(229,35,44,.28)}
.btn:active{transform:translateY(1px);--btn-bg:var(--red-700);box-shadow:none}
.btn--ghost{--btn-bg:#fff;--btn-ink:var(--ink);border-color:var(--line);font-weight:600}
.btn--ghost:hover{--btn-bg:#fff;border-color:#c9d4e2;box-shadow:0 4px 14px rgba(15,31,61,.09)}
.btn--ghost:active{--btn-bg:#f6f8fc;box-shadow:none}
.btn--block{width:100%}
.btn--lg{padding:16px 26px;font-size:17px;border-radius:var(--r)}
/* An inline <svg> with only a viewBox has no intrinsic size, so it grows to
   fill whatever box it is in — on the apply page .ap-submit .arr sizes it, and
   the first button drawn outside that scope rendered an arrow the size of the
   button. A default here means the next one cannot repeat it. */
.btn .arr{width:20px;height:20px;flex:none;transition:transform .18s ease}
.btn:hover .arr{transform:translateX(3px)}

button.link{border:0;background:none;padding:0;font:inherit;text-align:inherit}
.link{color:var(--blue-link);font-weight:600;cursor:pointer;
  transition:color .15s ease,text-decoration-color .15s ease;
  text-decoration:underline;text-decoration-color:transparent;text-underline-offset:3px}
.link:hover{color:#134f9c;text-decoration-color:currentColor}
.link--red{color:var(--red);text-decoration-color:currentColor}
.link--red:hover{color:var(--red-700)}

/* ---------- form fields ---------- */
.field{
  display:flex;align-items:center;gap:12px;
  height:60px;padding:0 18px;
  background:#fff;border:1.5px solid var(--line);border-radius:var(--r);
  cursor:text;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.field:has(select){cursor:pointer}
.field:hover{border-color:#cfd9e6}
.field:focus-within{border-color:var(--red);box-shadow:0 0 0 4px rgba(229,35,44,.10)}
.field__ic{flex:none;color:var(--ink);opacity:.85}
.field input,.field select{
  flex:1;min-width:0;height:100%;border:0;background:none;outline:none;
  font-size:15.5px;color:var(--ink);
}
.field input::placeholder{color:#8e9bb0}
.field select{appearance:none;cursor:pointer;color:#5a6a82}
.field--sm{height:50px}
.field--sm input{font-size:15px}
.eye{
  flex:none;display:grid;place-items:center;width:32px;height:32px;
  border:0;background:none;border-radius:8px;color:#7b8AA0;cursor:pointer;
  transition:background .15s ease,color .15s ease;
}
.eye:hover{background:var(--line-soft);color:var(--ink)}

.checkbox{display:inline-flex;align-items:center;gap:10px;cursor:pointer;font-size:15px;color:var(--ink-2)}
.checkbox input{
  appearance:none;width:22px;height:22px;flex:none;margin:0;cursor:pointer;
  border:1.5px solid #c3cfdf;border-radius:6px;background:#fff;
  transition:border-color .15s ease,background .15s ease;
}
.checkbox input:hover{border-color:#9fb0c6}
.checkbox input:checked{background:var(--red) no-repeat center/13px
  url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  border-color:var(--red)}

/* ---------- bullet list with round red ticks ---------- */
.ticks{display:grid;gap:14px}
.ticks li{display:flex;align-items:flex-start;gap:14px;font-size:17px;color:var(--ink-2)}
.ticks .tick{
  flex:none;width:26px;height:26px;margin-top:1px;border-radius:50%;
  background:var(--red);display:grid;place-items:center;color:#fff;
}

/* ---------- shared bits ---------- */
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13.5px;font-weight:800;letter-spacing:.14em;text-transform:uppercase;
  color:var(--red);
}
.note{
  display:flex;align-items:flex-start;gap:14px;
  padding:18px 20px;border-radius:var(--r);background:var(--red-tint);
}
.note strong{display:block;font-size:16px;font-weight:700;color:var(--ink)}
.note span{display:block;font-size:14.5px;color:var(--muted);margin-top:2px}

.card{background:var(--card);border:1px solid var(--line);border-radius:var(--r-lg);box-shadow:var(--shadow-sm)}

.container{width:min(100% - 48px,1160px);margin-inline:auto}

/* ============================================================
   Landing poster (index.html)
   ============================================================ */
.poster{position:relative;overflow:hidden;padding:26px 0 34px}
.poster__head{
  display:grid;grid-template-columns:1fr auto 1fr;align-items:start;gap:24px;
  width:min(100% - 56px,1470px);margin-inline:auto;
}
.poster__head .hand{width:186px}
.poster__cta{display:flex;justify-content:flex-end;align-items:center;gap:14px;flex-wrap:wrap}
.poster__cta .btn{padding:12px 20px}
.cta-2line{display:flex;flex-direction:column;align-items:flex-start;line-height:1.2;text-align:left}

.stage{position:relative;width:min(100% - 96px,1438px);margin:6px auto 0}
.fan{position:absolute;inset:0;width:100%;height:100%;pointer-events:none;z-index:1}
.fan path{fill:none;stroke:var(--red);stroke-width:2.6;stroke-linecap:round;
  stroke-dasharray:0 11;vector-effect:non-scaling-stroke}
.fan .fan-arrow{stroke-dasharray:none;stroke-width:2.2;fill:var(--red)}

.grid3{
  position:relative;z-index:2;
  display:grid;grid-template-columns:minmax(0,1fr) minmax(360px,468px) minmax(0,1fr);
  align-items:start;column-gap:8px;
}
.threats{display:grid}
.threats li{
  display:grid;grid-template-columns:202px minmax(0,1fr) 30px;
  align-items:center;column-gap:12px;min-height:112px;
}
.threats h3{font-size:16.5px;font-weight:800;letter-spacing:.005em}
.threats p{font-size:15px;line-height:1.38;color:var(--ink-2);margin-top:3px}
.threats img{width:var(--iw,150px);height:auto;justify-self:start;mix-blend-mode:multiply}
.threats .no{
  width:30px;height:30px;border-radius:50%;background:var(--red);
  display:grid;place-items:center;color:#fff;
}
.threats .no::before{content:"";width:13px;height:2.6px;border-radius:2px;background:#fff}
.threats--r li{grid-template-columns:30px minmax(0,1fr) 202px}
.threats--r .t-copy{order:3}
.threats--r img{order:2;justify-self:end}
.threats--r .no{order:1}

.core{position:relative;display:grid;justify-items:center;align-content:start;text-align:center}
.core__glow{
  position:absolute;left:50%;top:14px;translate:-50% 0;
  width:660px;height:560px;pointer-events:none;
  background:
    radial-gradient(closest-side,rgba(229,35,44,.16),rgba(229,35,44,.04) 62%,transparent 72%),
    radial-gradient(closest-side,rgba(229,35,44,.10),transparent 70%);
}
.core__orb{position:relative;width:min(100%,432px);height:auto;margin-top:66px}
.core__claim{
  position:relative;margin-top:14px;font-size:20.5px;font-weight:800;
  letter-spacing:.095em;color:var(--ink);
}
.core__check{
  position:relative;margin-top:26px;width:52px;height:52px;border-radius:50%;
  background:var(--green);display:grid;place-items:center;color:#fff;
  box-shadow:0 6px 18px rgba(23,163,74,.28);
}
.core__funnel{
  position:absolute;left:50%;translate:-50% 0;bottom:262px;
  width:506px;height:156px;z-index:0;pointer-events:none;
  background:linear-gradient(to bottom,rgba(23,163,74,0),rgba(23,163,74,.10));
  clip-path:polygon(50% 0,100% 100%,0 100%);
}
.core__people{position:relative;margin-top:22px;display:flex;align-items:center;gap:14px}
.core__people img{width:min(100%,376px)}
.core__people .gr{flex:none;color:var(--green)}
.core__label{position:relative;margin-top:10px;font-size:23px;font-weight:800;color:var(--green);letter-spacing:.02em}
.core__sub{position:relative;font-size:16.5px;color:var(--ink-2);margin-top:1px}

.poster__foot{
  position:relative;z-index:2;
  display:grid;grid-template-columns:1fr auto;align-items:center;gap:28px;
  width:min(100% - 76px,1452px);margin:18px auto 0;
}
.props{
  display:grid;grid-template-columns:repeat(4,1fr);
  background:#f6f8fb;border-radius:var(--r-xl);padding:20px 8px;
}
.props li{display:flex;align-items:center;justify-content:center;gap:14px;padding:0 10px;position:relative}
.props li+li::before{content:"";position:absolute;left:0;top:50%;translate:0 -50%;width:1px;height:38px;background:#dde5ef}
.props b{display:block;font-size:14px;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:var(--ink)}
.props span{display:block;font-size:14px;font-weight:800;letter-spacing:.09em;text-transform:uppercase;color:var(--muted)}
.poster__foot .hand{width:230px;justify-self:end}

@media (max-width:1380px){ .fan{display:none} }
@media (max-width:1100px){
  .grid3{grid-template-columns:1fr;row-gap:8px}
  .core{order:-1;margin-bottom:18px}
  .core__glow{width:min(660px,100%)}
  .core__funnel{width:min(506px,100%)}
  .threats li{min-height:0;padding:14px 0;
    grid-template-columns:minmax(120px,190px) minmax(0,1fr);text-align:left}
  .threats--r li{grid-template-columns:minmax(120px,190px) minmax(0,1fr)}
  .threats--r .t-copy{order:2}
  .threats--r img{order:1;justify-self:start}
  .threats .no{display:none}
  .poster__head{grid-template-columns:1fr;justify-items:center;text-align:center}
  .poster__head .hand{display:none}
  .poster__cta{justify-content:center}
  .poster__foot{grid-template-columns:1fr}
  .poster__foot .hand{justify-self:center}
  .props{grid-template-columns:repeat(2,1fr);gap:18px 0}
  .props li:nth-child(3)::before{display:none}
}
@media (max-width:560px){
  .core__people .gr{display:none}
  .props{grid-template-columns:1fr}
  .props li+li::before{display:none}
  .threats img{--iw:110px}
}

/* ============================================================
   Auth split (signin.html)
   ============================================================ */
.auth{
  min-height:100vh;display:grid;grid-template-columns:1fr 1fr;
  gap:40px;padding:34px 40px 30px;
  background:
    radial-gradient(760px 620px at 34% 44%,rgba(229,35,44,.05),transparent 70%),
    #fdfdfe;
}
.auth__left{position:relative;max-width:640px;justify-self:end;width:100%;
  display:flex;flex-direction:column}
.auth__rule{width:38px;height:5px;border-radius:3px;background:var(--red);margin:36px 0 18px}
.auth h1{font-size:clamp(38px,4.4vw,54px);line-height:1.07;font-weight:800;letter-spacing:-.028em}
.auth h1 em{font-style:normal;color:var(--red)}
.auth__kicker{margin-top:16px;font-size:24px;font-weight:700;letter-spacing:-.01em}
.auth__blurb{margin-top:14px;font-size:17px;line-height:1.5;color:var(--muted);max-width:520px}
.auth__ticks{margin-top:24px}

.orbit{position:relative;margin:24px 0 8px;height:362px}
.orbit__glow{position:absolute;left:50%;top:50%;translate:-50% -50%;width:min(560px,100%);height:360px;
  background:radial-gradient(closest-side,rgba(229,35,44,.10),transparent 72%)}
/* No blend. `multiply` was here for the old artwork, which carried a white
   box that had to be knocked out; the emblem is now a real transparent PNG,
   and multiplying it tinted the white "1M" with the pink backdrop behind it. */
.orbit__mark{position:absolute;left:50%;top:50%;translate:-50% -50%;width:288px;height:auto}
.chip{
  position:absolute;display:grid;justify-items:center;gap:3px;
  padding:11px 15px 9px;border-radius:14px;background:#fff;
  box-shadow:0 2px 6px rgba(15,31,61,.06),0 10px 26px rgba(15,31,61,.09);
}
.chip img{height:52px;width:auto}
.chip b{font-size:13px;font-weight:800;color:var(--ink)}
.chip--bots{left:11%;top:0}
.chip--proxies{right:8%;top:1%}
.chip--fake{left:0;top:36%}
.chip--dc{right:0;top:36%}
.chip--geo{left:8%;bottom:0}
.chip--click{right:8%;bottom:1%}

.trio{
  display:grid;grid-template-columns:repeat(3,1fr);
  background:var(--red-tint);border-radius:var(--r-lg);padding:22px 10px;margin-top:22px;
}
.trio li{display:grid;justify-items:center;text-align:center;gap:4px;padding:0 12px;position:relative}
.trio li+li::before{content:"";position:absolute;left:0;top:50%;translate:0 -50%;width:1px;height:66px;background:#f6cfd4}
.trio b{font-size:14.5px;font-weight:800;letter-spacing:.03em;text-transform:uppercase;color:var(--ink);line-height:1.25}
.trio span{font-size:15px;color:var(--muted)}
.trio .ic{color:var(--red);margin-bottom:4px}
.auth__hand{width:172px;margin-top:auto;padding-top:28px}

.auth__right{justify-self:start;width:100%;max-width:640px;padding-top:74px}
.panel{
  background:#fff;border-radius:var(--r-lg);box-shadow:var(--shadow-lg);
  padding:64px 52px 60px;min-height:calc(100% - 74px);
}
.panel__mark{display:grid;justify-items:center}
.panel h2{margin-top:30px;text-align:center;font-size:42px;font-weight:800;letter-spacing:-.02em}
.panel__sub{margin-top:8px;text-align:center;font-size:17px;color:var(--muted)}
.panel form{margin-top:34px;display:grid;gap:16px}
.panel__row{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-top:6px}
.panel .btn--lg{margin-top:14px;height:62px}
.panel .note{margin-top:34px}

@media (max-width:1040px){
  .auth{grid-template-columns:1fr;padding:28px 22px}
  .auth__left,.auth__right{justify-self:stretch;max-width:none}
  .panel{padding:34px 24px 40px}
  .panel h2{font-size:34px}
  .orbit{height:290px}
  .orbit__mark{width:200px}
  .chip img{height:38px}
}
@media (max-width:560px){
  .chip{padding:6px 8px;border-radius:11px}
  .chip img{height:30px}
  .chip b{font-size:11px}
  .orbit{height:250px}
  .orbit__mark{width:164px}
  .trio{grid-template-columns:1fr;gap:20px}
  .trio li+li::before{display:none}
}

/* ============================================================
   Password reset flow (forgot-password.html)
   ============================================================ */
.flow{
  min-height:100vh;display:grid;place-items:center;padding:48px 22px;
  background:
    radial-gradient(620px 460px at 50% 8%,rgba(229,35,44,.055),transparent 70%),
    #f7f9fc;
}
.flow__card{
  width:min(100%,468px);background:#fff;border-radius:var(--r-lg);
  box-shadow:var(--shadow);padding:34px 36px 30px;text-align:center;
}
.flow__mark{display:grid;justify-items:center;margin-bottom:22px}
.blob{
  width:76px;height:76px;margin:0 auto;border-radius:50%;display:grid;place-items:center;
  background:var(--red-tint);color:var(--red);
}
.blob--green{background:var(--green-tint);color:#fff}
.blob--green .disc{width:64px;height:64px;border-radius:50%;background:var(--green);display:grid;place-items:center}
.flow h2{margin-top:16px;font-size:27px;font-weight:800;letter-spacing:-.015em}
.flow__sub{margin-top:8px;font-size:15.5px;line-height:1.45;color:var(--muted)}
.flow__sub b{color:var(--ink);font-weight:700}
.flow form{margin-top:24px;text-align:left;display:grid;gap:8px}
.flow label{font-size:14.5px;font-weight:700;color:var(--ink)}
.flow .btn{margin-top:10px}
.flow__back{
  margin-top:18px;padding-top:16px;border-top:1px solid var(--line);
  display:flex;align-items:center;justify-content:center;gap:8px;font-size:15px;
}
.flow__safe{
  margin-top:26px;display:flex;align-items:center;gap:12px;text-align:left;
  font-size:13.5px;line-height:1.35;color:var(--muted);
}
.flow__safe b{display:block;color:var(--ink);font-weight:700;font-size:14px}
.flow__safe svg{flex:none;color:var(--red)}

.otp{display:flex;justify-content:center;gap:10px;margin-top:24px}
.otp input{
  width:52px;height:56px;text-align:center;font-size:24px;font-weight:700;
  border:1.5px solid var(--line);border-radius:var(--r-sm);background:#fff;
  outline:none;caret-color:var(--red);
  transition:border-color .15s ease,box-shadow .15s ease;
}
.otp input:hover{border-color:#cfd9e6}
.otp input:focus{border-color:var(--red);box-shadow:0 0 0 4px rgba(229,35,44,.10)}
.otp--bad input{border-color:#f0a4a9}
.resend{margin-top:22px;font-size:15px;color:var(--ink-2)}
.resend .link{display:inline-block;margin-top:2px}
.resend .t{font-variant-numeric:tabular-nums}

.rules{margin:12px 0 4px;display:grid;gap:6px}
.rules li{display:flex;align-items:center;gap:8px;font-size:14px;color:var(--muted);
  transition:color .15s ease}
.rules li .dot{flex:none;color:#c6d0dd;display:grid;place-items:center;transition:color .15s ease}
.rules li.ok{color:var(--ink-2)}
.rules li.ok .dot{color:var(--green)}
.rules__title{font-size:14px;color:var(--muted);margin-top:12px}

.err{
  margin-top:14px;font-size:14px;font-weight:600;color:var(--red);
}
.statebar{
  position:fixed;right:18px;bottom:18px;z-index:40;
  display:flex;flex-wrap:wrap;justify-content:flex-end;gap:6px;max-width:330px;
  padding:10px;border-radius:14px;background:rgba(255,255,255,.94);
  border:1px solid var(--line);box-shadow:var(--shadow);
  backdrop-filter:blur(6px);
}
.statebar b{width:100%;font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--faint)}
.statebar button{
  border:1px solid var(--line);background:#fff;border-radius:999px;
  padding:5px 11px;font-size:12px;font-weight:600;color:var(--muted);cursor:pointer;
  transition:all .15s ease;
}
.statebar button:hover{border-color:#cfd9e6;color:var(--ink)}
.statebar button[aria-current="true"]{background:var(--red);border-color:var(--red);color:#fff}


/* ============================================================
   Early-bird landing (early-bird.html)

   Geometry follows the 1024-wide mockup: a 934px page container
   (45px gutters) for header / hero / perks / steps / footer, and a
   slightly wider 954px one for the threat grid, which is how the
   source lays them out. Tokens live on `body.eb` so the other
   public pages keep their own red and rhythm.
   ============================================================ */
.eb{
  --red:#f3151c;            /* the early-bird art runs a hotter red than the app */
  --red-600:#e00e16;
  --red-700:#c20a12;
  --gut:45px;               /* page gutter */
  --wash:#feeded;           /* pink pill / perks band */
  --ink:#0b1a38;
  --line:#dbe2ea;
}
.eb .wrap{width:min(100% - var(--gut)*2,1240px);margin-inline:auto}

/* ---------- header ---------- */
.eb-top{
  display:flex;align-items:flex-start;justify-content:space-between;gap:24px;
  padding-top:13px;
}
.eb-top .wordmark__name{letter-spacing:-.012em}
.eb-top .wordmark__tag{font-size:11px;letter-spacing:.119em}
.eb-top .btn{padding:0 9px;height:34px;font-size:12.5px;gap:6px;border-radius:9px;letter-spacing:.004em}

/* ---------- hero ---------- */
.eb-hero{
  position:relative;
  background:
    radial-gradient(470px 205px at 38% -62px,#dfedfd,rgba(223,237,253,0) 78%),
    radial-gradient(520px 430px at 98% 16%,#fee9ea,rgba(254,233,234,0) 88%),
    radial-gradient(1040px 250px at 50% 108%,#fef3f3,rgba(254,243,243,0) 82%),
    #fefefe;
  padding-bottom:11px;
}
.eb-hero__grid{
  display:grid;grid-template-columns:minmax(0,1fr) 342px;
  margin-top:39px;align-items:start;
}
.eb-hero__left{position:relative;min-height:589px}
.eb-hero__copy{max-width:min(100%,580px)}

.eb-hero .eyebrow{
  height:27px;padding:0 7px 0 2px;gap:10px;border-radius:999px;
  background:var(--wash);font-size:11px;letter-spacing:.134em;
}
.eb-hero .eyebrow img{height:27px;width:auto;mix-blend-mode:multiply}

.eb-hero h1{margin-top:0;font-weight:800;line-height:1}
.eb-hero h1 span{display:block}
.eb-hero h1 .l1{font-size:41px;letter-spacing:-.030em}
.eb-hero h1 .l2{margin-top:-5px;font-size:54px;letter-spacing:-.023em}
.eb-hero h1 em{font-style:normal;color:var(--red)}

.eb-hero__kicker{margin-top:5px;font-size:19px;font-weight:500;letter-spacing:-.022em;line-height:1.2}
.eb-hero__blurb{
  margin-top:13px;font-size:13px;line-height:20.6px;color:#434c63;max-width:292px;
}
.eb-hero .ticks{margin-top:37px;max-width:221px;gap:20px}
.eb-hero .ticks li{gap:10px;font-size:13.5px;line-height:1.24;letter-spacing:-.026em;color:#263449}
.eb-hero .ticks .tick{width:24px;height:24px;margin-top:-1px}

/* ---------- threat wheel ---------- */
.wheel{position:absolute;left:242px;top:101px;width:370px;height:489px}
.wheel__spokes{position:absolute;inset:0;width:100%;height:100%;pointer-events:none}
.wheel__spokes path{fill:none;stroke:var(--red);stroke-width:2;stroke-linecap:round;
  stroke-dasharray:0 8.5;vector-effect:non-scaling-stroke;opacity:.9}
.wheel__spokes circle{fill:var(--red);stroke:none;opacity:.9}
.wheel__orb{position:absolute;left:12px;top:91px;width:340px;mix-blend-mode:multiply}
.wheel__spark{position:absolute;left:274px;top:189px;width:25px;mix-blend-mode:multiply}
.wheel__claim{
  position:absolute;left:0;right:0;top:472px;text-align:center;
  font-size:15.5px;font-weight:800;letter-spacing:.03em;color:#2c3a55;
}
.node{
  /* neither z-index nor translate here: either would open a stacking context and
     isolate the icons' multiply blend from the emblem's halo behind them, so the
     nodes are placed by their left edge instead of their centre. */
  position:absolute;display:flex;flex-direction:column;align-items:center;gap:var(--g,3px);
  text-align:center;
}
.node img{height:var(--h,60px);width:auto;mix-blend-mode:multiply}
.node b{font-size:13px;font-weight:700;color:var(--ink);line-height:1.22;letter-spacing:.005em}
.node--flip{flex-direction:column-reverse}
.node--bots   {left:142px;top:-3px;width:76px; --h:78px;--g:5px}
.node--spiders{left:44px; top:85px; width:78px; --h:57px;--g:2px}
.node--fake   {left:234px;top:74px; width:84px; --h:60px;--g:11px}
.node--res    {left:-8px; top:193px;width:88px; --h:57px;--g:2px}
.node--dc     {left:290px;top:192px;width:88px; --h:60px;--g:2px}
.node--click  {left:25px; top:324px;width:78px; --h:62px;--g:12px}
.node--domain {left:117px;top:379px;width:114px;--h:62px;--g:2px}
.node--geo    {left:249px;top:329px;width:90px; --h:64px;--g:10px}

/* ---------- application form ---------- */
.applybox{
  margin-top:-50px;margin-left:24px;margin-right:-24px;
  background:linear-gradient(104deg,#fefcfd 0%,#fff6f6 100%);
  border:1px solid #fbe4e6;border-radius:18px;
  box-shadow:0 2px 6px rgba(15,31,61,.03),0 12px 26px rgba(15,31,61,.05);
  padding:23px 18px 16px;
}
.applybox__tag{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;margin:0 auto;
  height:33px;padding:0 19px;border-radius:999px;background:#fee6e7;
  font-size:12.6px;font-weight:800;letter-spacing:.07em;text-transform:uppercase;color:var(--red);
}
.applybox__head{display:grid;justify-items:center;text-align:center}
.applybox h2{margin-top:8px;font-size:28px;font-weight:800;letter-spacing:-.028em;line-height:1}
.applybox__sub{margin-top:8px;font-size:12.5px;line-height:18px;color:#5b6780;max-width:268px}
.applybox form{margin-top:10px;display:grid;gap:6.5px}
.applybox .field{height:35px;border-radius:8px;border-width:1px;padding:0 12px;gap:10px}
.applybox .field__ic svg{width:17px;height:17px}
.applybox .field input,.applybox .field select{font-size:12px;letter-spacing:-.01em}
.applybox .field input::placeholder{color:#7f899c}
.applybox .field select{color:#3d4a63}
.applybox .btn{height:42px;margin-top:11px;font-size:15px;border-radius:9px}
.applybox__fine{
  margin-top:13px;display:flex;align-items:center;justify-content:center;gap:7px;
  font-size:10px;color:#5b6780;
}
.applybox__fine svg{width:13px;height:13px}

/* ---------- perks strip ---------- */
.perks{background:var(--wash);border-top:1px solid #fbdede;border-bottom:1px solid #fbdede}
.perks ul{display:flex;justify-content:space-between;padding:15px 7px 18px}
.perks li{display:flex;align-items:center;gap:15px;position:relative}
.perks li+li::before{
  content:"";position:absolute;left:-39px;top:50%;translate:0 -50%;
  width:1px;height:42px;background:#f3cfd2;
}
.perks img{height:40px;width:auto;flex:none;mix-blend-mode:multiply}
.perks b{display:block;font-size:14px;font-weight:700;color:var(--ink);line-height:1.35;
  letter-spacing:-.03em;white-space:nowrap}
.perks span{display:block;font-size:14px;font-weight:700;color:var(--ink);line-height:1.35;
  letter-spacing:-.03em;white-space:nowrap}

/* ---------- section shell ---------- */
.eb .sec{padding:0;text-align:center}
.eb .container{width:min(100% - 70px,1180px);margin-inline:auto}
.eb .sec .eyebrow{font-size:13px;letter-spacing:.073em}
.eb .sec h2{margin-top:2px;font-size:27px;font-weight:800;letter-spacing:-.037em;line-height:1.07}
.eb .sec__sub{margin-top:0;font-size:15px;letter-spacing:-.0075em;color:#5b6780}
.eb .sec--threats{padding-top:21px}
.eb .sec--steps{padding-top:17px}
.sec--steps .container{width:min(100% - var(--gut)*2,1180px)}

/* ---------- threat cards ---------- */
.threatgrid{display:grid;grid-template-columns:repeat(7,1fr);gap:9px;margin-top:11px}
.threatgrid--2{
  grid-template-columns:repeat(2,218px);gap:100px;justify-content:center;margin-top:8px;
}
.tcard{
  display:flex;flex-direction:column;align-items:center;text-align:center;
  padding:11px 5px 10px;background:#fff;border:1px solid #e9eef5;
  border-radius:12px;box-shadow:0 1px 2px rgba(15,31,61,.04);
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}
.tcard:hover{transform:translateY(-3px);box-shadow:var(--shadow);border-color:#d5deea}
.tcard img{height:62px;width:auto;mix-blend-mode:multiply}
.tcard b{margin-top:10px;font-size:13px;font-weight:700;color:var(--ink);line-height:1;
  letter-spacing:-.015em;white-space:nowrap}
.tcard span{margin-top:5px;font-size:12px;line-height:15px;color:#5b6780;letter-spacing:-.014em}
.threatgrid--2 .tcard span{max-width:134px}
.threatgrid--2 .tcard img{height:55px}
.threatgrid--2 .tcard{padding-bottom:16px}

/* ---------- steps ---------- */
/* the mockup spaces the three steps by their content, not in equal columns:
   each chevron sits midway between one step's text and the next step's circle. */
.steps{
  display:flex;align-items:flex-start;gap:41px;
  margin-top:18px;text-align:left;padding-left:5px;
}
.step{display:flex;align-items:flex-start;gap:20px}
.step .n{
  flex:none;width:48px;height:48px;border-radius:50%;background:var(--red);color:#fff;
  display:grid;place-items:center;font-size:21px;font-weight:800;
}
.step b{display:block;font-size:15px;font-weight:800;color:var(--ink);letter-spacing:-.021em;
  line-height:1.1;margin-top:8px}
.step span{display:block;font-size:14px;line-height:18.5px;color:#4d5a75;margin-top:2px;
  letter-spacing:-.006em;max-width:166px}
.steps .chev{color:#101f3e;margin-top:21px;width:11px;height:18px}

/* ---------- closing CTA ---------- */
.eb-foot{
  position:relative;margin-top:15px;background:#09162a;color:#fff;
  padding-top:52px;padding-bottom:26px;
}
.eb-foot::before{             /* the white section's underside bulges into the band */
  content:"";position:absolute;left:0;right:0;top:-1px;height:43px;background:#fff;
  border-radius:0 0 50% 50%/0 0 43px 43px;
}
.eb-foot__in{
  position:relative;display:flex;align-items:center;justify-content:space-between;gap:28px;
}
.eb-foot__l{display:flex;align-items:center;gap:18px}
.eb-foot img{height:66px;width:78px;margin-left:-5px}
.eb-foot p{font-size:20px;font-weight:500;letter-spacing:0}
.eb-foot .btn--lg{height:53px;padding:0 38px;font-size:17.1px;font-weight:600;letter-spacing:0;
  border-radius:9px;gap:12px;margin-top:6px}

/* ---------- responsive ---------- */
@media (max-width:1023px){
  .eb-hero__grid{grid-template-columns:1fr;gap:34px;margin-top:22px}
  .eb-hero__left{min-height:0}
  .eb-hero__copy{max-width:none}
  .eb-hero__blurb,.eb-hero .ticks{max-width:520px}
  .wheel{position:relative;left:auto;top:auto;margin:26px auto 0;width:min(100%,370px)}
  .applybox{margin:0;width:min(100%,380px);margin-inline:auto}
  .eb .container{width:min(100% - 40px,1180px)}
  .threatgrid{grid-template-columns:repeat(4,1fr);gap:12px}
  .tcard b{white-space:normal}
  .tcard span,.threatgrid--2 .tcard span{max-width:none}
  .threatgrid--2{grid-template-columns:repeat(2,218px);gap:12px}
}
@media (max-width:820px){
  .perks ul{display:grid;grid-template-columns:repeat(2,1fr);gap:20px 0;justify-items:center}
  .perks li+li::before{display:none}
  .steps{flex-direction:column;gap:22px;padding-left:0}
  .steps .chev{display:none}
}
@media (max-width:720px){
  .eb-top{flex-direction:column;align-items:flex-start;gap:16px}
  .threatgrid{grid-template-columns:repeat(2,1fr)}
  .threatgrid--2{grid-template-columns:repeat(2,1fr)}
  .wheel{height:auto;display:grid;grid-template-columns:repeat(2,1fr);gap:14px;
    justify-items:center;padding-top:8px}
  .wheel__claim,.wheel__spokes,.wheel__spark{display:none}
  .wheel__orb{position:static;grid-column:1/-1;width:200px}
  .node{position:static;inset:auto;width:auto}
  .eb-hero h1 .l1{font-size:clamp(26px,7vw,41px)}
  .eb-hero h1 .l2{font-size:clamp(34px,9.5vw,54px)}
  .perks ul{grid-template-columns:1fr}
  .eb-foot__in{flex-direction:column;text-align:center}
  .eb-foot p{font-size:clamp(18px,5vw,20px)}
}

/* ============================================================
   Early-bird application (early-bird-apply.html)

   Matched to the 1226-wide "Early Bird Discount Page 2" mockup:
   a 52px left gutter, a 39px right one, and a fixed 552px panel.
   Scoped to `body.ap` so signin/forgot-password keep their own
   auth-split rules, which this page deliberately does not reuse.
   ============================================================ */
.ap{
  --red:#f4161c;
  --red-600:#e00e16;
  --red-700:#c20a12;
  --ink:#0b1a38;
  --wash:#fdebec;          /* pink tiles / strip / pill */
  --line:#d7dee9;
}
.ap-grid{
  display:grid;grid-template-columns:minmax(0,1fr) 552px;column-gap:56px;
  max-width:1226px;margin-inline:auto;padding:0 39px 0 52px;align-items:start;
  background:
    radial-gradient(215px 245px at 600px 500px,#fdeaec,rgba(253,234,236,0) 78%),
    radial-gradient(235px 205px at 300px 935px,#fdeced,rgba(253,236,237,0) 76%),
    radial-gradient(330px 300px at 0 690px,#f6fafe,rgba(246,250,254,0) 82%),
    #fff;
}

/* ---------- marketing side ---------- */
.ap-left{position:relative;padding-top:12px;padding-bottom:21px}
.ap-mark{--wm:51px}
.ap-mark .wordmark__name{letter-spacing:-.022em}
.ap-mark .wordmark__tag{font-size:13px;letter-spacing:.166em}

.ap-eyebrow{
  display:flex;align-items:center;gap:13px;margin-top:53px;
  font-size:16px;font-weight:800;letter-spacing:0;text-transform:uppercase;color:var(--red);
}
.ap-eyebrow i{flex:none;width:39px;height:6px;border-radius:3px;background:var(--red)}

.ap-left h1{margin-top:6px;font-size:68px;line-height:60px;font-weight:800}
.ap-left h1 span{display:block}
.ap-left h1 .l1{letter-spacing:-.0305em}
.ap-left h1 .l2{letter-spacing:-.0565em}
.ap-kicker{margin-top:15px;font-size:27px;font-weight:800;letter-spacing:-.036em;line-height:1}
.ap-blurb{margin-top:17px;font-size:20px;line-height:28.3px;letter-spacing:-.007em;
  color:#4c5870;max-width:516px}

/* ---------- four feature rows ---------- */
.ap-feats{display:grid;gap:9.3px;margin-top:10px;padding-left:6px}
.ap-feats li{display:flex;align-items:flex-start;gap:28px;min-height:63px}
.ap-feats li>span+span{padding-top:13px}
.ap-feats__ic{
  flex:none;display:grid;place-items:center;width:63px;height:63px;border-radius:50%;
  background:var(--wash);color:var(--red);
}
.ap-feats__ic svg{width:33px;height:33px}
.ap-feats b{display:block;font-size:17px;font-weight:800;letter-spacing:-.025em;line-height:1;color:var(--ink)}
.ap-feats span span{display:block;margin-top:7px;font-size:16px;line-height:1;letter-spacing:-.03em;color:#4c5870}

/* ---------- shield + threat chips ---------- */
.ap-orbit{position:relative;height:316px;margin-top:24px}
.ap-orbit__glow{
  position:absolute;left:96px;top:6px;width:340px;height:300px;
  background:radial-gradient(closest-side,rgba(246,90,95,.16),rgba(246,90,95,0) 72%);
}
.ap-orbit__mark{position:absolute;left:148px;top:14px;width:246px;height:auto}
.ap-chip{
  position:absolute;display:grid;justify-items:center;align-content:start;gap:5px;
  width:var(--w);height:var(--ht);padding-top:var(--pt,10px);
  background:#fff;border-radius:16px;
  box-shadow:0 2px 5px rgba(15,31,61,.05),0 10px 26px rgba(15,31,61,.07);
}
.ap-chip img{height:var(--h,48px);width:auto;mix-blend-mode:multiply}
.ap-chip b{font-size:14px;font-weight:800;letter-spacing:-.02em;line-height:1;color:var(--ink);white-space:nowrap}
.ap-chip--bots   {left:68px; top:2px;   --w:104px;--ht:80px;--h:48px;--pt:8px}
.ap-chip--proxies{left:347px;top:2px;   --w:103px;--ht:80px;--h:39px;--pt:14px}
.ap-chip--fake   {left:13px; top:96px;  --w:140px;--ht:96px;--h:45px;--pt:22px}
.ap-chip--dc     {left:388px;top:96px;  --w:120px;--ht:96px;--h:39px;--pt:24px}
.ap-chip--geo    {left:60px; top:215px; --w:134px;--ht:95px;--h:61px;--pt:0}
.ap-chip--click  {left:327px;top:217px; --w:107px;--ht:93px;--h:62px;--pt:8px}

/* ---------- two-up stat strip ---------- */
.ap-duo{
  display:grid;grid-template-columns:274px minmax(0,1fr);align-items:center;
  margin:20px 0 0 -4px;width:533px;height:80px;
  border-radius:18px;background:var(--wash);
}
.ap-duo li{display:flex;align-items:center;gap:27px;padding-left:27px;position:relative}
.ap-duo li>span{position:relative;top:-1px}
.ap-duo li+li::before{
  content:"";position:absolute;left:-14px;top:50%;translate:0 -50%;
  width:1px;height:44px;background:#f6ccd0;
}
.ap-duo .ic{flex:none;width:34px;height:34px;color:var(--red)}
.ap-duo b{display:block;font-size:13.5px;font-weight:800;line-height:1;letter-spacing:-.011em;
  text-transform:uppercase;color:var(--ink)}
.ap-duo span span{display:block;margin-top:6.5px;line-height:1;font-size:16px;letter-spacing:-.051em;color:#4c5870}
.ap-hand{width:142px;margin:16px 0 0 10px;mix-blend-mode:multiply}

/* ---------- application panel ---------- */
.ap-top{
  display:flex;align-items:center;justify-content:flex-end;gap:20px;
  padding-top:16px;font-size:15px;letter-spacing:-.016em;color:#41506c;
}
.ap-login{
  height:47px;margin-right:3px;padding:0 19px;gap:11px;border-radius:10px;
  border:1.6px solid #22314f;font-size:19px;font-weight:700;letter-spacing:.06em;color:var(--ink);
}
.ap-login svg{width:23px;height:23px}
.ap-login:hover{border-color:#22314f;background:#f6f8fc;box-shadow:none}

.ap-panel{
  margin-top:23px;background:#fff;border-radius:22px;
  box-shadow:0 3px 10px rgba(15,31,61,.05),0 18px 46px rgba(15,31,61,.08);
  padding:40px 29px 43px;
}
.ap-tag{
  display:flex;align-items:center;justify-content:center;gap:8px;width:245px;height:40px;
  margin:0 auto;border-radius:999px;background:#fee7e9;
  font-size:16px;font-weight:800;letter-spacing:.012em;text-transform:uppercase;color:var(--red);
}
.ap-tag img{height:26px;width:auto;mix-blend-mode:multiply}
.ap-panel h2{margin-top:16px;text-align:center;font-size:40px;font-weight:800;
  letter-spacing:-.04em;line-height:1}
.ap-panel__sub{
  margin-top:15px;text-align:center;font-size:20px;line-height:27px;letter-spacing:-.028em;
  color:#41506c;max-width:412px;margin-inline:auto;
}
.ap-panel form{margin-top:16px;display:grid;gap:9.75px}
.ap-panel .field{
  height:48px;padding:0 26px;gap:10px;border-radius:11px;border-width:1px;border-color:var(--line);
}
.ap-panel .field__ic svg{width:21px;height:21px}
.ap-panel .field input,.ap-panel .field select,.ap-panel .field textarea{
  font-size:18px;letter-spacing:-.022em;color:var(--ink);
}
.ap-panel .field input::placeholder,.ap-panel .field textarea::placeholder{color:#59688a}
.ap-panel .field select{appearance:none;cursor:pointer;color:#59688a;flex:1;min-width:0;border:0;
  background:none;outline:none;height:100%}
.field__chev{flex:none;width:21px;height:21px;color:#59688a}
.ap-panel .field--tall{height:86px;align-items:flex-start;padding-top:9px}
.field--tall .field__ic{margin-top:2px}
.field--tall__in{flex:1;min-width:0;display:block}
/* width:100% because an <input> defaults to its ~20-character size, not to
   its container: at 198px inside a 409px row the placeholder clipped to
   "Additional Details (Optior". The mockup shows it whole. */
.ap-panel .field--tall input{height:31px;line-height:31px;width:100%}
.ap-panel .field--tall small{
  display:block;margin-top:5px;font-size:15px;line-height:22px;letter-spacing:-.012em;
  color:#59688a;
}
.ap-check{align-items:flex-start;gap:14px;margin-top:4px;font-size:16px;line-height:23px;
  letter-spacing:-.011em;color:var(--ink)}
.ap-check span{max-width:392px}
.ap-check input{width:26px;height:26px;border-radius:7px;border-width:1.6px;border-color:#b9c4d6;
  margin-top:1px}
.ap-check .link{font-weight:400}
.ap-submit{height:65px;margin-top:16px;font-size:21px;font-weight:600;letter-spacing:-.005em;
  border-radius:12px;gap:16px}
.ap-submit .arr{width:26px;height:26px}
.ap-fine{
  margin-top:17px;display:flex;align-items:center;justify-content:center;gap:9px;
  font-size:15px;letter-spacing:-.02em;color:#41506c;
}
.ap-fine svg{flex:none;width:19px;height:19px;color:var(--ink)}

/* ---------- responsive ---------- */
@media (max-width:1100px){
  .ap-grid{grid-template-columns:minmax(0,1fr);column-gap:0;row-gap:34px;padding:0 24px;max-width:720px}
  .ap-left{padding-bottom:0}
  .ap-left h1{font-size:clamp(38px,7vw,68px);line-height:1.06;letter-spacing:-.03em}
  .ap-blurb,.ap-duo{max-width:none}
  .ap-duo{width:auto;margin-left:0}
  .ap-top{justify-content:flex-start;padding-top:0}
  .ap-panel{margin-top:0}
}
@media (max-width:820px){
  .ap-orbit{height:auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;
    justify-items:center;align-items:center}
  .ap-chip img{max-width:100%}
  .ap-orbit__glow{display:none}
  .ap-orbit__mark{position:static;grid-column:1/-1;width:180px}
  .ap-chip{position:static;width:100%;justify-items:center}
  .ap-chip b{white-space:normal;text-align:center}
  .ap-duo{grid-template-columns:minmax(0,1fr);height:auto;padding:18px 0;row-gap:16px}
  .ap-duo li+li::before{display:none}
  .ap-panel{padding:28px 20px 32px}
  .ap-panel h2{font-size:clamp(28px,7vw,40px)}
  .ap-tag{width:auto;max-width:100%;padding:0 18px}
}
@media (max-width:520px){
  .ap-feats li{gap:16px}
  .ap-top{flex-wrap:wrap;gap:12px}
}

/* ---------- application modal (early-bird) ---------- */
.ap-modal{
  position:fixed;inset:0;z-index:60;display:grid;place-items:center;padding:20px;
  background:rgba(11,26,56,.46);backdrop-filter:blur(2px);overflow:auto;
}
.ap-modal[hidden]{display:none}
.ap-modal__sheet{
  width:min(100%,420px);background:#fff;border-radius:18px;padding:26px 26px 22px;
  text-align:center;box-shadow:0 24px 70px rgba(15,31,61,.28);
}
.ap-modal__blob{
  width:62px;height:62px;border-radius:50%;display:grid;place-items:center;margin:0 auto 14px;
  background:var(--red-tint,#fdeaea);color:var(--red);
}
.ap-modal__blob svg{width:30px;height:30px}
.ap-modal__blob--ok{background:#12a150}
.ap-modal h3{font-size:22px;font-weight:800;letter-spacing:-.02em;color:var(--ink)}
.ap-modal__sub{margin-top:8px;font-size:15px;line-height:1.5;color:var(--muted)}
.ap-modal__sub b{color:var(--ink);font-weight:700}
.ap-modal__body{margin-top:12px;font-size:14px;line-height:1.55;color:var(--muted)}
.ap-modal .otp{margin-top:20px}
.ap-modal .otp input{width:46px;height:52px;font-size:21px}
.ap-modal .btn{margin-top:18px}
.ap-modal__close{display:block;margin:14px auto 0;font-size:13.5px;color:var(--muted)}
@media (max-width:480px){
  .ap-modal__sheet{padding:22px 16px 18px}
  .ap-modal .otp{gap:6px}
  .ap-modal .otp input{width:40px;height:48px;font-size:19px}
}
