/* ==========================================================================
   S.D.L. SÜDDEUTSCHE LEASING AG — DESIGN SYSTEM
   Token concept: "Asset Ledger" — bronze machinery + verdigris patina,
   graphite steel + drafting paper. Grounded in the real product: financed
   industrial assets, IoT telemetry, and structured-finance paperwork.
   ========================================================================== */

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

:root{
  /* ---- core palette (named) ---- */
  --ink:        #10141B;   /* primary dark ground */
  --ink-2:      #161C25;   /* raised dark surface */
  --steel:      #1E2733;   /* card / panel surface on dark */
  --steel-2:    #2A3542;   /* border / hover surface on dark */
  --paper:      #E8E3D4;   /* drafting paper — light ground, used deliberately */
  --paper-dim:  #DCD5C0;   /* paper borders / recessed paper */
  --paper-deep: #CFC7AC;   /* deeper paper for contrast rules */
  --brass:      #B8823E;   /* primary accent — machinery bronze */
  --brass-hi:   #D6A661;   /* brass hover / bright state */
  --brass-dim:  #8C6430;   /* brass pressed / on-paper text-safe */
  --verdigris:  #3E7268;   /* secondary accent — patina, ESG, data */
  --verdigris-hi: #59988C;
  --rust:       #B5583A;   /* signal / alert accent — sparing use only */
  --white:      #F4F1E7;   /* warm near-white text on dark */
  --muted-dark: #97A0AC;   /* secondary text on dark */
  --muted-paper:#6B6656;   /* secondary text on paper */
  --ink-on-paper: #1A1712;
  --line-dark:  rgba(244,241,231,0.11);
  --line-dark-strong: rgba(244,241,231,0.22);
  --line-paper: rgba(26,23,18,0.14);

  /* ---- type ---- */
  --f-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
  --f-body: 'IBM Plex Sans', -apple-system, sans-serif;
  --f-mono: 'IBM Plex Mono', ui-monospace, monospace;

  /* ---- layout ---- */
  --container: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --section-pad: clamp(64px, 9vw, 128px);
  --radius: 3px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--ink);
  color:var(--white);
  font-family:var(--f-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; font-size:inherit; }

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

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

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

/* ---- type scale ---- */
.h-eyebrow{
  font-family:var(--f-mono);
  font-size:12.5px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--brass-hi);
}
.h-eyebrow::before{
  content:'';
  width:18px; height:1px;
  background:var(--brass-hi);
}
.section--paper .h-eyebrow{ color:var(--brass-dim); }
.section--paper .h-eyebrow::before{ background:var(--brass-dim); }

.h-display{
  font-family:var(--f-display);
  font-weight:700;
  letter-spacing:-0.01em;
  line-height:0.98;
  text-transform:none;
}
h1.h-display{ font-size:clamp(40px, 6.2vw, 84px); font-weight:700; }
h2.h-display{ font-size:clamp(32px, 4.4vw, 56px); font-weight:700; }
h3.h-display{ font-size:clamp(22px, 2.6vw, 30px); font-weight:600; }

.lede{
  font-size:clamp(17px, 1.6vw, 20px);
  line-height:1.6;
  color:var(--muted-dark);
  max-width:640px;
}
.section--paper .lede{ color:var(--muted-paper); }

.mono-tag{
  font-family:var(--f-mono);
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--muted-dark);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
.nav{
  position:sticky; top:0; z-index:100;
  background:rgba(16,20,27,0.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line-dark);
}
.nav-inner{
  max-width:var(--container); margin:0 auto; padding:0 var(--pad);
  height:76px;
  display:flex; align-items:center; justify-content:space-between;
  gap:24px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-family:var(--f-display); font-weight:700;
  font-size:16px; letter-spacing:0.01em;
  white-space:nowrap;
}
.brand-mark{
  width:34px; height:34px; flex:none;
  border:1px solid var(--brass);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--f-mono); font-size:12px; color:var(--brass-hi);
  transform:rotate(45deg);
}
.brand-mark span{ transform:rotate(-45deg); }
.brand-full{ display:flex; flex-direction:column; line-height:1.15; }
.brand-full small{
  font-family:var(--f-mono); font-weight:400; font-size:10px;
  letter-spacing:0.12em; color:var(--muted-dark); text-transform:uppercase;
}

.nav-links{ display:flex; align-items:center; gap:2px; }
.nav-links a{
  font-size:14px; font-weight:500; color:var(--white);
  padding:10px 16px; border-radius:2px;
  position:relative;
}
.nav-links a::after{
  content:''; position:absolute; left:16px; right:16px; bottom:6px; height:1px;
  background:var(--brass-hi); transform:scaleX(0); transform-origin:left;
  transition:transform .25s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ transform:scaleX(1); }
.nav-links a[aria-current="page"]{ color:var(--brass-hi); }

.nav-actions{ display:flex; align-items:center; gap:14px; }
.nav-phone{
  font-family:var(--f-mono); font-size:13px; color:var(--muted-dark);
  display:flex; align-items:center; gap:8px;
}
.nav-phone:hover{ color:var(--white); }
.nav-toggle{
  display:none; background:none; border:1px solid var(--line-dark-strong);
  width:42px; height:42px; align-items:center; justify-content:center;
  color:var(--white);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--f-body); font-weight:600; font-size:14px;
  padding:13px 24px; border-radius:2px; border:1px solid transparent;
  white-space:nowrap; transition:all .2s ease; line-height:1;
}
.btn-primary{ background:var(--brass); color:var(--ink); }
.btn-primary:hover{ background:var(--brass-hi); transform:translateY(-1px); }
.btn-outline{ border-color:var(--line-dark-strong); color:var(--white); }
.btn-outline:hover{ border-color:var(--brass-hi); color:var(--brass-hi); }
.section--paper .btn-outline{ border-color:var(--line-paper); color:var(--ink-on-paper); }
.section--paper .btn-outline:hover{ border-color:var(--brass-dim); color:var(--brass-dim); }
.btn-sm{ padding:10px 18px; font-size:13px; }
.btn-block{ width:100%; }
.btn-arrow{ transition:transform .2s ease; }
.btn:hover .btn-arrow{ transform:translateX(3px); }

/* ==========================================================================
   SECTIONS / LAYOUT
   ========================================================================== */
.section{ padding:var(--section-pad) 0; position:relative; }
.section--dark{ background:var(--ink); }
.section--raised{ background:var(--ink-2); }
.section--paper{ background:var(--paper); color:var(--ink-on-paper); }
.section--steel{ background:var(--steel); }

.grid-ledger{
  background-image:linear-gradient(var(--line-dark) 1px, transparent 1px),
                    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size:64px 64px;
  background-position:center top;
  -webkit-mask-image:linear-gradient(to bottom, black, transparent 85%);
  mask-image:linear-gradient(to bottom, black, transparent 85%);
}

.section-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:40px;
  margin-bottom:56px; flex-wrap:wrap;
}
.section-head .h-eyebrow{ margin-bottom:16px; }
.section-head-title{ max-width:640px; }
.section-foot-note{ max-width:320px; }

.divider{ height:1px; background:var(--line-dark); border:none; margin:0; }
.section--paper .divider{ background:var(--line-paper); }

.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.grid-12{ display:grid; grid-template-columns:repeat(12,1fr); gap:24px; }

@media (max-width:980px){
  .grid-3{ grid-template-columns:1fr 1fr; }
  .grid-4{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; }
}
@media (max-width:900px){
  .grid-12 > div{ grid-column:1 / -1 !important; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative; overflow:hidden;
  padding:88px 0 var(--section-pad);
  border-bottom:1px solid var(--line-dark);
}
.hero-inner{
  display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px; align-items:center;
}
.hero-copy .h-eyebrow{ margin-bottom:22px; }
.hero-copy h1{ margin-bottom:24px; }
.hero-copy .lede{ margin-bottom:36px; max-width:560px; }
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px; }
.hero-meta{ display:flex; gap:28px; flex-wrap:wrap; }
.hero-meta-item{ font-family:var(--f-mono); font-size:12px; color:var(--muted-dark); letter-spacing:0.03em; }
.hero-meta-item b{ color:var(--white); display:block; font-family:var(--f-display); font-size:22px; font-weight:600; margin-bottom:2px; letter-spacing:0; }

/* ---- Signature element: the Asset Passport card ---- */
.passport{
  background:var(--paper);
  color:var(--ink-on-paper);
  border-radius:4px;
  padding:26px 26px 22px;
  position:relative;
  box-shadow:0 40px 80px -20px rgba(0,0,0,0.55);
  transform:rotate(1.2deg);
}
.passport::before{
  content:'';
  position:absolute; inset:8px;
  border:1px solid var(--line-paper);
  border-radius:2px;
  pointer-events:none;
}
.passport-top{
  display:flex; justify-content:space-between; align-items:flex-start;
  padding-bottom:16px; margin-bottom:16px; border-bottom:1px dashed var(--paper-deep);
}
.passport-top .mono-tag{ color:var(--muted-paper); }
.passport-id{ font-family:var(--f-mono); font-size:13px; font-weight:600; color:var(--brass-dim); }
.passport-badge{
  width:30px; height:30px; border:1px solid var(--brass-dim);
  display:flex; align-items:center; justify-content:center; border-radius:50%;
}
.passport-figure{ padding:10px 0 18px; }
.passport-rows{ display:flex; flex-direction:column; gap:12px; }
.passport-row{
  display:flex; justify-content:space-between; align-items:center;
  font-size:13px; padding-bottom:12px; border-bottom:1px solid var(--line-paper);
}
.passport-row:last-child{ border-bottom:none; padding-bottom:0; }
.passport-row-label{ color:var(--muted-paper); }
.passport-row-value{
  font-family:var(--f-mono); font-weight:600; color:var(--ink-on-paper);
  display:flex; align-items:center; gap:7px;
}
.dot{ width:7px; height:7px; border-radius:50%; background:var(--verdigris); flex:none; }
.dot.dot-live{ box-shadow:0 0 0 3px rgba(62,114,104,0.22); }
.passport-foot{
  margin-top:18px; padding-top:14px; border-top:1px solid var(--line-paper);
  display:flex; justify-content:space-between; align-items:center;
}
.passport-sample{ font-family:var(--f-mono); font-size:10px; letter-spacing:0.08em; text-transform:uppercase; color:var(--muted-paper); }

@media (max-width:900px){
  .hero-inner{ grid-template-columns:1fr; }
  .passport{ transform:none; max-width:420px; }
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.trust-bar{
  border-top:1px solid var(--line-dark); border-bottom:1px solid var(--line-dark);
  background:var(--ink-2);
}
.trust-row{
  display:flex; align-items:center; justify-content:space-between;
  padding:22px 0; gap:24px; flex-wrap:wrap;
}
.trust-item{ display:flex; align-items:center; gap:10px; }
.trust-item .mono-tag{ color:var(--muted-dark); }
.trust-item strong{ font-family:var(--f-body); font-size:13.5px; font-weight:600; color:var(--white); }

/* ==========================================================================
   CARDS: solutions / industries / tech / case
   ========================================================================== */
.card{
  background:var(--steel); border:1px solid var(--line-dark);
  border-radius:3px; padding:32px; position:relative;
  transition:border-color .2s ease, transform .2s ease;
}
.card:hover{ border-color:var(--line-dark-strong); transform:translateY(-3px); }
.card-index{ font-family:var(--f-mono); font-size:12px; color:var(--brass-hi); margin-bottom:20px; display:block; }
.card h3{ margin-bottom:12px; }
.card p{ color:var(--muted-dark); font-size:14.5px; line-height:1.65; margin-bottom:18px; }
.card-link{ font-family:var(--f-mono); font-size:12.5px; color:var(--brass-hi); display:inline-flex; gap:8px; align-items:center; }
.card-link svg{ transition:transform .2s ease; }
.card:hover .card-link svg{ transform:translateX(3px); }
.card-tags{ display:flex; gap:8px; flex-wrap:wrap; margin-top:16px; }
.tag{
  font-family:var(--f-mono); font-size:10.5px; letter-spacing:0.04em;
  padding:5px 9px; border:1px solid var(--line-dark-strong); color:var(--muted-dark);
  border-radius:2px; text-transform:uppercase;
}

.icon-frame{
  width:46px; height:46px; border:1px solid var(--brass-dim);
  display:flex; align-items:center; justify-content:center; margin-bottom:22px;
  color:var(--brass-hi);
}
.section--paper .icon-frame{ border-color:var(--brass-dim); color:var(--brass-dim); }

/* ==========================================================================
   LIFECYCLE / PROCESS
   ========================================================================== */
.lifecycle{ position:relative; }
.lifecycle-track{
  display:grid; grid-template-columns:repeat(5,1fr); gap:2px;
  border-top:1px solid var(--line-dark); border-bottom:1px solid var(--line-dark);
}
.lifecycle-step{ padding:32px 22px; border-right:1px solid var(--line-dark); position:relative; }
.lifecycle-step:last-child{ border-right:none; }
.lifecycle-num{ font-family:var(--f-mono); font-size:12px; color:var(--brass-hi); display:block; margin-bottom:18px; }
.lifecycle-step h4{ font-family:var(--f-display); font-weight:600; font-size:18px; margin-bottom:10px; }
.lifecycle-step p{ font-size:13.5px; color:var(--muted-dark); line-height:1.6; }
@media (max-width:980px){
  .lifecycle-track{ grid-template-columns:1fr; }
  .lifecycle-step{ border-right:none; border-bottom:1px solid var(--line-dark); }
}

/* ==========================================================================
   STATS
   ========================================================================== */
.stat-strip{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--line-dark); border:1px solid var(--line-dark); }
.stat-cell{ background:var(--ink); padding:34px 26px; }
.stat-num{ font-family:var(--f-display); font-size:clamp(30px,3.4vw,44px); font-weight:700; color:var(--brass-hi); line-height:1; margin-bottom:10px; }
.stat-label{ font-size:13px; color:var(--muted-dark); line-height:1.5; }
@media (max-width:900px){ .stat-strip{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .stat-strip{ grid-template-columns:1fr; } }

/* ==========================================================================
   DASHBOARD / TECH PANEL MOCK
   ========================================================================== */
.dash{
  background:var(--ink-2); border:1px solid var(--line-dark); border-radius:4px; overflow:hidden;
}
.dash-head{
  display:flex; justify-content:space-between; align-items:center;
  padding:16px 22px; border-bottom:1px solid var(--line-dark);
}
.dash-head .mono-tag{ display:flex; align-items:center; gap:8px; }
.dash-body{ padding:22px; display:grid; grid-template-columns:1.3fr 1fr; gap:22px; }
.dash-chart{ background:var(--ink); border:1px solid var(--line-dark); border-radius:3px; padding:18px; }
.dash-list{ display:flex; flex-direction:column; gap:1px; background:var(--line-dark); border:1px solid var(--line-dark); border-radius:3px; overflow:hidden; }
.dash-list-item{ background:var(--ink); padding:13px 16px; display:flex; justify-content:space-between; align-items:center; font-size:12.5px; }
.dash-list-item .mono-tag{ color:var(--muted-dark); }
.dash-list-item .val{ font-family:var(--f-mono); font-weight:600; }
.val-ok{ color:var(--verdigris-hi); }
.val-warn{ color:var(--rust); }
@media (max-width:760px){ .dash-body{ grid-template-columns:1fr; } }

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-item{ border-bottom:1px solid var(--line-dark); }
.section--paper .faq-item{ border-bottom:1px solid var(--line-paper); }
.faq-q{
  width:100%; background:none; border:none; color:inherit;
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  padding:26px 0; text-align:left;
  font-family:var(--f-body); font-size:17px; font-weight:600;
}
.faq-q .plus{ font-family:var(--f-mono); font-size:18px; color:var(--brass-hi); transition:transform .25s ease; flex:none; }
.faq-item.open .plus{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-a-inner{ padding-bottom:26px; color:var(--muted-dark); font-size:15px; line-height:1.7; max-width:760px; }
.section--paper .faq-a-inner{ color:var(--muted-paper); }

/* ==========================================================================
   FORM
   ========================================================================== */
.form-panel{ background:var(--steel); border:1px solid var(--line-dark); padding:40px; border-radius:4px; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.form-field{ display:flex; flex-direction:column; gap:8px; }
.form-field.full{ grid-column:1 / -1; }
.form-field label{ font-family:var(--f-mono); font-size:11.5px; letter-spacing:0.06em; text-transform:uppercase; color:var(--muted-dark); }
.form-field input, .form-field select, .form-field textarea{
  background:var(--ink); border:1px solid var(--line-dark-strong); color:var(--white);
  padding:13px 14px; border-radius:2px; font-size:14.5px;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ border-color:var(--brass-hi); outline:none; }
.form-field textarea{ resize:vertical; min-height:100px; }
.form-note{ font-size:12.5px; color:var(--muted-dark); margin-top:16px; line-height:1.6; }
@media (max-width:640px){ .form-row{ grid-template-columns:1fr; } .form-panel{ padding:26px; } }

/* ==========================================================================
   OFFICE / CONTACT CARDS
   ========================================================================== */
.office-card{
  background:var(--steel); border:1px solid var(--line-dark); padding:26px; border-radius:3px;
}
.office-card .mono-tag{ color:var(--brass-hi); margin-bottom:14px; display:block; }
.office-card h4{ font-family:var(--f-display); font-size:20px; font-weight:600; margin-bottom:10px; }
.office-card address{ font-style:normal; color:var(--muted-dark); font-size:14px; line-height:1.7; margin-bottom:16px; }
.office-card .office-line{ display:flex; gap:10px; align-items:center; font-size:13.5px; color:var(--white); padding:6px 0; }

.map-frame{ border:1px solid var(--line-dark); border-radius:4px; overflow:hidden; filter:grayscale(0.35) contrast(1.05); }
.map-frame iframe{ display:block; width:100%; height:100%; border:0; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer{ background:var(--ink-2); border-top:1px solid var(--line-dark); padding:72px 0 28px; }
.footer-top{ display:grid; grid-template-columns:1.4fr repeat(4,1fr); gap:40px; margin-bottom:56px; }
.footer-brand .brand{ margin-bottom:18px; }
.footer-brand p{ color:var(--muted-dark); font-size:13.5px; line-height:1.7; max-width:280px; margin-bottom:20px;}
.footer-col h5{
  font-family:var(--f-mono); font-size:11.5px; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--muted-dark); margin-bottom:18px;
}
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:13.5px; color:var(--white); }
.footer-col a:hover{ color:var(--brass-hi); }
.footer-bottom{
  border-top:1px solid var(--line-dark); padding-top:26px;
  display:flex; justify-content:space-between; align-items:center; gap:20px; flex-wrap:wrap;
}
.footer-legal{ display:flex; gap:22px; flex-wrap:wrap; }
.footer-legal a{ font-size:12.5px; color:var(--muted-dark); }
.footer-legal a:hover{ color:var(--white); }
.footer-copy{ font-size:12.5px; color:var(--muted-dark); font-family:var(--f-mono); }
.footer-compliance{ font-size:11.5px; color:var(--muted-dark); font-family:var(--f-mono); line-height:1.8; margin-top:20px; padding-top:20px; border-top:1px solid var(--line-dark); }

@media (max-width:980px){
  .footer-top{ grid-template-columns:1fr 1fr; }
}
@media (max-width:640px){
  .footer-top{ grid-template-columns:1fr; }
}

/* ==========================================================================
   SCROLL REVEAL / UTILITIES
   ========================================================================== */
[data-reveal]{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible{ opacity:1; transform:translateY(0); }

.cta-band{
  background:var(--brass); color:var(--ink); border-radius:4px;
  padding:clamp(40px,6vw,72px); text-align:center; position:relative; overflow:hidden;
}
.cta-band h2{ color:var(--ink); margin-bottom:16px; }
.cta-band p{ color:rgba(26,23,18,0.72); font-size:17px; max-width:560px; margin:0 auto 32px; }
.cta-band .btn-primary{ background:var(--ink); color:var(--white); }
.cta-band .btn-primary:hover{ background:#000; }
.cta-band .btn-outline{ border-color:rgba(26,23,18,0.35); color:var(--ink-on-paper); }
.cta-band .btn-outline:hover{ border-color:var(--ink); }

.breadcrumb{ font-family:var(--f-mono); font-size:12px; color:var(--muted-dark); margin-bottom:20px; display:flex; gap:8px; align-items:center; }
.breadcrumb a:hover{ color:var(--brass-hi); }

.page-hero{ padding:64px 0 60px; border-bottom:1px solid var(--line-dark); }
.page-hero .lede{ margin-top:20px; }
.page-hero-top{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; align-items:flex-end; }

/* Mobile nav */
@media (max-width:900px){
  .nav-links{
    position:fixed; inset:76px 0 0 0; background:var(--ink);
    flex-direction:column; align-items:stretch; padding:12px var(--pad);
    transform:translateX(100%); transition:transform .3s ease; gap:0;
    border-top:1px solid var(--line-dark);
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ padding:18px 4px; border-bottom:1px solid var(--line-dark); font-size:16px; }
  .nav-phone{ display:none; }
  .nav-toggle{ display:flex; }
  .hero-ctas .btn{ width:100%; }
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */
.compare{ width:100%; border-collapse:collapse; }
.compare th, .compare td{ text-align:left; padding:16px 18px; border-bottom:1px solid var(--line-dark); font-size:14px; }
.compare thead th{ font-family:var(--f-mono); font-size:11px; letter-spacing:0.06em; text-transform:uppercase; color:var(--muted-dark); font-weight:500; border-bottom:1px solid var(--line-dark-strong); }
.compare tbody th{ font-weight:600; color:var(--white); white-space:nowrap; }
.compare td{ color:var(--muted-dark); }
.compare tbody tr:last-child td, .compare tbody tr:last-child th{ border-bottom:none; }
.compare-wrap{ overflow-x:auto; border:1px solid var(--line-dark); border-radius:4px; background:var(--ink-2); }
.compare-wrap .compare{ min-width:640px; }
.section--paper .compare th, .section--paper .compare td{ border-color:var(--line-paper); }
.section--paper .compare thead th{ color:var(--muted-paper); border-color:var(--line-paper); }
.section--paper .compare tbody th{ color:var(--ink-on-paper); }
.section--paper .compare td{ color:var(--muted-paper); }
.section--paper .compare-wrap{ background:#fff; border-color:var(--line-paper); }

.pill-nav{ display:flex; gap:10px; flex-wrap:wrap; margin-top:28px; }
.pill-nav a{
  font-family:var(--f-mono); font-size:12.5px; padding:9px 16px;
  border:1px solid var(--line-dark-strong); border-radius:20px; color:var(--muted-dark);
}
.pill-nav a:hover{ border-color:var(--brass-hi); color:var(--brass-hi); }

.num-block{ display:flex; gap:18px; align-items:flex-start; }
.num-block .n{ font-family:var(--f-display); font-size:32px; font-weight:700; color:var(--brass-hi); line-height:1; flex:none; width:52px; }
.num-block .n small{ display:block; font-family:var(--f-mono); font-size:10px; color:var(--muted-dark); font-weight:400; margin-top:4px; }

/* Fine typographic rhythm on paper sections */
.section--paper h1, .section--paper h2, .section--paper h3, .section--paper h4{ color:var(--ink-on-paper); }
.section--paper .stat-strip{ background:var(--line-paper); border-color:var(--line-paper); }
.section--paper .stat-cell{ background:var(--paper); }
.section--paper .stat-label{ color:var(--muted-paper); }
.section--paper .card{ background:#fff; border-color:var(--line-paper); }
.section--paper .card p{ color:var(--muted-paper); }
.section--paper .divider{ background:var(--line-paper); }
