/* ===========================================================
   Optivix AI · funnel design system
   Blue on white, matched to the Optivix ad creatives.
   Layout and motion idiom lifted from contractorai.co/landing-page.
   =========================================================== */

:root{
  /* brand blues, sampled from the ad creatives */
  --blue-deep:#001190;
  --blue:#0021C9;
  --blue-bright:#0038ED;
  --blue-lite:#6E9BFF;
  --blue-pale:#E9F0FF;

  --ink:#080E28;
  --text:#141A3C;
  --mute:#5B6689;
  --faint:#8A93AE;

  --white:#ffffff;
  --wash:#F4F7FF;
  --wash-2:#EDF2FF;

  --line:rgba(0,33,201,.14);
  --line-2:rgba(10,16,48,.09);

  --red:#E0202F;
  --green:#12A150;
  --amber:#F0A000;

  --sans:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  --display:'Anton','Arial Narrow',Impact,var(--sans);

  --r-sm:8px;
  --r-md:14px;
  --r-lg:20px;
  --r-xl:28px;

  --sh-sm:0 2px 10px rgba(8,14,40,.06);
  --sh-md:0 10px 34px rgba(8,14,40,.09);
  --sh-lg:0 28px 80px rgba(8,14,40,.14);
  --sh-blue:0 14px 40px rgba(0,33,201,.28);
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; -webkit-tap-highlight-color:transparent; }
html{ scroll-behavior:smooth; background:var(--white); }
body{
  font-family:var(--sans); color:var(--text); background:var(--white);
  -webkit-font-smoothing:antialiased; text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }

/* ---------- page shell ---------- */
.ox-wrap{ max-width:1140px; margin:0 auto; padding:0 22px; }
.ox-wrap-narrow{ max-width:900px; margin:0 auto; padding:0 22px; }
.ox-sec{ padding:84px 0; position:relative; }
.ox-sec-tight{ padding:56px 0; }
.ox-bg-wash{ background:var(--wash); border-top:1px solid var(--line-2); border-bottom:1px solid var(--line-2); }
.ox-bg-blue{
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(0,56,237,.55), transparent 62%),
    radial-gradient(700px 400px at 90% 100%, rgba(0,17,144,.65), transparent 60%),
    var(--blue);
  color:#fff;
}

/* ---------- nav ---------- */
.ox-nav{
  position:sticky; top:0; z-index:60;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:14px 26px;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line-2);
}
.ox-brand{ display:inline-flex; align-items:center; gap:11px; }
.ox-brand .mark{ width:30px; height:30px; color:var(--blue); flex:none; }
.ox-brand .word{
  font-weight:800; font-size:16px; letter-spacing:.16em; color:var(--ink); text-transform:uppercase;
}
.ox-brand .word b{ color:var(--blue); font-weight:800; }
.ox-nav .ox-btn{ font-size:14px; padding:11px 20px; box-shadow:none; }
.ox-nav .ox-btn svg{ display:none; }

/* ---------- buttons ---------- */
.ox-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:11px;
  background:linear-gradient(135deg,var(--blue-deep),var(--blue) 52%,var(--blue-bright));
  color:#fff; font-weight:800; font-size:17px; letter-spacing:.01em;
  padding:17px 32px; border-radius:12px;
  box-shadow:var(--sh-blue);
  transition:transform .16s ease, filter .16s ease, box-shadow .16s ease;
  text-align:center;
}
.ox-btn:hover{ transform:translateY(-2px); filter:brightness(1.07); box-shadow:0 18px 50px rgba(0,33,201,.36); }
.ox-btn:active{ transform:translateY(0); }
.ox-btn svg{ width:18px; height:18px; flex:none; }
.ox-btn-lg{ font-size:19px; padding:20px 40px; border-radius:14px; }
.ox-btn-ghost{
  background:transparent; color:var(--blue); border:1.5px solid var(--line);
  box-shadow:none; font-weight:700;
}
.ox-btn-ghost:hover{ border-color:var(--blue); background:rgba(0,33,201,.05); filter:none; }
.ox-btn-white{ background:#fff; color:var(--blue-deep); box-shadow:0 14px 40px rgba(0,0,0,.22); }
.ox-btn-white:hover{ filter:brightness(1); background:#fff; }

/* ---------- pills, eyebrows, headings ---------- */
.ox-pill{
  display:inline-flex; align-items:center; gap:9px;
  border:1px solid rgba(224,32,47,.4); background:rgba(224,32,47,.07); color:#C81525;
  font-size:12.5px; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  padding:8px 16px; border-radius:999px;
}
.ox-pill .dot{
  width:8px; height:8px; border-radius:50%; background:var(--red);
  box-shadow:0 0 0 0 rgba(224,32,47,.6); animation:ox-pulse 2s infinite;
}
.ox-pill-blue{ border-color:var(--line); background:rgba(0,33,201,.06); color:var(--blue); }
.ox-pill-blue .dot{ background:var(--blue); box-shadow:0 0 0 0 rgba(0,33,201,.6); animation:ox-pulse-blue 2s infinite; }
@keyframes ox-pulse{ 0%{box-shadow:0 0 0 0 rgba(224,32,47,.5);} 70%{box-shadow:0 0 0 9px rgba(224,32,47,0);} 100%{box-shadow:0 0 0 0 rgba(224,32,47,0);} }
@keyframes ox-pulse-blue{ 0%{box-shadow:0 0 0 0 rgba(0,33,201,.5);} 70%{box-shadow:0 0 0 9px rgba(0,33,201,0);} 100%{box-shadow:0 0 0 0 rgba(0,33,201,0);} }

.ox-eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  padding:7px 14px; border:1px solid var(--line); border-radius:999px;
  font-size:11px; font-weight:800; letter-spacing:.18em; text-transform:uppercase;
  color:var(--blue); background:rgba(0,33,201,.05);
}
.ox-eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--blue); box-shadow:0 0 0 4px rgba(0,33,201,.16); }

.ox-h1{
  font-family:var(--display); font-weight:400;
  font-size:clamp(38px,7.4vw,80px); line-height:.98; letter-spacing:.004em;
  text-transform:uppercase; color:var(--ink);
  margin:0 auto 20px; max-width:16ch;
}
.ox-h1 .hl{ color:var(--blue); }
.ox-h1 .nb{ white-space:nowrap; }
.ox-h2{
  font-family:var(--display); font-weight:400;
  font-size:clamp(28px,4.6vw,52px); line-height:1.02; letter-spacing:.004em;
  text-transform:uppercase; color:var(--ink); margin:14px 0 14px; max-width:20ch;
}
.ox-h2 .hl{ color:var(--blue); }
.ox-h3{ font-size:clamp(19px,2.3vw,24px); font-weight:800; letter-spacing:-.015em; color:var(--ink); }
.ox-sub{
  color:var(--mute); font-size:clamp(16px,2vw,19px); line-height:1.58;
  max-width:56ch; margin:0 auto 30px;
}
.ox-sub b{ color:var(--text); font-weight:700; }
.ox-sec-head{ text-align:center; margin-bottom:46px; }
.ox-sec-head .ox-h2, .ox-sec-head .ox-sub{ margin-left:auto; margin-right:auto; }
.ox-rule{
  width:76px; height:4px; border-radius:2px; margin:18px auto 0;
  background:linear-gradient(90deg,var(--blue),var(--blue-bright));
}

/* the ad's signature "FOR INTERIOR DESIGNERS" band */
.ox-band{
  display:flex; align-items:center; justify-content:center; gap:16px;
  margin:0 auto 22px; max-width:760px;
}
.ox-band span{
  font-family:var(--display); font-weight:400; text-transform:uppercase;
  font-size:clamp(15px,2vw,20px); letter-spacing:.1em; color:var(--blue-deep); white-space:nowrap;
}
.ox-band i{ flex:1; height:2px; background:linear-gradient(90deg,transparent,var(--blue)); }
.ox-band i:last-child{ background:linear-gradient(90deg,var(--blue),transparent); }

/* ---------- hero ---------- */
.ox-hero{ text-align:center; padding:52px 22px 40px; max-width:1000px; margin:0 auto; }
.ox-hero-brand{ display:none; align-items:center; justify-content:center; gap:11px; margin-bottom:22px; }
.ox-cta-wrap{ margin-top:32px; }
.ox-cta-note{ color:var(--faint); font-size:14px; margin-top:15px; }
.ox-cta-note b{ color:var(--mute); font-weight:700; }

/* ---------- the booking widget, in the hero ---------- */
.ox-cal-shell{
  background:var(--white); border:1px solid var(--line-2); border-radius:var(--r-xl);
  box-shadow:var(--sh-lg); overflow:hidden; max-width:960px; margin:0 auto;
}
.ox-cal-bar{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:14px 20px; color:#fff;
  background:linear-gradient(100deg,var(--blue-deep),var(--blue) 62%,var(--blue-bright));
  font-size:14px; font-weight:800; letter-spacing:.04em;
}
.ox-cal-bar .l{ display:inline-flex; align-items:center; gap:10px; }
.ox-cal-bar .mark{ width:22px; height:22px; color:#fff; }
.ox-cal-bar .r{ display:inline-flex; align-items:center; gap:8px; font-weight:700; font-size:12.5px; opacity:.92; }
.ox-cal-bar .r svg{ width:15px; height:15px; }
.calendly-inline-widget{ min-width:320px; height:760px; }
@media (max-width:760px){ .calendly-inline-widget{ height:1080px; } }

.ox-assure{
  display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
  max-width:960px; margin:24px auto 0;
}
@media (max-width:760px){ .ox-assure{ grid-template-columns:1fr; } }
.ox-assure > div{
  display:flex; align-items:flex-start; gap:11px; text-align:left;
  background:var(--wash); border:1px solid var(--line-2); border-radius:var(--r-md); padding:16px 17px;
}
.ox-assure svg{ width:20px; height:20px; color:var(--blue); flex:none; margin-top:1px; }
.ox-assure b{ display:block; font-size:14.5px; font-weight:800; color:var(--ink); }
.ox-assure span{ display:block; font-size:13px; color:var(--mute); margin-top:3px; line-height:1.45; }

/* ---------- progress strip ---------- */
.ox-steps{
  display:grid; grid-template-columns:repeat(3,1fr); gap:10px;
  max-width:820px; margin:0 auto;
}
.ox-step{
  position:relative; text-align:left;
  padding:15px 16px 15px 50px;
  border:1px solid var(--line-2); border-radius:var(--r-md); background:var(--white);
}
.ox-step .n{
  position:absolute; left:14px; top:50%; transform:translateY(-50%);
  width:26px; height:26px; border-radius:50%;
  display:grid; place-items:center;
  font-size:12px; font-weight:800; color:var(--faint);
  background:var(--wash-2); border:1px solid var(--line-2);
}
.ox-step .t{ font-size:14px; font-weight:800; color:var(--ink); letter-spacing:-.01em; }
.ox-step .s{ font-size:12px; color:var(--faint); margin-top:2px; }
.ox-step.done{ border-color:rgba(18,161,80,.32); background:rgba(18,161,80,.05); }
.ox-step.done .n{ background:var(--green); border-color:var(--green); color:#fff; }
.ox-step.done .s{ color:var(--green); font-weight:700; }
.ox-step.now{ border-color:var(--blue); background:rgba(0,33,201,.05); box-shadow:0 8px 26px rgba(0,33,201,.12); }
.ox-step.now .n{ background:var(--blue); border-color:var(--blue); color:#fff; }
.ox-step.now .s{ color:var(--blue); font-weight:700; }

/* ---------- reveal motion ---------- */
[data-rv]{ opacity:0; transform:translateY(22px); transition:opacity .75s ease, transform .75s cubic-bezier(.2,.8,.2,1); }
[data-rv].in{ opacity:1; transform:none; }
[data-rv="2"]{ transition-delay:.09s; }
[data-rv="3"]{ transition-delay:.18s; }
[data-rv="4"]{ transition-delay:.27s; }
[data-rv="5"]{ transition-delay:.36s; }

/* ---------- the four step flow ---------- */
.ox-flow{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; align-items:stretch; }
.ox-node{
  position:relative; background:var(--white);
  border:1px solid var(--line-2); border-radius:var(--r-lg);
  padding:26px 22px 22px; box-shadow:var(--sh-sm);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ox-node:hover{ transform:translateY(-4px); border-color:var(--line); box-shadow:var(--sh-md); }
.ox-node .nk{
  font-family:var(--display); font-size:13px; letter-spacing:.14em; color:var(--blue);
  background:var(--blue-pale); border-radius:6px; padding:4px 8px;
  display:block; width:max-content; margin-bottom:16px;
}
.ox-node .nico{ display:block; width:34px; height:34px; color:var(--blue); margin-bottom:14px; }
.ox-node .nt{ font-size:19px; font-weight:800; letter-spacing:-.02em; color:var(--ink); margin-bottom:8px; }
.ox-node .nd{ font-size:14.5px; line-height:1.55; color:var(--mute); }
.ox-node .tick{
  display:inline-flex; align-items:center; gap:6px; margin-top:16px;
  font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
  color:var(--green); background:rgba(18,161,80,.09); border:1px solid rgba(18,161,80,.24);
  padding:5px 10px; border-radius:999px;
}
.ox-node .tick svg{ width:12px; height:12px; }
.ox-node::after{
  content:''; position:absolute; right:-11px; top:50%; z-index:2;
  width:16px; height:16px; transform:translateY(-50%) rotate(-45deg);
  border-right:2.5px solid var(--blue-lite); border-bottom:2.5px solid var(--blue-lite);
  border-radius:2px;
}
.ox-node:last-child::after{ display:none; }
@media (max-width:900px){
  .ox-flow{ grid-template-columns:1fr 1fr; }
  .ox-node:nth-child(2)::after{ display:none; }
}
@media (max-width:560px){
  .ox-flow{ grid-template-columns:1fr; }
  .ox-node::after{ right:50%; top:auto; bottom:-11px; transform:translateX(50%) rotate(45deg); }
}

/* ---------- the CRM demonstration ---------- */
.ox-demo{ display:grid; grid-template-columns:1.55fr 1fr; gap:26px; align-items:start; }
@media (max-width:960px){ .ox-demo{ grid-template-columns:1fr; } }

.ox-crm{
  border-radius:var(--r-xl); overflow:hidden; background:var(--white);
  border:1px solid var(--line-2); box-shadow:var(--sh-lg);
}
.ox-crm-bar{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:15px 20px; color:#fff;
  background:linear-gradient(100deg,var(--blue-deep),var(--blue) 62%,var(--blue-bright));
}
.ox-crm-bar .l{ display:inline-flex; align-items:center; gap:10px; font-weight:800; font-size:15px; letter-spacing:.05em; }
.ox-crm-bar .mark{ width:24px; height:24px; color:#fff; }
.ox-crm-live{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(0,0,0,.28); border-radius:999px; padding:6px 13px;
  font-size:12px; font-weight:700; letter-spacing:.02em;
}
.ox-crm-live .dot{
  width:8px; height:8px; border-radius:50%; background:#2BE07A;
  box-shadow:0 0 0 0 rgba(43,224,122,.7); animation:ox-live 1.9s infinite;
}
@keyframes ox-live{ 0%{box-shadow:0 0 0 0 rgba(43,224,122,.6);} 70%{box-shadow:0 0 0 8px rgba(43,224,122,0);} 100%{box-shadow:0 0 0 0 rgba(43,224,122,0);} }

.ox-crm-body{ padding:20px; background:var(--wash); }
.ox-crm-stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:16px; }
.ox-stat{
  background:var(--white); border:1px solid var(--line-2); border-radius:var(--r-md);
  padding:16px; display:flex; align-items:center; gap:13px; box-shadow:var(--sh-sm);
}
.ox-stat .ico{
  width:40px; height:40px; flex:none; border-radius:12px; display:grid; place-items:center;
  background:var(--blue-pale); color:var(--blue);
}
.ox-stat .ico svg{ width:20px; height:20px; }
.ox-stat .v{ font-size:26px; font-weight:800; line-height:1; letter-spacing:-.03em; color:var(--ink); font-variant-numeric:tabular-nums; }
.ox-stat .k{ font-size:12px; color:var(--mute); line-height:1.3; margin-top:5px; }
@media (max-width:640px){ .ox-crm-stats{ grid-template-columns:1fr; } }

.ox-crm-panel{ background:var(--white); border:1px solid var(--line-2); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--sh-sm); }
.ox-crm-panel-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  padding:15px 18px; border-bottom:1px solid var(--line-2);
}
.ox-crm-panel-head h4{ font-size:17px; font-weight:800; letter-spacing:-.02em; color:var(--ink); }
.ox-crm-date{
  display:inline-flex; align-items:center; gap:8px; font-size:12.5px; font-weight:700; color:var(--mute);
  border:1px solid var(--line-2); border-radius:999px; padding:7px 13px;
}
.ox-crm-date svg{ width:14px; height:14px; color:var(--blue); }

.ox-row{
  display:grid; grid-template-columns:58px 40px 1fr auto; gap:13px; align-items:center;
  padding:13px 18px; border-bottom:1px solid var(--line-2);
  opacity:0; transform:translateY(10px);
  transition:opacity .5s ease, transform .5s cubic-bezier(.2,.8,.2,1);
}
.ox-row.in{ opacity:1; transform:none; }
.ox-row:last-child{ border-bottom:0; }
.ox-row .time{ font-size:14px; font-weight:800; color:var(--ink); line-height:1.15; }
.ox-row .time span{ display:block; font-size:10.5px; font-weight:700; color:var(--faint); letter-spacing:.06em; }
.ox-row .ico{ width:36px; height:36px; border-radius:11px; display:grid; place-items:center; background:var(--blue-pale); color:var(--blue); }
.ox-row .ico svg{ width:18px; height:18px; }
.ox-row .t{ font-size:15px; font-weight:700; color:var(--ink); letter-spacing:-.01em; }
.ox-row .m{ font-size:12.5px; color:var(--faint); margin-top:3px; }
.ox-row .m b{ color:var(--blue); font-weight:700; }
.ox-chip{
  display:inline-flex; align-items:center; gap:6px; white-space:nowrap;
  font-size:12px; font-weight:800; color:var(--green);
  background:rgba(18,161,80,.09); border:1px solid rgba(18,161,80,.22);
  padding:6px 11px; border-radius:8px;
}
.ox-chip svg{ width:12px; height:12px; }
@media (max-width:640px){
  .ox-row{ grid-template-columns:52px 1fr; row-gap:6px; }
  .ox-row .ico{ display:none; }
  .ox-row .ox-chip{ grid-column:2; justify-self:start; }
}

.ox-cap{
  margin-top:14px; font-size:11.5px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--faint); font-weight:700; text-align:center;
}

/* ---------- phone lockscreen ---------- */
.ox-phone{
  position:relative; margin:0 auto; width:100%; max-width:320px;
  border-radius:44px; padding:11px;
  background:linear-gradient(160deg,#20263D,#0A0E1E);
  box-shadow:var(--sh-lg), inset 0 0 0 1px rgba(255,255,255,.08);
}
.ox-phone-screen{
  position:relative; border-radius:34px; overflow:hidden; min-height:520px;
  background:linear-gradient(180deg,#0C1330 0%,#131A3D 45%,#0A1029 100%);
  padding:20px 12px 22px;
}
.ox-notch{
  position:absolute; top:9px; left:50%; transform:translateX(-50%);
  width:98px; height:26px; border-radius:999px; background:#05070F; z-index:3;
}
.ox-phone-status{
  display:flex; align-items:center; justify-content:space-between;
  color:rgba(255,255,255,.86); font-size:11.5px; font-weight:700; padding:0 8px 22px;
}
.ox-phone-clock{ text-align:center; color:#fff; margin-bottom:22px; }
.ox-phone-clock .d{ font-size:14px; font-weight:600; color:rgba(255,255,255,.78); }
.ox-phone-clock .t{ font-size:62px; font-weight:300; letter-spacing:-.03em; line-height:1.05; }
.ox-notif{
  display:flex; gap:11px; align-items:flex-start;
  background:rgba(255,255,255,.13); border:1px solid rgba(255,255,255,.09);
  backdrop-filter:blur(10px);
  border-radius:16px; padding:11px 12px; margin-bottom:9px;
  opacity:0; transform:translateY(14px) scale(.97);
  transition:opacity .5s ease, transform .55s cubic-bezier(.2,.9,.25,1);
}
.ox-notif.in{ opacity:1; transform:none; }
.ox-notif .app{
  width:34px; height:34px; flex:none; border-radius:9px;
  background:linear-gradient(140deg,var(--blue-bright),var(--blue-deep));
  display:grid; place-items:center; color:#fff;
}
.ox-notif .app svg{ width:20px; height:20px; }
.ox-notif .body{ min-width:0; flex:1; }
.ox-notif .hd{ display:flex; align-items:baseline; justify-content:space-between; gap:8px; }
.ox-notif .nm{ font-size:11.5px; font-weight:700; color:rgba(255,255,255,.72); letter-spacing:.02em; }
.ox-notif .ago{ font-size:11px; color:rgba(255,255,255,.5); flex:none; }
.ox-notif .ti{ font-size:14px; font-weight:700; color:#fff; margin-top:3px; line-height:1.25; }
.ox-notif .sb{ font-size:12.5px; color:rgba(255,255,255,.75); margin-top:2px; line-height:1.35; }
.ox-notif .sb b{ color:#8FB2FF; font-weight:700; }

/* ---------- before / after ---------- */
.ox-ba{ display:grid; grid-template-columns:1fr 1fr; gap:22px; align-items:start; }
@media (max-width:820px){ .ox-ba{ grid-template-columns:1fr; } }
.ox-ba-col{ }
.ox-ba-head{
  display:flex; align-items:center; justify-content:center; gap:9px; margin-bottom:6px;
  font-size:15px; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
}
.ox-ba-head svg{ width:19px; height:19px; }
.ox-ba-sub{ text-align:center; font-size:12.5px; font-weight:700; color:var(--faint); letter-spacing:.05em; text-transform:uppercase; margin-bottom:14px; }
.ox-ba-col.bad .ox-ba-head{ color:var(--red); }
.ox-ba-col.good .ox-ba-head{ color:var(--blue); }
.ox-thread{
  background:var(--white); border:1px solid var(--line-2); border-radius:var(--r-lg);
  padding:16px; box-shadow:var(--sh-sm); min-height:100%;
}
.ox-msg{
  max-width:82%; padding:10px 13px; border-radius:14px; margin-bottom:9px;
  font-size:14px; line-height:1.45; position:relative;
  background:var(--wash-2); color:var(--text); border-bottom-left-radius:5px;
  opacity:0; transform:translateY(8px); transition:opacity .45s ease, transform .45s ease;
}
.ox-msg.in{ opacity:1; transform:none; }
.ox-msg.me{
  margin-left:auto; background:var(--blue); color:#fff;
  border-bottom-left-radius:14px; border-bottom-right-radius:5px;
}
.ox-msg .stamp{ display:block; font-size:10.5px; margin-top:4px; opacity:.6; }
.ox-verdict{
  display:flex; align-items:center; gap:9px; margin-top:12px;
  border-radius:12px; padding:11px 13px; font-size:13.5px; font-weight:800;
}
.ox-verdict svg{ width:17px; height:17px; flex:none; }
.ox-verdict.bad{ color:#C81525; background:rgba(224,32,47,.07); border:1px solid rgba(224,32,47,.28); }
.ox-verdict.good{ color:var(--blue); background:rgba(0,33,201,.06); border:1px solid var(--line); }
.ox-verdict span{ display:block; font-weight:600; font-size:12px; opacity:.8; margin-top:2px; }

/* ---------- generic cards ---------- */
.ox-cards{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
@media (max-width:860px){ .ox-cards{ grid-template-columns:1fr; } }
.ox-card{
  background:var(--white); border:1px solid var(--line-2); border-radius:var(--r-lg);
  padding:26px 24px; box-shadow:var(--sh-sm);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.ox-card:hover{ transform:translateY(-3px); border-color:var(--line); box-shadow:var(--sh-md); }
.ox-card .ico{
  width:46px; height:46px; border-radius:13px; display:grid; place-items:center;
  background:var(--blue-pale); color:var(--blue); margin-bottom:16px;
}
.ox-card .ico svg{ width:23px; height:23px; }
.ox-card h4{ font-size:18px; font-weight:800; letter-spacing:-.02em; color:var(--ink); margin-bottom:9px; }
.ox-card p{ font-size:15px; line-height:1.6; color:var(--mute); }

/* numbered next steps */
.ox-nsteps{ display:grid; gap:14px; max-width:760px; margin:0 auto; }
.ox-nstep{
  display:grid; grid-template-columns:52px 1fr; gap:18px; align-items:start;
  background:var(--white); border:1px solid var(--line-2); border-radius:var(--r-lg);
  padding:22px 24px; box-shadow:var(--sh-sm); text-align:left;
}
.ox-nstep .n{
  width:52px; height:52px; border-radius:14px; display:grid; place-items:center;
  font-family:var(--display); font-size:24px; color:#fff;
  background:linear-gradient(140deg,var(--blue),var(--blue-deep));
}
.ox-nstep h4{ font-size:18px; font-weight:800; color:var(--ink); letter-spacing:-.02em; margin-bottom:6px; }
.ox-nstep p{ font-size:15px; line-height:1.6; color:var(--mute); }
.ox-nstep p b{ color:var(--text); font-weight:700; }

/* benefit strip, straight off the ad footers */
.ox-strip{
  display:grid; grid-template-columns:repeat(4,1fr); gap:0;
  border:1px solid var(--line-2); border-radius:var(--r-lg); overflow:hidden; background:var(--white);
}
.ox-strip > div{
  display:flex; align-items:center; gap:12px; padding:20px 18px;
  border-right:1px solid var(--line-2);
}
.ox-strip > div:last-child{ border-right:0; }
.ox-strip svg{ width:28px; height:28px; color:var(--blue); flex:none; }
.ox-strip b{ display:block; font-size:12.5px; font-weight:800; letter-spacing:.06em; text-transform:uppercase; color:var(--ink); line-height:1.25; }
.ox-strip span{ display:block; font-size:12px; color:var(--faint); margin-top:3px; }
@media (max-width:900px){
  .ox-strip{ grid-template-columns:1fr 1fr; }
  .ox-strip > div:nth-child(2){ border-right:0; }
  .ox-strip > div:nth-child(1),.ox-strip > div:nth-child(2){ border-bottom:1px solid var(--line-2); }
}
@media (max-width:520px){
  .ox-strip{ grid-template-columns:1fr; }
  .ox-strip > div{ border-right:0; border-bottom:1px solid var(--line-2); }
  .ox-strip > div:last-child{ border-bottom:0; }
}

/* ---------- final cta band ---------- */
.ox-final{ text-align:center; padding:76px 22px; }
.ox-final .ox-h2{ color:#fff; margin-left:auto; margin-right:auto; }
.ox-final .ox-h2 .hl{ color:#9FBBFF; }
.ox-final p{ color:rgba(255,255,255,.82); font-size:18px; max-width:52ch; margin:0 auto 30px; line-height:1.55; }

/* ---------- footer ---------- */
.ox-foot{
  border-top:1px solid var(--line-2); padding:30px 22px; text-align:center;
  color:var(--faint); font-size:13px;
}
.ox-foot .brand{ display:inline-flex; align-items:center; gap:10px; margin-bottom:12px; }
.ox-foot .brand .mark{ width:24px; height:24px; color:var(--blue); }
.ox-foot .brand .word{ font-weight:800; letter-spacing:.16em; font-size:14px; color:var(--ink); }
.ox-foot .tag{ font-size:12px; letter-spacing:.12em; text-transform:uppercase; color:var(--mute); font-weight:700; margin-bottom:10px; }
.ox-foot .tag b{ color:var(--blue); }

/* ---------- responsive ---------- */
@media (max-width:760px){
  .ox-nav{ display:none; }
  .ox-hero-brand{ display:flex; }
  .ox-hero{ padding-top:34px; }
  .ox-sec{ padding:60px 0; }
  .ox-steps{ grid-template-columns:1fr; }
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{ animation:none !important; transition:none !important; }
  [data-rv]{ opacity:1 !important; transform:none !important; }
  .ox-row,.ox-notif,.ox-msg{ opacity:1 !important; transform:none !important; }
}
