/* ============================================================
   OSAP — Site design system
   Warm · rounded · friendly · image-forward
   Bricolage Grotesque (display) + Hanken Grotesk (text)
   ============================================================ */

:root {
  /* Palette */
  --cream:      #FAF6EC;
  --cream-2:    #F2EBD9;
  --cream-3:    #E9E0C9;
  --paper:      #FFFFFF;
  --green:      #1E5A39;
  --green-2:    #2B704A;
  --green-soft: #EAF0E4;
  --green-deep: #12301F;
  --gold:       #E3A52C;
  --gold-2:     #C2861A;
  --gold-soft:  #F7E9C8;
  --clay:       #C2673A;
  --ink:        #20201A;
  --ink-2:      #4C4B40;
  --muted:      #7A776B;
  --line:       rgba(30,40,30,0.12);
  --line-2:     rgba(30,40,30,0.07);

  --serif:      "Bricolage Grotesque", "Hanken Grotesk", system-ui, sans-serif;
  --sans:       "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  --shadow-sm:  0 2px 8px rgba(30,48,31,0.06);
  --shadow:     0 14px 40px rgba(30,48,31,0.10), 0 2px 8px rgba(30,48,31,0.05);
  --shadow-lg:  0 30px 70px rgba(18,48,31,0.16);

  --r-sm: 12px;
  --r:    18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --wrap: 1200px;
  --density: 1;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.wrap--narrow { max-width: 880px; }

/* ---------------- Typography ---------------- */
.display {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(34px, 4.6vw, 56px); line-height: 1.05; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
.h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(28px, 3.4vw, 42px); line-height: 1.1; letter-spacing: -0.015em; margin: 0; text-wrap: balance; }
.h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(21px, 2vw, 26px); line-height: 1.2; letter-spacing: -0.01em; margin: 0; }
.h4 { font-family: var(--serif); font-weight: 600; font-size: 19px; line-height: 1.25; margin: 0; }
.display em, .h1 em, .h2 em { font-style: normal; color: var(--green); }
.display .gold, .h1 .gold, .h2 .gold { color: var(--gold-2); font-style: normal; }

.lede { font-size: clamp(18px, 1.7vw, 22px); line-height: 1.5; color: var(--ink-2); margin: 0; text-wrap: pretty; }
.body { font-size: 17px; line-height: 1.65; color: var(--ink-2); margin: 0; text-wrap: pretty; }
.small { font-size: 14.5px; line-height: 1.55; color: var(--muted); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600;
  font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin: 0;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--gold); }
.eyebrow--gold { color: var(--gold-2); }
.eyebrow--light { color: rgba(255,255,255,0.75); }
.eyebrow--light::before { background: var(--gold); }

/* ---------------- Layout / sections ---------------- */
.section { padding: calc(96px * var(--density)) 0; }
.section--sm { padding: calc(60px * var(--density)) 0; }
.section--lg { padding: calc(120px * var(--density)) 0; }
.section--cream2 { background: var(--cream-2); }
.section--green { background: var(--green-deep); color: var(--cream); }
.section--paper { background: var(--paper); }

.sec-head { max-width: 760px; margin: 0 0 48px; }
.sec-head .h2 { margin-top: 16px; }
.sec-head .lede { margin-top: 18px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--row { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }
.sec-head--row .sec-head__l { max-width: 620px; }
.sec-head--row .sec-head__r { max-width: 380px; padding-bottom: 6px; }
@media (max-width: 820px) { .sec-head--row { flex-direction: column; align-items: flex-start; gap: 16px; } }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 15.5px;
  padding: 0 24px; height: 52px; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn .arr { transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }
.btn--primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--green-2); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--gold { background: var(--gold); color: var(--green-deep); }
.btn--gold:hover { background: #EEB13F; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(227,165,44,0.35); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); background: var(--green-soft); }
.btn--light { background: #fff; color: var(--green-deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--on-green { background: var(--gold); color: var(--green-deep); }
.btn--on-green:hover { background: #EEB13F; transform: translateY(-2px); }
.btn--sm { height: 44px; font-size: 14.5px; padding: 0 18px; }
.btn--lg { height: 58px; font-size: 16.5px; padding: 0 30px; }

.textlink { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: var(--green); border-bottom: 1.5px solid transparent; transition: border-color .2s; }
.textlink .arr { transition: transform .2s ease; }
.textlink:hover { border-color: var(--green); }
.textlink:hover .arr { transform: translateX(3px); }
.textlink--gold { color: var(--gold-2); }
.textlink--light { color: var(--cream); }
.textlink--light:hover { border-color: var(--gold); }

/* ---------------- Navigation ---------------- */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(250,246,236,0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-2); }
.nav__inner { display: flex; align-items: center; gap: 28px; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 700; font-size: 23px; letter-spacing: -0.01em; color: var(--green-deep); margin-right: 6px; }
.brand__mark { width: 30px; height: 30px; color: var(--green); flex: none; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a, .nav__more-btn {
  font-family: var(--sans); font-weight: 500; font-size: 15.5px; color: var(--ink-2);
  padding: 9px 14px; border-radius: 999px; transition: background .18s, color .18s;
  background: none; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.nav__links a:hover, .nav__more-btn:hover { background: var(--green-soft); color: var(--green); }
.nav__links a.active { color: var(--green); font-weight: 600; }
.nav__more { position: relative; }
.nav__more-btn .caret { font-size: 10px; opacity: 0.7; transition: transform .2s; }
.nav__more.open .nav__more-btn .caret { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute; top: calc(100% + 8px); right: 0; min-width: 230px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s; z-index: 50;
}
.nav__more.open .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown a { display: flex; flex-direction: column; gap: 2px; padding: 11px 14px; border-radius: var(--r-sm); color: var(--ink); }
.nav__dropdown a:hover { background: var(--green-soft); }
.nav__dropdown a span { font-weight: 600; font-size: 15px; }
.nav__dropdown a small { font-size: 12.5px; color: var(--muted); }
.nav__cta { margin-left: 8px; }
.nav__burger { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; margin-left: auto; }
.nav__burger svg { width: 22px; height: 22px; color: var(--ink); }

.mobile-menu { display: none; }
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .mobile-menu { display: block; position: fixed; inset: 76px 0 0; background: var(--cream); z-index: 99; padding: 24px 28px; overflow-y: auto; transform: translateX(100%); transition: transform .3s ease; }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { display: block; font-family: var(--serif); font-weight: 600; font-size: 26px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
  .mobile-menu a.sub { font-family: var(--sans); font-size: 18px; font-weight: 500; color: var(--ink-2); padding-left: 16px; }
  .mobile-menu .btn { margin-top: 24px; width: 100%; justify-content: center; }
}

/* ---------------- Hero ---------------- */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(40px, 5vw, 72px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero__copy .display { margin-top: 22px; }
.hero__copy .lede { margin-top: 24px; max-width: 30ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero__trust .small { max-width: 16ch; }
.hero__media { position: relative; }
.hero__media .frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; background: var(--cream-3); }
.hero__badge {
  position: absolute; left: -22px; bottom: 34px; background: var(--paper);
  border-radius: var(--r); box-shadow: var(--shadow); padding: 18px 22px; display: flex; gap: 14px; align-items: center; max-width: 270px;
}
.hero__badge .n { font-family: var(--serif); font-weight: 700; font-size: 34px; color: var(--green); line-height: 1; }
.hero__badge .t { font-size: 13.5px; color: var(--ink-2); line-height: 1.35; }
@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__media .frame { aspect-ratio: 16/11; }
  .hero__copy .lede { max-width: none; }
  .hero__badge { left: 16px; }
}

/* Mobile hero: compact badge only */
@media (max-width: 600px) {
  .hero { padding: 24px 0 32px; }
  .hero__badge {
    left: 12px; bottom: 12px;
    padding: 10px 14px; gap: 8px; max-width: 200px;
  }
  .hero__badge .n { font-size: 20px; }
  .hero__badge .t { font-size: 11.5px; }
}

/* ---------------- Audience cards ---------------- */
.aud-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.aud-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 200px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  color: #fff; background: var(--green-deep); box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.aud-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.aud-card__img { position: absolute; inset: 0; z-index: 0; }
.aud-card__img image-slot, .aud-card__img img { width: 100%; height: 100%; }
.aud-card__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(18,48,31,0.05) 0%, rgba(18,48,31,0.55) 55%, rgba(18,48,31,0.9) 100%); }
.aud-card__body { position: relative; z-index: 2; }
.aud-card__body .h3 { color: #fff; margin-bottom: 8px; }
.aud-card__body p { color: rgba(255,255,255,0.86); font-size: 15px; margin: 0 0 16px; }
.aud-card__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--gold); font-size: 15px; }
.aud-card__link .arr { transition: transform .2s; }
.aud-card:hover .aud-card__link .arr { transform: translateX(4px); }
.aud-card__ico { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 999px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); color: var(--gold); margin-bottom: 16px; }
.aud-card__ico svg { width: 22px; height: 22px; }
@media (max-width: 880px) { .aud-grid { grid-template-columns: 1fr; } .aud-card { min-height: 320px; } }

/* ---------------- Mini steps (numbered sequence) ---------------- */
.mini-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.mini-step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; position: relative; }
.mini-step__n { width: 38px; height: 38px; border-radius: 999px; background: var(--green-soft); color: var(--green-deep); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-weight: 700; font-size: 15px; margin-bottom: 18px; }
.mini-step__n--gold { background: var(--gold-soft); color: var(--gold-2); }
.mini-step h3 { margin-bottom: 8px; }
.mini-step p { font-size: 15px; line-height: 1.55; color: var(--ink-2); margin: 0; }
@media (max-width: 900px) { .mini-steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .mini-steps { grid-template-columns: 1fr; } }

/* ---------------- Feature row ---------------- */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature--rev .feature__media { order: -1; }
.feature__media .frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; background: var(--cream-3); }
.feature__copy .h2 { margin-top: 16px; }
.feature__copy .body { margin-top: 18px; max-width: 52ch; }
.feature__list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }
.feature__list li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; font-size: 16px; color: var(--ink-2); }
.feature__list li .tick { width: 22px; height: 22px; border-radius: 999px; background: var(--green-soft); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 12px; margin-top: 2px; }
.feature__cta { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 880px) { .feature { grid-template-columns: 1fr; gap: 32px; } .feature--rev .feature__media { order: 0; } }

/* ---------------- Cards grid (services etc) ---------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__ico { width: 52px; height: 52px; border-radius: 14px; background: var(--green-soft); color: var(--green); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card__ico svg { width: 28px; height: 28px; }
.card--gold .card__ico { background: var(--gold-soft); color: var(--gold-2); }
.card__k { font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 12px; }
.card .h3 { margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--ink-2); margin: 0; }
.card__more { margin-top: auto; padding-top: 18px; }
@media (max-width: 980px) { .cards--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .cards, .cards--2 { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .cards--4 { grid-template-columns: 1fr; } }

/* ---------------- Steps ---------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 26px; }
.step__n { font-family: var(--serif); font-weight: 700; font-size: 15px; color: var(--green-deep); width: 40px; height: 40px; border-radius: 999px; background: var(--gold); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step .h4 { margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink-2); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ---------------- Stat band ---------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat__n { font-family: var(--serif); font-weight: 700; font-size: clamp(38px, 4.4vw, 58px); line-height: 1; letter-spacing: -0.02em; color: var(--green); }
.section--green .stat__n { color: var(--gold); }
.stat__l { margin-top: 10px; font-size: 14.5px; color: var(--ink-2); line-height: 1.4; }
.section--green .stat__l { color: rgba(250,246,236,0.78); }
@media (max-width: 820px) { .stats { grid-template-columns: 1fr 1fr; gap: 30px; } }

/* ---------------- CTA band ---------------- */
.cta { background: var(--green-deep); color: var(--cream); border-radius: var(--r-xl); padding: clamp(40px, 5vw, 72px); position: relative; overflow: hidden; }
.cta__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.cta .display { color: #fff; font-size: clamp(32px, 3.8vw, 52px); }
.cta .lede { color: rgba(250,246,236,0.8); margin-top: 18px; }
.cta__actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta__deco { position: absolute; right: -80px; top: -80px; width: 360px; height: 360px; border-radius: 999px; background: radial-gradient(circle, rgba(227,165,44,0.18), transparent 70%); z-index: 0; }
@media (max-width: 820px) { .cta__inner { grid-template-columns: 1fr; gap: 28px; } .cta__actions { flex-direction: row; flex-wrap: wrap; } }

/* ---------------- Logos / partners ---------------- */
.logos { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.logo-chip { font-family: var(--sans); font-weight: 600; font-size: 14.5px; color: var(--ink-2); background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px; }

/* ---------------- Page header ---------------- */
.page-head { padding: clamp(48px, 6vw, 84px) 0 clamp(28px, 3vw, 44px); }
.crumb { display: flex; align-items: center; gap: 9px; font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.crumb a { color: var(--green); font-weight: 600; }
.crumb .sep { opacity: 0.5; }
.page-head .display { max-width: 18ch; }
.page-head .lede { margin-top: 22px; max-width: 60ch; }

/* ---------------- Quote ---------------- */
.quote { max-width: 920px; margin: 0 auto; text-align: center; }
.quote p { font-family: var(--serif); font-weight: 500; font-size: clamp(26px, 3.4vw, 42px); line-height: 1.18; letter-spacing: -0.01em; color: var(--ink); text-wrap: balance; }
.section--green .quote p { color: #fff; }
.quote p em { font-style: normal; color: var(--green); }
.section--green .quote p em { color: var(--gold); }
.quote__cap { margin-top: 26px; font-size: 14.5px; color: var(--muted); }
.section--green .quote__cap { color: rgba(250,246,236,0.7); }

/* ---------------- Footer ---------------- */
.foot { background: var(--green-deep); color: var(--cream); padding: 76px 0 36px; }
.foot__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(250,246,236,0.14); }
.foot__brand .brand { color: #fff; margin-bottom: 18px; }
.foot__brand .brand__mark { color: var(--gold); }
.foot__brand p { color: rgba(250,246,236,0.72); font-size: 15px; max-width: 38ch; margin: 0 0 22px; }
.foot__brand .btn { }
.foot__col h5 { font-family: var(--sans); font-weight: 700; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; }
.foot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.foot__col a { color: rgba(250,246,236,0.78); font-size: 15px; transition: color .15s; }
.foot__col a:hover { color: #fff; }
.foot__bottom { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-top: 28px; font-size: 13.5px; color: rgba(250,246,236,0.6); }
@media (max-width: 880px) { .foot__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .foot__top { grid-template-columns: 1fr; } }

/* ---------------- Misc ---------------- */
.rule { border: none; border-top: 1px solid var(--line); margin: 0; }
.pill-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--green-soft); color: var(--green); font-weight: 600; font-size: 13.5px; padding: 7px 14px; border-radius: 999px; }
.pill-tag--gold { background: var(--gold-soft); color: var(--gold-2); }

.fadein { animation: fadeup .7s cubic-bezier(.2,.7,.2,1) both; }
@keyframes fadeup { from { transform: translateY(14px); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) { .fadein { animation: none; } }

image-slot { border-radius: inherit; }

/* ---------------- Phone device mock ---------------- */
.device { width: 310px; max-width: 100%; background: var(--green-deep); border-radius: 42px; padding: 12px; box-shadow: var(--shadow-lg); }
.device__screen { background: var(--cream); border-radius: 32px; overflow: hidden; padding: 18px 16px 14px; min-height: 540px; display: flex; flex-direction: column; gap: 10px; }
.appbar { display: flex; justify-content: space-between; align-items: center; padding: 10px 4px 8px; }
.appbar__brand { font-family: var(--serif); font-weight: 700; font-size: 22px; color: var(--green-deep); }
.appbar__lang { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 5px 10px; }
.appcard { background: var(--green); color: #fff; border-radius: 18px; padding: 18px; }
.appcard__eyebrow { font-size: 10.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.72); }
.appcard__crop { font-family: var(--serif); font-weight: 600; font-size: 22px; margin: 6px 0 16px; }
.appstats { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.appstats__n { font-family: var(--serif); font-weight: 700; font-size: 19px; line-height: 1; }
.appstats__l { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 5px; }
.approw { display: flex; justify-content: space-between; align-items: center; padding: 14px; background: #fff; border-radius: 14px; font-size: 13.5px; font-weight: 500; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.approw__up { font-weight: 700; color: var(--green); }
.approw--cta { background: var(--gold); color: var(--green-deep); font-weight: 600; }
.apptabs { margin-top: auto; display: flex; justify-content: space-between; padding: 12px 8px 4px; border-top: 1px solid var(--line); font-size: 11px; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); }
.apptabs .on { color: var(--green); }

/* tweaks mount safety */
#tweaks-mount:empty { display: none; }
