:root{
  --white:#fff;
  --ink:#0A2540;
  --slate:#425466;
  --mute:#697386;
  --line:#E6EBF1;
  --wash:#F6F9FC;

  --blurple:#635BFF;
  --cyan:#00D4FF;
  --pink:#FF5996;

  --body:"Inter",system-ui,-apple-system,sans-serif;
  --mono:"JetBrains Mono",ui-monospace,monospace;

  --gut:clamp(20px,5vw,52px);
  --maxw:1160px;
  --ease:cubic-bezier(.22,.8,.3,1);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:#fff;
  color:var(--ink);
  font-family:var(--body);
  font-size:17px;
  line-height:1.6;
  letter-spacing:-.005em;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding-inline:var(--gut);
}

a{color:inherit}

h1,h2,h3{
  margin:0;
  letter-spacing:-.032em;
  line-height:1.06;
  font-weight:700;
}

h1{
  font-size:clamp(42px,5.7vw,68px);
  letter-spacing:-.045em;
}

h2{
  font-size:clamp(31px,4vw,46px);
}

h3{
  font-size:20px;
  line-height:1.3;
  letter-spacing:-.02em;
}

p{margin:0 0 1em}

.lead{
  color:var(--slate);
  font-size:clamp(16.5px,1.6vw,19px);
  max-width:58ch;
}

.small{
  font-size:14px;
  color:var(--mute);
}

.grad{
  background:linear-gradient(
    92deg,
    var(--blurple) 6%,
    var(--cyan) 52%,
    var(--pink) 96%
  );
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.eyebrow{
  font-size:13px;
  font-weight:700;
  letter-spacing:.085em;
  text-transform:uppercase;
  color:var(--blurple);
  margin-bottom:16px;
}


/* HEADER */

header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}

.bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  height:82px;
}

.brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
  text-decoration:none;
}

.brand img{
  height:56px;
  width:auto;
  max-width:245px;
  object-fit:contain;
}

.hnav{
  display:flex;
  gap:28px;
  font-size:15px;
  font-weight:600;
  align-items:center;
}

.hnav a{
  text-decoration:none;
  color:var(--slate);
}

.hnav a:hover,
.hnav a[aria-current="page"]{
  color:var(--blurple);
}


/* BUTTONS */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-weight:700;
  font-size:15.5px;
  padding:12px 22px;
  border-radius:999px;
  text-decoration:none;
  background:var(--ink);
  color:#fff;
  border:1px solid var(--ink);
  box-shadow:0 2px 5px rgba(10,37,64,.08);
  transition:.2s var(--ease);
  cursor:pointer;
}

.btn:hover{
  background:#14385f;
  transform:translateY(-1px);
  box-shadow:0 9px 22px rgba(10,37,64,.15);
}

.btn--soft{
  background:rgba(99,91,255,.08);
  color:var(--blurple);
  border-color:transparent;
  box-shadow:none;
}

.btn--soft:hover{
  background:rgba(99,91,255,.14);
  box-shadow:none;
}

.btn--white{
  background:#fff;
  color:var(--ink);
  border-color:#fff;
}

.btn--outline{
  background:#fff;
  color:var(--ink);
  border-color:var(--line);
}

.btn--sm{
  padding:9px 17px;
  font-size:14px;
}

.btn--feature{
  background:var(--blurple);
  border-color:var(--blurple);
  color:#fff;
}

.btn--feature:hover{
  background:#5149e8;
  border-color:#5149e8;
}

.whatsapp{
  background:#1f8f5f;
  border-color:#1f8f5f;
}

.whatsapp:hover{
  background:#18764f;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}


/* HERO */

.hero{
  padding:clamp(56px,7vw,96px) 0 clamp(46px,6vw,78px);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.03fr 1fr;
  gap:clamp(34px,5vw,68px);
  align-items:center;
}

.hero .lead{
  margin-top:24px;
}

.hero-note{
  margin-top:24px;
  color:var(--mute);
  font-size:14.5px;
  display:flex;
  flex-wrap:wrap;
  gap:8px 18px;
}

.hero-note b{
  color:var(--ink);
}

.field{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  background:var(--wash);
  border:1px solid var(--line);
  aspect-ratio:5/4;
  cursor:grab;
  touch-action:none;
  box-shadow:0 18px 44px rgba(10,37,64,.09);
}

.field canvas{
  width:100%;
  height:100%;
  display:block;
}

.field__hint{
  position:absolute;
  left:16px;
  bottom:14px;
  font:11.5px var(--mono);
  color:var(--mute);
  background:rgba(255,255,255,.84);
  padding:6px 11px;
  border-radius:999px;
  border:1px solid var(--line);
}


/* LOGO STRIP */

.strip{
  border-block:1px solid var(--line);
  background:#fff;
  padding:30px 0;
}

.strip .row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:clamp(30px,5vw,76px);
  flex-wrap:wrap;
}

.strip .lab{
  font-size:12.5px;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--mute);
  font-weight:700;
}

.client-logo{
  object-fit:contain;
  max-width:220px;
  max-height:64px;
}

.client-logo--kicker{
  max-height:82px;
  max-width:110px;
}


/* GENERAL SECTIONS */

section{
  padding:clamp(64px,8vw,108px) 0;
}

.s-wash{
  background:var(--wash);
  border-block:1px solid var(--line);
}

.head{
  max-width:64ch;
  margin-bottom:clamp(30px,4vw,52px);
}

.head .lead{
  margin-top:18px;
}


/* CASE STUDY */

.case-study{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:clamp(34px,5vw,72px);
  align-items:center;
}

.case-points{
  list-style:none;
  margin:28px 0 0;
  padding:0;
  display:grid;
  gap:14px;
}

.case-points li{
  display:flex;
  gap:12px;
  color:var(--slate);
}

.case-points li:before{
  content:"✓";
  color:var(--blurple);
  font-weight:800;
}

.phone-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  align-items:end;
}

.phone-shot{
  margin:0;
  background:#fff;
  border:1px solid var(--line);
  padding:15px;
  border-radius:20px;
  box-shadow:0 18px 45px rgba(10,37,64,.08);
}

.phone-shot img{
  border-radius:13px;
}

.phone-shot figcaption{
  text-align:center;
  color:var(--slate);
  font-weight:600;
  font-size:14px;
  padding-top:12px;
}


/* CARDS */

.cards,
.service-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.card,
.service-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:28px;
  box-shadow:0 12px 30px rgba(10,37,64,.05);
  transition:.25s var(--ease);
}

.card:hover,
.service-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 38px rgba(10,37,64,.1);
}

.card p,
.service-card p{
  color:var(--slate);
  font-size:15.5px;
}

.ico{
  width:38px;
  height:38px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--blurple),var(--cyan));
  display:block;
  margin-bottom:18px;
}


/* SERVICE CARDS */

.service-grid{
  align-items:stretch;
}

.service-card{
  display:flex;
  flex-direction:column;
  min-height:100%;
}

.service-card h3{
  min-height:52px;
}

.service-kicker{
  font:11.5px var(--mono);
  color:var(--blurple);
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:12px;
}

.service-summary{
  margin:10px 0 16px!important;
  min-height:76px;
}

.service-mini-list{
  list-style:none;
  padding:0;
  margin:0 0 22px;
  display:grid;
  gap:9px;
  color:var(--slate);
  font-size:14px;
}

.service-mini-list li{
  display:flex;
  gap:9px;
  line-height:1.4;
}

.service-mini-list li:before{
  content:"✓";
  color:var(--blurple);
  font-weight:800;
  flex:none;
}

.price-tag{
  font-size:32px;
  font-weight:800;
  letter-spacing:-.04em;
  margin-top:auto;
  padding-top:14px;
  white-space:nowrap;
}

.service-card .btn{
  margin-top:16px;
  width:100%;
}

.service-card.is-featured{
  border:2px solid rgba(99,91,255,.42);
  box-shadow:0 18px 42px rgba(99,91,255,.12);
  position:relative;
}

.service-card.is-featured:before{
  content:"Popular";
  position:absolute;
  top:14px;
  right:14px;
  background:var(--ink);
  color:#fff;
  border-radius:999px;
  padding:5px 9px;
  font-size:10px;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
}


/* ABOUT */

.split{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:clamp(32px,5vw,70px);
  align-items:center;
}

.portrait{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:0 18px 42px rgba(10,37,64,.09);
  aspect-ratio:4/5;
  background:var(--wash);
}

.portrait img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.facts{
  list-style:none;
  margin:26px 0 0;
  padding:0;
}

.facts li{
  display:flex;
  gap:16px;
  padding:15px 0;
  border-top:1px solid var(--line);
  font-size:16px;
  color:var(--slate);
}

.facts li:last-child{
  border-bottom:1px solid var(--line);
}

.facts .k{
  font:12px var(--mono);
  color:var(--blurple);
  min-width:55px;
  padding-top:4px;
  text-transform:uppercase;
  letter-spacing:.06em;
}


/* STEPS */

.steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.step{
  padding-top:22px;
  border-top:2px solid var(--line);
  position:relative;
}

.step:after{
  content:"";
  position:absolute;
  top:-2px;
  left:0;
  width:42px;
  height:2px;
  background:linear-gradient(90deg,var(--blurple),var(--cyan));
}

.step .n{
  font:12.5px var(--mono);
  color:var(--blurple);
}

.step h3{
  margin:10px 0 8px;
}

.step p{
  font-size:15.5px;
  color:var(--slate);
}


/* DARK CTA BAND */

.band{
  background:var(--ink);
  color:#fff;
  border:none;
  position:relative;
  overflow:hidden;
}

.band:before{
  content:"";
  position:absolute;
  width:65vw;
  aspect-ratio:1;
  border-radius:50%;
  top:-60%;
  right:-12%;
  background:radial-gradient(
    circle at 40% 40%,
    rgba(99,91,255,.55),
    rgba(0,212,255,.15) 46%,
    transparent 68%
  );
}

.band .wrap{
  position:relative;
  z-index:2;
}

.band .lead{
  color:rgba(255,255,255,.75);
}

.band .eyebrow{
  color:var(--cyan);
}


/* AUDIT FORM */

.audit-grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:36px;
  align-items:start;
}

.audit-form{
  background:#fff;
  border-radius:18px;
  padding:28px;
  color:var(--ink);
  box-shadow:0 20px 50px rgba(0,0,0,.14);
  border:1px solid var(--line);
}

.form-row{
  display:grid;
  gap:8px;
  margin-bottom:15px;
}

.form-row label{
  font-size:13px;
  font-weight:700;
}

.form-row input,
.form-row textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:10px;
  padding:12px 13px;
  font:inherit;
  color:var(--ink);
  background:#fff;
}

.form-row input:focus,
.form-row textarea:focus{
  outline:3px solid rgba(99,91,255,.14);
  border-color:var(--blurple);
}

.form-row textarea{
  min-height:110px;
  resize:vertical;
}

.audit-form .btn{
  width:100%;
  margin-top:4px;
}


/* FAQ */

.faq{
  display:grid;
  gap:12px;
}

.faq details{
  border:1px solid var(--line);
  border-radius:12px;
  padding:16px 18px;
  background:#fff;
}

.faq summary{
  cursor:pointer;
  font-weight:700;
}

.faq p{
  color:var(--slate);
  margin:12px 0 0;
}


/* PAGE HERO */

.page-hero{
  padding:clamp(52px,7vw,88px) 0;
}

.page-hero .lead{
  margin-top:20px;
}


/* SERVICE DETAIL PAGES */

.service-detail{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:clamp(32px,5vw,70px);
  align-items:start;
}

.service-panel{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:30px;
  box-shadow:0 18px 45px rgba(10,37,64,.08);
  position:sticky;
  top:105px;
}

.service-price{
  font-size:52px;
  font-weight:800;
  letter-spacing:-.05em;
  line-height:1;
}

.service-list{
  list-style:none;
  padding:0;
  margin:24px 0;
  display:grid;
  gap:12px;
}

.service-list li{
  display:flex;
  gap:11px;
  color:var(--slate);
}

.service-list li:before{
  content:"✓";
  color:var(--blurple);
  font-weight:800;
}


/* PAYMENT METHODS */

.payment-panel{
  display:grid;
  grid-template-columns:1.2fr auto;
  gap:32px;
  align-items:center;
  padding:34px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 16px 40px rgba(10,37,64,.06);
}

.payment-logos{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}

.payment-logos img{
  width:74px;
  height:34px;
  object-fit:contain;
  background:#fff;
  border:1px solid var(--line);
  border-radius:7px;
  padding:5px 8px;
}

.klarna-note{
  grid-column:1/-1;
  border-top:1px solid var(--line);
  padding-top:16px;
  display:flex;
  align-items:center;
  gap:10px;
}

.klarna-note strong{
  display:inline-flex;
  background:#FFB3C7;
  color:#111;
  padding:5px 12px;
  border-radius:7px;
  font-size:14px;
}

.klarna-note span{
  font-size:13px;
  font-weight:700;
  color:var(--mute);
}


/* PROSE */

.prose{
  max-width:760px;
}

.prose h2{
  margin-top:40px;
  font-size:30px;
}

.prose h3{
  margin-top:26px;
}

.prose p,
.prose li{
  color:var(--slate);
}


/* FOOTER */

footer{
  background:var(--ink);
  color:rgba(255,255,255,.64);
  padding:42px 0;
}

.foot{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:34px;
}

.foot-logo{
  max-width:210px;
  background:#fff;
  padding:9px 11px;
  border-radius:10px;
}

.foot p{
  font-size:14px;
  max-width:42ch;
  margin-top:14px;
}

.foot-links{
  display:grid;
  grid-template-columns:repeat(2,minmax(130px,1fr));
  gap:8px 28px;
  align-content:start;
}

.foot-links a{
  text-decoration:none;
  font-size:14px;
}

.foot-links a:hover{
  color:#fff;
}

.copyright{
  border-top:1px solid rgba(255,255,255,.14);
  margin-top:28px;
  padding-top:22px;
  font-size:13px;
}


/* REVEALS */

.rv{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .6s var(--ease),transform .6s var(--ease);
}

.rv.in{
  opacity:1;
  transform:none;
}

.d1{transition-delay:.08s}
.d2{transition-delay:.16s}
.d3{transition-delay:.24s}


/* MOBILE MENU */

.mobile-nav{
  display:none;
  position:relative;
}

.mobile-nav summary{
  list-style:none;
  cursor:pointer;
  font-weight:700;
  font-size:14px;
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 14px;
}

.mobile-nav summary::-webkit-details-marker{
  display:none;
}

.mobile-nav>div{
  position:absolute;
  right:0;
  top:46px;
  min-width:190px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px;
  box-shadow:0 14px 34px rgba(10,37,64,.14);
  display:grid;
  gap:2px;
}

.mobile-nav a{
  text-decoration:none;
  padding:9px 10px;
  border-radius:8px;
  font-weight:600;
  font-size:14px;
}

.mobile-nav a:hover{
  background:var(--wash);
  color:var(--blurple);
}


/* ADMIN STYLING */

.admin-wrap{
  max-width:980px;
  margin:0 auto;
  padding:48px var(--gut) 80px;
}

.admin-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  padding:24px;
  box-shadow:0 12px 30px rgba(10,37,64,.06);
  margin-top:18px;
}

.admin-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.admin-grid .full{
  grid-column:1/-1;
}

.admin-card label{
  display:grid;
  gap:7px;
  font-size:13px;
  font-weight:700;
  color:var(--ink);
}

.admin-card input,
.admin-card textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:10px;
  padding:11px 12px;
  font:inherit;
}

.admin-card textarea{
  min-height:94px;
  resize:vertical;
}

.admin-status{
  padding:12px 14px;
  border-radius:10px;
  background:var(--wash);
  color:var(--slate);
  font-size:14px;
  margin-top:14px;
}

.admin-status.warn{
  background:#fff8df;
  color:#725a00;
  border:1px solid #f0dda1;
}

.admin-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}


/* TABLET */

@media(max-width:980px){

  .hero-grid,
  .case-study,
  .split,
  .audit-grid,
  .service-detail,
  .payment-panel{
    grid-template-columns:1fr;
  }

  .field{
    aspect-ratio:16/10;
  }

  .service-panel{
    position:static;
  }

  .cards,
  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .phone-grid{
    max-width:650px;
  }

  .foot{
    grid-template-columns:1fr;
  }

  .hnav{
    display:none;
  }

  .mobile-nav{
    display:block;
  }

  .bar>.btn--sm{
    display:none;
  }

  .payment-logos{
    justify-content:flex-start;
  }
}


/* MOBILE */

@media(max-width:620px){

  body{
    font-size:16px;
  }

  .bar{
    height:72px;
    gap:10px;
  }

  .brand img{
    height:44px;
    max-width:185px;
  }

  .cards,
  .service-grid,
  .steps,
  .phone-grid{
    grid-template-columns:1fr;
  }

  .service-card h3,
  .service-summary{
    min-height:auto;
  }

  .client-logo{
    max-width:165px;
    max-height:50px;
  }

  .client-logo--kicker{
    max-width:92px;
    max-height:68px;
  }

  .strip .row{
    gap:24px;
  }

  .hero{
    padding-top:42px;
  }

  .field{
    aspect-ratio:4/3;
  }

  .service-price{
    font-size:44px;
  }

  .payment-panel{
    padding:24px;
  }

  .payment-logos img{
    width:66px;
    height:32px;
  }

  .admin-grid{
    grid-template-columns:1fr;
  }

  .page-hero h1{
    font-size:clamp(38px,11vw,52px);
  }
}


/* ACCESSIBILITY */

@media(prefers-reduced-motion:reduce){

  html{
    scroll-behavior:auto;
  }

  *,
  *:before,
  *:after{
    transition:none!important;
    animation:none!important;
  }

  .rv{
    opacity:1;
    transform:none;
  }
}
/* ===== 5 SERVICE CARD LAYOUT ===== */

.service-grid{
  grid-template-columns:repeat(6,1fr);
  gap:22px;
}

/* first row: 3 cards */
.service-grid .service-card:nth-child(1),
.service-grid .service-card:nth-child(2),
.service-grid .service-card:nth-child(3){
  grid-column:span 2;
}

/* second row: 2 centred cards */
.service-grid .service-card:nth-child(4){
  grid-column:2 / span 2;
}

.service-grid .service-card:nth-child(5){
  grid-column:4 / span 2;
}

/* keep every service button identical */
.service-card .btn,
.service-card.is-featured .btn{
  background:rgba(99,91,255,.08);
  color:var(--blurple);
  border-color:transparent;
  box-shadow:none;
}

.service-card .btn:hover,
.service-card.is-featured .btn:hover{
  background:rgba(99,91,255,.14);
  color:var(--blurple);
  box-shadow:none;
}

/* tablet */
@media(max-width:980px){

  .service-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .service-grid .service-card:nth-child(1),
  .service-grid .service-card:nth-child(2),
  .service-grid .service-card:nth-child(3),
  .service-grid .service-card:nth-child(4),
  .service-grid .service-card:nth-child(5){
    grid-column:auto;
  }

}

/* mobile */
@media(max-width:620px){

  .service-grid{
    grid-template-columns:1fr;
  }

}

/* ===== CRITICAL DYNAMIC BRAND SIZING =====
   These rules live in the main blocking stylesheet so dynamically inserted
   Shopify/Trustpilot marks are constrained before brand-ui.css finishes loading. */
.shopify-expert-strip{
  background:#fff;
  border-bottom:1px solid var(--line);
  overflow:hidden;
}
.shopify-expert-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:10px var(--gut);
  display:grid;
  grid-template-columns:auto auto;
  align-items:center;
  justify-content:center;
  column-gap:18px;
  row-gap:7px;
}
.shopify-official-mark{
  display:flex;
  align-items:center;
  flex:0 0 auto;
  text-decoration:none;
}
.shopify-official-mark img,
img[alt="Shopify"]{
  width:96px;
  max-width:96px;
  height:auto;
  display:block;
}
.trustpilot-profile-link{
  grid-column:1/-1;
  justify-self:center;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-decoration:none;
}
.trustpilot-profile-link img{
  width:92px;
  max-width:92px;
  height:auto;
  display:block;
}
@media(max-width:620px){
  .shopify-official-mark img,
  img[alt="Shopify"]{
    width:84px;
    max-width:84px;
  }
  .trustpilot-profile-link img{
    width:84px;
    max-width:84px;
  }
}

/* ===== COOKIE CONSENT ===== */
.wgu-cookie-banner{
  position:fixed;
  left:20px;
  right:20px;
  bottom:20px;
  z-index:9999;
  max-width:760px;
  margin:0 auto;
  padding:20px;
  background:#fff;
  color:var(--ink);
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:0 24px 70px rgba(10,37,64,.22);
}
.wgu-cookie-banner[hidden]{display:none!important}
.wgu-cookie-banner h2{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.2;
}
.wgu-cookie-banner p{
  margin:0;
  color:var(--slate);
  font-size:14px;
  line-height:1.55;
}
.wgu-cookie-banner a{
  color:var(--blurple);
  font-weight:700;
}
.wgu-cookie-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
.wgu-cookie-actions button{
  appearance:none;
  border-radius:999px;
  padding:10px 16px;
  font:700 14px var(--body);
  cursor:pointer;
}
.wgu-cookie-accept{
  border:1px solid var(--ink);
  background:var(--ink);
  color:#fff;
}
.wgu-cookie-reject{
  border:1px solid var(--line);
  background:#fff;
  color:var(--ink);
}
.wgu-cookie-status{
  display:block;
  margin-top:10px;
  color:var(--mute);
  font-size:12px;
}
.wgu-cookie-settings-link{
  cursor:pointer;
  background:none;
  border:0;
  padding:0;
  color:inherit;
  font:inherit;
  text-align:left;
  text-decoration:none;
}
.wgu-cookie-settings-link:hover{color:#fff}
@media(max-width:620px){
  .wgu-cookie-banner{
    left:12px;
    right:12px;
    bottom:12px;
    padding:17px;
  }
  .wgu-cookie-actions{
    display:grid;
    grid-template-columns:1fr;
  }
  .wgu-cookie-actions button{width:100%}
}

/* ===== FIRST-PAINT STABILITY =====
   The trust strip is assembled synchronously by site.js, but site.js sits at the
   end of each page. Keep the first paint hidden until brand-ui.css has loaded,
   at which point the strip already exists. The animation is a safety fallback. */
body{
  visibility:hidden;
  animation:wguSafetyReveal 0s 1.5s forwards;
}

@keyframes wguSafetyReveal{
  to{visibility:visible}
}
