/* ============ THEME TOKENS ============ */
  :root{
    --bg:        #000000;
    --bg-alt:    #0A0B0D;
    --ink:       #F5F7FA;
    --ink-soft:  #C7CDD8;
    --slate:     #8A93A3;
    --line:      rgba(255,255,255,0.10);
    --line-soft: rgba(255,255,255,0.06);
    --accent:      #00CFFF;
    --accent-soft: #6FE3FF;
    --accent-dim:  rgba(0,207,255,0.12);
    --on-accent:   #001217;

    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container: 1160px;
    --section-pad: clamp(72px, 9vw, 128px);
    --gutter: clamp(20px, 5vw, 40px);
  }

  html[data-theme="light"]{
    --bg:        #FFFFFF;
    --bg-alt:    #F4F6F8;
    --ink:       #0A0E14;
    --ink-soft:  #2C3440;
    --slate:     #5B6472;
    --line:      rgba(10,14,20,0.12);
    --line-soft: rgba(10,14,20,0.06);
    --accent:      #0092BD;
    --accent-soft: #00A9D6;
    --accent-dim:  rgba(0,146,189,0.08);
    --on-accent:   #FFFFFF;
  }

  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; overflow-x:hidden; }
  body{
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    transition: background-color .4s ease, color .4s ease;
    overflow-x: hidden;
  }
  img,svg{ display:block; max-width:100%; }
  a{ color:inherit; text-decoration:none; }
  ul{ list-style:none; }

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

  h1,h2,h3,h4{
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 700;
    letter-spacing: -0.015em;
    line-height: 1.12;
  }

  .eyebrow{
    display:flex;
    align-items:center;
    gap:10px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
  }
  .eyebrow::before{
    content:"";
    width: 22px;
    height: 1px;
    background: var(--accent);
    display:inline-block;
  }

  .btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14.5px;
    padding: 15px 26px;
    border-radius: 3px;
    transition: all .25s ease;
    letter-spacing: 0.01em;
    white-space: nowrap;
  }
  .btn-primary{
    background: var(--accent);
    color: var(--on-accent);
    border: 1px solid var(--accent);
  }
  .btn-primary:hover{
    background: var(--accent-soft);
    box-shadow: 0 0 26px var(--accent-dim);
    transform: translateY(-1px);
  }
  .btn-primary svg{ transition: transform .25s ease; }
  .btn-primary:hover svg{ transform: translateX(3px); }

  .btn-outline{
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
  }
  .btn-outline:hover{ border-color: var(--accent); color: var(--accent); }

  /* ============ NAV ============ */
  header{
    position: fixed;
    top:0; left:0; right:0;
    z-index: 100;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  }
  header.scrolled{
    background: color-mix(in srgb, var(--bg) 86%, transparent);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-inner{
    max-width: var(--container);
    margin: 0 auto;
    padding: 18px var(--gutter);
    display:flex;
    align-items:center;
    justify-content:space-between;
  }

  /* Logo lockup */
  .logo{
    display:flex;
    align-items:center;
    gap:10px;
    opacity:0;
    transform: translateY(-6px);
    animation: logoEnter 1.1s cubic-bezier(.25,.46,.45,.94) .15s forwards;
  }
  .logo-mark{
    height:36px;
    width:auto;
    flex-shrink:0;
  }
  .logo-word{
    font-family: var(--font-display);
    font-size: clamp(12.5px, 3.4vw, 17px);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--ink);
    white-space: nowrap;
  }
  .logo-word span{ color: var(--accent); }

  @keyframes logoEnter{
    to{ opacity:1; transform: translateY(0); }
  }

  /* ============ MOTION: hero entrance ============ */
  @keyframes fadeUp{
    from{ opacity:0; transform: translateY(16px); }
    to{ opacity:1; transform: translateY(0); }
  }
  .hero .eyebrow{ opacity:0; animation: fadeUp .7s cubic-bezier(.16,1,.3,1) .1s forwards; }
  .hero h1{ opacity:0; animation: fadeUp .7s cubic-bezier(.16,1,.3,1) .2s forwards; }
  .hero p{ opacity:0; animation: fadeUp .7s cubic-bezier(.16,1,.3,1) .32s forwards; }
  .hero-actions{ opacity:0; animation: fadeUp .7s cubic-bezier(.16,1,.3,1) .44s forwards; }
  .hero-trust{ opacity:0; animation: fadeUp .7s cubic-bezier(.16,1,.3,1) .56s forwards; }
  .hero-visual{ opacity:0; animation: fadeUp .8s cubic-bezier(.16,1,.3,1) .3s forwards; }

  /* ============ MOTION: scroll reveal ============ */
  .reveal{
    opacity:0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
  }
  .reveal.in-view{ opacity:1; transform:none; }

  .gap-row.reveal:nth-of-type(1){ transition-delay: 0ms; }
  .gap-row.reveal:nth-of-type(2){ transition-delay: 70ms; }
  .gap-row.reveal:nth-of-type(3){ transition-delay: 140ms; }
  .gap-row.reveal:nth-of-type(4){ transition-delay: 210ms; }
  .gap-row.reveal:nth-of-type(5){ transition-delay: 280ms; }

  .why-card.reveal:nth-of-type(1){ transition-delay: 0ms; }
  .why-card.reveal:nth-of-type(2){ transition-delay: 90ms; }
  .why-card.reveal:nth-of-type(3){ transition-delay: 180ms; }
  .why-card.reveal:nth-of-type(4){ transition-delay: 270ms; }

  .process-item.reveal:nth-of-type(1){ transition-delay: 0ms; }
  .process-item.reveal:nth-of-type(2){ transition-delay: 90ms; }
  .process-item.reveal:nth-of-type(3){ transition-delay: 180ms; }
  .process-item.reveal:nth-of-type(4){ transition-delay: 270ms; }
  @media (prefers-reduced-motion: reduce){
    .hero .eyebrow, .hero h1, .hero p, .hero-actions, .hero-trust, .hero-visual{
      animation: none !important; opacity:1 !important; transform:none !important;
    }
    .reveal{ transition: none !important; opacity:1 !important; transform:none !important; }
  }
  @media (prefers-reduced-motion: reduce){
    .logo{ animation: none !important; opacity:1 !important; transform:none !important; }
  }

  .nav-links{
    display:flex;
    align-items:center;
    gap:38px;
  }
  .nav-links a{
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    position: relative;
    padding: 4px 0;
  }
  .nav-links a::after{
    content:"";
    position:absolute;
    left:0; bottom:0;
    width:0; height:1px;
    background: var(--accent);
    transition: width .25s ease;
  }
  .nav-links a:hover::after{ width:100%; }
  .nav-links a:hover{ color: var(--ink); }
  .nav-cta{ display:flex; align-items:center; gap:26px; }
  .nav-links-group{ display:flex; align-items:center; gap:38px; }

  /* Theme toggle */
  .theme-toggle{
    position:relative;
    width:52px;
    height:28px;
    border-radius:20px;
    border:1px solid var(--line);
    background: var(--bg-alt);
    cursor:pointer;
    flex-shrink:0;
    display:flex;
    align-items:center;
    padding:3px;
    transition: border-color .3s ease;
  }
  .theme-toggle:hover{ border-color: var(--accent); }
  .theme-toggle .knob{
    width:20px; height:20px;
    border-radius:50%;
    background: var(--accent);
    display:flex;
    align-items:center;
    justify-content:center;
    color: var(--on-accent);
    transform: translateX(0);
    transition: transform .35s cubic-bezier(.16,1,.3,1), background .3s ease;
    box-shadow: 0 0 10px var(--accent-dim);
  }
  html[data-theme="light"] .theme-toggle .knob{ transform: translateX(24px); }
  .theme-toggle svg{ width:12px; height:12px; }

  @media (max-width: 860px){
    .nav-links-group{ display:none; }
  }

  /* Hamburger toggle — hidden on desktop/tablet, shown only at mobile breakpoint below */
  .menu-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    width:38px;
    height:38px;
    border-radius:4px;
    border:1px solid var(--line);
    background: var(--bg-alt);
    cursor:pointer;
    flex-shrink:0;
  }
  .menu-toggle-bar{
    width:16px;
    height:1.5px;
    background: var(--ink);
    border-radius:2px;
    transition: transform .3s cubic-bezier(.16,1,.3,1), opacity .3s ease;
  }
  .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2){ opacity:0; }
  .menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }

  /* Mobile menu panel */
  .mobile-menu{
    display:none;
  }

  @media (max-width: 768px){
    /* Fix 2 — navbar not usable on mobile: swap inline links/CTA for a hamburger + slide-down panel */
    .nav-cta .btn-primary{ display:none; }
    .menu-toggle{ display:flex; }

    .mobile-menu{
      display:flex;
      flex-direction:column;
      position:absolute;
      top:100%;
      left:0;
      right:0;
      background: var(--bg);
      border-bottom:1px solid var(--line-soft);
      padding: 8px var(--gutter) 24px;
      max-height:0;
      overflow:hidden;
      opacity:0;
      transition: max-height .35s cubic-bezier(.16,1,.3,1), opacity .3s ease;
    }
    .mobile-menu.open{
      max-height:420px;
      opacity:1;
    }
    .mobile-menu a{
      font-size:15px;
      font-weight:500;
      color: var(--ink-soft);
      padding:14px 4px;
      border-bottom:1px solid var(--line-soft);
    }
    .mobile-menu a:hover{ color: var(--accent); }

    /* Fix 3 — CTA button visibility: full-width, high-contrast, generous tap target */
    .mobile-menu-cta{
      justify-content:center;
      width:100%;
      margin-top:18px;
      padding:16px 22px;
      font-size:15px;
      border:none;
    }
  }

  @media (prefers-reduced-motion: reduce){
    .mobile-menu{ transition: none; }
    .menu-toggle-bar{ transition: none; }
  }

  @media (max-width: 480px){
    .nav-inner{ padding: 14px 16px; }
    .nav-cta{ gap: 10px; }
    .logo{ gap: 7px; }
    .logo-mark{ height: 28px; }
    .theme-toggle{ width: 42px; height: 24px; }
    .theme-toggle .knob{ width: 16px; height: 16px; }
    html[data-theme="light"] .theme-toggle .knob{ transform: translateX(18px); }
  }

  /* ============ HERO ============ */
  .hero{
    padding: calc(var(--section-pad) + 64px) 0 var(--section-pad);
    background:
      radial-gradient(ellipse 900px 520px at 84% -8%, var(--accent-dim), transparent 62%),
      var(--bg);
    border-bottom: 1px solid var(--line-soft);
  }
  .hero-grid{
    display:grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(40px, 6vw, 90px);
    align-items:center;
  }
  @media (max-width: 860px){
    .hero-grid{ grid-template-columns: 1fr; }
    .hero-visual{ max-width: 360px; margin: 0 auto; }
  }
  @media (max-width: 480px){
    .hero{ padding-top: calc(var(--section-pad) + 40px); }
    .hero-visual{ max-width: 280px; }
  }
  .hero h1{
    font-size: clamp(38px, 4.6vw, 58px);
    margin-bottom: 26px;
  }
  .hero h1 em{
    font-style: normal;
    color: var(--accent);
  }
  .hero p{
    font-size: 18px;
    color: var(--slate);
    max-width: 480px;
    margin-bottom: 36px;
  }
  .hero-actions{
    display:flex;
    gap:16px;
    align-items:center;
    flex-wrap:wrap;
    margin-bottom: 44px;
  }
  @media (max-width: 768px){
    /* Fix 3 — hero CTA visibility: bigger, full-width, easier to tap and see */
    .hero-actions{
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
    }
    .hero-actions .btn{
      width: 100%;
      justify-content: center;
      padding: 17px 24px;
      font-size: 15.5px;
    }
    .hero-actions .btn-primary{
      box-shadow: 0 4px 24px var(--accent-dim);
    }
  }
  .hero-trust{
    display:flex;
    flex-wrap: wrap;
    gap: 24px 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line-soft);
  }
  .hero-trust div{ font-size: 13px; color: var(--slate); }
  .hero-trust strong{
    display:block;
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--ink);
    font-weight: 600;
  }

  .hero-visual{
    position:relative;
    aspect-ratio: 1/1.02;
  }
  .hero-visual svg{ width:100%; height:100%; }

  /* ============ SECTION SPACING ============ */
  section{ padding: var(--section-pad) 0; }
  .section-head{
    max-width: 640px;
    margin-bottom: 64px;
  }
  .section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
  .section-head.center .eyebrow{ justify-content:center; }
  .section-head h2{ font-size: clamp(28px, 3.2vw, 40px); }
  .section-head p{ color: var(--slate); font-size: 17px; margin-top:18px; }

  /* ============ GROWTH GAP — editorial list, no boxes ============ */
  .gap-section{ background: var(--bg); }
  .gap-list{ border-top: 1px solid var(--line-soft); }
  .gap-row{
    display:grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding: 32px 0;
    border-bottom: 1px solid var(--line-soft);
    align-items:baseline;
  }
  .gap-row .num{
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.08em;
  }
  .gap-row h3{ font-size: 20px; margin-top:6px; }
  .gap-row p{ color: var(--slate); font-size: 15.5px; max-width: 620px; }

  @media (max-width: 700px){
    .gap-row{ grid-template-columns: 1fr; gap:8px; padding: 26px 0; }
  }

  /* ============ BRIDGE STATEMENT ============ */
  .bridge{
    background: var(--bg-alt);
    text-align:center;
    border-bottom: 1px solid var(--line-soft);
    border-top: 1px solid var(--line-soft);
  }
  .bridge .wrap{ max-width: 780px; }
  .bridge .eyebrow{ justify-content:center; }
  .bridge h2{
    color: var(--ink);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 500;
    line-height:1.4;
  }
  .bridge p{
    color: var(--slate);
    margin-top:20px;
    font-size: 16.5px;
  }

  /* ============ SERVICES ============ */
  .service-row{
    display:grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(30px,6vw,80px);
    align-items:center;
    padding: 56px 0;
    border-bottom: 1px solid var(--line-soft);
  }
  .service-row:first-of-type{ padding-top:0; }
  .service-row:last-of-type{ border-bottom:none; padding-bottom:0; }
  .service-row.reverse{ direction: rtl; }
  .service-row.reverse > *{ direction: ltr; }

  .service-index{
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.1em;
    margin-bottom: 14px;
    display:block;
  }
  .service-row h3{ font-size: 27px; margin-bottom: 16px; }
  .service-row > div > p.lead{ color: var(--slate); font-size: 16.5px; margin-bottom: 22px; }
  .service-tags{ display:flex; flex-wrap:wrap; gap:10px; }
  .service-tags span{
    font-size: 12.5px;
    color: var(--ink-soft);
    padding: 7px 0;
    border-top: 1px solid var(--line-soft);
    padding-top: 10px;
    padding-right: 16px;
  }

  /* icon panel — no box, just glow */
  .service-visual{
    position:relative;
    aspect-ratio: 4/3.1;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .service-visual::before{
    content:"";
    position:absolute;
    width:76%; height:76%;
    background: radial-gradient(circle, var(--accent-dim), transparent 72%);
    filter: blur(6px);
  }
  .service-visual svg{ width:82%; height:82%; position:relative; z-index:1; }

  @media (max-width: 760px){
    .service-row, .service-row.reverse{ grid-template-columns: 1fr; direction: ltr; }
    .service-visual{ order:-1; max-width: 320px; margin: 0 auto; }
  }

  /* ============ WHY CHOOSE — divided list, no boxes ============ */
  .why-section{ background: var(--bg-alt); border-top:1px solid var(--line-soft); border-bottom:1px solid var(--line-soft); }
  .why-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .why-card{
    padding: 4px 28px 4px 0;
    border-left: 1px solid var(--line-soft);
    padding-left: 26px;
  }
  .why-card:first-child{ border-left:none; padding-left:0; }
  .why-card .icon{ width:30px; height:30px; margin-bottom:22px; color: var(--accent); }
  .why-card h3{ font-size: 17px; margin-bottom: 10px; }
  .why-card p{ font-size: 14.5px; color: var(--slate); }

  @media (max-width: 980px){
    .why-grid{ grid-template-columns: repeat(2,1fr); row-gap: 40px; }
    .why-card:nth-child(3){ border-left:none; padding-left:0; }
  }
  @media (max-width: 560px){
    .why-grid{ grid-template-columns: 1fr; row-gap: 32px; }
    .why-card{ border-left:none; padding-left:0; border-top:1px solid var(--line-soft); padding-top:28px; }
    .why-card:first-child{ border-top:none; padding-top:0; }
  }

  /* ============ PROCESS ============ */
  .process-section{ background: var(--bg); }
  .process-list{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .process-item{
    border-left: 1px solid var(--line-soft);
    padding-left: 28px;
  }
  .process-item:first-child{ border-left: none; padding-left:0; }
  .process-num{
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--accent);
    letter-spacing: 0.08em;
    margin-bottom: 18px;
  }
  .process-item h3{ font-size: 18px; margin-bottom: 10px; }
  .process-item p{ font-size: 14.5px; color: var(--slate); }

  @media (max-width: 860px){
    .process-list{ grid-template-columns: 1fr 1fr; row-gap: 40px; }
    .process-item:nth-child(3){ border-left:none; padding-left:0; }
  }
  @media (max-width: 560px){
    .process-list{ grid-template-columns: 1fr; }
    .process-item{ border-left:none; padding-left:0; border-top:1px solid var(--line-soft); padding-top:28px; }
    .process-item:first-child{ border-top:none; padding-top:0; }
  }

  /* ============ CTA ============ */
  .cta-section{
    background:
      radial-gradient(ellipse 700px 400px at 50% 0%, var(--accent-dim), transparent 65%),
      var(--bg-alt);
    text-align:center;
    border-top: 1px solid var(--line-soft);
  }
  .cta-section .wrap{ max-width: 680px; }
  .cta-section .eyebrow{ justify-content:center; }
  .cta-section h2{ font-size: clamp(30px,3.6vw,44px); margin-bottom:18px; }
  .cta-section p{ color: var(--slate); font-size: 16.5px; margin-bottom: 38px; }
  .cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
  .cta-note{ margin-top:28px; font-size:13px; color: var(--slate); opacity:.75; }

  /* ============ FOOTER ============ */
  footer{ background: var(--bg); padding: 64px 0 32px; }
  .footer-top{
    display:grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--line-soft);
  }
  .footer-brand p{ color: var(--slate); font-size: 14px; margin-top:16px; max-width: 260px; }
  .footer-col h4{ font-size: 13px; letter-spacing:0.06em; text-transform:uppercase; color: var(--ink-soft); margin-bottom:18px; font-weight:600; }
  .footer-col ul{ display:flex; flex-direction:column; gap:12px; }
  .footer-col a{ font-size:14px; color: var(--slate); }
  .footer-col a:hover{ color: var(--accent); }
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top: 28px;
    font-size: 13px;
    color: var(--slate);
    flex-wrap:wrap;
    gap:12px;
  }

  @media (max-width: 760px){
    .footer-top{ grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 480px){
    .footer-top{ grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom{ flex-direction: column; align-items: flex-start; gap: 8px; }
  }

/* ============ LEGAL PAGES (Terms / Privacy) ============ */
.legal-page{
  padding: calc(var(--section-pad) + 60px) 0 var(--section-pad);
  max-width: 780px;
  margin: 0 auto;
}
.legal-page h1{
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 8px;
}
.legal-page .legal-updated{
  color: var(--slate);
  font-size: 14px;
  margin-bottom: 48px;
}
.legal-page h2{
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 14px;
}
.legal-page p{
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.legal-page a.inline-link{
  color: var(--accent);
  text-decoration: underline;
}

/* ============ BLOG LISTING ============ */
.blog-hero{
  padding: calc(var(--section-pad) + 60px) 0 60px;
  border-bottom: 1px solid var(--line-soft);
}
.blog-hero h1{
  font-size: clamp(32px, 4.4vw, 50px);
  max-width: 640px;
}
.blog-hero p{
  color: var(--slate);
  font-size: 17px;
  max-width: 560px;
  margin-top: 18px;
}
.blog-list{ border-top: 1px solid var(--line-soft); }
.blog-post-row{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line-soft);
  align-items: baseline;
}
.blog-post-row .blog-date{
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.06em;
}
.blog-post-row h2{
  font-size: 22px;
  margin-bottom: 10px;
}
.blog-post-row h2 a{ color: var(--ink); }
.blog-post-row h2 a:hover{ color: var(--accent); }
.blog-post-row p{
  color: var(--slate);
  font-size: 15.5px;
  max-width: 620px;
  margin-bottom: 12px;
}
.blog-read-more{
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  display:inline-flex;
  align-items:center;
  gap: 6px;
}
@media (max-width: 640px){
  .blog-post-row{ grid-template-columns: 1fr; gap: 8px; }
}

/* ============ BLOG ARTICLE ============ */
.article-page{
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--section-pad) + 60px) 0 var(--section-pad);
}
.article-back{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 13.5px;
  color: var(--slate);
  margin-bottom: 28px;
}
.article-back:hover{ color: var(--accent); }
.article-meta{
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.article-page h1{
  font-size: clamp(30px, 4.2vw, 44px);
  margin-bottom: 28px;
}
.article-body h2{
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 14px;
}
.article-body p{
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.8;
  margin-bottom: 18px;
}
.article-body ul{
  margin: 0 0 18px 0;
  padding-left: 0;
}
.article-body ul li{
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.8;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.article-body ul li::before{
  content:"—";
  position:absolute;
  left:0;
  color: var(--accent);
}
.article-footer{
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
}
