/* =========================
   Tokens
========================= */

:root{
  /* Light */
  --bg: #fbfbfc;
  --surface: #ffffff;
  --surface2: rgba(255,255,255,.94);
  --text: #0b1220;
  --muted: #5b6474;
  --muted2: #7b8496;
  --line: #e7e9ee;

  /* Brand (calm, premium) */
  --g:  #1b8f50;
  --g2: #147243;
  --y:  #e4b04a;
  --y2: #c98914;

  /* Layout rhythm */
  --container: 1120px;
  --radius: 16px;
  --radius2: 22px;

  --shadow-sm: 0 6px 18px rgba(11,18,32,.06);
  --shadow-md: 0 18px 44px rgba(11,18,32,.10);

  --tracking-tight: -0.02em;
  --tracking: -0.01em;

  /* Buttons */
  --btn-bg: var(--surface2);
  --btn-text: var(--text);
  --btn-border: var(--line);

  /* primary = solid */
  --btn-primary-bg: rgba(27,143,80,.10);
  --btn-primary-border: rgba(27,143,80,.32);
  --btn-primary-text: var(--text);

  --btn-ghost-bg: rgba(255,255,255,.86);
}

/* Dark */
html[data-theme="dark"]{
  --bg: #0b0f14;
  --surface: #0f1620;
  --surface2: rgba(15,22,32,.88);
  --text: #f2f5fb;
  --muted: #b2bccb;
  --muted2:#93a0b4;
  --line: rgba(255,255,255,.10);

  --shadow-sm: 0 10px 26px rgba(0,0,0,.38);
  --shadow-md: 0 22px 58px rgba(0,0,0,.46);

  --btn-bg: rgba(15,22,32,.88);
  --btn-text: var(--text);
  --btn-border: rgba(255,255,255,.12);

  --btn-primary-bg: rgba(228,176,74,.12);
  --btn-primary-border: rgba(228,176,74,.26);
  --btn-primary-text: var(--text);

  --btn-ghost-bg: rgba(255,255,255,.05);
}

/* =========================
   Base
========================= */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: var(--bg);
  line-height:1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button, input{ font:inherit; }

.container{
  width:min(var(--container), calc(100% - 44px));
  margin-inline:auto;
}

/* === Global background gradient (minimal, premium) === */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    linear-gradient(120deg,
      rgba(27,143,80,.28) 3%,
      rgba(228,176,74,.22) 60%,
      rgba(251,251,252,0) 100%
    );
}
html[data-theme="dark"] body::before{
  background:
    linear-gradient(120deg,
      rgba(27,143,80,.20) 3%,
      rgba(228,176,74,.16) 60%,
      rgba(11,15,20,0) 100%
    );
}

/* Smooth theme transitions */
body,
.header,
.mobile-menu,
.card, .panel, .callout, .shot, .steps__item, .check, .cta, .about,
.nav__link, .mobile-menu__link,
.btn, .input, .pill,
.footer,
.hero-type-card,
.hero-benefit{
  transition:
    background-color .25s ease,
    color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    opacity .25s ease,
    transform .18s ease;
}
html.theme-no-anim *{ transition:none !important; }

/* =========================
   Typography
========================= */
.h1{
  font-size: clamp(36px, 4.2vw, 56px);
  line-height:1.02;
  margin:0;
  letter-spacing: var(--tracking-tight);
}
.h2{
  font-size: clamp(22px, 2.2vw, 30px);
  margin:0;
  letter-spacing: var(--tracking);
}
.h3{
  font-size:18px;
  margin:0;
  letter-spacing: var(--tracking);
}

.subhead{
  font-size: clamp(15px, 1.55vw, 18px);
  color:var(--muted);
  margin:14px 0 0;
  max-width:72ch;
}
.lead{
  margin:18px 0 0;
  max-width:62ch;
  color: var(--muted);
  font-size: 15.5px;
}

.section{ padding:45px 0; }
.section.soft{
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,0));
}
html[data-theme="dark"] .section.soft{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
}

.section__head{ margin-bottom:26px; }
.section__desc{
  margin:10px 0 0;
  color:var(--muted);
  max-width:74ch;
  font-size:15px;
}

/* =========================
   Header
========================= */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(251,251,252,.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(231,233,238,.7);
}
html[data-theme="dark"] .header{
  background: rgba(11,15,20,.62);
  border-bottom-color: rgba(255,255,255,.10);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.header__right{
  display:flex;
  align-items:center;
  gap:20px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand__logo{
  width:58px;
  height:58px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(11,18,32,.14);
}
html[data-theme="dark"] .brand__logo{
  box-shadow: 0 18px 40px rgba(0,0,0,.44);
}
.brand__name{
  font-weight:650;
  letter-spacing: var(--tracking);
  font-size:20px;
}

/* Nav */
.nav{ display:flex; align-items:center; gap:12px; }
.nav__link{
  color: var(--muted);
  font-size: 13px;
  padding: 9px 10px;
  border-radius: 12px;
}
.nav__link:hover{
  color: var(--text);
  background: rgba(11,18,32,.04);
}
html[data-theme="dark"] .nav__link:hover{
  background: rgba(255,255,255,.06);
}

.nav__link--cta{
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--surface2);
}
.nav__link--cta:hover{
  background: rgba(27,143,80,.08);
  border-color: rgba(27,143,80,.24);
}

/* Theme toggle */
.theme-toggle{
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid var(--line);
  background: var(--surface2);
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .12s ease, background .2s ease, border-color .2s ease;
}
.theme-toggle:hover{ transform: translateY(-1px); }
.theme-toggle:active{ transform: translateY(0); }

.theme-toggle__icon{ width:20px; height:20px; display:none; }
.theme-toggle__icon svg{ width:20px; height:20px; }
.theme-toggle__icon svg *{ stroke: var(--text); }
html[data-theme="light"] .theme-toggle__icon--sun{ display:block; }
html[data-theme="dark"]  .theme-toggle__icon--moon{ display:block; }
html:not([data-theme]) .theme-toggle__icon--sun{ display:block; }

/* Burger / mobile */
.burger{
  display:none;
  width:46px; height:46px;
  border:1px solid var(--line);
  background: var(--surface2);
  border-radius: 14px;
  padding: 10px;
  gap:5px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  box-shadow: var(--shadow-sm);
}
.burger span{
  display:block;
  width:18px; height:2px;
  background: var(--text);
  border-radius:2px;
  opacity:.9;
}

.mobile-menu{
  border-top:1px solid rgba(231,233,238,.7);
  background: rgba(255,255,255,.92);
}
html[data-theme="dark"] .mobile-menu{
  border-top-color: rgba(255,255,255,.10);
  background: rgba(15,22,32,.92);
}
.mobile-menu__inner{
  display:flex;
  flex-direction:column;
  padding:12px 0 18px;
  gap:6px;
}
.mobile-menu__link{
  padding:12px 12px;
  border-radius:14px;
  color:var(--muted);
}
.mobile-menu__link:hover{
  background: rgba(11,18,32,.04);
  color: var(--text);
}
html[data-theme="dark"] .mobile-menu__link:hover{
  background: rgba(255,255,255,.06);
}
.mobile-menu__link--cta{
  border:1px solid var(--line);
  color: var(--text);
  background: var(--surface2);
}

/* =========================
   Components
========================= */
.card{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: var(--surface2);
  box-shadow: var(--shadow-sm);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--btn-border);
  background: var(--btn-bg);
  color: var(--btn-text);
  font-weight: 650;
  font-size: 13.5px;
  cursor:pointer;
  transition: transform .10s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn:active{ transform: translateY(0px); }

.btn--primary{
  background: var(--btn-primary-bg);
  border-color: var(--btn-primary-border);
  color: var(--btn-primary-text);
}
.btn--primary:hover{ border-color: rgba(27,143,80,.40); }
html[data-theme="dark"] .btn--primary:hover{ border-color: rgba(228,176,74,.34); }

.btn--ghost{ background: var(--btn-ghost-bg); }
.btn--block{ width:100%; }

/* Pills */
.pill{
  font-size: 12px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--surface2);
  border: 1px solid var(--line);
  color: var(--muted);
  box-shadow: 0 10px 24px rgba(11,18,32,.05);
}

/* =========================
   NEW HERO (full + 3 images)
========================= */
.hero{ padding:92px 0 62px; }

/* fullscreen-ish without breaking sticky header */
.hero--full{
  padding: 92px 0 56px;
}
.hero__stack{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.hero-title{
  display: inline-block;
  padding: 8px 18px;
  border: 1.5px solid rgba(27,143,80,.35);
  border-radius: 16px;
  background: rgba(27,143,80,.08);
}
.hero-title--big{
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
}

.hero__subhead{
  max-width: 70ch;
}

/* 3 cards in a row */
.hero-types{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
  align-items:stretch;
}

/* card look */
.hero-type-card{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
  padding:18px 18px 16px;
}
html[data-theme="dark"] .hero-type-card{
  background: rgba(15,22,32,.70);
}

.hero-type-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27,143,80,.18);
}

.hero-type-card__img{
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(231,233,238,.65);
  box-shadow: 0 12px 28px rgba(11,18,32,.06);
}
html[data-theme="dark"] .hero-type-card__img{
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.10);
}

.hero-type-card__img img{
  width:100%;
  height:auto;
  display:block;
}

.hero-type-card .h3{
  margin-top:14px;
}
.hero-type-card__desc{
  margin:10px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  font-weight: 650;
}

/* benefits (3 lines) */
.hero-benefits{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
.hero-benefit{
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 24px rgba(11,18,32,.06);
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
}
html[data-theme="dark"] .hero-benefit{
  background: rgba(15,22,32,.70);
}

/* keep actions same */
.hero__actions{
  display:flex;
  gap:12px;
  margin-top:22px;
  flex-wrap:wrap;
}

/* =========================
   Statement
========================= */
.statement{ padding:56px 0; }
.quote{
  font-size: clamp(22px, 2.8vw, 34px);
  line-height:1.18;
  letter-spacing: var(--tracking-tight);
  margin:0;
  max-width: 36ch;
  position: relative;
}
.quote::before{
  content:"";
  position:absolute;
  left:-18px;
  top:6px;
  width:3px;
  height: calc(100% - 10px);
  border-radius: 999px;
  background: rgba(27,143,80,.60);
}
html[data-theme="dark"] .quote::before{
  background: rgba(228,176,74,.46);
}

/* =========================
   Cards grid (other sections)
========================= */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card--type{
  padding:20px;
  transition: transform .14s ease, border-color .2s ease, box-shadow .2s ease;
}
.card--type:hover{
  transform: translateY(-2px);
  border-color: rgba(27,143,80,.18);
  box-shadow: var(--shadow-md);
}
.card__top{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:12px;
}
.badge{ display:none !important; }
.card__text{
  margin:14px 0 0;
  color: var(--text);
  font-weight: 650;
  letter-spacing: var(--tracking);
}
.card__footer{ margin-top:12px; }
.hint{ font-size:12px; color: var(--muted); }

/* Callouts */
.callout{
  padding:24px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--surface2);
  box-shadow: var(--shadow-md);
}
.callout--compact{ max-width: 820px; }
.callout__text{
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15.5px;
}

/* How */
.how{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.steps{
  margin:0; padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.steps__item{
  display:flex;
  gap:12px;
  padding: 13px 14px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: var(--surface2);
  box-shadow: 0 10px 26px rgba(11,18,32,.05);
}
.steps__dot{
  width:10px; height:10px;
  margin-top: 6px;
  border-radius:999px;
  background: rgba(27,143,80,.90);
  box-shadow: 0 0 0 6px rgba(27,143,80,.10);
  flex:0 0 auto;
}
.shots{
  display:flex;
  gap:8px;
  margin-bottom:10px;
}
.shot-thumb{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface2);
  cursor:pointer;
  font-weight: 650;
  color: var(--muted);
}
.shot-thumb:hover{ box-shadow: var(--shadow-sm); color: var(--text); }
.shot-thumb.is-active{
  color: var(--text);
  background: rgba(27,143,80,.08);
  border-color: rgba(27,143,80,.20);
}
html[data-theme="dark"] .shot-thumb.is-active{
  background: rgba(228,176,74,.10);
  border-color: rgba(228,176,74,.20);
}
.shot{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: var(--surface2);
  box-shadow: var(--shadow-md);
  padding:14px;
}
.shot__note{
  margin:10px 0 0;
  font-size:12px;
  color: var(--muted2);
}

/* Split panels */
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.panel{
  padding:24px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--surface2);
  box-shadow: var(--shadow-md);
}
.panel--muted{
  background: var(--surface2);
}
.list{
  margin:12px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{ margin:8px 0; }

/* Checklist */
.checklist{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:12px;
}
.check{
  padding:16px 16px;
  border-radius: 18px;
  border:1px solid var(--line);
  background: var(--surface2);
  color: var(--text);
  font-weight: 650;
  font-size: 15px;
  line-height: 1.25;
  text-align:left;
  box-shadow: 0 10px 24px rgba(11,18,32,.06);
}

/* About */
.about{
  padding:24px;
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: var(--surface2);
  box-shadow: var(--shadow-md);
  max-width: 880px;
}
.about p{
  margin:12px 0 0;
  color: var(--muted);
  font-size: 15.5px;
}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.price-card{
  border:1px solid var(--line);
  border-radius: var(--radius2);
  background: var(--surface2);
  box-shadow: var(--shadow-sm);
  padding:20px;
}
.price-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.price-card__price{
  font-weight:700;
  font-size:20px;
  letter-spacing: var(--tracking);
}
.price-card__desc{
  margin:12px 0 0;
  color: var(--muted);
  font-size:14.5px;
}
.price-card--best{
  border-color: rgba(27,143,80,.22);
  box-shadow: var(--shadow-md);
}

/* Footer */
.footer{
  padding:22px 0;
  border-top:1px solid rgba(231,233,238,.85);
  background: rgba(255,255,255,.70);
}
html[data-theme="dark"] .footer{
  border-top-color: rgba(255,255,255,.10);
  background: rgba(15,22,32,.60);
}
.footer__inner{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  color: var(--muted2);
  font-size: 12.5px;
}
.footer__link{
  color: var(--text);
  font-size: 12.5px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface2);
  transition: background .2s ease, border-color .2s ease, transform .1s ease;
}
.footer__link:hover{
  background: rgba(27,143,80,.08);
  border-color: rgba(27,143,80,.28);
  transform: translateY(-1px);
}
.footer__sep{ opacity:.65; }

/* Reveal */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* =========================
   Responsive
========================= */

@media (max-width: 1100px){
  .pricing{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px){
  .how{ grid-template-columns: 1fr; }

  /* Hero 3 cards -> 2 columns */
  .hero-types{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-benefits{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .nav{ display:none; }
  .burger{ display:flex; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }

  .container{ width:min(var(--container), calc(100% - 28px)); }
  .section{ padding:58px 0; }

  .hero--full{ padding:70px 0 44px; }

  .hero__actions{
    display:grid;
    grid-template-columns: 1fr;
    gap:10px;
  }
  .btn{ width:100%; padding:13px 14px; }

  /* Hero 2 columns -> 1 column */
  .hero-types{ grid-template-columns: 1fr; }

  .shots{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap:8px;
  }
  .shot-thumb{ width:100%; justify-content:center; }

  .pricing{ grid-template-columns: 1fr; }

  .footer__inner{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
  }
}

@media (max-width: 420px){
  .h1{ font-size:34px; }
  .subhead{ font-size:15px; }
  .lead{ font-size:15px; }
  .shot{ padding:12px; }
  .quote::before{ left:-12px; }
  .brand__logo{ width:44px; height:44px; }
}
/* =========================
   Add-ons (final)
========================= */

/* Pricing note pills row */
.pricing__note{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 0;
}

/* Keyboard focus (a11y) */
:focus-visible{
  outline: 3px solid rgba(27,143,80,.35);
  outline-offset: 3px;
  border-radius: 14px;
}
html[data-theme="dark"] :focus-visible{
  outline-color: rgba(228,176,74,.35);
}

/* Hover only for mouse devices (prevents sticky hover on touch) */
@media (hover:hover) and (pointer:fine){
  .btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-sm); }
  .hero-type-card:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .card--type:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .footer__link:hover{ transform: translateY(-1px); }
}

/* Skip link */
.skip-link{
  position:absolute;
  left:-9999px;
  top:12px;
  padding:10px 12px;
  border-radius:12px;
  background: var(--surface);
  border:1px solid var(--line);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}
.skip-link:focus{ left:12px; }

/* =========================
   Add-ons (final)
========================= */

/* Pricing note pills row */
.pricing__note{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:14px 0 0;
}

/* Hero note blocks under images */
.hero-note{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: var(--surface2);
  box-shadow: var(--shadow-sm);
  padding: 16px 18px;
}
.hero-note__line{
  margin: 0;
  font-weight: 700;
  letter-spacing: var(--tracking);
}
.hero-note__hr{
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  max-width: 90ch;
}

/* How single-column (no right block) */
.how--single{
  grid-template-columns: 1fr;
}

/* Dialogs */
.dialog{
  padding: 18px;
}
.dialog__tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom: 12px;
}
.dialog__body{
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.70);
  padding: 14px;
}
html[data-theme="dark"] .dialog__body{
  background: rgba(15,22,32,.65);
}
.dialog__pane{
  display:none;
}
.dialog__pane.is-active{
  display:block;
}

/* Chat bubbles */
.chat{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.bubble{
  border: 1px solid var(--line);
  background: var(--surface2);
  border-radius: 18px;
  padding: 12px 12px;
  box-shadow: 0 10px 24px rgba(11,18,32,.06);
}
.bubble__title{
  font-weight: 800;
  letter-spacing: var(--tracking);
  margin-bottom: 6px;
}
.bubble p{
  margin: 0;
  color: var(--muted);
  font-size: 14.8px;
  line-height: 1.45;
}
.mono{
  white-space: pre-wrap;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13.5px;
  color: var(--text);
}

/* Pricing: 2 columns on desktop */
.pricing--two{
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 820px){
  .pricing--two{ grid-template-columns: 1fr; }
}

/* Keyboard focus (a11y) */
:focus-visible{
  outline: 3px solid rgba(27,143,80,.35);
  outline-offset: 3px;
  border-radius: 14px;
}
html[data-theme="dark"] :focus-visible{
  outline-color: rgba(228,176,74,.35);
}

/* Hover only for mouse devices (prevents sticky hover on touch) */
@media (hover:hover) and (pointer:fine){
  .btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow-sm); }
  .hero-type-card:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .card--type:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .footer__link:hover{ transform: translateY(-1px); }
}

/* Skip link */
.skip-link{
  position:absolute;
  left:-9999px;
  top:12px;
  padding:10px 12px;
  border-radius:12px;
  background: var(--surface);
  border:1px solid var(--line);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
}
.skip-link:focus{ left:12px; }
/* Hero: kicker under title */
.hero-kicker{
  margin: 14px 0 0;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.18;
  letter-spacing: var(--tracking);
  font-weight: 750;
  color: var(--text);
  max-width: 70ch;
}

/* HR line under images (big HR tag) */
.hero-hr{
  margin: 6px 0 0;
  padding: 14px 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: var(--surface2);
  box-shadow: var(--shadow-sm);
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.hero-hr__tag{
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(27,143,80,.28);
  background: rgba(27,143,80,.10);
  flex: 0 0 auto;
}

html[data-theme="dark"] .hero-hr__tag{
  border-color: rgba(228,176,74,.26);
  background: rgba(228,176,74,.10);
}

.hero-hr__text{
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.45;
  font-weight: 650;
  max-width: 90ch;
}
