/* ============================================================
   Focus — front-end rebuild
   Tokens extracted 1:1 from flowos-website.framer.website
   ============================================================ */

:root{
  /* — brand — */
  --blue:#0076f3;
  --blue-600:#006ee7;
  --blue-500:#0a84ff;
  --blue-300:#6dabfc;
  --blue-200:#96c4ff;
  --blue-100:#c6e3ff;
  --blue-050:#e8f3ff;
  --blue-025:#f4f9ff;
  --blue-ink:#013269;

  /* — ink / gray ramp — */
  --black:#000;
  --ink-900:#1a1a1a;
  --ink-850:#1e1e1e;
  --ink-800:#282828;
  --ink-700:#3b3b3b;
  --ink-600:#4f4f4f;
  --ink-500:#636363;
  --gray-400:#818181;
  --gray-350:#9e9e9e;
  --gray-300:#bcbcbc;
  --gray-250:#cbcbcb;
  --gray-200:#d9d9d9;
  --gray-150:#e8e8e8;
  --gray-100:#f7f7f7;
  --gray-050:#fafafa;
  --white:#fff;

  /* — event colors — */
  --green:#00d743; --green-100:#ccf7d9; --green-050:#e5fbec; --green-700:#00ac36;
  --amber:#ffbe00; --amber-100:#ffebb0; --amber-050:#fff9e6; --amber-700:#b58700;
  --coral:#ff6259; --coral-100:#ffd8d6; --coral-050:#ffebea; --coral-700:#ff3b30;

  /* — type — */
  --sans:"Geist","Geist Placeholder",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --serif:"Instrument Serif","Instrument Serif Placeholder",Georgia,serif;
  --script:"Caveat",cursive;

  /* — layout — */
  --shell:1440px;
  --content:1116px;
  --gutter:32px;
  --r-sm:12px;
  --r:16px;
  --r-lg:24px;
  --r-xl:26px;
  --r-pill:1000px;
}

*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;background:var(--white);color:var(--black);
  font-family:var(--sans);font-size:16px;font-weight:500;line-height:1.2;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
}
img{max-width:100%;display:block;height:auto}
a{color:inherit;text-decoration:none}
h1,h2,h3,h4,p,ul{margin:0}
ul{padding:0;list-style:none}
button,input{font:inherit}
em{font-style:normal}
.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}

/* ============================================================
   BUTTONS  — source: padding 10px 20px, radius 32px, gap 12px
   ============================================================ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:12px;
  padding:10px 20px;border-radius:32px;border:0;cursor:pointer;
  font-family:var(--sans);font-size:16px;font-weight:600;line-height:1.2;
  white-space:nowrap;transition:transform .22s cubic-bezier(.22,1,.36,1),background .22s,color .22s,box-shadow .22s;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn--primary{background:var(--blue);color:var(--white);box-shadow:0 1px 2px rgba(0,0,0,.16)}
.btn--primary:hover{background:var(--blue-600);box-shadow:0 6px 18px rgba(0,118,243,.34)}
.btn--white{background:var(--white);color:var(--black)}
.btn--white:hover{background:var(--gray-100);box-shadow:0 6px 18px rgba(0,0,0,.12)}
.btn--dark{background:var(--black);color:var(--white)}
.btn--dark:hover{background:var(--ink-800)}
.btn--outline{background:var(--white);color:var(--black);box-shadow:inset 0 0 0 1px var(--gray-150)}
.btn--outline:hover{box-shadow:inset 0 0 0 1px var(--gray-250);background:var(--gray-050)}
.btn--lg{padding:14px 28px;font-size:17px}

/* ============================================================
   NAV
   ============================================================ */
.nav{position:fixed;inset:16px 0 auto;z-index:60;pointer-events:none}
.nav__inner{
  pointer-events:auto;
  width:min(var(--content),calc(100% - 2*var(--gutter)));
  margin:0 auto;height:64px;padding:0 10px 0 22px;
  display:flex;align-items:center;gap:24px;
  border-radius:var(--r-pill);
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(18px) saturate(1.6);
  -webkit-backdrop-filter:blur(18px) saturate(1.6);
  box-shadow:0 1px 2px rgba(0,0,0,.06),0 10px 30px rgba(0,0,0,.07);
  transition:background .3s,box-shadow .3s;
}
.nav.is-stuck .nav__inner{background:rgba(255,255,255,.9);box-shadow:0 1px 2px rgba(0,0,0,.08),0 14px 38px rgba(0,0,0,.11)}
.nav__logo{font-size:22px;font-weight:700;letter-spacing:-.03em}
.nav__links{display:flex;align-items:center;gap:28px;margin-left:auto}
.nav__links a{font-size:15px;font-weight:500;color:var(--ink-600);transition:color .18s}
.nav__links a:hover{color:var(--black)}
.nav__cta{margin-left:4px}
.nav__burger{display:none;flex-direction:column;gap:5px;width:40px;height:40px;align-items:center;justify-content:center;background:none;border:0;margin-left:auto;cursor:pointer}
.nav__burger span{width:18px;height:2px;background:var(--black);border-radius:2px;transition:transform .25s}

/* ============================================================
   HERO  — section height 1076, overlay rgba(0,0,0,.27)
   ============================================================ */
.hero{position:relative;min-height:1076px;padding:80px var(--gutter) 0;overflow:hidden;isolation:isolate}
.hero__bg{position:absolute;inset:0;z-index:-2}
.hero__bg img{width:100%;height:100%;object-fit:cover;object-position:center 34%}
.hero__overlay{position:absolute;inset:0;z-index:-1;background:rgba(0,0,0,.27)}

.hero__content{
  width:min(762px,100%);margin:0 auto;
  display:flex;flex-direction:column;align-items:center;gap:16px;text-align:center;
}
.hero__eyebrow{display:flex;align-items:center;gap:8px;color:var(--white);font-size:16px;font-weight:600;text-shadow:0 1px 12px rgba(0,0,0,.3)}
.hero__eyebrow .leaf{width:21px;height:33px;opacity:.95}
.hero__eyebrow .leaf:last-child{transform:scaleX(-1)}

/* H1 — 72px / 75.6px / -2.16px */
.hero__title{display:flex;flex-direction:column;font-size:72px;line-height:75.6px;letter-spacing:-2.16px;margin-top:4px}
.hero__title .line{display:block}
.line--sans{font-family:var(--sans);font-weight:700;color:var(--white);text-shadow:0 2px 26px rgba(0,0,0,.28)}
.line--serif{font-family:var(--serif);font-weight:400;color:var(--black);letter-spacing:-2.16px}
.hero__title .w{display:inline-block;will-change:transform,opacity}

.hero__sub{
  width:min(662px,100%);margin-top:-2px;
  font-size:18px;font-weight:500;line-height:1.5;color:rgba(255,255,255,.94);
  text-shadow:0 1px 14px rgba(0,0,0,.34);
}
.hero__actions{display:flex;align-items:center;gap:12px;margin-top:14px}

/* screenshot on the blue slab — panel 1015×567 r24, frame 1169 wide */
.hero__shot{position:relative;width:min(1169px,100%);margin:82px auto 0;padding-bottom:112px}
.hero__panel{
  position:absolute;left:50%;transform:translateX(-50%);
  top:120px;width:min(1015px,88%);height:567px;
  background:var(--blue);border-radius:var(--r-lg);z-index:0;
}
.hero__shot img{
  position:relative;z-index:1;width:100%;height:auto;
  border-radius:var(--r-lg);
  box-shadow:0 2px 4px rgba(0,0,0,.08),0 28px 70px rgba(0,0,0,.28);
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.sec{width:100%;padding:96px 48px}
.sec__head{width:min(var(--content),100%);margin:0 auto 56px;display:flex;flex-direction:column;align-items:center;gap:16px;text-align:center}
/* H2 — 48px / 60px */
.sec__title{font-size:48px;line-height:60px;font-weight:700;letter-spacing:-.02em;max-width:16ch}
.sec__title--light{color:var(--white)}
.sec__title .hl{display:inline-block;will-change:transform,opacity}
.sec__lede{max-width:56ch;font-size:18px;font-weight:500;line-height:1.55;color:var(--ink-500)}
.sec__lede--light{color:rgba(255,255,255,.72)}
.sec__head .btn{margin-top:8px}

.tag{
  display:inline-flex;align-items:center;padding:6px 14px;border-radius:var(--r-pill);
  background:var(--blue-050);color:var(--blue);font-size:13px;font-weight:600;letter-spacing:.01em;
}
.tag--ghost{background:rgba(255,255,255,.09);color:rgba(255,255,255,.76)}

/* ============================================================
   FEATURES
   ============================================================ */
.feats{width:min(var(--content),100%);margin:0 auto;display:flex;flex-direction:column;gap:56px}
.feat{
  display:flex;flex-direction:column;align-items:center;gap:32px;
  padding:48px;border-radius:var(--r-xl);background:var(--gray-100);
}
.feat__copy{display:flex;flex-direction:column;align-items:center;gap:12px;
  text-align:center;max-width:640px}
.feat__shot{width:min(980px,100%)}
.feat__kicker{font-size:20px;font-weight:600;color:var(--ink-700);margin-top:4px}
.feat__title{font-size:32px;line-height:1.18;font-weight:700;letter-spacing:-.025em}
.feat__body{font-size:17px;line-height:1.6;font-weight:500;color:var(--ink-500)}
.feat__shot img{width:100%;height:auto;display:block;border-radius:var(--r);box-shadow:0 1px 2px rgba(0,0,0,.06),0 18px 44px rgba(0,0,0,.13)}

/* ============================================================
   WHY DIFFERENT — dark bento
   ============================================================ */
.sec--dark{background:#000;color:var(--white);border-radius:var(--r-lg)}
.sec--dark .sec__lede{color:rgba(255,255,255,.66)}
.bento{
  width:min(var(--content),100%);margin:0 auto;
  display:grid;grid-template-columns:repeat(6,1fr);gap:20px;
}
.card{
  background:var(--ink-900);border:1px solid rgba(255,255,255,.07);
  border-radius:var(--r-lg);padding:28px;display:flex;flex-direction:column;gap:12px;
  transition:border-color .3s,transform .3s;
}
.card:hover{border-color:rgba(255,255,255,.16);transform:translateY(-3px)}
.card h3{font-size:21px;font-weight:700;letter-spacing:-.02em}
.card p{font-size:15px;line-height:1.58;font-weight:500;color:rgba(255,255,255,.6)}
.card--a{grid-column:span 2}
.card--b{grid-column:span 4}
.card--c{grid-column:span 3}
.card--d{grid-column:span 3}
.card--e{grid-column:span 4}
.card--f{grid-column:span 2}
.card__viz{margin-bottom:6px;border-radius:var(--r);min-height:150px;display:flex;overflow:hidden}

.card__viz--rings{align-items:center;justify-content:center;gap:0;position:relative}
.card__viz--rings span{position:absolute;border-radius:50%;border:1px solid rgba(255,255,255,.14)}
.card__viz--rings span:nth-child(1){width:72px;height:72px;background:rgba(0,118,243,.22);border-color:rgba(0,118,243,.5)}
.card__viz--rings span:nth-child(2){width:118px;height:118px}
.card__viz--rings span:nth-child(3){width:162px;height:162px}

.card__viz--sched{flex-direction:column;justify-content:center;gap:8px;padding:18px;background:#121212}
.ev{border-radius:10px;padding:10px 12px;display:flex;flex-direction:column;gap:2px;border-left:3px solid}
.ev small{font-size:11px;font-weight:600;opacity:.66}
.ev b{font-size:14px;font-weight:600}
.ev--blue{background:rgba(0,118,243,.14);border-color:var(--blue);color:var(--blue-200)}
.ev--amber{background:rgba(255,190,0,.13);border-color:var(--amber);color:var(--amber-100)}
.ev--green{background:rgba(0,215,67,.13);border-color:var(--green);color:var(--green-100)}

.card__viz--avatars,.card__viz--faces{align-items:center;justify-content:center;gap:0;background:#121212}
.card__viz--avatars img,.card__viz--faces img{
  width:66px;height:66px;border-radius:50%;object-fit:cover;
  border:3px solid var(--ink-900);margin-left:-14px;
}
.card__viz--avatars img:first-child,.card__viz--faces img:first-child{margin-left:0}

.card__viz--invite{align-items:center;justify-content:center;background:#121212;padding:18px}
.invite{
  background:var(--white);color:var(--black);border-radius:var(--r);
  padding:14px 18px;font-size:14px;font-weight:600;line-height:1.4;
  box-shadow:0 12px 30px rgba(0,0,0,.4);
}
.invite em{display:block;font-family:var(--script);font-size:16px;color:var(--blue);margin-top:4px;font-weight:600}

.card__viz--bars{align-items:flex-end;justify-content:center;gap:10px;padding:22px;background:#121212}
.card__viz--bars i{width:16px;border-radius:5px;background:linear-gradient(180deg,var(--blue-300),var(--blue))}
.card__viz--bars i:nth-child(1){height:36%}
.card__viz--bars i:nth-child(2){height:62%}
.card__viz--bars i:nth-child(3){height:44%}
.card__viz--bars i:nth-child(4){height:82%}
.card__viz--bars i:nth-child(5){height:56%}

/* ============================================================
   SCROLL REVEAL — 56px / 67.2px / -1.68px
   ============================================================ */
.sec--reveal{background:var(--white);padding:44px var(--gutter)}
.reveal{
  width:min(1116px,100%);margin:0 auto;text-align:center;
  font-size:56px;line-height:67.2px;letter-spacing:-1.68px;font-weight:700;
}
.reveal .rw{display:inline-block;opacity:.13;transition:opacity .18s linear;will-change:opacity}
.reveal .rw.on{opacity:1}

.sec--words{background:#000;border-radius:var(--r-lg);display:flex;flex-direction:column;align-items:center;gap:8px;padding:120px var(--gutter)}
.bigword{font-size:56px;line-height:67.2px;letter-spacing:-1.68px;font-weight:700;color:var(--white)}
.bigword:nth-child(2){font-family:var(--serif);font-weight:400;color:var(--blue-300)}

/* ============================================================
   PRICING
   ============================================================ */
.plans{width:min(var(--content),100%);margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:24px;align-items:start}
.plan{
  background:var(--white);border-radius:22px;padding:32px 24px;
  width:100%;max-width:307px;margin:0 auto;
  box-shadow:inset 0 0 0 1px var(--gray-150);
  display:flex;flex-direction:column;gap:24px;
  transition:transform .3s cubic-bezier(.22,1,.36,1),box-shadow .3s;
}
.plan:hover{transform:translateY(-4px);box-shadow:inset 0 0 0 1px var(--gray-250),0 22px 50px rgba(0,0,0,.09)}
.plan--feature{background:var(--blue);color:var(--white);box-shadow:0 18px 44px rgba(0,118,243,.3)}
.plan--feature:hover{box-shadow:0 26px 60px rgba(0,118,243,.4)}
.plan__name{font-size:15px;font-weight:600;color:var(--ink-500)}
.plan--feature .plan__name{color:rgba(255,255,255,.82)}
.plan__price{font-size:44px;font-weight:700;letter-spacing:-.035em;line-height:1.1}
.plan__price small{font-size:16px;font-weight:500;letter-spacing:0;color:var(--ink-500)}
.plan--feature .plan__price small{color:rgba(255,255,255,.76)}
.plan .btn{width:100%;margin-top:4px}
.plan__note{font-size:14px;font-weight:600;color:var(--ink-500);margin-top:8px}
.plan--feature .plan__note{color:rgba(255,255,255,.82)}
.plan__list{display:flex;flex-direction:column;gap:12px}
.plan__list li{position:relative;padding-left:28px;font-size:15px;font-weight:500;color:var(--ink-700)}
.plan--feature .plan__list li{color:rgba(255,255,255,.94)}
.plan__list li::before{
  content:"";position:absolute;left:0;top:1px;width:18px;height:18px;border-radius:50%;
  background:var(--blue-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.6 6.2 4.8 8.4 9.4 3.8' fill='none' stroke='%230076f3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}
.plan--feature .plan__list li::before{
  background:rgba(255,255,255,.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.6 6.2 4.8 8.4 9.4 3.8' fill='none' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.sec--quotes{background:var(--gray-100)}
.quotes{width:min(var(--content),100%);margin:0 auto;columns:3;column-gap:24px}
.quote{
  break-inside:avoid;margin-bottom:24px;background:var(--white);
  border-radius:var(--r-lg);padding:28px;box-shadow:inset 0 0 0 1px var(--gray-150);
  display:flex;flex-direction:column;gap:18px;
}
.quote p{font-size:16px;line-height:1.62;font-weight:500;color:var(--ink-700)}
.quote__who{display:flex;align-items:center;gap:12px}
.quote__who img{width:44px;height:44px;border-radius:50%;object-fit:cover}
.quote__name{font-size:15px;font-weight:600}
.quote__role{font-size:13px;font-weight:500;color:var(--gray-400);margin-top:2px}

/* ============================================================
   FINAL CTA
   ============================================================ */
.sec--cta{
  position:relative;background:#000;border-radius:var(--r-lg);overflow:hidden;
  display:flex;flex-direction:column;align-items:center;gap:16px;text-align:center;
  padding:140px var(--gutter);
}
.cta__words{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:space-between;padding:38px 0;pointer-events:none;opacity:.07}
.cta__words span{font-size:56px;line-height:67.2px;letter-spacing:-1.68px;font-weight:700;color:var(--white);white-space:nowrap}
.cta__words span:nth-child(odd){align-self:flex-start;margin-left:4%}
.cta__words span:nth-child(even){align-self:flex-end;margin-right:4%}
.cta__note{font-size:14px;font-weight:500;color:rgba(255,255,255,.5)}
.sec--cta .btn{margin-top:8px}

/* ============================================================
   FOOTER
   ============================================================ */
.footer{position:relative;background:var(--blue);color:var(--white);padding:96px var(--gutter) 0;overflow:hidden}
.footer__top{
  width:min(var(--content),100%);margin:0 auto;
  display:grid;grid-template-columns:1.25fr 1.75fr;gap:64px;
  padding-bottom:56px;
}
.footer__brand p{font-size:15px;line-height:1.6;font-weight:500;color:rgba(255,255,255,.8);margin-top:14px;max-width:34ch}
.footer__sub{margin-top:22px!important;color:var(--white)!important;font-weight:600!important}
.sub{display:flex;gap:8px;margin-top:12px;max-width:380px}
.sub input{
  flex:1;padding:11px 16px;border-radius:var(--r-pill);border:1px solid rgba(255,255,255,.4);
  font-size:14px;font-weight:400;background:var(--white);outline:none;transition:border-color .2s,box-shadow .2s;
}
.sub input:focus{border-color:var(--blue);box-shadow:0 0 0 3px rgba(0,118,243,.14)}
.sub button{
  padding:11px 22px;border-radius:var(--r-pill);border:0;background:var(--white);color:var(--blue);
  font-size:14px;font-weight:600;cursor:pointer;transition:background .2s;
}
.sub button:hover{background:var(--gray-100)}
.footer__cols{display:grid;grid-template-columns:repeat(3,1fr);gap:32px}
.footer__cols div{display:flex;flex-direction:column;gap:14px}
.footer__cols h4{font-size:14px;font-weight:700;margin-bottom:2px}
.footer__cols a{font-size:15px;font-weight:500;color:rgba(255,255,255,.8);transition:color .18s}
.footer__cols a:hover{color:var(--white)}
.footer__bar{
  width:min(var(--content),100%);margin:0 auto;padding:24px 0 40px;
  border-top:1px solid rgba(255,255,255,.24);
  display:flex;align-items:center;justify-content:space-between;gap:16px;
  font-size:14px;font-weight:500;color:rgba(255,255,255,.74);
}
.footer__social{display:flex;gap:22px}
.footer__social a{transition:color .18s}
.footer__social a:hover{color:var(--white)}
.footer__wordmark{
  width:min(var(--content),100%);margin:0 auto;opacity:.13;pointer-events:none;user-select:none;color:var(--white);
  font-size:clamp(80px,15.8vw,236px);font-weight:700;letter-spacing:-.055em;line-height:.82;
  text-align:center;
}

/* ============================================================
   ENTRANCE ANIMATION
   ============================================================ */
[data-anim]{opacity:0;transform:translateY(22px);transition:opacity .72s cubic-bezier(.22,1,.36,1),transform .72s cubic-bezier(.22,1,.36,1)}
[data-anim].in{opacity:1;transform:none}

/* ============================================================
   TABLET — 810 to 1199
   ============================================================ */
@media (max-width:1199px){
  :root{--gutter:28px}
  .hero{min-height:auto;padding-bottom:0}
  .hero__title{font-size:56px;line-height:59px;letter-spacing:-1.68px}
  .line--serif{letter-spacing:-1.68px}
  .sec__title{font-size:40px;line-height:50px}
  .reveal,.bigword,.cta__words span{font-size:44px;line-height:53px;letter-spacing:-1.3px}
  .nav__links{display:none}
  .feat{grid-template-columns:1fr;gap:32px;padding:36px}
  .feat--rev .feat__copy{order:0}
  .feat--rev .feat__shot{order:0}
  .bento{grid-template-columns:repeat(4,1fr)}
  .card--a,.card--f{grid-column:span 2}
  .card--b,.card--e{grid-column:span 4}
  .card--c,.card--d{grid-column:span 2}
  .quotes{columns:2}
  .footer__top{grid-template-columns:1fr;gap:44px}
}

/* ============================================================
   MOBILE — under 810
   ============================================================ */
@media (max-width:809px){
  :root{--gutter:20px}
  .sec{padding:72px var(--gutter)}
  .nav{inset:10px 0 auto}
  .nav__inner{height:58px;padding:0 10px 0 18px}
  .nav__cta{display:none}
  .nav__burger{display:flex}
  .hero{padding-top:104px}
  .hero__title{font-size:40px;line-height:43px;letter-spacing:-1.2px}
  .line--serif{letter-spacing:-1.2px}
  .hero__sub{font-size:16px}
  .hero__actions{flex-direction:column;width:100%;gap:10px}
  .hero__actions .btn{width:100%}
  .hero__shot{margin-top:52px;padding-bottom:64px}
  .hero__panel{top:64px;height:300px;width:92%}
  .sec__title{font-size:30px;line-height:38px;max-width:100%}
  .sec__lede{font-size:16px}
  .reveal,.bigword,.cta__words span{font-size:28px;line-height:36px;letter-spacing:-.8px}
  .sec--reveal{padding:88px var(--gutter)}
  .feat{padding:24px;gap:24px}
  .feat__title{font-size:24px}
  .feat__body{font-size:16px}
  .bento{grid-template-columns:1fr;gap:16px}
  .card--a,.card--b,.card--c,.card--d,.card--e,.card--f{grid-column:span 1}
  .plans{grid-template-columns:1fr}
  .quotes{columns:1}
  .footer__cols{grid-template-columns:1fr;gap:28px}
  .footer__bar{flex-direction:column;align-items:flex-start}
  .sec--cta{padding:96px var(--gutter)}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
  [data-anim]{opacity:1;transform:none}
  .reveal .rw{opacity:1}
}

/* ============================================================
   DEMONSTRATION NOTICE
   ============================================================ */
.demo{background:var(--ink-900);color:rgba(255,255,255,.72);
  padding:48px var(--gutter);font-size:14px;line-height:1.66}
.demo__body{width:min(720px,100%);margin:0 auto;display:flex;flex-direction:column;
  gap:12px;text-align:center;align-items:center}
.demo__flag{padding:5px 14px;border-radius:var(--r-pill);background:var(--amber);
  color:#1a1a1a;font-size:12px;font-weight:700;letter-spacing:.05em;text-transform:uppercase}
.demo b{color:#fff;font-weight:600}
.demo a{color:#fff;text-decoration:underline;text-underline-offset:3px}
.demo a:hover{color:var(--blue-200)}
.demo__legal{display:flex;flex-wrap:wrap;justify-content:center;gap:8px 20px;
  margin-top:8px;padding-top:16px;width:100%;
  border-top:1px solid rgba(255,255,255,.12);
  font-size:12.5px;color:rgba(255,255,255,.5)}
@media (max-width:809px){.demo{padding:36px var(--gutter);font-size:13.5px}}
