/* =========================================================
   WizReg Technologies — Design System
   Palette: navy (ink/surface) / purple (primary accent) / green (verified)
   Type: Manrope (display + body) + IBM Plex Mono (ledger/data accents only)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root{
  --paper:      #F7F7FA;
  --paper-alt:  #EEF0F5;
  --paper-deep: #E2E4EE;
  --ink:        #171B2E;
  --ink-soft:   #565C74;
  --ink-faint:  #8B90A6;
  --navy:       #232A45;
  --navy-deep:  #161A2C;
  --brass:      #5B3FA6;
  --brass-deep: #46316E;
  --brass-tint: #EFEAFB;
  --brass-light:#A78BE0;
  --emerald:    #1E9A57;
  --emerald-deep:#167A44;
  --emerald-tint:#E3F5EA;
  --line:       #E3E4EC;
  --line-soft:  #EDEEF4;
  --white:      #FFFFFF;

  --serif: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', 'SFMono-Regular', Consolas, monospace;

  --container: 1180px;
  --radius: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--serif); color: var(--navy-deep); margin:0; font-weight:800; letter-spacing:-0.02em; }
p{ margin:0; }
button{ font-family: inherit; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible{ outline: 2px solid var(--brass); outline-offset: 2px; }

.wrap{ max-width: var(--container); margin: 0 auto; padding: 0 32px; }

.eyebrow{
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before{
  content:"";
  width: 22px; height: 2px;
  border-radius: 2px;
  background: var(--ink-faint);
  display:inline-block;
}

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky; top:0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.brand-logo{
  height: 38px;
  width: auto;
  display: block;
}
.footer-logo-panel{
  display: inline-block;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.footer-logo-panel img{
  height: 58px;
  width: auto;
  display: block;
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 18px 32px;
  max-width: var(--container); margin:0 auto;
}
.brand{
  display:flex; align-items:baseline; gap:8px;
  font-family: var(--serif); font-weight:600; font-size:21px; color: var(--navy-deep);
}
.brand .mark{
  width: 30px; height:30px;
  border: 1.5px solid var(--navy-deep);
  border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  font-family: var(--mono); font-size:12px; font-weight:600;
  color: var(--navy-deep);
  position:relative;
}
.brand .tag{
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em;
  color: var(--ink-faint); text-transform:uppercase; font-weight:500;
  padding-left:10px; border-left:1px solid var(--line);
}

.nav-links{ display:flex; align-items:center; gap: 4px; }
.nav-item{ position:relative; }
.nav-link{
  display:flex; align-items:center; gap:6px;
  padding: 10px 16px;
  font-size: 14.5px; font-weight:500; color: var(--ink);
  border-radius: var(--radius);
  transition: color .15s ease, background-color .15s ease;
}
.nav-link:hover, .nav-link.active{ color: var(--brass-deep); }
.nav-link:hover{ background: var(--paper-alt); }
.nav-item .caret{ width:8px; height:8px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor; transform: rotate(45deg); margin-top:-4px; opacity:0.65; }

.dropdown{
  position:absolute; top: calc(100% + 8px); left:0;
  min-width: 300px;
  background: var(--white);
  border:1px solid var(--line);
  box-shadow: 0 18px 40px rgba(16,20,31,0.12);
  padding: 10px;
  opacity:0; visibility:hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown{
  opacity:1; visibility:visible; transform: translateY(0);
}
.dropdown a{ display:block; padding: 12px 14px; border-radius: var(--radius); transition: background-color .15s ease; }
.dropdown a:hover{ background: var(--paper); }
.dropdown .d-title{ font-weight:600; font-size:14.5px; color: var(--navy-deep); }
.dropdown .d-sub{ font-size: 12.5px; color: var(--ink-soft); margin-top:2px; }

.nav-cta{
  display:flex; align-items:center; gap:10px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 11px 22px;
  font-size: 14px; font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor:pointer;
  white-space:nowrap;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .1s ease;
}
.btn-primary{ background: var(--brass); color: var(--white); }
.btn-primary:hover{ background: var(--brass-deep); }
.btn-ghost{ background: transparent; color: var(--navy-deep); border-color: var(--line); }
.btn-ghost:hover{ background: var(--navy-deep); color: var(--white); border-color: var(--navy-deep); }
.btn-sm{ padding: 8px 16px; font-size:13px; }
.btn-brass{ background: var(--brass); color: var(--white); }
.btn-brass:hover{ background: var(--brass-deep); }
.btn:active{ transform: scale(0.97); }

.hero .btn-ghost, .page-hero .btn-ghost{ border-color: rgba(255,255,255,0.32); color: var(--white); }
.hero .btn-ghost:hover, .page-hero .btn-ghost:hover{ background: var(--white); color: var(--navy-deep); border-color: var(--white); }

.mobile-toggle{ display:none; background:none; border:none; cursor:pointer; padding:6px; }
.mobile-toggle span{ display:block; width:22px; height:2px; background: var(--navy-deep); margin: 5px 0; }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding: 96px 0 84px;
  background:
    radial-gradient(ellipse at 82% 12%, rgba(91,63,166,0.28), transparent 55%),
    linear-gradient(100deg, rgba(16,20,31,0.93) 28%, rgba(16,20,31,0.6) 58%, rgba(16,20,31,0.4) 100%),
    url('assets/1455786903.jpg') right center / cover no-repeat;
  overflow:hidden;
}
.hero-grid{ display:grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items:center; }
.hero h1{ font-size: 46px; line-height:1.1; margin: 18px 0 20px; color: var(--white); }
.hero .eyebrow{ color: #A8ACC4; }
.hero .eyebrow::before{ background: #A8ACC4; }
.hero .lede{ font-size: 17.5px; color: #C9CDD8; max-width: 540px; margin-bottom: 30px; }
.hero-actions{ display:flex; gap:14px; margin-bottom:36px; flex-wrap:wrap; }
.hero-points{ display:flex; flex-direction:column; gap:10px; }
.hero-points li{ display:flex; gap:10px; font-size:15.5px; color: #C9CDD8; align-items:flex-start; }
.check{
  width:16px; height:16px; border-radius:50%;
  background: var(--emerald); color:var(--white);
  display:inline-flex; align-items:center; justify-content:center;
  font-size:10px; flex:none; margin-top:2px;
}

/* Seal / signature element */
.seal-panel{
  background: var(--navy);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 34px;
  position:relative;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 60px rgba(16,20,31,0.28);
}
.seal-panel .seal-head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:22px; gap:12px; flex-wrap:wrap; }
.seal-panel .seal-label{ font-family: var(--mono); font-size:11px; letter-spacing:0.1em; text-transform:uppercase; color: #C9CDD8; }

.seal-tabs{ display:flex; gap:6px; }
.seal-tab{
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: #C9CDD8;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.seal-tab:hover{ border-color: var(--brass); color: var(--brass-light); }
.seal-tab.active{ background: var(--brass); border-color: var(--brass); color: var(--white); font-weight:600; }

.ledger-set[hidden]{ display:none; }
.ledger-row{
  display:flex; justify-content:space-between; align-items:center;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13.5px;
}
.ledger-row:first-of-type{ border-top:none; }
.ledger-row .l-name{ color: #DEE1E9; }
.ledger-row .l-stage{ font-family: var(--mono); font-size:12px; color: var(--brass-light); letter-spacing:0.06em; }
.ledger-row .l-val{ font-family: var(--mono); font-weight:600; color: var(--white); }

.ledger-caption{ font-size:13px; color:#9AA0B8; margin-bottom:18px; line-height:1.5; }
.ledger-more{
  display:inline-flex; align-items:center; gap:6px;
  margin-top:18px; font-size:13.5px; font-weight:600;
  color: var(--brass-light); transition: color .15s ease;
}
.ledger-more:hover{ color: var(--white); }
.ledger-more .arrow{ transition: transform .15s ease; }
.ledger-more:hover .arrow{ transform: translateX(3px); }

/* ---------- Stat strip ---------- */
.stat-strip{ background: var(--navy-deep); color: var(--paper); border-top: 1px solid rgba(255,255,255,0.08); }
.stat-grid{ display:grid; grid-template-columns: repeat(4,1fr); }
.stat-cell{ padding: 30px 32px; border-left: 1px solid rgba(255,255,255,0.09); }
.stat-cell:first-child{ border-left:none; }
.stat-num{ font-family: var(--serif); font-size:32px; color: var(--brass-light); font-weight:800; }
.stat-label{ font-size:14px; color:#C9CDD8; margin-top:8px; }

/* ---------- Sections ---------- */
section{ padding: 88px 0; }
.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head h2{ font-size:32px; margin-top:14px; line-height:1.18; }
.section-head p{ color: var(--ink-soft); margin-top:14px; font-size:15.5px; }
.section-alt{ background: var(--paper-alt); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-dark{ background: var(--navy-deep); color: var(--paper); }
.section-dark .section-head h2{ color: var(--white); }
.section-dark .section-head p{ color: #C9CDD8; }
.section-dark .eyebrow{ color: #A8ACC4; }
.section-dark .eyebrow::before{ background: #A8ACC4; }

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

.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.card:hover{ border-color: var(--brass); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(16,20,31,0.1); }
.card .card-kicker{ font-family: var(--mono); font-size:13px; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color: var(--emerald); }
.card h3{ font-size:21px; margin: 10px 0 10px; }
.card p{ color: var(--ink-soft); font-size:14.5px; }
.card .card-link{ display:inline-flex; align-items:center; gap:6px; margin-top:18px; font-size:15px; font-weight:700; color:var(--navy-deep); }
.card .card-link .arrow{ transition: transform .15s ease; }
.card:hover .card-link .arrow{ transform: translateX(3px); }

.product-card{ padding:38px; }
.product-card .metric-row{ display:flex; gap:26px; margin: 22px 0 6px; padding-top:20px; border-top:1px solid var(--line-soft); }
.product-card .metric{ }
.product-card .metric .m-num{ font-family: var(--mono); font-size:25px; font-weight:700; color: var(--brass-deep); }
.product-card .metric .m-label{ font-size:13px; color: var(--ink-faint); margin-top:4px; }

/* ---------- Workflow tabs (interactive step detail) ---------- */
.workflow-tabs{
  background: var(--navy-deep);
  border-radius: var(--radius-lg);
  padding: 10px;
  margin-top: 8px;
}
.wt-tabbar{ display:flex; flex-wrap:wrap; gap:6px; padding:8px; }
.wt-tab{
  display:flex; align-items:center; justify-content:center; gap:8px;
  flex: 1 1 auto;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: #C9CDD8;
  font-family: var(--sans); font-size:13.5px; font-weight:600;
  padding: 11px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.wt-tab-no{ font-family: var(--mono); font-size:11.5px; opacity:0.7; }
.wt-tab:hover{ border-color: var(--brass); color: var(--white); }
.wt-tab.active{ background: var(--brass); border-color: var(--brass); color: var(--white); }

.wt-panels{ padding: 30px 26px 34px; }
.wt-panel{ display:grid; grid-template-columns: 1.1fr 0.9fr; gap:40px; align-items:start; }
.wt-panel[hidden]{ display:none; }

.wt-step-no{ font-family: var(--mono); color: #8891A8; font-size:13px; font-weight:600; margin-bottom:8px; }
.wt-detail h3{ color: var(--white); font-size:24px; margin-bottom:10px; }
.wt-detail p{ color: #C9CDD8; font-size:14.5px; margin-bottom:20px; }
.wt-agents-label{ font-family:var(--sans); font-weight:700; font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:#8891A8; margin-bottom:10px; }
.wt-agents{ display:flex; flex-wrap:wrap; gap:8px; }
.agent-pill{
  display:inline-flex; align-items:center;
  background: rgba(91,63,166,0.22);
  border: 1px solid rgba(91,63,166,0.5);
  color: #E4DBF7;
  font-family: var(--sans); font-size:12.5px; font-weight:600;
  padding: 6px 13px; border-radius: 20px;
}

.wt-examples{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 22px;
}
.wt-examples-label{ font-family:var(--sans); font-weight:700; font-size:11px; letter-spacing:.06em; text-transform:uppercase; color:#8891A8; margin-bottom:14px; }
.wt-examples ul{ display:flex; flex-direction:column; gap:11px; }
.wt-examples li{ color:#C9CDD8; font-size:13.5px; padding-left:16px; position:relative; }
.wt-examples li::before{ content:"—"; position:absolute; left:0; color: #565C74; }

/* ---------- Challenge grid ---------- */
.challenge-grid{ display:grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border:1px solid var(--line); }
.challenge-item{ background: var(--paper); padding: 30px; }
.challenge-item h4{ font-size:16.5px; margin-bottom:8px; }
.challenge-item p{ font-size:14px; color: var(--ink-soft); }

/* ---------- Table-ish comparison ---------- */
.table-scroll{
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}
.compare{ width:100%; min-width: 560px; border-collapse:collapse; }
.compare th, .compare td{ text-align:left; padding: 16px 20px; border-bottom: 1px solid var(--line-soft); font-size:14.5px; }
.compare tr:last-child td{ border-bottom:none; }
.compare th{ font-family: var(--sans); font-size:11.5px; text-transform:uppercase; letter-spacing:0.06em; color: var(--ink-faint); font-weight:700; }
.compare th:last-child, .compare td:last-child{ background: var(--brass-tint); }
.compare th:last-child{ color: var(--brass-deep); }
.compare td:last-child{ color: var(--brass-deep); font-weight:600; }
.compare td:last-child .check{ margin-top:0; margin-right:8px; vertical-align:-3px; }

/* ---------- Quote / pull ---------- */
.pull{
  border-left: 3px solid var(--brass);
  padding: 6px 0 6px 26px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy-deep);
  line-height:1.4;
}

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--navy-deep);
  color: var(--white);
  padding: 64px 56px;
  border-radius: var(--radius-lg);
}
.cta-band-inner{ display:flex; justify-content:space-between; align-items:center; gap:32px; flex-wrap:wrap; }
.cta-band h2{ color: var(--white); font-size:28px; }
.cta-band p{ color: #C9CDD8; margin-top:8px; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--navy-deep); color: #B9BECC; padding: 64px 0 28px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; margin-bottom:48px; }
.footer-grid h5{ font-family: var(--sans); font-size:12px; letter-spacing:0.08em; text-transform:uppercase; color: #8891A8; margin-bottom:16px; font-weight:700; }
.footer-grid li{ margin-bottom:11px; font-size:13.5px; }
.footer-grid a{ transition: color .15s ease; }
.footer-grid a:hover{ color: var(--brass-light); }
.footer-brand{ font-family: var(--serif); color: var(--white); font-size:19px; margin-bottom:12px; }
.footer-brand-copy{ font-size:13px; color: #8891A8; max-width: 280px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:24px; border-top:1px solid rgba(255,255,255,0.08); font-size:12.5px; color:#8891A8; flex-wrap:wrap; gap:12px; }
.footer-bottom a{ transition: color .15s ease; }
.footer-bottom a:hover{ color: var(--brass-light); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero{
  padding: 64px 0 56px;
  background:
    radial-gradient(ellipse at 85% 15%, rgba(91,63,166,0.22), transparent 55%),
    var(--navy-deep);
}
.page-hero h1{ font-size:38px; margin-top:14px; max-width:760px; color: var(--white); }
.page-hero .lede{ font-size:16.5px; color: #C9CDD8; max-width:640px; margin-top:16px; }
.page-hero .eyebrow{ color: #A8ACC4; }
.page-hero .eyebrow::before{ background: #A8ACC4; }
.breadcrumb{ font-family: var(--sans); font-weight:500; font-size:12.5px; color: #9AA0B8; margin-bottom:8px; }
.breadcrumb a{ transition: color .15s ease; }
.breadcrumb a:hover{ color: var(--white); }

/* ---------- Forms ---------- */
.form-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field{ margin-bottom: 20px; }
.field.full{ grid-column: 1 / -1; }
.field label{ display:block; font-size:13px; font-weight:600; margin-bottom:7px; color: var(--navy-deep); }
.field input, .field select, .field textarea{
  width:100%; padding: 13px 16px;
  border:1px solid var(--line); border-radius: var(--radius);
  font-family: var(--sans); font-size:14.5px; background: var(--white); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{
  border-color: var(--brass);
  box-shadow: 0 0 0 3px rgba(91,63,166,0.16);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible{ outline: 2px solid var(--brass); outline-offset: 1px; }
.field textarea{ resize: vertical; min-height:120px; }
.field .hint{ font-size:12px; color: var(--ink-faint); margin-top:6px; }

/* ---------- Photography ---------- */
.photo-frame{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 500px;
  box-shadow: 0 20px 40px rgba(16,20,31,0.14);
}
.photo-frame img{
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
}
.photo-frame.pos-low img{ object-position: center 55%; }
.photo-frame.pos-lower img{ object-position: center 72%; }
.photo-frame figcaption{
  position: absolute; left:0; right:0; bottom:0;
  z-index: 2;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(16,20,31,0.78), transparent);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14.5px;
}
.photo-frame.story-photo{ height: 320px; margin-top: 22px; }
.photo-band{ padding: 44px 0; }

.stat-strip.stat-strip--photo{
  background:
    linear-gradient(100deg, rgba(16,20,31,0.93) 25%, rgba(16,20,31,0.6) 65%, rgba(16,20,31,0.4) 100%),
    url('assets/1455787216.jpg') right center / cover no-repeat;
}

/* ---------- Utility ---------- */
.mt-0{ margin-top:0; }
.two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:start; }
.pill{ display:inline-flex; align-items:center; gap:6px; font-family:var(--mono); font-size:11.5px; padding:5px 12px; border:1px solid var(--line); border-radius:20px; color: var(--ink-soft); }
.divider{ height:1px; background: var(--line); border:none; margin: 0; }
.small-print{ font-size:12.5px; color: var(--ink-faint); }
.center{ text-align:center; }
.mx-auto{ margin-left:auto; margin-right:auto; }

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero{ padding: 72px 0 64px; }
  section{ padding: 72px 0; }
  .section-head{ margin-bottom: 36px; }
  .page-hero{ padding: 52px 0 46px; }
  .stat-grid{ grid-template-columns: repeat(2,1fr); row-gap: 1px; }
  .stat-cell:nth-child(3){ border-left:none; }
  .stat-cell:nth-child(3), .stat-cell:nth-child(4){ border-top: 1px solid rgba(255,255,255,0.09); padding-top: 26px; }
  .card-grid-3, .card-grid-4{ grid-template-columns: 1fr 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .challenge-grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; gap:32px; }
  .wt-panel{ grid-template-columns: 1fr; gap:26px; }
}
@media (max-width: 760px){
  .nav-links, .nav-cta .btn-ghost{ display:none; }
  .mobile-toggle{ display:block; }
  .hero{
    padding: 48px 0 40px;
    background:
      radial-gradient(ellipse at 82% 12%, rgba(91,63,166,0.28), transparent 55%),
      linear-gradient(180deg, rgba(16,20,31,0.95) 55%, rgba(16,20,31,0.75) 100%),
      url('assets/1455786903.jpg') right center / cover no-repeat;
  }
  .hero h1{ font-size:32px; }
  section{ padding: 52px 0; }
  .section-head{ margin-bottom: 28px; }
  .section-head h2{ font-size: 26px; }
  .page-hero{ padding: 40px 0 36px; }
  .page-hero h1{ font-size: 30px; }
  .card-grid-2, .card-grid-3, .card-grid-4{ grid-template-columns: 1fr; }
  .card{ padding: 24px; }
  .product-card{ padding: 26px; }
  .seal-panel{ padding: 24px; }
  .stat-cell{ padding: 22px 20px; }
  .wt-tab{ flex: 1 1 45%; font-size:12.5px; padding:9px 10px; }
  .wt-panels{ padding: 22px 18px 26px; }
  .form-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; gap: 28px 20px; margin-bottom: 32px; }
  .site-footer{ padding: 48px 0 24px; }
  .cta-band{ padding: 40px 28px; }
  .cta-band-inner{ flex-direction:column; align-items:flex-start; }
  .btn-sm{ padding: 11px 18px; }
  .wrap{ padding: 0 20px; }
  .nav{ padding: 16px 20px; }
  .photo-frame{ height: 220px; }
  .photo-frame.story-photo{ height: 200px; margin-top: 18px; }
  .photo-band{ padding: 28px 0; }
}

/* Mobile drawer */
.mobile-drawer{
  position:fixed; inset:0; background: var(--paper);
  z-index: 200; padding: 24px; display:none; overflow-y:auto;
}
.mobile-drawer.open{ display:block; }
.mobile-drawer .drawer-top{ display:flex; justify-content:space-between; align-items:center; margin-bottom:28px; }
.mobile-drawer .m-section{ margin-bottom:26px; }
.mobile-drawer .m-section h5{ font-family:var(--sans); font-weight:700; font-size:12px; text-transform:uppercase; letter-spacing:0.08em; color:var(--ink-faint); margin-bottom:12px; }
.mobile-drawer a{ display:block; padding:12px 0; font-size:16px; border-bottom:1px solid var(--line-soft); }
