/* ============ Betcriket — Fantasy Cricket Australia ============ */

:root {
  --c-bg: #07150e;
  --c-bg-2: #0b1f15;
  --c-card: #0e2418;
  --c-card-2: #133122;
  --c-line: rgba(201, 247, 58, .16);
  --c-line-soft: rgba(238, 247, 233, .09);
  --c-lime: #c9f73a;
  --c-lime-dim: #9fd32c;
  --c-amber: #ffb547;
  --c-text: #eef7e9;
  --c-muted: #9fb8a8;
  --c-grad: linear-gradient(120deg, #c9f73a 0%, #ffb547 100%);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font-d: 'Bricolage Grotesque', sans-serif;
  --font-b: 'Schibsted Grotesk', sans-serif;
  --r-lg: 22px;
  --r-md: 16px;
}

/* Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  overflow-x: clip;
  width: 100%; max-width: 100%;
  min-height: 100vh;
  display: flex; flex-direction: column;
  font-family: var(--font-b);
  font-size: 16.5px; line-height: 1.65;
  background: var(--c-bg);
  color: var(--c-text);
  -webkit-font-smoothing: antialiased;
}
main { flex: 1; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a, h1, h2, h3, h4, h5, h6 { overflow-wrap: break-word; word-break: break-word; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-d); font-weight: 700; line-height: 1.12; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a, button { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
.btn, .burger, .nav a, .chat-toggle, summary { -webkit-user-select: none; user-select: none; }
::selection { background: rgba(201, 247, 58, .28); }

.container { max-width: 1240px; margin: 0 auto; padding-inline: 24px; width: 100%; }
@media (max-width: 520px) { .container { padding-inline: 16px; } }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: var(--font-d); font-weight: 700; font-size: 16px;
  white-space: normal; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--lime { background: var(--c-lime); color: #0a1a10; box-shadow: 0 8px 28px rgba(201, 247, 58, .22); }
.btn--lime:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201, 247, 58, .32); }
.btn--ghost { border: 1.5px solid var(--c-line); color: var(--c-text); background: rgba(238, 247, 233, .04); }
.btn--ghost:hover { border-color: var(--c-lime); color: var(--c-lime); transform: translateY(-2px); }

/* Section heading pattern */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; margin-bottom: 52px; }
.sec-head h2 {
  font-size: clamp(30px, 4.4vw, 52px);
  letter-spacing: -.01em;
  max-width: none;
}
.sec-head h2 em { font-style: normal; color: var(--c-lime); }
.sec-head p { color: var(--c-muted); font-size: 17px; }
.sec-head--split p { max-width: none; text-align: right; }

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(7, 21, 14, .78);
  border-bottom: 1px solid var(--c-line-soft);
  overflow: visible;
}
.site-header__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding-block: 13px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-d); font-weight: 800; font-size: 21px; letter-spacing: -.01em; min-width: 0; }
.brand svg { width: 38px; height: 38px; flex-shrink: 0; }
.brand b { color: var(--c-lime); font-weight: 800; }
.brand:hover { color: #fff; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-weight: 600; font-size: 15px; position: relative; color: var(--c-text); }
.nav a::before {
  content: ''; position: absolute; left: 50%; bottom: -9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-lime);
  transform: translateX(-50%) scale(0);
  transition: transform .3s var(--ease);
}
.nav a:hover { color: var(--c-lime); }
.nav a:hover::before, .nav a.is-active::before { transform: translateX(-50%) scale(1); }
.nav .nav__cta { padding: 11px 22px; font-size: 14px; margin-left: 6px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative; z-index: 110; flex-shrink: 0;
  border-radius: 12px;
  background: rgba(238, 247, 233, .05);
  border: 1px solid var(--c-line-soft);
}
.burger span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--c-lime); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 1220px) {
  .burger { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    width: 100%; max-width: 100vw;
    max-height: calc(100dvh - var(--header-offset, 64px));
    z-index: 100;
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    padding: 14px 24px 32px;
    background: linear-gradient(165deg, #0a1d12 0%, #10311f 100%);
    border-top: 1px solid var(--c-line-soft);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .4);
    overflow-y: auto; overscroll-behavior: contain;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear .3s;
  }
  .nav[data-open="true"] {
    transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto;
    transition: transform .3s var(--ease), opacity .25s var(--ease), visibility 0s linear 0s;
  }
  .nav a { width: 100%; padding: 15px 0; font-size: 21px; text-align: left; border-bottom: 1px solid var(--c-line-soft); }
  .nav a::before { display: none; }
  .nav a:hover, .nav a.is-active { color: var(--c-lime); }
  .nav .nav__cta { display: inline-flex; margin-top: 22px; border-bottom: none; padding: 15px 30px; font-size: 17px; width: auto; align-self: flex-start; }
}

/* ============ Home: hero ============ */
.home-hero { position: relative; overflow: clip; padding: 64px 0 80px; }
.home-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(820px 420px at 12% 0%, rgba(201, 247, 58, .12), transparent 65%),
    radial-gradient(700px 480px at 95% 85%, rgba(255, 181, 71, .08), transparent 60%);
  pointer-events: none;
}
.home-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(238, 247, 233, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(238, 247, 233, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(720px 540px at 22% 18%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(720px 540px at 22% 18%, #000, transparent 75%);
  pointer-events: none;
}
.home-hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 56px; align-items: center;
}
.home-hero__copy { min-width: 0; }
.home-hero__copy h1 {
  font-size: clamp(38px, 5.6vw, 76px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.04;
}
.home-hero__copy h1 em { font-style: normal; color: var(--c-lime); position: relative; display: inline-block; }
.home-hero__copy h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: .06em; height: .14em;
  background: var(--c-grad); border-radius: 999px; opacity: .85;
  transform-origin: left; animation: heroSwipe 1s var(--ease) .9s both;
}
@keyframes heroSwipe { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.home-hero__copy > p { margin-top: 22px; color: var(--c-muted); font-size: clamp(17px, 2vw, 20px); }
.home-hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 34px; }
.home-hero__age { display: flex; align-items: center; gap: 12px; margin-top: 30px; color: var(--c-muted); font-size: 14px; }
.age-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  border: 2px solid var(--c-amber); color: var(--c-amber);
  font-family: var(--font-d); font-weight: 800; font-size: 14px;
}
.home-hero__stats { display: flex; flex-wrap: wrap; gap: 14px 38px; margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--c-line-soft); }
.home-hero__stat b { display: block; font-family: var(--font-d); font-size: 30px; font-weight: 800; color: var(--c-lime); line-height: 1.1; }
.home-hero__stat span { color: var(--c-muted); font-size: 13.5px; }

.home-hero__visual { position: relative; min-width: 0; }
.home-hero__photo {
  position: relative;
  border-radius: 30px 110px 30px 30px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}
.home-hero__photo img { width: 100%; height: auto; }
.home-hero__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(7, 21, 14, .75));
}
.hero-score {
  position: absolute; left: -26px; bottom: 34px; z-index: 2;
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  background: rgba(14, 36, 24, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  animation: floatY 5.5s ease-in-out infinite;
}
.hero-score__pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--c-lime); flex-shrink: 0; animation: pulse 1.8s ease-in-out infinite; }
.hero-score b { font-family: var(--font-d); font-size: 20px; color: var(--c-lime); display: block; line-height: 1.15; }
.hero-score span { font-size: 12.5px; color: var(--c-muted); }
.hero-orb {
  position: absolute; top: -20px; right: 6%; z-index: 2;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-card-2); border: 1px solid var(--c-line);
  color: var(--c-lime);
  animation: floatY 4.5s ease-in-out 1.2s infinite;
}
.hero-orb svg { width: 30px; height: 30px; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(201, 247, 58, .55); } 60% { box-shadow: 0 0 0 9px rgba(201, 247, 58, 0); } }

/* First-load reveal (pure CSS) */
@keyframes firstUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
@keyframes firstScale { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
.first-reveal { animation: firstUp .85s var(--ease) both; }
.first-reveal--d1 { animation-delay: .15s; }
.first-reveal--d2 { animation-delay: .3s; }
.first-reveal--d3 { animation-delay: .45s; }
.first-reveal--photo { animation: firstScale 1s var(--ease) .2s both; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal--d1 { transition-delay: .12s; }
.reveal--d2 { transition-delay: .24s; }
.reveal--d3 { transition-delay: .36s; }
.reveal--d4 { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .first-reveal, .first-reveal--photo { animation: none; }
}

/* ============ Home: how it works ============ */
.home-how { padding: 96px 0 88px; position: relative; }
.home-how__track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.home-how__track::before {
  content: ''; position: absolute; left: 4%; right: 4%; top: 31px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-line) 0 10px, transparent 10px 20px);
}
.step-card { position: relative; padding: 0 6px; min-width: 0; }
.step-card__no {
  position: relative; z-index: 1;
  width: 62px; height: 62px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-card); border: 1px solid var(--c-line);
  color: var(--c-lime); margin-bottom: 20px;
  transition: transform .35s var(--ease), background-color .35s var(--ease);
}
.step-card__no svg { width: 28px; height: 28px; }
.step-card:hover .step-card__no { transform: translateY(-5px) rotate(-4deg); background: var(--c-card-2); }
.step-card__idx { font-family: var(--font-d); font-weight: 800; font-size: 14px; color: var(--c-amber); letter-spacing: .12em; }
.step-card h3 { font-size: 19px; margin: 6px 0 8px; }
.step-card p { color: var(--c-muted); font-size: 14.5px; line-height: 1.55; }

/* ============ Home: edge (benefits ledger) ============ */
.home-edge { padding: 88px 0; background: var(--c-bg-2); border-block: 1px solid var(--c-line-soft); }
.edge-row {
  display: grid; grid-template-columns: 70px 56px 1fr 1.2fr 30px;
  align-items: center; gap: 26px;
  padding: 26px 18px;
  border-top: 1px solid var(--c-line-soft);
  border-radius: var(--r-md);
  transition: background-color .35s var(--ease), padding-left .35s var(--ease);
}
.edge-row:last-child { border-bottom: 1px solid var(--c-line-soft); }
.edge-row:hover { background: rgba(201, 247, 58, .05); padding-left: 28px; }
.edge-row__idx { font-family: var(--font-d); font-weight: 800; font-size: 26px; color: rgba(238, 247, 233, .22); transition: color .35s var(--ease); }
.edge-row:hover .edge-row__idx { color: var(--c-lime); }
.edge-row__ico { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; background: var(--c-card); border: 1px solid var(--c-line); color: var(--c-lime); flex-shrink: 0; }
.edge-row__ico svg { width: 25px; height: 25px; }
.edge-row h3 { font-size: 21px; min-width: 0; }
.edge-row p { color: var(--c-muted); font-size: 15px; min-width: 0; }
.edge-row__arr { color: var(--c-lime); opacity: 0; transform: translateX(-8px); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.edge-row__arr svg { width: 24px; height: 24px; }
.edge-row:hover .edge-row__arr { opacity: 1; transform: translateX(0); }

/* ============ Home: competitions ============ */
.home-comps { padding: 96px 0; }
.home-comps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.comp-card {
  position: relative; min-width: 0;
  background: var(--c-card); border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.comp-card:hover { transform: translateY(-8px); border-color: var(--c-line); box-shadow: 0 24px 60px rgba(0, 0, 0, .45); }
.comp-card__media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; }
.comp-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.comp-card:hover .comp-card__media img { transform: scale(1.06); }
.comp-card__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(185deg, transparent 55%, var(--c-card)); }
.comp-card__tag {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(7, 21, 14, .82); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--c-line);
  font-family: var(--font-d); font-weight: 700; font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--c-lime);
}
.comp-card__tag svg { width: 15px; height: 15px; }
.comp-card__body { padding: 8px 26px 28px; }
.comp-card__body h3 { font-size: 23px; margin-bottom: 10px; }
.comp-card__body > p { color: var(--c-muted); font-size: 15px; margin-bottom: 18px; }
.comp-card__list { display: grid; gap: 9px; }
.comp-card__list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--c-text); min-width: 0; }
.comp-card__list svg { width: 17px; height: 17px; color: var(--c-lime); flex-shrink: 0; margin-top: 3px; }

/* ============ Home: leaderboard ============ */
.home-board { padding: 88px 0 96px; background: var(--c-bg-2); border-block: 1px solid var(--c-line-soft); }
.home-board__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.home-board__copy { min-width: 0; }
.home-board__copy h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: -.01em; }
.home-board__copy h2 em { font-style: normal; color: var(--c-lime); }
.home-board__copy p { margin-top: 18px; color: var(--c-muted); }
.home-board__copy .btn { margin-top: 28px; }
.board-table-zone { min-width: 0; }
.board-table {
  width: 100%; border-collapse: collapse;
  background: var(--c-card); border: 1px solid var(--c-line-soft);
  border-radius: var(--r-lg); overflow: hidden;
}
.board-table th, .board-table td { padding: 15px 18px; text-align: left; white-space: nowrap; }
.board-table thead th {
  font-family: var(--font-d); font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--c-muted); background: var(--c-card-2); border-bottom: 1px solid var(--c-line-soft);
}
.board-table tbody tr { border-bottom: 1px solid var(--c-line-soft); transition: background-color .3s var(--ease); }
.board-table tbody tr:last-child { border-bottom: none; }
.board-table tbody tr:hover { background: rgba(201, 247, 58, .05); }
.board-table .bt-rank { font-family: var(--font-d); font-weight: 800; color: var(--c-amber); }
.board-table .bt-user { display: flex; align-items: center; gap: 12px; min-width: 0; }
.board-table .bt-user img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--c-line); flex-shrink: 0; }
.board-table .bt-pts { font-family: var(--font-d); font-weight: 800; color: var(--c-lime); }

/* ============ Home: FAQ ============ */
.home-faq { padding: 96px 0; }
.home-faq__wrap { display: grid; gap: 14px; }
.faq-item {
  background: var(--c-card); border: 1px solid var(--c-line-soft);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color .3s var(--ease);
}
.faq-item.is-open { border-color: var(--c-line); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 26px; cursor: pointer; list-style: none;
  font-family: var(--font-d); font-weight: 700; font-size: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 22px; height: 22px; color: var(--c-lime); flex-shrink: 0; transition: transform .35s var(--ease); }
.faq-item.is-open summary svg { transform: rotate(180deg); }
.faq-item__body { padding: 0 26px 24px; color: var(--c-muted); font-size: 15.5px; }

/* ============ Home: CTA ============ */
.home-cta { padding: 30px 0 96px; }
.home-cta__card {
  position: relative; overflow: hidden;
  border-radius: 28px; border: 1px solid var(--c-line);
  padding: clamp(48px, 7vw, 88px) clamp(24px, 5vw, 72px);
  background-image: linear-gradient(100deg, rgba(7, 21, 14, .92) 30%, rgba(7, 21, 14, .55)), url('/assets/img/sections/stadium-night.avif');
  background-size: cover; background-position: center;
}
.home-cta__card h2 { font-size: clamp(30px, 4.6vw, 54px); letter-spacing: -.015em; max-width: none; }
.home-cta__card h2 em { font-style: normal; color: var(--c-lime); }
.home-cta__card p { margin-top: 16px; color: rgba(238, 247, 233, .85); font-size: 17.5px; }
.home-cta__row { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 34px; }
.home-cta__row .home-hero__age { margin-top: 0; }

/* ============ Inner page heads (unique section class per page) ============ */
.about-head, .contact-head, .rp-head, .disc-head, .privacy-head, .terms-head, .cookies-head {
  position: relative; padding: 72px 0 56px; overflow: clip;
}
.about-head::before, .contact-head::before, .rp-head::before, .disc-head::before,
.privacy-head::before, .terms-head::before, .cookies-head::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(720px 380px at 18% 0%, rgba(201, 247, 58, .1), transparent 65%);
  pointer-events: none;
}
.ph-crumb { display: inline-flex; align-items: center; gap: 9px; color: var(--c-muted); font-size: 14px; margin-bottom: 18px; position: relative; z-index: 1; }
.ph-crumb a:hover { color: var(--c-lime); }
.ph-crumb svg { width: 14px; height: 14px; flex-shrink: 0; }
.ph-title { font-size: clamp(34px, 5vw, 62px); font-weight: 800; letter-spacing: -.02em; position: relative; z-index: 1; }
.ph-title em { font-style: normal; color: var(--c-lime); }
.ph-sub { margin-top: 16px; color: var(--c-muted); font-size: 18px; position: relative; z-index: 1; }
.ph-meta { margin-top: 14px; color: var(--c-muted); font-size: 14px; position: relative; z-index: 1; }

/* ============ About page ============ */
.about-story { padding: 40px 0 88px; }
.about-story__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.about-story__copy { min-width: 0; }
.about-story__copy h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 20px; }
.about-story__copy h2 em { font-style: normal; color: var(--c-lime); }
.about-story__copy p { color: var(--c-muted); margin-bottom: 16px; }
.about-story__photo { border-radius: 26px 26px 26px 96px; overflow: hidden; border: 1px solid var(--c-line); box-shadow: 0 26px 70px rgba(0, 0, 0, .45); min-width: 0; }
.about-values { padding: 88px 0; background: var(--c-bg-2); border-block: 1px solid var(--c-line-soft); }
.about-values__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  padding: 32px 28px; min-width: 0;
  background: var(--c-card); border: 1px solid var(--c-line-soft); border-radius: var(--r-lg);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.value-card:hover { transform: translateY(-6px); border-color: var(--c-line); }
.value-card__ico { width: 54px; height: 54px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: var(--c-card-2); border: 1px solid var(--c-line); color: var(--c-lime); margin-bottom: 20px; }
.value-card__ico svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 20px; margin-bottom: 10px; }
.value-card p { color: var(--c-muted); font-size: 15px; }
.about-numbers { padding: 88px 0; }
.about-numbers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.num-tile {
  text-align: center; padding: 36px 18px; min-width: 0;
  border: 1px solid var(--c-line-soft); border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--c-card), transparent);
}
.num-tile b { display: block; font-family: var(--font-d); font-size: clamp(32px, 3.4vw, 46px); font-weight: 800; color: var(--c-lime); line-height: 1.1; }
.num-tile span { color: var(--c-muted); font-size: 14px; }

/* ============ Contact page ============ */
.contact-zone { padding: 40px 0 96px; }
.contact-zone__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.contact-aside { display: grid; gap: 16px; min-width: 0; }
.contact-tile {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; background: var(--c-card);
  border: 1px solid var(--c-line-soft); border-radius: var(--r-md);
  min-width: 0;
}
.contact-tile__ico { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; background: var(--c-card-2); border: 1px solid var(--c-line); color: var(--c-lime); flex-shrink: 0; }
.contact-tile__ico svg { width: 22px; height: 22px; }
.contact-tile > div { min-width: 0; }
.contact-tile h3 { font-size: 16.5px; margin-bottom: 4px; }
.contact-tile p, .contact-tile a { color: var(--c-muted); font-size: 14.5px; }
.contact-tile a:hover { color: var(--c-lime); }
.contact-form-card {
  padding: clamp(26px, 4vw, 44px);
  background: var(--c-card); border: 1px solid var(--c-line-soft); border-radius: var(--r-lg);
  min-width: 0;
}
.contact-form-card h2 { font-size: 26px; margin-bottom: 8px; }
.contact-form-card > p { color: var(--c-muted); font-size: 15px; margin-bottom: 26px; }

/* Form controls */
.field { margin-bottom: 18px; min-width: 0; }
.field label, .field .flabel { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; min-width: 0;
  padding: 14px 16px;
  background: var(--c-bg-2); color: var(--c-text);
  border: 1.5px solid var(--c-line-soft); border-radius: 13px;
  font: inherit; font-size: 15px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--c-lime); box-shadow: 0 0 0 3px rgba(201, 247, 58, .14); }
.field textarea { resize: none; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-msg { display: none; }

/* Custom select */
.cselect { position: relative; min-width: 0; }
.cselect__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; text-align: left;
  background: var(--c-bg-2); color: var(--c-muted);
  border: 1.5px solid var(--c-line-soft); border-radius: 13px;
  font-size: 15px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.cselect__btn.has-value { color: var(--c-text); }
.cselect__btn:focus-visible, .cselect.open .cselect__btn { outline: none; border-color: var(--c-lime); box-shadow: 0 0 0 3px rgba(201, 247, 58, .14); }
.cselect__btn svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--c-lime); transition: transform .3s var(--ease); }
.cselect.open .cselect__btn svg { transform: rotate(180deg); }
.cselect__panel {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 40;
  background: var(--c-card-2); border: 1px solid var(--c-line); border-radius: 13px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .5);
  padding: 7px; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
}
.cselect.open .cselect__panel { opacity: 1; visibility: visible; transform: none; transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear 0s; }
.cselect__opt {
  width: 100%; text-align: left; padding: 11px 13px; border-radius: 9px;
  font-size: 14.5px; color: var(--c-text);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.cselect__opt:hover { background: rgba(201, 247, 58, .1); color: var(--c-lime); }
.cselect__opt[aria-selected="true"] { background: rgba(201, 247, 58, .16); color: var(--c-lime); }

.form-age { display: flex; align-items: center; gap: 12px; margin: 4px 0 22px; color: var(--c-muted); font-size: 14px; }

/* Checkbox */
.check { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; font-size: 14.5px; color: var(--c-muted); margin-bottom: 22px; }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check__box {
  width: 22px; height: 22px; border-radius: 7px; flex-shrink: 0; margin-top: 2px;
  border: 1.5px solid var(--c-line); background: var(--c-bg-2);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.check__box svg { width: 13px; height: 13px; color: #0a1a10; opacity: 0; transform: scale(.5); transition: opacity .2s var(--ease), transform .25s var(--ease); }
.check input:checked + .check__box { background: var(--c-lime); border-color: var(--c-lime); }
.check input:checked + .check__box svg { opacity: 1; transform: scale(1); }
.check input:focus-visible + .check__box { box-shadow: 0 0 0 3px rgba(201, 247, 58, .2); }

/* ============ Legal pages ============ */
.privacy-body, .terms-body, .cookies-body, .disc-body { padding: 24px 0 88px; }
.legal-content { width: 100%; }
.legal-content h2 { font-size: 25px; margin: 38px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 19px; margin: 26px 0 10px; }
.legal-content p { color: var(--c-muted); margin-bottom: 14px; }
.legal-content ul { margin: 0 0 16px; display: grid; gap: 9px; }
.legal-content ul li { position: relative; padding-left: 26px; color: var(--c-muted); }
.legal-content ul li::before { content: ''; position: absolute; left: 4px; top: .62em; width: 8px; height: 8px; border-radius: 50%; background: var(--c-lime); }
.legal-content a { color: var(--c-lime); }
.legal-content a:hover { color: var(--c-amber); }
.legal-content table { width: 100%; border-collapse: collapse; margin: 18px 0; background: var(--c-card); border: 1px solid var(--c-line-soft); border-radius: var(--r-md); overflow: hidden; }
.legal-content th, .legal-content td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--c-line-soft); font-size: 14.5px; white-space: nowrap; }
.legal-content td { color: var(--c-muted); white-space: normal; min-width: 160px; }
.legal-content thead th { background: var(--c-card-2); font-family: var(--font-d); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; }

/* ============ Responsible page ============ */
.rp-pillars { padding: 16px 0 72px; }
.rp-pillars__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.rp-card {
  display: flex; gap: 18px; align-items: flex-start; min-width: 0;
  padding: 28px; background: var(--c-card); border: 1px solid var(--c-line-soft); border-radius: var(--r-lg);
  transition: transform .35s var(--ease), border-color .35s var(--ease);
}
.rp-card:hover { transform: translateY(-5px); border-color: var(--c-line); }
.rp-card__ico { width: 50px; height: 50px; border-radius: 15px; display: flex; align-items: center; justify-content: center; background: var(--c-card-2); border: 1px solid var(--c-line); color: var(--c-lime); flex-shrink: 0; }
.rp-card__ico svg { width: 24px; height: 24px; }
.rp-card > div { min-width: 0; }
.rp-card h3 { font-size: 19px; margin-bottom: 8px; }
.rp-card p { color: var(--c-muted); font-size: 15px; }
.rp-banner { padding: 0 0 88px; }
.rp-banner__card {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 0;
  border-radius: 26px; overflow: hidden; border: 1px solid var(--c-line);
  background: var(--c-card);
}
.rp-banner__copy { padding: clamp(28px, 4vw, 52px); min-width: 0; }
.rp-banner__copy h2 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 14px; }
.rp-banner__copy p { color: var(--c-muted); margin-bottom: 12px; }
.rp-banner__media { min-width: 0; height: 100%; }
.rp-banner__media img { width: 100%; height: 100%; object-fit: cover; }

/* ============ Disclaimer page ============ */
.disc-grid__wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 22px 0 30px; }
.disc-no {
  padding: 24px; border-radius: var(--r-md); min-width: 0;
  background: var(--c-card); border: 1px solid var(--c-line-soft);
  display: flex; align-items: center; gap: 14px;
}
.disc-no svg { width: 22px; height: 22px; color: var(--c-amber); flex-shrink: 0; }
.disc-no span { font-weight: 600; font-size: 15px; min-width: 0; }

/* ============ Footer ============ */
.site-footer { background: #051009; border-top: 1px solid var(--c-line-soft); }
.site-footer__top { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px; padding: 56px 0 40px; }
.site-footer__brandcol { min-width: 0; }
.site-footer__brandcol .brand { margin-bottom: 16px; }
.site-footer__brandcol p { color: var(--c-muted); font-size: 14.5px; }
.site-footer__col { min-width: 0; }
.site-footer__col h3 { font-size: 14px; letter-spacing: .12em; text-transform: uppercase; color: var(--c-lime); margin-bottom: 18px; }
.site-footer__col ul { display: grid; gap: 11px; }
.site-footer__col a { color: var(--c-muted); font-size: 15px; }
.site-footer__col a:hover { color: var(--c-lime); }
.site-footer__badges { display: flex; flex-wrap: wrap; gap: 12px; padding: 26px 0; border-top: 1px solid var(--c-line-soft); }
.foot-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--c-line); background: rgba(201, 247, 58, .05);
  font-family: var(--font-d); font-weight: 700; font-size: 13px; color: var(--c-text);
}
.foot-badge--amber { border-color: rgba(255, 181, 71, .4); color: var(--c-amber); background: rgba(255, 181, 71, .06); }
.foot-badge svg { width: 15px; height: 15px; color: var(--c-lime); }
.foot-badge--amber svg { color: var(--c-amber); }
.site-footer__legal { padding: 24px 0; border-top: 1px solid var(--c-line-soft); }
.site-footer__legal p { color: rgba(159, 184, 168, .8); font-size: 13.5px; margin-bottom: 7px; }
.site-footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 0 26px; border-top: 1px solid var(--c-line-soft); }
.site-footer__bottom p { color: var(--c-muted); font-size: 13.5px; }
.site-footer__bottom span { color: var(--c-muted); font-size: 13.5px; }

/* ============ Chat widget ============ */
.chat-toggle {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-lime); color: #0a1a10;
  box-shadow: 0 12px 36px rgba(201, 247, 58, .35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.chat-toggle:hover { transform: translateY(-3px) scale(1.05); }
.chat-toggle svg { width: 28px; height: 28px; }
.chat-toggle__dot { position: absolute; top: 4px; right: 4px; width: 13px; height: 13px; border-radius: 50%; background: var(--c-amber); border: 2.5px solid var(--c-bg); }
.chat-panel {
  position: fixed; right: 22px; bottom: 94px; z-index: 95;
  width: 360px; max-width: calc(100vw - 32px);
  height: 460px; max-height: calc(100dvh - 120px);
  display: flex; flex-direction: column;
  background: var(--c-bg-2); border: 1px solid var(--c-line); border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(16px) scale(.97); transform-origin: bottom right;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear .3s;
}
.chat-panel.open { opacity: 1; visibility: visible; transform: none; transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s linear 0s; }
.chat-panel__head { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: var(--c-card-2); border-bottom: 1px solid var(--c-line-soft); }
.chat-panel__head img { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--c-line); flex-shrink: 0; }
.chat-panel__who { min-width: 0; flex: 1; }
.chat-panel__who b { display: block; font-family: var(--font-d); font-size: 15px; line-height: 1.2; }
.chat-panel__who span { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--c-lime); }
.chat-panel__who span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--c-lime); animation: pulse 1.8s ease-in-out infinite; }
.chat-panel__close { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--c-muted); flex-shrink: 0; transition: color .25s var(--ease), background-color .25s var(--ease); }
.chat-panel__close:hover { color: var(--c-text); background: rgba(238, 247, 233, .07); }
.chat-panel__close svg { width: 17px; height: 17px; }
.chat-log { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; overscroll-behavior: contain; }
.chat-msg { max-width: 82%; padding: 10px 14px; border-radius: 15px; font-size: 14px; line-height: 1.5; overflow-wrap: break-word; word-break: break-word; }
.chat-msg--bot { align-self: flex-start; background: var(--c-card-2); border: 1px solid var(--c-line-soft); border-bottom-left-radius: 5px; }
.chat-msg--user { align-self: flex-end; background: var(--c-lime); color: #0a1a10; border-bottom-right-radius: 5px; font-weight: 500; }
.chat-msg--typing { display: inline-flex; gap: 5px; padding: 14px 16px; }
.chat-msg--typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--c-muted); animation: typing 1.2s ease-in-out infinite; }
.chat-msg--typing i:nth-child(2) { animation-delay: .18s; }
.chat-msg--typing i:nth-child(3) { animation-delay: .36s; }
@keyframes typing { 0%, 100% { transform: translateY(0); opacity: .5; } 50% { transform: translateY(-5px); opacity: 1; } }
.chat-quick { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 16px 10px; }
.chat-quick button {
  padding: 7px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 600;
  border: 1px solid var(--c-line); color: var(--c-lime);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.chat-quick button:hover { background: var(--c-lime); color: #0a1a10; }
.chat-form { display: flex; gap: 9px; padding: 12px 14px; border-top: 1px solid var(--c-line-soft); background: var(--c-card); }
.chat-form input {
  flex: 1; min-width: 0;
  padding: 11px 14px; border-radius: 999px;
  background: var(--c-bg-2); color: var(--c-text);
  border: 1.5px solid var(--c-line-soft); font: inherit; font-size: 14px;
}
.chat-form input:focus { outline: none; border-color: var(--c-lime); }
.chat-form button {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--c-lime); color: #0a1a10;
  transition: transform .25s var(--ease);
}
.chat-form button:hover { transform: scale(1.08); }
.chat-form button svg { width: 19px; height: 19px; }

/* ============ Toast ============ */
.toast-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5, 16, 9, .74);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.toast-overlay.show { opacity: 1; pointer-events: auto; }
.toast-card {
  background: linear-gradient(180deg, var(--c-card-2), var(--c-card));
  border: 1px solid var(--c-line); border-radius: 20px;
  padding: 36px 36px 32px; max-width: 440px; width: 100%; text-align: center;
  transform: scale(.88) translateY(8px); opacity: 0;
  transition: transform .35s var(--ease), opacity .3s ease;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .55), 0 0 60px rgba(201, 247, 58, .14);
}
.toast-overlay.show .toast-card { transform: none; opacity: 1; }
.toast-card .toast-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 30px; font-weight: 700; line-height: 1;
}
.toast-card.ok .toast-icon { background: rgba(201, 247, 58, .14); color: var(--c-lime); border: 2px solid rgba(201, 247, 58, .45); }
.toast-card.err .toast-icon { background: rgba(255, 107, 107, .14); color: #ff6b6b; border: 2px solid rgba(255, 107, 107, .45); }
.toast-card .toast-text { color: var(--c-text); font-size: 1.02rem; line-height: 1.5; }

/* ============ Join modal ============ */
.join-overlay {
  position: fixed; inset: 0; z-index: 150;
  background: rgba(5, 16, 9, .76);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, visibility 0s linear .3s;
}
.join-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; transition: opacity .3s ease, visibility 0s linear 0s; }
.join-card {
  position: relative;
  background: var(--c-bg-2); border: 1px solid var(--c-line); border-radius: 24px;
  padding: clamp(26px, 5vw, 40px); max-width: 460px; width: 100%;
  max-height: calc(100dvh - 40px); overflow-y: auto;
  transform: scale(.92) translateY(12px); opacity: 0;
  transition: transform .35s var(--ease), opacity .3s ease;
}
.join-overlay.open .join-card { transform: none; opacity: 1; }
.join-card__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 11px; display: flex; align-items: center; justify-content: center; color: var(--c-muted); transition: color .25s var(--ease), background-color .25s var(--ease); }
.join-card__close:hover { color: var(--c-text); background: rgba(238, 247, 233, .07); }
.join-card__close svg { width: 17px; height: 17px; }
.join-card h2 { font-size: 26px; margin-bottom: 6px; padding-right: 36px; }
.join-card > p { color: var(--c-muted); font-size: 14.5px; margin-bottom: 22px; }

/* ============ Responsive ============ */
@media (max-width: 1220px) {
  .home-hero { padding: 52px 0 64px; }
  .home-hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .home-hero__visual { max-width: 640px; }
  .hero-score { left: 14px; }
  .home-how__track { grid-template-columns: 1fr; gap: 0; }
  .home-how__track::before { left: 30px; right: auto; top: 4%; bottom: 4%; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--c-line) 0 10px, transparent 10px 20px); }
  .step-card { display: grid; grid-template-columns: 62px 1fr; gap: 0 22px; padding: 20px 0; }
  .step-card__no { margin-bottom: 0; grid-row: 1 / 4; }
  .home-board__grid { grid-template-columns: 1fr; gap: 40px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .site-footer__brandcol { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  body { font-size: 16px; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 38px; }
  .sec-head--split p { text-align: left; }
  .home-hero { padding: 40px 0 56px; }
  .home-hero__photo { border-radius: 24px 70px 24px 24px; }
  .home-how, .home-comps, .home-faq { padding: 64px 0; }
  .home-edge, .home-board { padding: 60px 0; }
  .home-cta { padding: 10px 0 64px; }
  .edge-row { grid-template-columns: 44px 1fr; gap: 10px 18px; padding: 22px 12px; }
  .edge-row:hover { padding-left: 12px; }
  .edge-row__idx { grid-row: 1; font-size: 20px; align-self: center; }
  .edge-row__ico { display: none; }
  .edge-row h3 { grid-column: 2; font-size: 19px; }
  .edge-row p { grid-column: 2; }
  .edge-row__arr { display: none; }
  .home-comps__grid { grid-template-columns: 1fr; }
  .comp-card__media { aspect-ratio: 16 / 9; }
  .about-story__grid { grid-template-columns: 1fr; gap: 36px; }
  .about-story__photo { border-radius: 22px 22px 22px 64px; }
  .about-values__grid { grid-template-columns: 1fr; }
  .about-numbers { padding: 64px 0; }
  .about-values { padding: 64px 0; }
  .about-numbers__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .contact-zone__grid { grid-template-columns: 1fr; }
  .rp-pillars__grid { grid-template-columns: 1fr; }
  .rp-banner__card { grid-template-columns: 1fr; }
  .rp-banner__media { order: -1; max-height: 300px; }
  .disc-grid__wrap { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; gap: 32px; padding: 44px 0 32px; }
  .about-head, .contact-head, .rp-head, .disc-head, .privacy-head, .terms-head, .cookies-head { padding: 52px 0 40px; }
  .privacy-body, .terms-body, .cookies-body, .disc-body { padding-bottom: 64px; }
}

@media (max-width: 520px) {
  .btn { padding: 14px 24px; font-size: 15px; width: auto; }
  .home-hero__actions { gap: 12px; }
  .home-hero__actions .btn { flex: 1 1 auto; }
  .home-hero__stats { gap: 14px 24px; }
  .home-hero__stat b { font-size: 25px; }
  .hero-score { padding: 11px 15px; bottom: 18px; }
  .hero-score b { font-size: 17px; }
  .hero-orb { width: 48px; height: 48px; top: -14px; }
  .hero-orb svg { width: 24px; height: 24px; }
  .faq-item summary { padding: 18px 18px; font-size: 16px; gap: 12px; }
  .faq-item__body { padding: 0 18px 20px; font-size: 14.5px; }
  .board-table th, .board-table td { padding: 12px 12px; }
  .chat-panel { right: 16px; }
  .chat-toggle { right: 16px; bottom: 16px; }
  .field-row { grid-template-columns: 1fr; }
  .comp-card__body { padding: 6px 20px 22px; }
}

@media (max-width: 430px) {
  .home-hero__copy h1 { font-size: clamp(32px, 10.5vw, 38px); }
  .about-numbers__grid { grid-template-columns: 1fr; }
  .step-card { grid-template-columns: 52px 1fr; gap: 0 16px; }
  .step-card__no { width: 52px; height: 52px; border-radius: 16px; }
  .home-how__track::before { left: 25px; }
  .site-footer__badges { gap: 9px; }
  .foot-badge { padding: 8px 13px; font-size: 12px; }
}

@media (max-width: 360px) {
  .home-hero__actions .btn { width: 100%; }
  .home-cta__row .btn { width: 100%; }
  .edge-row { grid-template-columns: 36px 1fr; }
}

/* Tables wrapped by JS on narrow screens */
.board-table-wrap, .cookie-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-lg); }
