/* NetKalori tanıtım sitesi
 *
 * Renkler uygulamayla AYNI kaynaktan: PSD'lerden piksel örneklemesiyle
 * çıkarılan `app/lib/core/theme/tokens.dart`. Site ile uygulamanın
 * farklı yeşiller kullanması, aynı ürün olduklarını gizlerdi.
 */

:root {
  --brand: #0a8a53;
  --brand-bright: #12a362;
  --brand-deep: #005935;
  --brand-darkest: #04492d;
  --mint: #cdf5e6;
  --mint-pale: #e9faf2;
  --on-mint: #2a4a3b;

  --flame: #ff721e;
  --water: #3e9eff;
  --violet: #c78cf4;
  --amber: #f5a524;

  --page: #f6f6f6;
  --surface: #ffffff;
  --surface-alt: #f7f9f8;
  --ink: #14201a;
  --ink-soft: #46564e;
  --ink-muted: #8a9691;
  --line: #eaefec;

  --radius: 16px;
  --radius-lg: 22px;
  --max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-deep); }

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

/* ── Üst çubuk ──────────────────────────────────────────────────────── */

header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 246, 246, 0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

header.site .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 19px;
  color: var(--brand-deep);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.logo .mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand-bright), var(--brand-deep));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
}

nav.site {
  margin-left: auto;
  display: flex;
  gap: 22px;
  align-items: center;
}

nav.site a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

nav.site a:hover { color: var(--brand-deep); }

@media (max-width: 820px) {
  nav.site a.hide-sm { display: none; }
}

/* ── Düğmeler ───────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 13px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-bright);
  color: #fff;
}

.btn-primary:hover { background: var(--brand); }

.btn-ghost {
  background: transparent;
  color: var(--brand-deep);
  border-color: rgba(0, 89, 53, 0.25);
}

.btn-ghost:hover { background: var(--mint-pale); }

.btn-on-dark {
  background: #fff;
  color: var(--brand-deep);
}

/* ── Kahraman bölüm ─────────────────────────────────────────────────── */

.hero {
  padding: 72px 0 56px;
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0 0 20px;
  max-width: 15ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--brand);
}

.hero p.lead {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-note {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 16px;
}

/* ── Bölüm başlıkları ───────────────────────────────────────────────── */

section { padding: 64px 0; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--mint-pale);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.8px;
  margin: 0 0 14px;
  max-width: 20ch;
}

.section-lead {
  color: var(--ink-soft);
  max-width: 60ch;
  margin: 0 0 36px;
}

h3 { font-size: 19px; margin: 0 0 6px; letter-spacing: -0.2px; }

/* ── Kartlar ────────────────────────────────────────────────────────── */

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
}

.card p { color: var(--ink-soft); margin: 0; font-size: 15px; }

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-size: 20px;
  background: var(--mint-pale);
}

.icon.flame { background: #fff1e8; }
.icon.water { background: #def5ff; }
.icon.violet { background: #f7e9ff; }
.icon.amber { background: #fff6e8; }

/* ── İki sütun ──────────────────────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
}

ul.checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.checks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}

ul.checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: inset 0 0 0 2px var(--brand-bright);
}

ul.checks li strong { color: var(--ink); }

/* ── Koyu blok ──────────────────────────────────────────────────────── */

.dark {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-darkest));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
}

.dark h2 { color: #fff; }
.dark p { color: rgba(255, 255, 255, 0.82); }

.dark .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.dark .stat {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 13px;
  padding: 18px;
}

.dark .stat b {
  display: block;
  font-size: 24px;
  letter-spacing: -0.5px;
}

.dark .stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 700px) {
  .dark { padding: 32px 24px; }
}

/* ── Karşılaştırma / dürüstlük tablosu ──────────────────────────────── */

table.plain {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 15px;
}

table.plain th,
table.plain td {
  text-align: right;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
}

table.plain th:first-child,
table.plain td:first-child { text-align: left; }

table.plain thead th {
  background: var(--surface-alt);
  font-size: 13px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

table.plain tbody tr:last-child td { border-bottom: none; }

.table-scroll { overflow-x: auto; }

/* ── Bilgi kutusu ───────────────────────────────────────────────────── */

.note {
  background: var(--mint-pale);
  border-radius: var(--radius);
  padding: 22px 24px;
  color: var(--on-mint);
  font-size: 15px;
}

.note.warn {
  background: #fff9ec;
  color: #6b4e14;
}

.note strong { color: inherit; }

/* ── SSS ────────────────────────────────────────────────────────────── */

details.faq {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 10px;
}

details.faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

details.faq summary::-webkit-details-marker { display: none; }

details.faq summary::after {
  content: "+";
  color: var(--brand);
  font-size: 22px;
  line-height: 1;
}

details.faq[open] summary::after { content: "−"; }

details.faq p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 12px 0 0;
}

/* ── Alt bilgi ──────────────────────────────────────────────────────── */

footer.site {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  margin-top: 32px;
}

footer.site .cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}

@media (max-width: 760px) {
  footer.site .cols { grid-template-columns: 1fr; }
}

footer.site h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--ink-muted);
  margin: 0 0 12px;
}

footer.site ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer.site li { margin-bottom: 8px; }

footer.site a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 15px;
}

footer.site a:hover { color: var(--brand-deep); }

.legal-line {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-muted);
}

/* ── Hukuki metin sayfaları ─────────────────────────────────────────── */

article.doc {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 800px;
  margin: 40px auto 0;
}

@media (max-width: 700px) {
  article.doc { padding: 28px 22px; }
}

article.doc h1 {
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.8px;
  margin: 0 0 8px;
}

article.doc .updated {
  color: var(--ink-muted);
  font-size: 14px;
  margin: 0 0 28px;
}

article.doc h2 {
  font-size: 21px;
  margin: 34px 0 10px;
  max-width: none;
  letter-spacing: -0.2px;
}

article.doc p,
article.doc li { color: var(--ink-soft); font-size: 16px; }

article.doc ul { padding-left: 22px; }

article.doc li { margin-bottom: 8px; }

.doc-toc {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 8px;
}

.doc-toc ol { margin: 0; padding-left: 20px; }
.doc-toc li { margin-bottom: 6px; font-size: 15px; }


/* ── Kahraman görseli: saf CSS telefon maketi ───────────────────────── */
/* Ekran görüntüsü yerine maket: uygulama henüz mağazada değil ve
   gerçek ekran görüntüsü sürüm değiştikçe eskiyor. Maket, uygulamanın
   kendi tasarım token'larıyla çizildiği için tutarlı kalıyor. */

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.phone-wrap { display: flex; justify-content: center; }

/* Dar ekranda maket gizlenmiyor, metnin altına geçip küçülüyor:
   telefonda bakan kişi de uygulamanın neye benzediğini görsün. */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .phone-wrap { margin-top: 36px; }
}

@media (max-width: 400px) {
  .phone { width: 268px; }
}

.phone {
  width: 300px;
  border-radius: 42px;
  background: #0f1512;
  padding: 10px;
  box-shadow: 0 30px 60px -20px rgba(4, 73, 45, 0.45),
              0 0 0 1px rgba(0, 0, 0, 0.06);
}

.phone-screen {
  background: var(--page);
  border-radius: 33px;
  overflow: hidden;
  padding: 16px 14px 0;
}

.phone .notch {
  width: 92px;
  height: 20px;
  background: #0f1512;
  border-radius: 999px;
  margin: -4px auto 12px;
}

.phone .greet {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.phone .greet span { color: var(--brand); }

.phone .summary {
  background: linear-gradient(135deg, var(--brand-deep), var(--brand-darkest));
  border-radius: 15px;
  padding: 14px;
  color: #fff;
}

.phone .summary .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.phone .summary b { font-size: 14px; display: block; }
.phone .summary small { font-size: 10px; color: rgba(255,255,255,0.72); }

.phone .ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--mint);
  border-right-color: var(--mint);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  transform: rotate(20deg);
}

.phone .ring i { transform: rotate(-20deg); font-style: normal; }

.phone .metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 12px;
  text-align: center;
}

.phone .metrics b { font-size: 13px; }
.phone .metrics small { font-size: 8px; }

.phone .quick {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin: 12px 0;
}

.phone .quick div {
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.phone .row {
  background: #fff;
  border-radius: 13px;
  padding: 10px 12px;
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.phone .row .sq {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--mint-pale);
  display: grid;
  place-items: center;
  font-size: 13px;
}

.phone .row b { font-size: 12px; display: block; }
.phone .row small { font-size: 9px; color: var(--ink-muted); }
.phone .row .kcal {
  margin-left: auto;
  font-size: 12px;
  font-weight: 800;
  color: var(--brand-deep);
}

.phone .label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.4px;
  color: var(--brand);
  text-transform: uppercase;
}

/* Dar ekranda üstteki düğme satır atlamasın */
header.site .btn { white-space: nowrap; }

@media (max-width: 560px) {
  header.site .btn { padding: 9px 14px; font-size: 14px; }
  header.site .wrap { gap: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════
   ANİMASYONLAR
   Hepsi CSS + küçük bir IntersectionObserver. Dış kütüphane yok:
   sayfa hızlı açılsın ve dışarıya istek gitmesin.
   `prefers-reduced-motion` açıksa tüm hareket kapanıyor — hareket
   hassasiyeti olan kullanıcı için bu bir erişilebilirlik gereği.
   ═══════════════════════════════════════════════════════════════════ */

/* Gizleme yalnızca `html.js` varken uygulanıyor. Bu sınıfı <head>
   içindeki tek satırlık betik ekliyor. JavaScript kapalıysa ya da
   anim.js yüklenemezse hiçbir şey gizlenmez — bir tanıtım sitesinde
   içeriğin görünmemesi, animasyonun olmamasından çok daha kötüdür. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.js [data-reveal].in { opacity: 1; transform: none; }

/* Sıralı giriş: kartlar tek tek belirsin */
[data-reveal][data-delay="1"] { transition-delay: 0.07s; }
[data-reveal][data-delay="2"] { transition-delay: 0.14s; }
[data-reveal][data-delay="3"] { transition-delay: 0.21s; }
[data-reveal][data-delay="4"] { transition-delay: 0.28s; }
[data-reveal][data-delay="5"] { transition-delay: 0.35s; }

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floaty { animation: float-soft 6s ease-in-out infinite; }

@keyframes ring-draw {
  from { stroke-dashoffset: var(--dash-full); }
  to { stroke-dashoffset: var(--dash-target); }
}

@keyframes bar-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes fade-slide-left {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: none; }
}

@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;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
}

/* ── Sayaç ──────────────────────────────────────────────────────────── */

.counter { font-variant-numeric: tabular-nums; }

/* ── Halka (SVG) ────────────────────────────────────────────────────── */

.ring-svg { transform: rotate(-90deg); }

.ring-svg circle.track { stroke: rgba(255, 255, 255, 0.18); }

.ring-svg circle.value {
  stroke: var(--mint);
  stroke-linecap: round;
  stroke-dasharray: var(--dash-full);
  stroke-dashoffset: var(--dash-full);
}

.in .ring-svg circle.value {
  animation: ring-draw 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

/* ── Dolan çubuk ────────────────────────────────────────────────────── */

.meter {
  height: 7px;
  border-radius: 999px;
  background: var(--line);
  overflow: hidden;
}

.meter i {
  display: block;
  height: 100%;
  border-radius: 999px;
  transform-origin: left center;
  transform: scaleX(0);
}

.in .meter i {
  animation: bar-grow 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.25s;
}

/* ═══════════════════════════════════════════════════════════════════
   ÇOK SAYFALI YAPI
   ═══════════════════════════════════════════════════════════════════ */

nav.site a.active { color: var(--brand-deep); font-weight: 700; }

.page-head {
  padding: 64px 0 40px;
  text-align: center;
}

.page-head h1 {
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.1;
  letter-spacing: -1.4px;
  margin: 0 auto 18px;
  max-width: 18ch;
}

.page-head p {
  color: var(--ink-soft);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 58ch;
  margin: 0 auto;
}

/* ── Özellik bloğu: metin + maket, dönüşümlü ────────────────────────── */

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.feature:first-of-type { border-top: none; }

.feature.flip .feature-text { order: 2; }

@media (max-width: 900px) {
  .feature { grid-template-columns: 1fr; gap: 28px; padding: 40px 0; }
  .feature.flip .feature-text { order: 0; }
}

.feature h3 {
  font-size: clamp(22px, 2.6vw, 29px);
  letter-spacing: -0.6px;
  margin: 0 0 12px;
}

.feature p { color: var(--ink-soft); margin: 0 0 16px; }

.step-no {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--brand-deep);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}

/* ── Küçük maket kutuları ───────────────────────────────────────────── */

.mock {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: 0 20px 44px -26px rgba(4, 73, 45, 0.35);
}

.mock-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 14px;
}

.mock-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.mock-row:first-of-type { border-top: none; }

.mock-row .sq {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--mint-pale);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex: none;
}

.mock-row b { font-size: 14px; display: block; }
.mock-row small { font-size: 12px; color: var(--ink-muted); }
.mock-row .end { margin-left: auto; font-weight: 800; font-size: 14px; }

.chips { display: flex; flex-wrap: wrap; gap: 7px; }

.chip {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.chip.on {
  background: var(--brand-deep);
  color: #fff;
  border-color: var(--brand-deep);
}

/* Haftalık ızgara (alışkanlık) */
.week-grid { display: flex; gap: 6px; }

.week-grid span {
  flex: 1;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  border: 1.6px solid var(--line-strong, #dce4e0);
  color: var(--ink-muted);
}

.week-grid span.done { border-color: var(--brand-bright); background: #e6f7ee; color: var(--brand-deep); }
.week-grid span.part { border-color: var(--amber); background: #fff6e8; color: #8a6512; }
.week-grid span.miss { border-color: var(--danger, #c0392b); background: #ffecec; color: #a5301f; }

/* Basit çubuk grafik */
.bars { display: flex; align-items: flex-end; gap: 6px; height: 110px; }

.bars i {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: var(--mint);
  transform-origin: bottom center;
  transform: scaleY(0);
}

.bars i.hit { background: var(--brand-deep); }

.in .bars i { animation: bar-grow-y 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.in .bars i:nth-child(1) { animation-delay: 0.05s; }
.in .bars i:nth-child(2) { animation-delay: 0.11s; }
.in .bars i:nth-child(3) { animation-delay: 0.17s; }
.in .bars i:nth-child(4) { animation-delay: 0.23s; }
.in .bars i:nth-child(5) { animation-delay: 0.29s; }
.in .bars i:nth-child(6) { animation-delay: 0.35s; }
.in .bars i:nth-child(7) { animation-delay: 0.41s; }

@keyframes bar-grow-y {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

/* ── Adım adım akış ─────────────────────────────────────────────────── */

.flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  counter-reset: flow;
}

.flow .step {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}

.flow .step::before {
  counter-increment: flow;
  content: counter(flow);
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 34px;
  font-weight: 800;
  color: var(--mint);
  line-height: 1;
}

.flow .step b { display: block; margin-bottom: 6px; font-size: 16px; }
.flow .step p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ── Sonraki sayfa bağlantısı ───────────────────────────────────────── */

.next-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
}

.next-link:hover { border-color: var(--brand-bright); }

.next-link small {
  display: block;
  color: var(--ink-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
}

.next-link b { font-size: 21px; letter-spacing: -0.4px; }

.next-link .arrow { font-size: 26px; color: var(--brand); }
