/* ================================================================
   HYNO World — Public site styles
   Design language: deep navy + gold + brand red, serif display
   ================================================================ */
:root{
  --navy:#0e1f3a;
  --navy-2:#132a4d;
  --navy-3:#1b3766;
  --gold:#c9962f;
  --gold-2:#d9a942;
  --red:#c8102e;
  --red-2:#e0182f;
  --ink:#16202e;
  --muted:#5c6879;
  --muted-2:#8a93a1;
  --line:#e7eaf0;
  --bg:#ffffff;
  --bg-soft:#f5f7fb;
  --bg-soft-2:#eef1f7;
  --white:#ffffff;
  --radius:16px;
  --radius-sm:10px;
  --shadow:0 18px 50px rgba(14,31,58,.10);
  --shadow-sm:0 6px 20px rgba(14,31,58,.07);
  --container:1200px;
  --serif:"Playfair Display",Georgia,"Times New Roman",serif;
  --sans:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;overflow-y:scroll;overflow-x:hidden;scrollbar-gutter:stable}
body{overflow-x:hidden;max-width:100%}
/* Keep animated counters from changing width mid-count (prevents jitter) */
[data-count]{font-variant-numeric:tabular-nums}

/* Scroll reveal — only hides when JS is active; always visible otherwise */
.js [data-reveal]{opacity:0;transform:translateY(18px);transition:opacity .6s ease, transform .6s ease}
.js [data-reveal].in{opacity:1;transform:none}
body{
  margin:0;font-family:var(--sans);color:var(--ink);background:var(--bg);
  line-height:1.65;font-size:16px;-webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:var(--navy-3);text-decoration:none;transition:color .2s}
a:hover{color:var(--gold)}
h1,h2,h3,h4{font-family:var(--serif);color:var(--navy);line-height:1.15;font-weight:700;margin:0 0 .5em}
h1{font-size:clamp(2.2rem,5vw,3.6rem)}
h2{font-size:clamp(1.8rem,3.4vw,2.6rem)}
h3{font-size:1.35rem}
p{margin:0 0 1rem}
.container{max-width:var(--container);margin:0 auto;padding:0 24px}

/* ---- Eyebrow / kicker ---- */
.eyebrow{
  font-family:var(--sans);font-size:.78rem;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:var(--gold);margin:0 0 14px;display:inline-block;
}
.section{padding:90px 0}
.section--soft{background:var(--bg-soft)}
.section--navy{background:var(--navy);color:#d7e0ee}
.section--navy h1,.section--navy h2,.section--navy h3{color:#fff}
.lead{font-size:1.12rem;color:var(--muted);max-width:60ch}
.section--navy .lead{color:#aab8cd}
.center{text-align:center}
.center .lead{margin-left:auto;margin-right:auto}

/* ---- Buttons ---- */
.btn{
  display:inline-flex;align-items:center;gap:8px;font-weight:600;font-size:.95rem;
  padding:13px 26px;border-radius:999px;cursor:pointer;border:1.5px solid transparent;
  transition:transform .15s ease, background .2s, box-shadow .2s;line-height:1;
}
.btn:active{transform:translateY(1px)}
.btn-gold{background:var(--gold);color:#1a1204}
.btn-gold:hover{background:var(--gold-2);color:#1a1204;box-shadow:0 10px 24px rgba(201,150,47,.35)}
.btn-navy{background:var(--navy);color:#fff}
.btn-navy:hover{background:var(--navy-2);color:#fff}
.btn-outline{border-color:rgba(255,255,255,.4);color:#fff}
.btn-outline:hover{border-color:var(--gold);color:var(--gold)}
.btn-ghost{border-color:var(--line);color:var(--navy)}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold)}
.btn-sm{padding:9px 18px;font-size:.85rem}

/* ================= Header ================= */
.site-header{
  position:sticky;top:0;z-index:100;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(1.4) blur(10px);border-bottom:1px solid var(--line);
}
.nav{display:flex;align-items:center;justify-content:space-between;height:74px}
.nav-logo img{height:40px;width:auto}
.nav-links{display:flex;align-items:center;gap:30px;list-style:none;margin:0;padding:0}
.nav-links a{
  font-size:.9rem;font-weight:500;color:var(--ink);position:relative;padding:6px 0;
}
.nav-links a:hover,.nav-links a.active{color:var(--navy)}
.nav-links a.active::after,.nav-links a:hover::after{
  content:"";position:absolute;left:0;bottom:-2px;width:100%;height:2px;background:var(--gold);border-radius:2px;
}
.nav-cta{display:flex;align-items:center;gap:14px}
.nav-toggle{display:none;background:none;border:0;cursor:pointer;padding:8px}
.nav-toggle span{display:block;width:24px;height:2px;background:var(--navy);margin:5px 0;transition:.3s}

/* ================= Hero ================= */
.hero{
  position:relative;background:var(--navy);color:#fff;overflow:hidden;
  padding:96px 0 84px;
}
.hero::before{
  content:"";position:absolute;top:-160px;right:-160px;width:620px;height:620px;
  background:radial-gradient(circle at center,var(--navy-3),transparent 62%);opacity:.7;border-radius:50%;
}
.hero::after{
  content:"";position:absolute;bottom:-220px;left:-160px;width:520px;height:520px;
  background:radial-gradient(circle at center,var(--navy-2),transparent 60%);opacity:.8;border-radius:50%;
}
.hero .container{position:relative;z-index:2}
.hero .eyebrow{color:var(--gold-2)}
.hero h1{color:#fff;max-width:16ch}
.hero-sub{font-size:1.2rem;color:#aebbd0;max-width:56ch;margin:0 0 32px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.hero-slide{display:none}
.hero-slide.active{display:block;animation:fade .6s ease}
@keyframes fade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
.hero-dots{display:flex;gap:10px;margin-top:40px}
.hero-dots button{
  width:34px;height:4px;border-radius:4px;border:0;background:rgba(255,255,255,.25);cursor:pointer;transition:.3s;
}
.hero-dots button.active{background:var(--gold);width:48px}

/* Hero stat strip */
.hero-stats{
  display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:56px;
  padding-top:36px;border-top:1px solid rgba(255,255,255,.12);position:relative;z-index:2;
}
.hero-stats .stat .big{font-family:var(--serif);font-size:2.4rem;color:var(--gold-2);font-weight:700;line-height:1}
.hero-stats .stat .lbl{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:#93a1b8;margin-top:8px}

/* ================= Cards / grids ================= */
.grid{display:grid;gap:24px}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}

.card{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:30px;transition:transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:transparent}

/* Service card */
.svc-card{display:flex;flex-direction:column;height:100%}
.svc-badge{
  width:52px;height:52px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-weight:700;font-size:.8rem;color:#fff;background:var(--navy-3);margin-bottom:18px;letter-spacing:.02em;
  font-family:var(--sans);
}
.svc-card h3{margin-bottom:10px}
.svc-card p{color:var(--muted);font-size:.96rem;margin-bottom:18px}
.svc-card .more{margin-top:auto;font-weight:600;color:var(--gold);font-size:.9rem}
.svc-card .more::after{content:" →";transition:.2s}
.svc-card:hover .more::after{margin-left:4px}

/* Section heading block */
.sec-head{margin-bottom:52px;max-width:760px}
.sec-head.center{margin-left:auto;margin-right:auto}

/* ================= Flagship product cards ================= */
.flagship{
  position:relative;background:var(--navy);color:#fff;border-radius:20px;overflow:hidden;
  padding:38px;display:flex;flex-direction:column;min-height:320px;
}
.flagship::after{
  content:"";position:absolute;bottom:-120px;left:-80px;width:300px;height:300px;
  background:radial-gradient(circle,var(--navy-3),transparent 65%);opacity:.7;
}
.flagship .fp-eyebrow{color:var(--gold-2);font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;font-weight:700;position:relative;z-index:2}
.flagship h3{font-size:1.9rem;color:#fff;margin:12px 0 8px;position:relative;z-index:2}
.flagship .fp-tag{color:#9fb0c9;font-style:italic;position:relative;z-index:2;margin-bottom:20px}
.flagship .fp-stats{display:flex;gap:26px;margin-top:auto;position:relative;z-index:2;flex-wrap:wrap}
.flagship .fp-stats .n{font-family:var(--serif);font-size:1.5rem;color:var(--gold-2);font-weight:700;line-height:1}
.flagship .fp-stats .s{font-size:.66rem;letter-spacing:.1em;text-transform:uppercase;color:#8fa0b8;margin-top:6px;max-width:14ch}
.flagship .btn{margin-top:22px;position:relative;z-index:2;align-self:flex-start}

/* ================= Chips / pills ================= */
.chips{display:flex;flex-wrap:wrap;gap:10px}
.chip{
  background:var(--bg-soft);border:1px solid var(--line);border-radius:999px;
  padding:8px 16px;font-size:.85rem;color:var(--navy);font-weight:500;
}
.chip-dark{background:var(--navy-2);border-color:transparent;color:#cdd8ea}

/* ================= Split section (service detail) ================= */
.split{display:grid;grid-template-columns:1.1fr .9fr;gap:48px;align-items:start}
.panel-dark{
  background:var(--navy);color:#cdd8ea;border-radius:20px;padding:34px;position:relative;overflow:hidden;
}
.panel-dark h4{color:var(--gold-2);font-family:var(--sans);font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;margin-bottom:18px}
.panel-dark .chip{background:var(--navy-2);border-color:transparent;color:#dbe4f2}
.panel-note{font-style:italic;color:#8ba0bd;font-size:.9rem;margin-top:22px;border-top:1px solid rgba(255,255,255,.12);padding-top:18px}

.cap-list{list-style:none;padding:0;margin:0}
.cap-list li{position:relative;padding:10px 0 10px 30px;border-bottom:1px solid var(--line);color:var(--ink)}
.cap-list li:last-child{border-bottom:0}
.cap-list li::before{content:"";position:absolute;left:6px;top:18px;width:9px;height:9px;border-radius:50%;background:var(--gold)}

.tech-label{font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);font-weight:700;margin:28px 0 14px}

/* ================= Timeline ================= */
.timeline{position:relative;margin:40px 0}
.timeline::before{content:"";position:absolute;left:19px;top:0;bottom:0;width:2px;background:var(--line)}
.tl-item{position:relative;padding:0 0 34px 60px}
.tl-item::before{
  content:"";position:absolute;left:10px;top:4px;width:20px;height:20px;border-radius:50%;
  background:#fff;border:4px solid var(--navy-3);
}
.tl-item:last-child::before{border-color:var(--gold)}
.tl-year{font-family:var(--serif);color:var(--gold);font-weight:700;font-size:1.1rem}
.tl-title{font-weight:600;color:var(--navy);margin-top:2px}

/* ================= Reasons ================= */
.reason{background:var(--navy);color:#cdd8ea;border-radius:var(--radius);padding:30px;text-align:center}
.reason:nth-child(even){background:var(--bg-soft);color:var(--ink)}
.reason .num{
  width:56px;height:56px;border-radius:50%;background:var(--gold);color:var(--navy);
  font-family:var(--serif);font-weight:700;font-size:1.2rem;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;
}
.reason h3{font-size:1.15rem}
.reason:nth-child(even) h3{color:var(--navy)}
.reason p{font-size:.9rem;margin:0}

/* ================= Clients ================= */
.client-group{margin-bottom:44px}
.client-group h3{font-size:.85rem;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);font-family:var(--sans);font-weight:700;margin-bottom:18px}
.client-tags{display:flex;flex-wrap:wrap;gap:12px}
.client-tag{
  background:#fff;border:1px solid var(--line);border-radius:12px;padding:16px 22px;font-weight:600;color:var(--navy);
  box-shadow:var(--shadow-sm);
}

/* ================= Products index ================= */
.prod-cat{margin-bottom:16px;display:flex;align-items:center;gap:12px}
.prod-cat .dot{width:14px;height:14px;border-radius:4px}
.prod-cat h3{margin:0;font-size:1.05rem;letter-spacing:.06em;text-transform:uppercase;font-family:var(--sans);color:var(--navy)}
.prod-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-bottom:48px}
.prod-item{
  background:#fff;border:1px solid var(--line);border-radius:12px;padding:18px 20px;transition:.2s;
}
.prod-item:hover{border-color:var(--gold);box-shadow:var(--shadow-sm);transform:translateY(-2px)}
.prod-item .pn{font-weight:600;color:var(--navy)}
.prod-item .pd{font-size:.85rem;color:var(--muted);margin-top:4px}
.badge-flag{display:inline-block;background:var(--gold);color:var(--navy);font-size:.62rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:3px 8px;border-radius:6px;margin-left:8px;vertical-align:middle}

/* ================= Page banner ================= */
.page-banner{background:var(--navy);color:#fff;padding:70px 0 60px;position:relative;overflow:hidden}
.page-banner::before{content:"";position:absolute;top:-140px;right:-120px;width:460px;height:460px;background:radial-gradient(circle,var(--navy-3),transparent 65%);opacity:.6;border-radius:50%}
.page-banner .container{position:relative;z-index:2}
.page-banner h1{color:#fff;margin-bottom:8px}
.page-banner p{color:#aebbd0;max-width:60ch;margin:0}
.breadcrumb{font-size:.82rem;color:#8296b3;margin-bottom:16px}
.breadcrumb a{color:#aebbd0}
.breadcrumb a:hover{color:var(--gold)}

/* ================= CTA band ================= */
.cta-band{background:linear-gradient(120deg,var(--navy),var(--navy-3));color:#fff;border-radius:24px;padding:56px;text-align:center;position:relative;overflow:hidden}
.cta-band::before{content:"";position:absolute;bottom:-160px;right:-100px;width:400px;height:400px;background:radial-gradient(circle,rgba(201,150,47,.25),transparent 65%);border-radius:50%}
.cta-band h2{color:#fff;position:relative;z-index:2}
.cta-band p{color:#bcc9dc;max-width:52ch;margin:0 auto 28px;position:relative;z-index:2}
.cta-band .btn{position:relative;z-index:2}

/* ================= Contact ================= */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px}
.info-block{margin-bottom:28px}
.info-block .lbl{font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);font-weight:700;margin-bottom:8px}
.info-block a,.info-block p{color:var(--ink);margin:2px 0}
.form-field{margin-bottom:18px}
.form-field label{display:block;font-weight:600;font-size:.85rem;margin-bottom:6px;color:var(--navy)}
.form-field input,.form-field textarea,.form-field select{
  width:100%;padding:13px 14px;border:1px solid var(--line);border-radius:10px;font-family:inherit;font-size:.95rem;background:#fff;
}
.form-field input:focus,.form-field textarea:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(201,150,47,.15)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.honeypot{position:absolute;left:-9999px}
.alert{padding:14px 18px;border-radius:10px;margin-bottom:20px;font-size:.92rem}
.alert-error{background:#fdecec;border:1px solid #f5c2c2;color:#a11}
.alert-success{background:#eafaf0;border:1px solid #b6e6c8;color:#177245}

/* ================= Footer ================= */
.site-footer{background:var(--navy);color:#9fb0c9;padding:70px 0 0}
.footer-top{display:grid;grid-template-columns:1.6fr 1fr 1fr 1.2fr;gap:40px;padding-bottom:48px;border-bottom:1px solid rgba(255,255,255,.1)}
.site-footer h4{color:#fff;font-family:var(--sans);font-size:.78rem;letter-spacing:.14em;text-transform:uppercase;margin-bottom:18px}
.site-footer .flogo{height:38px;margin-bottom:18px}
.site-footer p{font-size:.9rem;color:#8fa0b8}
.footer-links{list-style:none;padding:0;margin:0}
.footer-links li{margin-bottom:10px}
.footer-links a{color:#9fb0c9;font-size:.9rem}
.footer-links a:hover{color:var(--gold)}
.footer-social{display:flex;gap:12px;margin-top:18px}
.footer-social a{width:38px;height:38px;border-radius:50%;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;color:#cdd8ea}
.footer-social a:hover{background:var(--gold);color:var(--navy)}
.footer-social svg{width:17px;height:17px}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;padding:22px 0;font-size:.82rem;color:#7f90a8;flex-wrap:wrap;gap:10px}
.footer-bottom a{color:#9fb0c9}

/* ================= 404 ================= */
.notfound{text-align:center;padding:120px 0}
.notfound .code{font-family:var(--serif);font-size:6rem;color:var(--gold);line-height:1}

/* ================= Responsive ================= */
@media(max-width:980px){
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .split{grid-template-columns:1fr}
  .prod-grid{grid-template-columns:repeat(2,1fr)}
  .footer-top{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
  .hero-stats{grid-template-columns:repeat(2,1fr);gap:28px}
}
@media(max-width:720px){
  .nav-links,.nav-cta .btn{display:none}
  .nav-toggle{display:block}
  .nav.open .nav-links{
    display:flex;flex-direction:column;position:absolute;top:74px;left:0;right:0;background:#fff;
    padding:18px 24px;gap:16px;border-bottom:1px solid var(--line);box-shadow:var(--shadow-sm);
  }
  .nav.open .nav-links a::after{display:none}
  .grid-2,.grid-3,.grid-4,.prod-grid{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .section{padding:64px 0}
  .cta-band{padding:40px 24px}
  .footer-top{grid-template-columns:1fr}
  .reason:nth-child(even){background:var(--navy);color:#cdd8ea}
  .reason:nth-child(even) h3{color:#fff}
}

/* ================================================================
   v2 — Design refresh, product media & professional animations
   ================================================================ */

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
}

/* ---- Header: shrink & elevate on scroll ---- */
.site-header{transition:background .3s, box-shadow .3s, border-color .3s}
.site-header.scrolled{background:rgba(255,255,255,.96);box-shadow:0 8px 30px rgba(14,20,40,.10);border-bottom-color:transparent}
.site-header.scrolled .nav{height:62px}
.nav{transition:height .3s ease}
.nav-logo img{transition:height .3s ease}
.site-header.scrolled .nav-logo img{height:34px}

/* ---- Hero: themed gradient + animated aurora ---- */
.hero{background:linear-gradient(135deg,var(--grad-a) 0%, var(--grad-b) 100%)}
.hero .aurora{position:absolute;inset:0;z-index:0;overflow:hidden;pointer-events:none}
.hero .aurora span{position:absolute;border-radius:50%;filter:blur(60px);opacity:.5;mix-blend-mode:screen}
.hero .aurora span:nth-child(1){width:520px;height:520px;top:-160px;right:-120px;background:radial-gradient(circle,var(--gold),transparent 60%);opacity:.22;animation:floatA 18s ease-in-out infinite}
.hero .aurora span:nth-child(2){width:460px;height:460px;bottom:-200px;left:-120px;background:radial-gradient(circle,var(--navy-3),transparent 60%);animation:floatB 22s ease-in-out infinite}
.hero .aurora span:nth-child(3){width:340px;height:340px;top:20%;left:40%;background:radial-gradient(circle,var(--gold-2),transparent 60%);opacity:.12;animation:floatA 26s ease-in-out infinite reverse}
@keyframes floatA{0%,100%{transform:translate(0,0)}50%{transform:translate(-30px,40px)}}
@keyframes floatB{0%,100%{transform:translate(0,0)}50%{transform:translate(40px,-30px)}}
.hero h1{background:linear-gradient(90deg,#fff 60%,var(--gold-2));-webkit-background-clip:text;background-clip:text}
.hero-actions .btn-gold{box-shadow:0 10px 30px var(--glow)}

/* ---- Animated shine on gold buttons ---- */
.btn-gold{position:relative;overflow:hidden}
.btn-gold::after{content:"";position:absolute;top:0;left:-120%;width:60%;height:100%;background:linear-gradient(120deg,transparent,rgba(255,255,255,.5),transparent);transform:skewX(-20deg);transition:left .6s ease}
.btn-gold:hover::after{left:140%}

/* ---- Eyebrow accent bar ---- */
.eyebrow{display:inline-flex;align-items:center;gap:9px}
.eyebrow::before{content:"";width:22px;height:2px;background:var(--gold);border-radius:2px;display:inline-block}

/* ---- Staggered reveal for grids ---- */
.js .grid [data-reveal],.js .prod-grid [data-reveal]{transition-delay:calc(var(--i,0) * 90ms)}
.js [data-reveal].rise{transform:translateY(26px)}
.js [data-reveal].in{transform:none}

/* ---- Cards: subtle gradient-border glow on hover ---- */
.card{position:relative}
.card::before{content:"";position:absolute;inset:0;border-radius:inherit;padding:1px;background:linear-gradient(135deg,var(--gold),transparent 55%);-webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude;opacity:0;transition:opacity .3s}
.card:hover::before{opacity:.9}
.svc-badge{background:linear-gradient(135deg,var(--navy-3),var(--navy-2));box-shadow:0 8px 20px rgba(0,0,0,.18);transition:transform .3s}
.card:hover .svc-badge{transform:rotate(-6deg) scale(1.06)}

/* ---- Hero stat counters ---- */
.hero-stats .stat .big{transition:transform .3s}
.hero-stats .stat:hover .big{transform:translateY(-3px)}

/* ---- Flagship cards: media + lift + accent sweep ---- */
.flagship{background:linear-gradient(150deg,var(--grad-a),var(--grad-b));transition:transform .3s ease, box-shadow .3s ease}
.flagship:hover{transform:translateY(-6px);box-shadow:0 26px 60px rgba(6,12,26,.4)}
.fp-media{margin:-38px -38px 22px;height:190px;overflow:hidden;position:relative;z-index:2}
.fp-media::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(10,16,30,.55),transparent 55%)}
.fp-media img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}
.flagship:hover .fp-media img{transform:scale(1.06)}

/* ---- Product catalogue thumbnails ---- */
.prod-item{overflow:hidden}
.prod-item.has-thumb{padding:0}
.prod-thumb{height:140px;overflow:hidden;background:var(--bg-soft-2)}
.prod-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.prod-item.has-thumb:hover .prod-thumb img{transform:scale(1.07)}
.prod-item.has-thumb .prod-item-body{padding:16px 18px}

/* ---- Product detail featured image ---- */
.product-hero-img{border-radius:16px;overflow:hidden;margin-bottom:28px;box-shadow:var(--shadow);border:1px solid var(--line)}
.product-hero-img img{width:100%;max-height:360px;object-fit:cover;transition:transform .8s ease}
.product-hero-img:hover img{transform:scale(1.03)}

/* ---- Chips animate in ---- */
.chip{transition:transform .2s, background .2s, color .2s}
.chip:hover{transform:translateY(-2px)}

/* ---- Section reveal helper for non-grid blocks ---- */
.js [data-reveal].fade-up{transform:translateY(22px)}

/* ---- Scroll progress bar ---- */
#scroll-progress{position:fixed;top:0;left:0;height:3px;width:0;background:linear-gradient(90deg,var(--gold),var(--gold-2));z-index:200;transition:width .1s ease}

/* ---- Back-to-top button ---- */
#to-top{position:fixed;right:22px;bottom:22px;width:46px;height:46px;border-radius:50%;border:0;background:var(--navy);color:#fff;font-size:1.1rem;cursor:pointer;opacity:0;transform:translateY(12px);pointer-events:none;transition:opacity .3s, transform .3s, background .2s;z-index:150;box-shadow:0 10px 26px rgba(0,0,0,.22)}
#to-top.show{opacity:1;transform:none;pointer-events:auto}
#to-top:hover{background:var(--gold);color:var(--navy)}

/* ---- Partner/logo row hover ---- */
.partner-pill,.logo-pill{transition:transform .25s, box-shadow .25s, border-color .25s}
.partner-pill:hover,.logo-pill:hover{transform:translateY(-3px)}

/* ---- Per-slide hero backgrounds ---- */
.hero{transition:background .5s ease, background-image .5s ease}
.hero.has-image .aurora,.hero.has-solid .aurora{display:none}
.hero.has-image::before,.hero.has-image::after,.hero.has-solid::before,.hero.has-solid::after{display:none}
.hero.has-image .hero-sub{color:#e6ecf6}

/* ---- Client logo bar / marquee ---- */
.logo-section{overflow:hidden}
.logo-marquee{position:relative;width:100%;-webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.logo-track{display:flex;align-items:center;gap:26px;flex-wrap:wrap;justify-content:center}
.logo-marquee.animate .logo-track{flex-wrap:nowrap;justify-content:flex-start;width:max-content;animation:marquee 34s linear infinite}
.logo-marquee.animate:hover .logo-track{animation-play-state:paused}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.logo-pill{flex:0 0 auto;display:flex;align-items:center;justify-content:center;height:96px;min-width:170px;padding:20px 26px;background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow-sm)}
.logo-pill img{max-height:52px;max-width:130px;width:auto;object-fit:contain;filter:grayscale(1);opacity:.72;transition:filter .3s, opacity .3s}
.logo-pill:hover img{filter:grayscale(0);opacity:1}
.logo-pill a{display:flex;align-items:center;justify-content:center}

/* Track Record page logos */
.client-logos{display:flex;flex-wrap:wrap;gap:18px;margin-bottom:14px}
.client-logos .logo-pill{height:88px;min-width:150px}
@media (prefers-reduced-motion: reduce){.logo-marquee.animate .logo-track{animation:none;flex-wrap:wrap;justify-content:center;width:auto}}
@media(max-width:760px){.logo-marquee.animate .logo-track{animation-duration:22s}}


/* ================================================================
   DESIGN STYLES — full visual variants (combine with any colour theme)
   Classic is the base look above; each block below transforms the site.
   ================================================================ */

/* ================= MODERN SaaS ================= */
body.design-modern{--serif:"Space Grotesk",-apple-system,sans-serif;--radius:10px;--radius-sm:7px}
body.design-modern h1,body.design-modern h2,body.design-modern h3,body.design-modern h4{letter-spacing:-.02em;font-weight:700}
body.design-modern .nav-links a{text-transform:uppercase;letter-spacing:.06em;font-size:.78rem;font-weight:600}
body.design-modern .btn{border-radius:10px;font-weight:600}
body.design-modern .btn-gold{background:linear-gradient(120deg,var(--gold),var(--gold-2))}
/* centered hero */
body.design-modern .hero{padding:110px 0 96px;text-align:center}
body.design-modern .hero h1{background:none;-webkit-text-fill-color:#fff;color:#fff;margin-left:auto;margin-right:auto}
body.design-modern .hero-sub{margin-left:auto;margin-right:auto}
body.design-modern .hero-actions{justify-content:center}
body.design-modern .hero-dots{justify-content:center}
body.design-modern .hero-stats{max-width:900px;margin-left:auto;margin-right:auto}
body.design-modern .eyebrow{justify-content:center;letter-spacing:.24em}
body.design-modern .sec-head{margin-left:auto;margin-right:auto;text-align:center}
body.design-modern .sec-head .eyebrow{justify-content:center}
body.design-modern .card,body.design-modern .prod-item{box-shadow:none;border:1px solid var(--line)}
body.design-modern .card::before{display:none}
body.design-modern .card:hover{transform:translateY(-4px);box-shadow:0 16px 36px rgba(14,20,40,.12);border-color:var(--gold)}
body.design-modern .svc-badge{border-radius:10px;background:linear-gradient(135deg,var(--navy-3),var(--navy-2))}
body.design-modern .section{padding:80px 0}
body.design-modern .flagship{border-radius:12px}
body.design-modern .cta-band{border-radius:16px}

/* ================= CORPORATE CLEAN ================= */
body.design-corporate{--serif:"Manrope",-apple-system,sans-serif;--sans:"Manrope",-apple-system,sans-serif;--radius:6px;--radius-sm:4px}
body.design-corporate h1,body.design-corporate h2,body.design-corporate h3{font-weight:800;letter-spacing:-.015em}
body.design-corporate .btn{border-radius:6px;font-weight:700}
body.design-corporate .hero{padding:96px 0 84px}
body.design-corporate .hero h1{background:none;-webkit-text-fill-color:#fff;color:#fff}
body.design-corporate .eyebrow{letter-spacing:.18em;font-weight:700}
body.design-corporate .nav-links a{font-weight:600}
/* boxed, bordered cards with header rule */
body.design-corporate .card,body.design-corporate .prod-item{border:1px solid var(--line);box-shadow:0 1px 0 var(--line);border-radius:6px}
body.design-corporate .card::before{display:none}
body.design-corporate .card:hover{transform:none;border-color:var(--navy-3);box-shadow:0 10px 28px rgba(14,20,40,.10)}
body.design-corporate .svc-badge{border-radius:6px}
body.design-corporate .section{padding:72px 0}
/* alternating boxed sections */
body.design-corporate .section--soft{border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
body.design-corporate .flagship{border-radius:8px}
body.design-corporate .cta-band{border-radius:8px}

/* ================= MINIMAL MONO ================= */
body.design-minimal{--serif:"Inter",-apple-system,sans-serif;--radius:2px;--radius-sm:2px}
body.design-minimal h1,body.design-minimal h2,body.design-minimal h3,body.design-minimal h4{font-weight:600;letter-spacing:-.03em}
body.design-minimal .eyebrow,body.design-minimal .tech-label,body.design-minimal .prod-cat h3,body.design-minimal .info-block .lbl,body.design-minimal .fp-eyebrow,body.design-minimal .hero-stats .lbl,body.design-minimal .fp-stats .s{font-family:"Space Mono",monospace!important;letter-spacing:.12em;text-transform:uppercase}
body.design-minimal .btn{border-radius:2px;font-weight:500;font-family:"Space Mono",monospace;letter-spacing:.04em;text-transform:uppercase;font-size:.8rem}
body.design-minimal .hero{padding:140px 0 120px}
body.design-minimal .hero h1{background:none;-webkit-text-fill-color:#fff;color:#fff;font-weight:600}
body.design-minimal .hero .aurora{opacity:.3}
body.design-minimal .section{padding:120px 0}
body.design-minimal .sec-head{margin-bottom:64px}
body.design-minimal .card,body.design-minimal .prod-item,body.design-minimal .logo-pill{box-shadow:none!important;border:1px solid var(--line)}
body.design-minimal .card::before{display:none}
body.design-minimal .card:hover{transform:none;border-color:var(--navy)}
body.design-minimal .svc-badge{background:transparent;color:var(--navy);border:1px solid var(--navy);box-shadow:none;border-radius:0}
body.design-minimal .card:hover .svc-badge{transform:none}
body.design-minimal .flagship{border-radius:2px}
body.design-minimal .cta-band{border-radius:2px;background:var(--navy)}
body.design-minimal .chip{border-radius:2px}

/* ================= ELEGANT LUXE ================= */
body.design-elegant{--serif:"Fraunces",Georgia,serif;--radius:3px;--radius-sm:3px}
body.design-elegant h1,body.design-elegant h2,body.design-elegant h3{font-weight:600;letter-spacing:.005em}
body.design-elegant h1{font-weight:700}
body.design-elegant .btn{border-radius:3px;font-weight:500;letter-spacing:.04em;padding:15px 30px}
body.design-elegant .btn-gold{background:transparent;color:var(--gold);border:1px solid var(--gold)}
body.design-elegant .btn-gold:hover{background:var(--gold);color:var(--navy)}
/* centered, airy hero with rule under eyebrow */
body.design-elegant .hero{padding:130px 0 110px;text-align:center}
body.design-elegant .hero h1{background:none;-webkit-text-fill-color:#fff;color:#fff;margin:0 auto;font-size:clamp(2.6rem,5.5vw,4.2rem)}
body.design-elegant .hero-sub{margin:0 auto}
body.design-elegant .hero-actions{justify-content:center}
body.design-elegant .hero-dots{justify-content:center}
body.design-elegant .hero-stats{max-width:860px;margin-left:auto;margin-right:auto}
body.design-elegant .eyebrow{justify-content:center;letter-spacing:.34em;font-size:.7rem;color:var(--gold-2)}
body.design-elegant .sec-head{text-align:center;margin-left:auto;margin-right:auto}
body.design-elegant .sec-head .eyebrow{justify-content:center}
body.design-elegant .card,body.design-elegant .prod-item{box-shadow:none;border:1px solid var(--line);border-radius:3px}
body.design-elegant .card::before{display:none}
body.design-elegant .card:hover{transform:translateY(-3px);box-shadow:0 18px 40px rgba(14,20,40,.10);border-color:var(--gold)}
body.design-elegant .svc-badge{background:transparent;color:var(--gold);border:1px solid var(--gold);box-shadow:none;border-radius:50%}
body.design-elegant .section{padding:104px 0}
body.design-elegant .flagship{border-radius:4px}
body.design-elegant .cta-band{border-radius:4px}

/* ================= BOLD BRUTALIST ================= */
body.design-bold{--serif:"Archivo",-apple-system,sans-serif;--sans:"Archivo",-apple-system,sans-serif;--radius:0px;--radius-sm:0px}
body.design-bold h1{font-weight:900;letter-spacing:-.03em;font-size:clamp(2.8rem,7vw,5rem);line-height:.98}
body.design-bold h2{font-weight:800;letter-spacing:-.02em}
body.design-bold h3{font-weight:800}
body.design-bold .eyebrow{font-weight:800;letter-spacing:.1em;text-transform:uppercase}
body.design-bold .btn{border-radius:0;font-weight:800;text-transform:uppercase;letter-spacing:.03em;padding:16px 30px;border:2px solid var(--navy)}
body.design-bold .btn-gold{border-color:var(--gold);box-shadow:5px 5px 0 var(--navy)}
body.design-bold .btn-outline{color:#fff;border-color:#fff}
body.design-bold .hero{padding:110px 0 96px}
body.design-bold .hero h1{background:none;-webkit-text-fill-color:#fff;color:#fff}
body.design-bold .card,body.design-bold .prod-item{border:2px solid var(--navy);border-radius:0;box-shadow:7px 7px 0 var(--navy);transition:transform .15s, box-shadow .15s}
body.design-bold .card::before{display:none}
body.design-bold .card:hover{transform:translate(-3px,-3px);box-shadow:10px 10px 0 var(--gold)}
body.design-bold .svc-badge{border-radius:0;border:2px solid var(--navy);background:var(--gold);color:var(--navy);box-shadow:none}
body.design-bold .flagship{border-radius:0;border:2px solid var(--navy);box-shadow:7px 7px 0 var(--gold)}
body.design-bold .section{padding:82px 0}
body.design-bold .cta-band{border-radius:0;border:2px solid var(--gold)}
body.design-bold .chip{border-radius:0;border:1.5px solid var(--navy)}
body.design-bold .prod-item.has-thumb .prod-thumb{border-bottom:2px solid var(--navy)}

/* ================= VIBRANT GRADIENT ================= */
body.design-gradient{--serif:"Space Grotesk",-apple-system,sans-serif;--radius:22px;--radius-sm:14px}
body.design-gradient h1,body.design-gradient h2,body.design-gradient h3{font-weight:700;letter-spacing:-.02em}
body.design-gradient .btn{border-radius:999px;padding:15px 32px;font-weight:600}
body.design-gradient .btn-gold{background:linear-gradient(120deg,var(--gold),var(--gold-2));box-shadow:0 12px 30px var(--glow)}
body.design-gradient .hero{padding:112px 0 96px;text-align:center}
body.design-gradient .hero::after{content:"";position:absolute;inset:0;background:radial-gradient(1000px 400px at 50% -10%,var(--gold),transparent 60%);opacity:.16;z-index:0}
body.design-gradient .hero h1{background:linear-gradient(90deg,#fff,var(--gold-2));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;margin:0 auto}
body.design-gradient .hero-sub{margin:0 auto}
body.design-gradient .hero-actions,body.design-gradient .hero-dots{justify-content:center}
body.design-gradient .hero-stats{max-width:900px;margin-left:auto;margin-right:auto}
body.design-gradient .eyebrow{justify-content:center;letter-spacing:.2em}
body.design-gradient .sec-head{text-align:center;margin-left:auto;margin-right:auto}
body.design-gradient .sec-head .eyebrow{justify-content:center}
body.design-gradient .card,body.design-gradient .prod-item{border-radius:22px;border:1px solid var(--line);box-shadow:0 18px 44px rgba(14,20,40,.10)}
body.design-gradient .card::before{background:linear-gradient(135deg,var(--gold),var(--navy-3) 60%);opacity:0}
body.design-gradient .card:hover::before{opacity:.6}
body.design-gradient .card:hover{transform:translateY(-6px)}
body.design-gradient .svc-badge{border-radius:16px;background:linear-gradient(135deg,var(--gold),var(--gold-2));color:var(--navy)}
body.design-gradient .flagship{border-radius:26px;background:linear-gradient(150deg,var(--grad-a),var(--grad-b))}
body.design-gradient .cta-band{border-radius:30px;background:linear-gradient(120deg,var(--navy),var(--navy-3))}
body.design-gradient .prod-item.has-thumb .prod-thumb{border-radius:22px 22px 0 0}
body.design-gradient .chip{border-radius:999px}
body.design-gradient .logo-pill{border-radius:20px}

/* Reduced motion: disable brutalist hover translate jump */
@media (prefers-reduced-motion: reduce){
  body.design-bold .card:hover{transform:none}
}

/* ---- Animated hero slide text (fade-up stagger on the active slide) ---- */
.js .hero-slide .eyebrow,
.js .hero-slide h1,
.js .hero-slide .hero-sub,
.js .hero-slide .hero-actions{opacity:0}
.js .hero-slide.active .eyebrow{animation:slideText .6s .10s cubic-bezier(.22,1,.36,1) forwards}
.js .hero-slide.active h1{animation:slideText .7s .22s cubic-bezier(.22,1,.36,1) forwards}
.js .hero-slide.active .hero-sub{animation:slideText .7s .36s cubic-bezier(.22,1,.36,1) forwards}
.js .hero-slide.active .hero-actions{animation:slideText .7s .5s cubic-bezier(.22,1,.36,1) forwards}
@keyframes slideText{from{opacity:0;transform:translateY(26px)}to{opacity:1;transform:none}}
@media (prefers-reduced-motion: reduce){
  .js .hero-slide .eyebrow,.js .hero-slide h1,.js .hero-slide .hero-sub,.js .hero-slide .hero-actions{opacity:1!important;animation:none!important;transform:none!important}
}

/* ---- Settings-driven page-header banner (Services) ---- */
.page-banner.banner-image,.page-banner.banner-color{background-color:var(--navy)}
.page-banner.banner-image::before,.page-banner.banner-color::before{display:none}
.page-banner.banner-image{padding:96px 0 84px}
.page-banner.banner-image p,.page-banner.banner-color p{color:#e6ecf6}
.page-banner.banner-image .breadcrumb,.page-banner.banner-color .breadcrumb{color:#cfd8e6}

/* ================= Page builder blocks ================= */
.page-blocks{max-width:860px;margin:0 auto}
.page-blocks.wide{max-width:1100px}
.blk{margin:0 0 26px}
.blk-left{text-align:left}.blk-center{text-align:center}.blk-right{text-align:right}
.blk-heading h2{margin:.2em 0}.blk-heading h3{margin:.2em 0}
.blk-text{line-height:1.8;color:var(--ink)}
.blk-text.blk-narrow{max-width:620px}
.blk-text.blk-center{margin-left:auto;margin-right:auto}
.blk-text a{color:var(--navy-3);text-decoration:underline}
.blk-text ul,.blk-text ol{padding-left:1.3em;margin:.6em 0}
.blk-text li{margin:.3em 0}
.blk-image{margin:0 0 26px}
.blk-image img{width:100%;height:auto;border-radius:14px;display:block}
.blk-image figcaption{font-size:.85rem;color:var(--muted);margin-top:8px;text-align:center}
.blk-img-normal{max-width:720px}
.blk-img-normal.blk-center{margin-left:auto;margin-right:auto}
.blk-img-wide{max-width:1000px;margin-left:auto;margin-right:auto}
.blk-img-full{max-width:100%}
.blk-gallery{display:grid;gap:12px}
.blk-gallery.gcols-2{grid-template-columns:repeat(2,1fr)}
.blk-gallery.gcols-3{grid-template-columns:repeat(3,1fr)}
.blk-gallery.gcols-4{grid-template-columns:repeat(4,1fr)}
.blk-gallery .gitem{display:block;overflow:hidden;border-radius:12px;aspect-ratio:4/3}
.blk-gallery .gitem img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.blk-gallery .gitem:hover img{transform:scale(1.06)}
.blk-video .video-embed{position:relative;padding-bottom:56.25%;height:0;border-radius:14px;overflow:hidden;background:#000}
.blk-video .video-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
.blk-video video{width:100%;border-radius:14px;display:block}
.blk-video figcaption{font-size:.85rem;color:var(--muted);margin-top:8px;text-align:center}
.blk-button{margin:8px 0 26px}
.blk-quote{border-left:4px solid var(--gold);padding:6px 0 6px 22px;margin:0 0 26px;font-family:var(--serif);font-size:1.4rem;line-height:1.5;color:var(--navy)}
.blk-quote cite{display:block;font-family:var(--sans);font-size:.9rem;color:var(--muted);font-style:normal;margin-top:12px}
.blk-divider hr{border:0;border-top:1px solid var(--line);margin:10px 0}
.blk-html img{max-width:100%}
.btn-outline-dark{background:transparent;border:1.5px solid var(--navy);color:var(--navy)}
.btn-outline-dark:hover{background:var(--navy);color:#fff}
@media(max-width:680px){.blk-gallery.gcols-3,.blk-gallery.gcols-4{grid-template-columns:repeat(2,1fr)}}

/* ---- Hero video background ---- */
.hero-video{position:absolute;inset:0;z-index:0;overflow:hidden;pointer-events:none}
.hero.has-video .aurora{display:none}
.hero.has-video::before,.hero.has-video::after{display:none}
.hero-video video{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);min-width:100%;min-height:100%;width:auto;height:auto;object-fit:cover;border:0}
/* YouTube: fill and oversize so the title bar (top) and any control strip (bottom) are cropped out of view */
.hero-video .yt-holder{position:absolute;top:50%;left:50%;width:100%;height:100%;transform:translate(-50%,-50%);overflow:hidden}
.hero-video iframe{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) scale(1.5);width:100%;height:100%;min-height:100%;min-width:177.77vh;pointer-events:none;border:0}
@media (min-aspect-ratio:16/9){.hero-video iframe{width:100vw;height:56.25vw;transform:translate(-50%,-50%) scale(1.35)}}
.hero-video::after{content:"";position:absolute;inset:0;background:var(--hero-overlay,rgba(8,14,28,.55));z-index:1;pointer-events:none}
@media (prefers-reduced-motion: reduce){.hero-video video,.hero-video iframe{display:none}}

/* ===== Page builder: new blocks & bands ===== */
.blk-band{margin:0 0 26px;padding:34px;border-radius:16px}
.blk-band .blk{margin-bottom:0}
.blk-band-soft{background:var(--bg-soft,#f4f6fa)}
.blk-band-dark{background:var(--navy);color:#fff}
.blk-band-dark .blk-text,.blk-band-dark h2,.blk-band-dark h3,.blk-band-dark h4{color:#fff}
.blk-band-accent{background:linear-gradient(135deg,var(--ga,#12233f),var(--gb,#0b1a30));color:#fff}
.blk-band-accent .blk-text,.blk-band-accent h2,.blk-band-accent h3{color:#fff}
.blk-columns{display:grid;grid-template-columns:1fr 1fr;gap:28px}
.blk-columns .blk-col{line-height:1.8;color:var(--ink)}
.blk-columns img{max-width:100%;border-radius:12px}
@media(max-width:680px){.blk-columns{grid-template-columns:1fr}}
.blk-cards{display:grid;gap:18px}
.blk-cards.fcols-2{grid-template-columns:repeat(2,1fr)}
.blk-cards.fcols-3{grid-template-columns:repeat(3,1fr)}
.blk-cards.fcols-4{grid-template-columns:repeat(4,1fr)}
.feat-card{background:#fff;border:1px solid var(--line,#e7eaf0);border-radius:14px;padding:24px}
.feat-card .card-ic{font-size:1.8rem;margin-bottom:10px}
.feat-card h4{margin:0 0 8px;color:var(--navy);font-size:1.1rem}
.feat-card p{margin:0;color:var(--muted);line-height:1.6;font-size:.95rem}
.blk-band-dark .feat-card,.blk-band-accent .feat-card{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.12)}
.blk-band-dark .feat-card h4,.blk-band-accent .feat-card h4{color:#fff}
.blk-band-dark .feat-card p,.blk-band-accent .feat-card p{color:#c7d3e6}
.blk-cta{background:linear-gradient(135deg,var(--ga,#12233f),var(--gb,#0b1a30));border-radius:16px;padding:34px 38px;color:#fff}
.blk-cta .cta-inner{display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap}
.blk-cta h3{margin:0 0 6px;font-size:1.5rem;color:#fff}
.blk-cta p{margin:0;color:#c7d3e6;max-width:60ch}
@media(max-width:680px){.blk-cards.fcols-3,.blk-cards.fcols-4{grid-template-columns:1fr}.blk-cta .cta-inner{flex-direction:column;align-items:flex-start}}

/* Product app-style icon beside name */
.pn-icon{width:28px;height:28px;border-radius:7px;object-fit:contain;background:rgba(255,255,255,.06);vertical-align:middle;margin-right:9px}
.h1-icon{width:56px;height:56px;border-radius:13px;object-fit:contain;background:rgba(255,255,255,.06);vertical-align:middle;margin-right:16px}
.pn{display:flex;align-items:center;gap:0}

/* ===== New designs ===== */
/* Magazine Editorial */
body.design-editorial{--serif:"Fraunces","Playfair Display",serif;--radius:4px;--radius-sm:3px}
body.design-editorial h1,body.design-editorial h2,body.design-editorial h3{font-family:var(--serif);font-weight:700;letter-spacing:-.01em;line-height:1.05}
body.design-editorial .hero h1{font-size:clamp(3rem,7vw,5.2rem)}
body.design-editorial .eyebrow{font-family:"Space Mono",monospace;letter-spacing:.2em}
body.design-editorial .sec-head{border-top:2px solid var(--navy);padding-top:20px}
body.design-editorial .sec-head h2{font-size:clamp(2rem,4vw,3rem)}
body.design-editorial .nav-links a{font-family:var(--serif);font-size:1rem}
body.design-editorial .card,body.design-editorial .prod-item{border:1px solid var(--line);box-shadow:none;border-radius:4px}
body.design-editorial .card:hover{border-color:var(--navy);transform:none}
body.design-editorial .btn{border-radius:3px;font-weight:600}
body.design-editorial .section{padding:78px 0}
body.design-editorial .blk-text:first-letter{}
/* Techno Sharp */
body.design-techno{--serif:"Space Grotesk",-apple-system,sans-serif;--radius:0;--radius-sm:0}
body.design-techno h1,body.design-techno h2,body.design-techno h3,body.design-techno h4{letter-spacing:-.02em;font-weight:700}
body.design-techno .eyebrow,body.design-techno .tech-label,body.design-techno .prod-cat h3,body.design-techno .hero-stats .lbl{font-family:"Space Mono",monospace!important;letter-spacing:.14em;text-transform:uppercase}
body.design-techno .btn{border-radius:0;font-family:"Space Mono",monospace;text-transform:uppercase;letter-spacing:.05em;font-size:.8rem;font-weight:600}
body.design-techno .hero h1{background:none;-webkit-text-fill-color:#fff;color:#fff}
body.design-techno .card,body.design-techno .prod-item,body.design-techno .flagship,body.design-techno .cta-band,body.design-techno .panel-dark,body.design-techno .svc-badge{border-radius:0}
body.design-techno .card,body.design-techno .prod-item{border:1px solid var(--line);box-shadow:none}
body.design-techno .card:hover{transform:none;border-color:var(--gold);box-shadow:inset 0 -3px 0 var(--gold)}
body.design-techno .nav-links a{text-transform:uppercase;letter-spacing:.06em;font-size:.78rem;font-weight:600}
body.design-techno .nav-links a.active{box-shadow:inset 0 -2px 0 var(--gold)}
body.design-techno .section{padding:80px 0}
/* Soft Rounded */
body.design-rounded{--serif:"Manrope",-apple-system,sans-serif;--sans:"Manrope",-apple-system,sans-serif;--radius:22px;--radius-sm:14px}
body.design-rounded h1,body.design-rounded h2,body.design-rounded h3{font-weight:800;letter-spacing:-.02em}
body.design-rounded .btn{border-radius:999px;font-weight:700;padding:14px 26px}
body.design-rounded .card,body.design-rounded .prod-item,body.design-rounded .panel-dark,body.design-rounded .flagship{border-radius:22px;box-shadow:0 14px 40px rgba(14,20,40,.10);border:none}
body.design-rounded .card:hover{transform:translateY(-6px);box-shadow:0 22px 54px rgba(14,20,40,.16)}
body.design-rounded .svc-badge{border-radius:16px}
body.design-rounded .cta-band,body.design-rounded .blk-cta,body.design-rounded .blk-band{border-radius:26px}
body.design-rounded .hero h1{background:none;-webkit-text-fill-color:#fff;color:#fff}
body.design-rounded .feat-card{border-radius:18px}
body.design-rounded .section{padding:82px 0}


/* ================= Extra animations ================= */
@keyframes hdrDown{from{transform:translateY(-100%);opacity:0}to{transform:translateY(0);opacity:1}}
.js .site-header{animation:hdrDown .6s cubic-bezier(.2,.7,.2,1) both}
.js .nav-links li{opacity:0;animation:fadeDownItem .5s ease forwards}
@keyframes fadeDownItem{from{opacity:0;transform:translateY(-8px)}to{opacity:1;transform:none}}
.js .nav-links li:nth-child(1){animation-delay:.15s}
.js .nav-links li:nth-child(2){animation-delay:.22s}
.js .nav-links li:nth-child(3){animation-delay:.29s}
.js .nav-links li:nth-child(4){animation-delay:.36s}
.js .nav-links li:nth-child(5){animation-delay:.43s}
.js .nav-links li:nth-child(6){animation-delay:.5s}
.js .nav-links li:nth-child(7){animation-delay:.57s}

/* animated eyebrow underline */
.eyebrow{position:relative}
.sec-head .eyebrow::after,.hero .eyebrow::after{content:"";display:inline-block;width:0;height:2px;background:var(--gold);vertical-align:middle;margin-left:10px;transition:width .8s ease .2s}
.js [data-reveal].in .eyebrow::after,.js .sec-head.in .eyebrow::after{width:34px}

/* heading reveal: clip-up */
@keyframes headingRise{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none}}
.js .sec-head h2{animation:none}
.js [data-reveal].in h2,.js [data-reveal].in h3{animation:headingRise .7s cubic-bezier(.2,.7,.2,1) both}

/* button shine sweep on hover */
.btn{position:relative;overflow:hidden}
.btn::after{content:"";position:absolute;top:0;left:-120%;width:60%;height:100%;background:linear-gradient(120deg,transparent,rgba(255,255,255,.35),transparent);transform:skewX(-20deg);transition:none}
.btn:hover::after{left:130%;transition:left .7s ease}

/* card hover lift (applies broadly) */
.js .card,.js .prod-item,.js .feat-card,.js .flagship{transition:transform .35s cubic-bezier(.2,.7,.2,1),box-shadow .35s ease,border-color .35s ease}
.js .card:hover,.js .feat-card:hover{transform:translateY(-6px)}

/* reveal direction variants */
.js [data-reveal].from-left{transform:translateX(-28px)}
.js [data-reveal].from-right{transform:translateX(28px)}
.js [data-reveal].zoom-in{transform:scale(.94)}
.js [data-reveal].in.from-left,.js [data-reveal].in.from-right,.js [data-reveal].in.zoom-in{transform:none}

/* count-up numbers subtle pulse when revealed */
@keyframes statPop{0%{transform:scale(.9);opacity:0}60%{transform:scale(1.04)}100%{transform:scale(1);opacity:1}}
.js [data-reveal].in [data-count],.js .hero-stats.in .num{animation:statPop .7s ease both}

/* =======================================================================
   PRO MAX — "Engineered Precision"  (body.design-promax)
   Architectural premium: Bricolage display, Space Mono labels, hairlines,
   engineering corner-ticks. Colour comes from the active theme vars.
   ======================================================================= */
body.design-promax{
  --serif:"Bricolage Grotesque",-apple-system,sans-serif;
  --sans:"Inter",-apple-system,sans-serif;
  --mono:"Space Mono",ui-monospace,monospace;
  --radius:6px;--radius-sm:4px;
  letter-spacing:-.005em;
}
body.design-promax h1,body.design-promax h2,body.design-promax h3,body.design-promax h4{
  font-family:var(--serif);font-weight:800;letter-spacing:-.03em;line-height:1.02;
}
body.design-promax .container{max-width:1240px}

/* --- Mono eyebrows with an index tick --- */
body.design-promax .eyebrow{
  font-family:var(--mono);font-weight:700;font-size:.72rem;letter-spacing:.22em;text-transform:uppercase;
  display:inline-flex;align-items:center;gap:10px;color:var(--gold-2,#c9962f);
}
body.design-promax .eyebrow::before{content:"";width:22px;height:1px;background:currentColor;opacity:.6}

/* --- Header: refined, hairline, precise --- */
body.design-promax .site-header{backdrop-filter:saturate(1.3) blur(10px);border-bottom:1px solid var(--line)}
body.design-promax .nav-links a{font-size:.82rem;letter-spacing:.01em;font-weight:600}
body.design-promax .nav-links a.active{color:var(--gold-2,#c9962f)}
body.design-promax .nav-links a.active::after{content:"";position:absolute;left:0;right:auto;bottom:-6px;width:6px;height:6px;background:var(--gold);border-radius:0;transform:rotate(45deg)}
body.design-promax .btn{border-radius:var(--radius-sm);font-weight:700;letter-spacing:.01em}
body.design-promax .btn-outline,body.design-promax .btn-outline-dark{font-family:var(--mono);text-transform:uppercase;font-size:.76rem;letter-spacing:.08em}

/* --- Hero: oversized editorial headline + systems ticker --- */
body.design-promax .hero{border-bottom:1px solid var(--line)}
body.design-promax .hero h1{font-size:clamp(2.8rem,7vw,6rem);font-weight:800;letter-spacing:-.045em;-webkit-text-fill-color:currentColor;background:none}
body.design-promax .hero-sub{font-size:1.15rem;max-width:56ch;color:var(--muted)}
body.design-promax .hero-stats{border-top:1px solid rgba(255,255,255,.14);margin-top:54px;padding-top:26px;gap:0}
body.design-promax .hero-stats .stat{padding:0 34px;border-left:1px solid rgba(255,255,255,.12)}
body.design-promax .hero-stats .stat:first-child{padding-left:0;border-left:0}
body.design-promax .hero-stats .big{font-family:var(--serif);font-weight:800;letter-spacing:-.03em}
body.design-promax .hero-stats .lbl{font-family:var(--mono);font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;opacity:.7}
body.design-promax .hero-dots button.active{background:var(--gold);border-radius:0;width:26px}

/* --- Section headers: heading + trailing hairline --- */
body.design-promax .section{padding:96px 0}
body.design-promax .sec-head{position:relative}
body.design-promax .sec-head h2{font-size:clamp(2rem,4.2vw,3.3rem)}
body.design-promax .sec-head::after{content:"";display:block;height:1px;background:var(--line);margin-top:26px}

/* --- Cards: hairline frame + engineering corner ticks + top-rule on hover --- */
body.design-promax .card,
body.design-promax .prod-item,
body.design-promax .feat-card,
body.design-promax .svc-card,
body.design-promax .flagship{
  position:relative;border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:none;transition:border-color .35s ease,transform .35s cubic-bezier(.2,.7,.2,1);
}
body.design-promax .card::before,
body.design-promax .svc-card::before,
body.design-promax .feat-card::before{
  content:"";position:absolute;top:12px;left:12px;width:12px;height:12px;
  border-top:2px solid var(--gold);border-left:2px solid var(--gold);opacity:.55;transition:opacity .35s ease;
}
body.design-promax .card::after,
body.design-promax .svc-card::after,
body.design-promax .feat-card::after{
  content:"";position:absolute;bottom:12px;right:12px;width:12px;height:12px;
  border-bottom:2px solid var(--line);border-right:2px solid var(--line);transition:border-color .35s ease;
}
body.design-promax .card:hover,
body.design-promax .svc-card:hover,
body.design-promax .feat-card:hover,
body.design-promax .prod-item:hover{transform:translateY(-6px);border-color:var(--navy-3,var(--gold))}
body.design-promax .card:hover::before,
body.design-promax .svc-card:hover::before,
body.design-promax .feat-card:hover::before{opacity:1}
body.design-promax .card:hover::after,
body.design-promax .svc-card:hover::after,
body.design-promax .feat-card:hover::after{border-color:var(--gold)}

/* service code badge → mono chip */
body.design-promax .svc-badge{font-family:var(--mono);font-weight:700;letter-spacing:.06em;border-radius:var(--radius-sm)}
body.design-promax .prod-cat h3,body.design-promax .tech-label{font-family:var(--mono);letter-spacing:.12em;text-transform:uppercase;font-size:.72rem}

/* dark panels & CTA: architectural */
body.design-promax .panel-dark,body.design-promax .cta-band,body.design-promax .blk-cta{
  border-radius:var(--radius);border:1px solid rgba(255,255,255,.10);position:relative
}
body.design-promax .panel-dark h4{font-family:var(--mono);font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;opacity:.8}
body.design-promax .cta-band h2,body.design-promax .blk-cta h3{font-size:clamp(1.8rem,3.5vw,2.8rem)}

/* blocks: precise headings + mono h3 kicker feel */
body.design-promax .page-blocks .blk-heading h2{font-size:clamp(1.9rem,3.6vw,2.9rem)}
body.design-promax .blk-band{border-radius:var(--radius);border:1px solid var(--line)}

/* footer: hairline, mono labels */
body.design-promax .site-footer{border-top:1px solid var(--line)}
body.design-promax .site-footer h4{font-family:var(--mono);font-size:.7rem;letter-spacing:.16em;text-transform:uppercase;opacity:.85}

/* count-up numbers use tabular figures for a spec feel */
body.design-promax [data-count],body.design-promax .big{font-variant-numeric:tabular-nums}

@media (max-width:720px){
  body.design-promax .hero-stats{flex-wrap:wrap;gap:18px 0}
  body.design-promax .hero-stats .stat{padding:0 18px}
  body.design-promax .section{padding:64px 0}
}

/* =======================================================================
   GLASSMORPHISM — "Aurora"  (body.design-glass)
   Frosted glass cards over a soft gradient field, bold Space Grotesk type,
   smooth hover glows. Colour comes from the active theme vars.
   ======================================================================= */
body.design-glass{
  --serif:"Space Grotesk",-apple-system,sans-serif;
  --sans:"Inter",-apple-system,sans-serif;
  --radius:20px;--radius-sm:14px;
  position:relative;
  background:
    radial-gradient(1100px 620px at 12% -8%, var(--glow), transparent 60%),
    radial-gradient(1000px 680px at 108% 8%, var(--glow), transparent 62%),
    linear-gradient(180deg, var(--grad-a), var(--grad-b));
  background-attachment:fixed;color:#eef2fb;
}
body.design-glass h1,body.design-glass h2,body.design-glass h3,body.design-glass h4{
  font-family:var(--serif);font-weight:700;letter-spacing:-.03em;color:#fff;
}
body.design-glass .hero h1{font-size:clamp(2.8rem,7vw,5.4rem);font-weight:700;-webkit-text-fill-color:#fff;background:none}
body.design-glass p,body.design-glass .hero-sub{color:#c3cbe0}
body.design-glass .eyebrow{color:var(--gold-2)}

/* sections become transparent so the gradient field shows through */
body.design-glass .section,
body.design-glass .section--soft,
body.design-glass .page-banner{background:transparent!important}
body.design-glass .section--soft{border-top:1px solid rgba(255,255,255,.06);border-bottom:1px solid rgba(255,255,255,.06)}
body.design-glass .sec-head h2{font-size:clamp(2rem,4.2vw,3.2rem)}

/* header: translucent glass bar */
body.design-glass .site-header{
  background:rgba(15,18,38,.55)!important;backdrop-filter:saturate(1.4) blur(16px);
  -webkit-backdrop-filter:saturate(1.4) blur(16px);border-bottom:1px solid rgba(255,255,255,.10);
}
body.design-glass .nav-links a{color:#e7ecf9}
body.design-glass .nav-links a.active{color:#fff}

/* THE GLASS: cards, panels, forms */
body.design-glass .card,
body.design-glass .prod-item,
body.design-glass .feat-card,
body.design-glass .svc-card,
body.design-glass .flagship,
body.design-glass .panel-dark,
body.design-glass .blk-band,
body.design-glass .contact-form,
body.design-glass .stat-card,
body.design-glass .blk-cta,
body.design-glass .cta-band{
  background:rgba(255,255,255,.07)!important;
  backdrop-filter:blur(18px) saturate(1.3);-webkit-backdrop-filter:blur(18px) saturate(1.3);
  border:1px solid rgba(255,255,255,.14)!important;border-radius:var(--radius);
  box-shadow:0 10px 40px rgba(2,6,23,.35), inset 0 1px 0 rgba(255,255,255,.12);
  color:#eef2fb;transition:transform .4s cubic-bezier(.2,.7,.2,1),box-shadow .4s ease,border-color .4s ease;
}
body.design-glass .card:hover,
body.design-glass .prod-item:hover,
body.design-glass .feat-card:hover,
body.design-glass .svc-card:hover,
body.design-glass .flagship:hover{
  transform:translateY(-8px);
  border-color:rgba(255,255,255,.28)!important;
  box-shadow:0 22px 60px rgba(2,6,23,.5), 0 0 0 1px var(--glow), inset 0 1px 0 rgba(255,255,255,.18);
}
body.design-glass .card h3,body.design-glass .card h4,
body.design-glass .feat-card h4,body.design-glass .svc-card h3,
body.design-glass .prod-item .pn,body.design-glass .flagship h3{color:#fff}
body.design-glass .card p,body.design-glass .feat-card p,body.design-glass .pd,
body.design-glass .svc-card p{color:#c3cbe0}

/* buttons: gradient glass */
body.design-glass .btn{border-radius:999px;font-weight:700;letter-spacing:.01em}
body.design-glass .btn-gold,body.design-glass .btn-primary{
  background:linear-gradient(120deg,var(--gold),var(--gold-2));color:#0b1020;border:none;
  box-shadow:0 8px 24px var(--glow);
}
body.design-glass .btn-ghost,body.design-glass .btn-outline,body.design-glass .btn-outline-dark{
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.22);color:#fff;backdrop-filter:blur(8px);
}
body.design-glass .btn-ghost:hover,body.design-glass .btn-outline:hover{background:rgba(255,255,255,.16)}

/* form fields on glass — broad so every input/textarea/select matches */
body.design-glass input,
body.design-glass textarea,
body.design-glass select{
  background:rgba(255,255,255,.06)!important;border:1px solid rgba(255,255,255,.18)!important;color:#fff!important;border-radius:12px;
}
body.design-glass input::placeholder,
body.design-glass textarea::placeholder{color:#9aa6c2}
body.design-glass .contact-form label,body.design-glass .fg label{color:#c3cbe0}

/* hero stats + logo bar on glass */
body.design-glass .hero-stats{border-top:1px solid rgba(255,255,255,.14)}
body.design-glass .hero-stats .big{color:#fff}
body.design-glass .logobar,body.design-glass .logo-section{background:transparent!important}
body.design-glass .logobar img{filter:brightness(0) invert(1);opacity:.7}

/* footer glass */
body.design-glass .site-footer{background:rgba(10,13,30,.5)!important;backdrop-filter:blur(14px);border-top:1px solid rgba(255,255,255,.10)}
body.design-glass .site-footer,body.design-glass .site-footer a,body.design-glass .site-footer p{color:#c3cbe0}
body.design-glass .site-footer a:hover{color:#fff}

/* breadcrumb + misc text legibility */
body.design-glass .breadcrumb,body.design-glass .breadcrumb a{color:#aeb8d4}
body.design-glass .page-blocks{color:#dfe4f2}
body.design-glass .page-blocks h2,body.design-glass .page-blocks h3{color:#fff}

@media (max-width:720px){
  body.design-glass{background-attachment:scroll}
}

body.design-glass label{color:#c8d0e6}

/* Page builder: Text + Image (media_text) */
.blk-media-text{display:grid;grid-template-columns:1fr 1fr;gap:38px;align-items:center;margin:0 0 26px}
.blk-media-text.va-top{align-items:start}
.blk-media-text.media-right{direction:rtl}
.blk-media-text.media-right > *{direction:ltr}
.blk-media-text .mt-media img{width:100%;border-radius:var(--radius,12px);display:block;box-shadow:0 12px 40px rgba(14,20,40,.12)}
.blk-media-text .mt-media figcaption{margin-top:8px;font-size:.85rem;color:var(--muted);text-align:center}
.blk-media-text .mt-text{line-height:1.8}
.blk-media-text .mt-text h2,.blk-media-text .mt-text h3{margin-top:0}
@media(max-width:760px){.blk-media-text{grid-template-columns:1fr;gap:22px}.blk-media-text.media-right{direction:ltr}}

/* ===== Universal per-block design controls ===== */
.blk-wrap{margin:0 0 26px}
.blk-band.blk-band-custom{padding:34px;border-radius:16px}
.blk-pad-none{padding-top:0!important;padding-bottom:0!important;margin-bottom:0!important}
.blk-pad-sm{padding:16px 0}
.blk-pad-md{padding:34px 0}
.blk-pad-lg{padding:60px 0}
.blk-pad-xl{padding:90px 0}
.blk-band.blk-pad-sm{padding:16px 22px}
.blk-band.blk-pad-md{padding:28px}
.blk-band.blk-pad-lg{padding:48px}
.blk-band.blk-pad-xl{padding:76px}
.blk-w-narrow{max-width:640px;margin-left:auto;margin-right:auto}
.blk-w-normal{max-width:860px;margin-left:auto;margin-right:auto}
.blk-w-wide{max-width:1100px;margin-left:auto;margin-right:auto}
.blk-w-full{max-width:none}
/* when a custom text colour is set on the wrapper, descendants inherit it */
.blk-has-textcolor h1,.blk-has-textcolor h2,.blk-has-textcolor h3,
.blk-has-textcolor h4,.blk-has-textcolor h5,.blk-has-textcolor p,
.blk-has-textcolor li,.blk-has-textcolor a,.blk-has-textcolor span,
.blk-has-textcolor blockquote,.blk-has-textcolor cite{color:inherit!important}

/* =======================================================================
   SWISS GRID — International Typographic  (body.design-swiss)
   Strict grid, enormous Archivo headlines, numbered sections, hard rules,
   zero radii, left-aligned composition, generous whitespace.
   ======================================================================= */
body.design-swiss{
  --serif:"Archivo",Helvetica,Arial,sans-serif;
  --sans:"Inter",Helvetica,Arial,sans-serif;
  --radius:0;--radius-sm:0;
}
body.design-swiss h1,body.design-swiss h2,body.design-swiss h3,body.design-swiss h4{
  font-family:var(--serif);font-weight:800;letter-spacing:-.04em;line-height:.95;text-transform:none;
}
body.design-swiss .container{max-width:1280px}
body.design-swiss .section{padding:110px 0;border-top:2px solid var(--ink)}
body.design-swiss .section--soft{background:var(--bg-soft)}

/* numbered section headers with a full-width rule */
body.design-swiss .sec-head{text-align:left!important;max-width:none;display:grid;grid-template-columns:90px 1fr;gap:0 28px;align-items:start}
body.design-swiss .sec-head .eyebrow{
  grid-column:1;font-family:var(--sans);font-weight:700;font-size:.7rem;letter-spacing:.14em;
  text-transform:uppercase;color:var(--ink);border-top:2px solid var(--gold);padding-top:10px;display:block;
}
body.design-swiss .sec-head h2{grid-column:2;font-size:clamp(2.4rem,6vw,4.6rem);margin:0}
body.design-swiss .sec-head p,body.design-swiss .sec-head .lead{grid-column:2;max-width:62ch;margin-top:18px;font-size:1.05rem}

/* header: hard rule, uppercase micro nav */
body.design-swiss .site-header{border-bottom:2px solid var(--ink);background:var(--white)!important;backdrop-filter:none}
body.design-swiss .nav-links a{text-transform:uppercase;font-size:.74rem;letter-spacing:.12em;font-weight:700}
body.design-swiss .nav-links a.active{color:var(--gold)}
body.design-swiss .btn{border-radius:0;text-transform:uppercase;letter-spacing:.1em;font-size:.74rem;font-weight:700;padding:15px 26px}
body.design-swiss .btn-ghost,body.design-swiss .btn-outline{border-width:2px}

/* hero: giant flush-left headline, rule beneath */
body.design-swiss .hero{border-bottom:2px solid var(--ink)}
body.design-swiss .hero h1{font-size:clamp(3rem,10vw,8rem);letter-spacing:-.05em;-webkit-text-fill-color:currentColor;background:none;text-wrap:balance}
body.design-swiss .hero .eyebrow{font-family:var(--sans);letter-spacing:.16em;font-weight:700}
body.design-swiss .hero-sub{font-size:1.2rem;max-width:52ch}
body.design-swiss .hero-stats{border-top:2px solid rgba(255,255,255,.25);gap:0}
body.design-swiss .hero-stats .stat{border-left:1px solid rgba(255,255,255,.2);padding:0 30px}
body.design-swiss .hero-stats .stat:first-child{border-left:0;padding-left:0}
body.design-swiss .hero-stats .big{font-family:var(--serif);font-weight:800;letter-spacing:-.04em}
body.design-swiss .hero-stats .lbl{text-transform:uppercase;letter-spacing:.12em;font-size:.66rem}
body.design-swiss .hero-dots button{border-radius:0;height:4px}
body.design-swiss .hero-dots button.active{background:var(--gold);width:34px}

/* cards: flat, ruled, no shadow — grid discipline */
body.design-swiss .card,body.design-swiss .prod-item,body.design-swiss .feat-card,
body.design-swiss .svc-card,body.design-swiss .flagship{
  border:0;border-top:2px solid var(--ink);border-radius:0;box-shadow:none;background:transparent;
  padding-top:22px;transition:border-color .3s ease,transform .3s ease;
}
body.design-swiss .card:hover,body.design-swiss .svc-card:hover,body.design-swiss .feat-card:hover{
  transform:none;border-top-color:var(--gold)
}
body.design-swiss .card h3,body.design-swiss .feat-card h4,body.design-swiss .svc-card h3{font-size:1.35rem;letter-spacing:-.02em}
body.design-swiss .svc-badge{border-radius:0;background:var(--ink);color:var(--white);font-family:var(--sans);letter-spacing:.1em}
body.design-swiss .prod-cat h3{text-transform:uppercase;letter-spacing:.14em;font-size:.72rem;border-bottom:2px solid var(--ink);padding-bottom:10px}
body.design-swiss .panel-dark,body.design-swiss .cta-band,body.design-swiss .blk-cta{border-radius:0}
body.design-swiss .cta-band h2{font-size:clamp(2.2rem,5vw,3.8rem)}
body.design-swiss .site-footer{border-top:2px solid var(--ink)}
body.design-swiss .site-footer h4{text-transform:uppercase;letter-spacing:.14em;font-size:.7rem}
@media(max-width:760px){
  body.design-swiss .sec-head{grid-template-columns:1fr;gap:14px}
  body.design-swiss .sec-head h2,body.design-swiss .sec-head p{grid-column:1}
  body.design-swiss .section{padding:70px 0}
}

/* =======================================================================
   NEO-BRUTALIST STUDIO  (body.design-brutal)
   Thick borders, hard offset shadows, chunky Syne type, sticker blocks.
   ======================================================================= */
body.design-brutal{
  --serif:"Syne",-apple-system,sans-serif;
  --sans:"Outfit",-apple-system,sans-serif;
  --radius:0;--radius-sm:0;
  --edge:var(--ink);
}
body.design-brutal h1,body.design-brutal h2,body.design-brutal h3,body.design-brutal h4{
  font-family:var(--serif);font-weight:800;letter-spacing:-.03em;line-height:1
}
body.design-brutal .section{padding:88px 0}
body.design-brutal .section--soft{background:var(--bg-soft);border-top:3px solid var(--edge);border-bottom:3px solid var(--edge)}

/* sticker eyebrow */
body.design-brutal .eyebrow{
  display:inline-block;background:var(--gold);color:#111;border:3px solid var(--edge);
  padding:6px 14px;font-family:var(--sans);font-weight:800;font-size:.72rem;letter-spacing:.1em;
  text-transform:uppercase;box-shadow:4px 4px 0 var(--edge);transform:rotate(-1.5deg)
}
body.design-brutal .sec-head h2{font-size:clamp(2.2rem,5.5vw,4rem)}

/* header: heavy bottom border, blocky nav */
body.design-brutal .site-header{background:var(--white)!important;border-bottom:4px solid var(--edge);backdrop-filter:none}
body.design-brutal .nav-links a{font-family:var(--sans);font-weight:700;font-size:.86rem}
body.design-brutal .nav-links a.active{background:var(--gold);color:#111;padding:4px 10px;border:2px solid var(--edge)}
body.design-brutal .nav-links a.active::after{display:none}

/* buttons: hard shadow, press effect */
body.design-brutal .btn{
  border-radius:0;border:3px solid var(--edge);font-family:var(--sans);font-weight:800;
  box-shadow:5px 5px 0 var(--edge);transition:transform .12s ease,box-shadow .12s ease;padding:14px 24px
}
body.design-brutal .btn:hover{transform:translate(3px,3px);box-shadow:2px 2px 0 var(--edge)}
body.design-brutal .btn::after{display:none}
body.design-brutal .btn-gold{background:var(--gold);color:#111}
body.design-brutal .btn-ghost,body.design-brutal .btn-outline{background:var(--white);color:#111}

/* hero */
body.design-brutal .hero{border-bottom:4px solid var(--edge)}
body.design-brutal .hero h1{font-size:clamp(2.8rem,8vw,6.4rem);-webkit-text-fill-color:currentColor;background:none}
body.design-brutal .hero-stats{border-top:3px solid rgba(255,255,255,.3)}
body.design-brutal .hero-stats .big{font-family:var(--serif)}
body.design-brutal .hero-dots button{border-radius:0;border:2px solid var(--edge);height:10px;background:var(--white)}
body.design-brutal .hero-dots button.active{background:var(--gold)}

/* cards: blocky with offset shadow */
body.design-brutal .card,body.design-brutal .prod-item,body.design-brutal .feat-card,
body.design-brutal .svc-card,body.design-brutal .flagship,body.design-brutal .panel-dark{
  border:3px solid var(--edge)!important;border-radius:0;box-shadow:7px 7px 0 var(--edge);
  transition:transform .15s ease,box-shadow .15s ease
}
body.design-brutal .card:hover,body.design-brutal .svc-card:hover,
body.design-brutal .feat-card:hover,body.design-brutal .prod-item:hover{
  transform:translate(-3px,-3px);box-shadow:11px 11px 0 var(--gold)
}
body.design-brutal .card::before,body.design-brutal .card::after{display:none}
body.design-brutal .svc-badge{border:3px solid var(--edge);border-radius:0;background:var(--gold);color:#111;font-weight:800;box-shadow:3px 3px 0 var(--edge)}
body.design-brutal .cta-band,body.design-brutal .blk-cta{border:4px solid var(--edge);border-radius:0;box-shadow:9px 9px 0 var(--gold)}
body.design-brutal .blk-band{border:3px solid var(--edge);border-radius:0;box-shadow:6px 6px 0 var(--edge)}
body.design-brutal input,body.design-brutal textarea,body.design-brutal select{border:3px solid var(--edge)!important;border-radius:0!important}
body.design-brutal .site-footer{border-top:4px solid var(--edge)}
@media(max-width:760px){
  body.design-brutal .section{padding:60px 0}
  body.design-brutal .card,body.design-brutal .prod-item,body.design-brutal .feat-card{box-shadow:5px 5px 0 var(--edge)}
}

/* =======================================================================
   BOUTIQUE LUXE — Serif  (body.design-boutique)
   Ivory canvas, DM Serif display, hairline rules, wide small caps,
   centred gallery-like composition, very generous whitespace.
   ======================================================================= */
body.design-boutique{
  --serif:"DM Serif Display",Georgia,serif;
  --sans:"Outfit",-apple-system,sans-serif;
  --radius:2px;--radius-sm:2px;
  background:#fbf9f5;
}
body.design-boutique h1,body.design-boutique h2,body.design-boutique h3,body.design-boutique h4{
  font-family:var(--serif);font-weight:400;letter-spacing:-.01em;line-height:1.08
}
body.design-boutique .section{padding:120px 0}
body.design-boutique .section--soft{background:#f4efe7}
body.design-boutique .container{max-width:1140px}

/* wide letter-spaced small-cap eyebrows with centred hairlines */
body.design-boutique .eyebrow{
  font-family:var(--sans);font-weight:400;font-size:.68rem;letter-spacing:.34em;text-transform:uppercase;
  color:var(--muted);display:inline-flex;align-items:center;gap:14px
}
body.design-boutique .eyebrow::before,body.design-boutique .eyebrow::after{content:"";width:38px;height:1px;background:var(--gold);opacity:.8}
body.design-boutique .sec-head{text-align:center;max-width:760px;margin-left:auto;margin-right:auto}
body.design-boutique .sec-head h2{font-size:clamp(2.2rem,4.6vw,3.6rem);margin-top:14px}
body.design-boutique .sec-head p,body.design-boutique .sec-head .lead{font-size:1.06rem;line-height:1.9;color:var(--muted)}
body.design-boutique .sec-head::after{content:"";display:block;width:56px;height:1px;background:var(--gold);margin:26px auto 0}

/* header: airy, hairline, serif wordmark feel */
body.design-boutique .site-header{background:rgba(251,249,245,.92)!important;border-bottom:1px solid rgba(0,0,0,.08)}
body.design-boutique .nav-links a{font-family:var(--sans);font-weight:400;font-size:.82rem;letter-spacing:.13em;text-transform:uppercase}
body.design-boutique .nav-links a.active{color:var(--gold)}
body.design-boutique .btn{
  border-radius:2px;font-family:var(--sans);font-weight:400;letter-spacing:.16em;text-transform:uppercase;
  font-size:.72rem;padding:16px 34px
}
body.design-boutique .btn-gold{background:var(--navy);color:#fff;border:1px solid var(--navy)}
body.design-boutique .btn-ghost,body.design-boutique .btn-outline{background:transparent;border:1px solid var(--ink);color:var(--ink)}
body.design-boutique .btn-ghost:hover{background:var(--ink);color:#fff}

/* hero: serif elegance */
body.design-boutique .hero h1{
  font-size:clamp(2.8rem,6.5vw,5.4rem);font-weight:400;letter-spacing:-.015em;
  -webkit-text-fill-color:currentColor;background:none
}
body.design-boutique .hero-sub{font-size:1.12rem;line-height:1.9;max-width:54ch}
body.design-boutique .hero-stats{border-top:1px solid rgba(255,255,255,.18)}
body.design-boutique .hero-stats .big{font-family:var(--serif);font-weight:400}
body.design-boutique .hero-stats .lbl{letter-spacing:.24em;text-transform:uppercase;font-size:.64rem}
body.design-boutique .hero-dots button{height:2px;border-radius:0}
body.design-boutique .hero-dots button.active{background:var(--gold);width:40px}

/* cards: hairline frames, no shadow, lots of air */
body.design-boutique .card,body.design-boutique .prod-item,body.design-boutique .feat-card,
body.design-boutique .svc-card{
  border:1px solid rgba(0,0,0,.10);border-radius:2px;box-shadow:none;background:#fff;padding:38px 32px;
  transition:border-color .5s ease,box-shadow .5s ease
}
body.design-boutique .card:hover,body.design-boutique .svc-card:hover,body.design-boutique .feat-card:hover{
  transform:none;border-color:var(--gold);box-shadow:0 18px 50px rgba(60,40,10,.09)
}
body.design-boutique .card::before,body.design-boutique .card::after{display:none}
body.design-boutique .card h3,body.design-boutique .feat-card h4{font-size:1.4rem}
body.design-boutique .svc-badge{background:transparent;border:1px solid var(--gold);color:var(--gold);border-radius:0;letter-spacing:.14em;font-family:var(--sans);font-weight:400}
body.design-boutique .prod-cat h3{font-family:var(--sans);letter-spacing:.26em;text-transform:uppercase;font-size:.7rem;color:var(--muted);text-align:center}
body.design-boutique .cta-band,body.design-boutique .blk-cta{border-radius:2px}
body.design-boutique .cta-band h2{font-size:clamp(2rem,4.4vw,3.2rem)}
body.design-boutique .blk-band{border-radius:2px}
body.design-boutique .site-footer h4{font-family:var(--sans);letter-spacing:.24em;text-transform:uppercase;font-size:.66rem;font-weight:400}
body.design-boutique input,body.design-boutique textarea{border-radius:2px}
@media(max-width:760px){body.design-boutique .section{padding:76px 0}body.design-boutique .card{padding:28px 22px}}
