/* TCG v2 — design tokens + components.
   Editorial luxury aesthetic. Loaded after Dawn's base.css to win the cascade.
   Fonts loaded via <link rel="preconnect"> + <link rel="stylesheet"> in theme.liquid
   (NOT @import, which would block rendering). */

:root {
  --pink: #EE2B91;
  --pink-soft: #FFE5F0;
  --pink-ink: #B11468;
  --navy: #0E192C;
  --navy-2: #1A2742;
  --cream: #FFF5F8;
  --cream-2: #FBE9F0;
  --blue: #1F8FD6;
  --blue-ink: #15659C; /* AA-compliant blue for white text on small fills (5.30:1) */
  --green: #22A86B;
  --gold: #FFC83D;
  --ink: #0E192C;
  --ink-soft: rgba(14, 25, 44, 0.72);
  --ink-faint: rgba(14, 25, 44, 0.14);

  --display: 'Sora', system-ui, -apple-system, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --body: 'Inter', system-ui, -apple-system, sans-serif;

  --maxw: 1240px;
  --maxw-wide: 1320px;
}

/* Reset on top of Dawn */
html, body { background: var(--cream); color: var(--ink); font-family: var(--body); -webkit-font-smoothing: antialiased; }
body { font-size: 16px; line-height: 1.5; }
.shopify-section + .shopify-section { margin-top: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
.tcg a { text-decoration: none; color: inherit; }

@keyframes tcg-spin { to { transform: rotate(360deg); } }
@keyframes tcg-pulse { 0%{box-shadow:0 0 0 0 rgba(34,168,107,.7)} 70%{box-shadow:0 0 0 8px rgba(34,168,107,0)} 100%{box-shadow:0 0 0 0 rgba(34,168,107,0)} }
@keyframes tcg-pulse-pink { 0%{box-shadow:0 0 0 0 rgba(238,43,145,.55)} 70%{box-shadow:0 0 0 10px rgba(238,43,145,0)} 100%{box-shadow:0 0 0 0 rgba(238,43,145,0)} }
@keyframes tcg-ticker { from{transform:translate3d(0,0,0)} to{transform:translate3d(-50%,0,0)} }
@keyframes tcg-shine { 0%{transform:translateX(-60%)} 100%{transform:translateX(60%)} }

/* ============ SHARED PRIMITIVES ============ */
.tcg-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 20px;
}
.tcg-eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--ink); }
.tcg-eyebrow--light { color: rgba(255,245,248,0.6); }
.tcg-eyebrow--light::before { background: rgba(255,245,248,0.4); }

.tcg-h1 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(48px, 7vw, 96px); line-height: 0.94; letter-spacing: -0.035em;
  color: var(--navy); margin: 0 0 28px;
}
.tcg-h1 em { font-style: normal; color: var(--pink); position: relative; display: inline-block; }
.tcg-h1--circled em::after {
  /* Dashed ring around the headline word — removed 2026-05-31 (owner request).
     Restore: content:""; position:absolute; left:-8px; right:-8px; top:-6px;
     bottom:-6px; border:2px dashed var(--pink); border-radius:999px; opacity:.3; */
  content: none;
}

.tcg-h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -0.03em;
  color: var(--navy); margin: 0 0 18px;
}
.tcg-h2 em { font-style: normal; color: var(--pink); }
.tcg-h2--light { color: var(--cream); }

.tcg-lead {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: 20px; line-height: 1.45; color: var(--ink-soft);
  max-width: 560px;
}
.tcg-lead--light { color: rgba(255,245,248,0.85); }
.tcg-lead strong { color: var(--ink); font-style: normal; font-family: var(--body); font-weight: 600; }
.tcg-lead--light strong { color: var(--cream); }

.tcg-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 28px; border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: 15px; letter-spacing: -0.005em;
  border: 0; cursor: pointer; text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
}
.tcg-btn--pink { background: var(--pink-ink); color: #fff; box-shadow: 0 12px 28px -10px rgba(238,43,145,.55); }
.tcg-btn--pink:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(238,43,145,.7); }
.tcg-btn--ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--ink-faint); }
.tcg-btn--ghost:hover { border-color: var(--navy); background: rgba(14,25,44,0.04); }
.tcg-btn--navy { background: var(--navy); color: #fff; }
.tcg-btn--navy:hover { background: var(--pink); }
.tcg-btn__arrow { transition: transform .2s; }
.tcg-btn:hover .tcg-btn__arrow { transform: translateX(4px); }

.tcg-live-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.22); padding: 8px 14px;
  border-radius: 999px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
}
.tcg-live-pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: tcg-pulse 1.6s ease-out infinite; }

/* Pink dashed circle (floating hero background arcs) — removed 2026-05-31
   (owner request). display:none kills every .tcg-circle span across all hero
   sections at once without editing each section. Restore: swap display:none
   back to the position/border/animation rule below. */
.tcg-circle {
  display: none;
}

/* ============ NAV / LOCKUP ============ */
/* Sticky on the Shopify section wrapper, not the nav itself, otherwise the
   wrapper's height (= nav height) becomes the sticky containing block and
   the nav scrolls away as soon as the wrapper exits the viewport. */
.shopify-section-group-header-group { position: sticky; top: 0; z-index: 50; }
.tcg-nav { background: var(--cream); border-bottom: 1px solid var(--ink-faint); box-shadow: 0 1px 0 0 rgba(14,25,44,0.04); }
.tcg-nav__inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.tcg-lockup { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 800; letter-spacing: -0.02em; font-size: 18px; color: var(--navy); text-decoration: none; }
.tcg-lockup__mark { width: 28px; height: 28px; border-radius: 50%; background: var(--pink); position: relative; flex-shrink: 0; }
.tcg-lockup__mark::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; border: 1.5px dashed var(--cream); animation: tcg-spin 18s linear infinite; }
.tcg-lockup__sub { font-family: var(--body); font-weight: 500; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); margin-top: -2px; line-height: 1; }
.tcg-menu { display: flex; gap: 22px; font-size: 14px; font-weight: 500; flex-wrap: nowrap; }
.tcg-menu a { position: relative; color: var(--navy); padding: 6px 0; white-space: nowrap; }
.tcg-menu a:hover { color: var(--pink); }
.tcg-menu a.is-active { color: var(--pink); }
.tcg-menu a.is-active::after { content: ""; position: absolute; left: 50%; bottom: -2px; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); transform: translateX(-50%); }
.tcg-nav__cta { padding: 10px 16px; background: var(--navy); color: var(--cream); border-radius: 999px; font-size: 13px; font-weight: 600; letter-spacing: 0.02em; text-decoration: none; white-space: nowrap; }
.tcg-nav__cta:hover { background: var(--pink); }
.tcg-menu-btn { display: none; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--cream); align-items: center; justify-content: center; border: 0; cursor: pointer; }
.tcg-menu-btn svg { width: 18px; height: 18px; }
/* Tight desktop: hide the lockup sub-line so the menu has more room */
@media (max-width: 1200px) {
  .tcg-menu { gap: 18px; font-size: 13px; }
  .tcg-lockup__sub { display: none; }
}
/* Use the mobile drawer earlier (1024 instead of 900) so cramped laptop widths get the clean drawer */
@media (max-width: 1024px) {
  .tcg-menu, .tcg-nav__cta { display: none; }
  .tcg-menu-btn { display: flex; }
}

/* ============ TICKER ============ */
.tcg-ticker { background: var(--navy); color: var(--cream); font-size: 12px; font-weight: 500; letter-spacing: 0.04em; padding: 8px 0; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.06); }
.tcg-ticker__track { display: flex; gap: 48px; white-space: nowrap; animation: tcg-ticker 32s linear infinite; width: max-content; padding-left: 100%; }
.tcg-ticker__item { display: inline-flex; align-items: center; gap: 8px; }
.tcg-ticker__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.tcg-ticker__pink { color: var(--pink); font-weight: 700; }

/* ============ HERO ============ */
.tcg-hero { position: relative; padding: 64px 24px 96px; overflow: hidden; }
.tcg-hero__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.tcg-hero__circle { width: 520px; height: 520px; right: -180px; top: -60px; }
.tcg-hero__circle--small { width: 200px; height: 200px; left: -80px; bottom: 40px; opacity: 0.25; animation-duration: 40s; }
.tcg-hero__feature { position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; background: linear-gradient(135deg, #3a1f3a, #0e192c); box-shadow: 0 30px 80px -30px rgba(14,25,44,0.45); }
.tcg-hero__feature img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.04); transition: transform .8s, filter .35s; }
.tcg-hero__feature:hover img { transform: scale(1.04); filter: saturate(1.18); }
.tcg-hero__feature::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 60%); z-index: 1; }
.tcg-hero__feature-meta { position: absolute; left: 20px; right: 20px; bottom: 20px; display: flex; align-items: flex-end; justify-content: space-between; color: #fff; z-index: 2; gap: 12px; }
.tcg-hero__feature-name { font-family: var(--display); font-weight: 800; font-size: 32px; letter-spacing: -0.02em; line-height: 1; }
.tcg-hero__feature-tag { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,0.78); margin-top: 6px; }
.tcg-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.tcg-hero__sub { margin-bottom: 40px; }

@media (max-width: 900px) {
  .tcg-hero { padding: 40px 20px 64px; }
  .tcg-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .tcg-hero__circle { width: 300px; height: 300px; right: -120px; top: -40px; }
  .tcg-hero__circle--small { display: none; }
}

/* ============ TRUST BAND ============ */
.tcg-trust { background: var(--navy); color: var(--cream); padding: 28px 24px; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.tcg-trust__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.tcg-trust__num { font-family: var(--display); font-weight: 800; font-size: 36px; letter-spacing: -0.02em; color: var(--cream); }
.tcg-trust__num em { color: var(--pink); font-style: normal; }
.tcg-trust__lab { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,245,248,0.62); margin-top: 4px; }
@media (max-width: 720px) { .tcg-trust__inner { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; } .tcg-trust__num { font-size: 28px; } }

/* ============ STEPS ============ */
.tcg-steps { padding: 120px 24px; }
.tcg-steps__inner { max-width: var(--maxw); margin: 0 auto; }
.tcg-steps__head { margin-bottom: 64px; }
.tcg-steps__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; border-top: 1px solid var(--ink-faint); padding-top: 56px; }
.tcg-step { position: relative; }
.tcg-step__num { font-family: var(--display); font-weight: 800; font-size: 120px; line-height: 0.85; color: transparent; -webkit-text-stroke: 1.5px var(--navy); letter-spacing: -0.06em; margin-bottom: 24px; }
.tcg-step:nth-child(2) .tcg-step__num { -webkit-text-stroke-color: var(--pink); }
.tcg-step__chip { display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; background: var(--navy); color: var(--cream); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.tcg-step:nth-child(2) .tcg-step__chip { background: var(--pink); }
.tcg-step__h { font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; line-height: 1.1; color: var(--navy); margin: 0 0 8px; }
.tcg-step__p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; max-width: 280px; }
@media (max-width: 900px) { .tcg-steps { padding: 72px 20px; } .tcg-steps__grid { grid-template-columns: 1fr; gap: 48px; } .tcg-step__num { font-size: 90px; } }

/* ============ EDITORIAL CARD ============ */
.tcg-card { position: relative; border-radius: 18px; overflow: hidden; background: var(--navy); aspect-ratio: 3/4; display: block; transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s; }
.tcg-card:hover { transform: translateY(-6px); box-shadow: 0 28px 48px -20px rgba(14,25,44,0.4); }
.tcg-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .35s; }
.tcg-card:hover img { transform: scale(1.06); filter: saturate(1.18); }
.tcg-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0) 55%); pointer-events: none; }
.tcg-card__meta { position: absolute; left: 18px; right: 18px; bottom: 18px; color: #fff; z-index: 2; }
.tcg-card__name { font-family: var(--display); font-weight: 800; font-size: 22px; line-height: 1; letter-spacing: -0.02em; }
.tcg-card__country { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: rgba(255,255,255,0.72); margin-top: 6px; }
.tcg-card__cta { margin-top: 14px; display: inline-flex; align-items: center; gap: 6px; background: var(--pink); color: #fff; padding: 10px 16px; border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; transition: transform .2s; }
.tcg-card:hover .tcg-card__cta { transform: translateX(4px); }
.tcg-card__badge { position: absolute; top: 14px; left: 14px; z-index: 3; background: #fff; color: var(--navy); padding: 5px 10px; border-radius: 999px; font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 5px; }
.tcg-card__badge--pink { background: var(--pink-ink); color: #fff; }
.tcg-card__badge--gold { background: var(--gold); color: var(--navy); }
.tcg-card__badge--live::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

/* ============ FEATURED EDITORIAL GRID (home) ============ */
.tcg-featured { padding: 96px 24px; background: var(--cream-2); border-top: 1px solid var(--ink-faint); border-bottom: 1px solid var(--ink-faint); }
.tcg-featured__inner { max-width: var(--maxw); margin: 0 auto; }
.tcg-featured__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 48px; flex-wrap: wrap; }
.tcg-featured__grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.tcg-featured__grid .tcg-card--span6 { grid-column: span 6; aspect-ratio: 16/11; }
.tcg-featured__grid .tcg-card--span4 { grid-column: span 4; }
.tcg-featured__grid .tcg-card--span3 { grid-column: span 3; }
.tcg-card--span6 .tcg-card__name { font-size: 42px; }
@media (max-width: 900px) {
  .tcg-featured { padding: 64px 20px; }
  .tcg-featured__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .tcg-featured__grid .tcg-card--span6, .tcg-featured__grid .tcg-card--span4, .tcg-featured__grid .tcg-card--span3 { grid-column: span 1; }
  .tcg-featured__grid .tcg-card--span6 { grid-column: span 2; aspect-ratio: 1/1; }
  .tcg-card--span6 .tcg-card__name { font-size: 28px; }
}
@media (max-width: 520px) { .tcg-featured__grid { grid-template-columns: 1fr; } .tcg-featured__grid .tcg-card--span6 { grid-column: span 1; aspect-ratio: 3/4; } }

/* ============ WHY US ============ */
.tcg-why { padding: 120px 24px; }
.tcg-why__inner { max-width: var(--maxw); margin: 0 auto; }
.tcg-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.tcg-why__cell { padding: 32px; border-radius: 24px; background: #fff; border: 1px solid var(--ink-faint); position: relative; transition: border-color .2s; }
.tcg-why__cell:hover { border-color: var(--pink); }
.tcg-why__icon { width: 64px; height: 64px; border-radius: 50%; border: 2px dashed var(--pink); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--pink); font-family: var(--display); font-weight: 800; font-size: 24px; }
.tcg-why__h { font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--navy); margin: 0 0 8px; }
.tcg-why__p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
@media (max-width: 900px) { .tcg-why { padding: 72px 20px; } .tcg-why__grid { grid-template-columns: 1fr; gap: 18px; } }

/* ============ CTA BAND ============ */
.tcg-cta-band { margin: 0 auto 96px; max-width: calc(var(--maxw) - 0px); background: var(--pink); color: #fff; border-radius: 32px; padding: 96px 64px; position: relative; overflow: hidden; }
.tcg-cta-band__circle { position: absolute; width: 560px; height: 560px; border-radius: 50%; border: 2px dashed rgba(255,255,255,0.4); right: -200px; top: -200px; animation: tcg-spin 80s linear infinite; pointer-events: none; }
.tcg-cta-band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; align-items: center; }
.tcg-cta-band__h { font-family: var(--display); font-weight: 800; font-size: clamp(40px, 5vw, 64px); line-height: 0.95; letter-spacing: -0.03em; margin: 0 0 18px; color: #fff; }
.tcg-cta-band__p { font-size: 18px; font-family: var(--serif); font-style: italic; font-weight: 300; line-height: 1.5; opacity: 0.92; margin-bottom: 32px; max-width: 520px; }
.tcg-cta-band__btn { display: inline-flex; align-items: center; gap: 10px; padding: 20px 32px; background: var(--navy); color: #fff; border-radius: 999px; font-weight: 600; font-size: 16px; text-decoration: none; }
.tcg-cta-band__btn:hover { background: #fff; color: var(--pink); }
.tcg-cta-band__stats { display: flex; flex-direction: column; gap: 32px; }
.tcg-cta-band__stat { border-top: 1px solid rgba(255,255,255,0.3); padding-top: 18px; }
.tcg-cta-band__stat-num { font-family: var(--display); font-weight: 800; font-size: 48px; letter-spacing: -0.025em; line-height: 1; }
.tcg-cta-band__stat-lab { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; opacity: 0.85; margin-top: 4px; }
@media (max-width: 900px) { .tcg-cta-band { padding: 56px 28px; border-radius: 24px; margin: 0 16px 64px; } .tcg-cta-band__inner { grid-template-columns: 1fr; gap: 40px; } .tcg-cta-band__circle { width: 380px; height: 380px; right: -220px; top: -180px; } }

/* ============ FOOTER ============ */
.tcg-foot { background: var(--navy); color: var(--cream); padding: 96px 24px 32px; position: relative; overflow: hidden; }
.tcg-foot__inner { max-width: var(--maxw); margin: 0 auto; }
.tcg-foot__lockup { font-family: var(--display); font-weight: 800; font-size: clamp(72px, 14vw, 180px); letter-spacing: -0.05em; line-height: 0.85; color: var(--cream); margin: 0 0 64px; }
.tcg-foot__lockup em { font-style: normal; color: var(--pink); }
.tcg-foot__cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.tcg-foot__h { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: rgba(255,245,248,0.55); margin-bottom: 16px; }
.tcg-foot__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.tcg-foot__list a:hover { color: var(--pink); }
.tcg-foot__about { color: rgba(255,245,248,0.7); font-size: 14px; line-height: 1.6; max-width: 340px; }
.tcg-foot__legal { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; font-size: 12px; color: rgba(255,245,248,0.55); flex-wrap: wrap; gap: 16px; }
@media (max-width: 900px) { .tcg-foot { padding: 72px 20px 28px; } .tcg-foot__cols { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .tcg-foot__cols { grid-template-columns: 1fr; } }

/* ============ DIRECTORY (filter strip + grid) ============ */
.tcg-directory-head { padding: 56px 24px 36px; }
.tcg-directory-head__inner { max-width: var(--maxw-wide); margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.tcg-directory-head__counter { display: flex; align-items: center; gap: 14px; font-size: 14px; color: var(--ink-soft); background: #fff; border: 1px solid var(--ink-faint); padding: 14px 22px; border-radius: 999px; flex-shrink: 0; }
.tcg-directory-head__counter strong { font-family: var(--display); font-weight: 800; color: var(--navy); font-size: 16px; }
.tcg-directory-head__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: tcg-pulse 1.6s ease-out infinite; }

/* Header-group height varies (ticker + nav). Use a CSS var the layout sets,
   fallback to safe values that match desktop ~95px and mobile ~91px. */
.tcg-filters { padding: 0 24px; position: sticky; top: 95px; z-index: 39; background: var(--cream); box-shadow: 0 8px 24px -16px rgba(14,25,44,0.18); position: sticky; }
/* Fade gradient on the right edge — visual hint that there's more
   content to scroll horizontally. Pointer-events:none so scrolling
   still works through the gradient. */
.tcg-filters::after { content: ""; position: absolute; right: 0; top: 0; bottom: 1px; width: 48px; pointer-events: none; background: linear-gradient(to right, rgba(255,245,248,0), var(--cream) 80%); }
/* Single horizontal row on ALL viewports — chips overflow-scroll, never wrap.
   Saves ~50% vertical space vs the previous 2-3 row wrap. */
.tcg-filters__inner { max-width: var(--maxw-wide); margin: 0 auto; display: flex; align-items: center; gap: 14px; flex-wrap: nowrap; padding: 8px 0; border-bottom: 1px solid var(--ink-faint); overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.tcg-filters__inner::-webkit-scrollbar { display: none; }
@media (max-width: 768px) {
  .tcg-filters { top: 91px; padding-bottom: 0; }
  .tcg-filters__inner { gap: 10px; padding-bottom: 10px; }
}
.tcg-chip { display: inline-flex; align-items: center; gap: 5px; padding: 6px 12px; border-radius: 999px; border: 1px solid var(--ink-faint); background: #fff; font-size: 12px; font-weight: 600; color: var(--ink); cursor: pointer; white-space: nowrap; flex-shrink: 0; transition: all .15s; }
.tcg-chip:hover { border-color: var(--ink); }
.tcg-chip.is-on { background: var(--navy); border-color: var(--navy); color: var(--cream); }
.tcg-chip.is-on.tcg-chip--pink { background: var(--pink-ink); border-color: var(--pink-ink); color: #fff; }
.tcg-chip__count { font-family: var(--display); font-weight: 800; font-size: 10px; background: rgba(0,0,0,0.08); padding: 1px 6px; border-radius: 999px; margin-left: 3px; }
.tcg-chip.is-on .tcg-chip__count { background: rgba(255,255,255,0.2); }
.tcg-chips { display: flex; gap: 6px; flex-wrap: nowrap; align-items: center; }
.tcg-chips--langs { display: contents; }
/* Visual separator before language chips so they don't blend into the
   long category run. Renders inline within the scroll lane on all
   viewports — replaces the old hidden `.tcg-filters__sep`. */
.tcg-filters__sep { display: inline-block; flex-shrink: 0; width: 1px; height: 18px; background: var(--ink-faint); margin: 0 4px; }
.tcg-filters__lab { font-size: 10px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); flex-shrink: 0; }
.tcg-filters__divider { width: 1px; height: 24px; background: var(--ink-faint); }
.tcg-filters__lab { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }

.tcg-directory-grid { padding: 24px 24px 96px; }
.tcg-directory-grid__inner { max-width: var(--maxw-wide); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1024px) { .tcg-directory-grid__inner { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
  .tcg-directory-head { padding: 40px 20px 24px; }
  .tcg-filters { padding: 0 20px 20px; }
  .tcg-filters__inner { gap: 14px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 12px; scrollbar-width: none; }
  .tcg-filters__inner::-webkit-scrollbar { display: none; }
  .tcg-filters__divider { display: none; }
  .tcg-directory-grid { padding: 14px 20px 64px; }
  .tcg-directory-grid__inner { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .tcg-card__name { font-size: 18px; }
}

/* ============ APPLY HERO + CALC ============ */
.tcg-apply-hero { position: relative; overflow: hidden; background: var(--navy); color: var(--cream); }
.tcg-apply-hero__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; padding: 96px 24px 120px; align-items: center; position: relative; z-index: 2; }
.tcg-apply-hero__circle { width: 680px; height: 680px; right: -260px; top: -200px; opacity: 0.5; }
.tcg-apply-hero__h1 { color: var(--cream); margin-bottom: 28px; }
.tcg-apply-hero__sub { color: rgba(255,245,248,0.85); margin-bottom: 36px; max-width: 540px; }
.tcg-apply-hero__sub strong { color: var(--cream); font-style: normal; font-family: var(--body); font-weight: 600; }
.tcg-apply-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.tcg-b { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); padding: 8px 14px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.tcg-b--pink { background: var(--pink); border-color: var(--pink); color: #fff; }
.tcg-b--green { background: rgba(34,168,107,0.18); border-color: rgba(34,168,107,0.4); color: #7CDDA9; }

.tcg-calc { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: 24px; padding: 32px; backdrop-filter: blur(8px); }
.tcg-calc__h { font-family: var(--display); font-weight: 800; font-size: 22px; margin: 0 0 6px; letter-spacing: -0.02em; }
.tcg-calc__hint { font-size: 13px; color: rgba(255,245,248,0.6); margin-bottom: 24px; }
.tcg-calc__row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 8px; }
.tcg-calc__lab { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; color: rgba(255,245,248,0.55); }
.tcg-calc__val { font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; color: var(--cream); }
.tcg-calc__slider { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; background: rgba(255,255,255,0.12); border-radius: 999px; outline: 0; margin: 14px 0 28px; }
.tcg-calc__slider::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 22px; height: 22px; border-radius: 50%; background: var(--pink); cursor: pointer; border: 3px solid #fff; box-shadow: 0 0 0 4px rgba(238,43,145,0.25); }
.tcg-calc__slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%; background: var(--pink); cursor: pointer; border: 3px solid #fff; }
.tcg-calc__result { margin-top: 8px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); text-align: center; }
.tcg-calc__result-num { font-family: var(--display); font-weight: 800; font-size: 64px; letter-spacing: -0.03em; line-height: 1; color: var(--pink); }
.tcg-calc__result-lab { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,245,248,0.55); margin-top: 8px; }

@media (max-width: 900px) {
  .tcg-apply-hero__inner { grid-template-columns: 1fr; padding: 64px 20px; gap: 48px; }
  .tcg-apply-hero__circle { width: 300px; height: 300px; right: -160px; top: -80px; }
  .tcg-calc__result-num { font-size: 48px; }
}

/* ============ APPLY: GETS ============ */
.tcg-gets { padding: 120px 24px; }
.tcg-gets__inner { max-width: var(--maxw); margin: 0 auto; }
.tcg-gets__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcg-get { padding: 36px; border-radius: 24px; background: #fff; border: 1px solid var(--ink-faint); position: relative; }
.tcg-get__num { font-family: var(--display); font-weight: 800; font-size: 14px; letter-spacing: 0.14em; color: var(--pink); margin-bottom: 24px; }
.tcg-get__h { font-family: var(--display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; color: var(--navy); margin: 0 0 10px; }
.tcg-get__p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 24px; }
.tcg-get__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.tcg-get__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--ink); }
.tcg-get__list li::before { content: ""; flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: var(--pink-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EE2B91' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-size: 12px; background-position: center; background-repeat: no-repeat; margin-top: 2px; }
@media (max-width: 900px) { .tcg-gets { padding: 72px 20px; } .tcg-gets__grid { grid-template-columns: 1fr; gap: 14px; } }

/* ============ TESTIMONIAL ============ */
.tcg-testi { padding: 96px 24px; background: var(--navy); color: var(--cream); }
.tcg-testi__inner { max-width: 980px; margin: 0 auto; display: grid; grid-template-columns: 200px 1fr; gap: 48px; align-items: center; }
.tcg-testi__photo { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; background: linear-gradient(135deg, var(--pink), var(--blue)); position: relative; }
.tcg-testi__photo img { width: 100%; height: 100%; object-fit: cover; }
.tcg-testi__photo::after { content: ""; position: absolute; inset: -12px; border: 2px dashed var(--pink); border-radius: 50%; animation: tcg-spin 30s linear infinite; pointer-events: none; }
.tcg-testi__quote { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 28px; line-height: 1.35; letter-spacing: -0.005em; margin: 0 0 20px; }
.tcg-testi__quote::before { content: "\201C"; display: block; font-size: 96px; line-height: .5; color: var(--pink); margin-bottom: 20px; font-family: var(--serif); font-weight: 400; }
.tcg-testi__name { font-family: var(--display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; }
.tcg-testi__meta { font-size: 13px; color: rgba(255,245,248,0.55); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px; }
@media (max-width: 720px) { .tcg-testi__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; } .tcg-testi__photo { margin: 0 auto; width: 140px; height: 140px; } .tcg-testi__quote { font-size: 22px; } }

/* ============ APPLY FORM ============ */
.tcg-form-section { padding: 120px 24px; }
.tcg-form-section__inner { max-width: 760px; margin: 0 auto; }
.tcg-form-section__lead { color: var(--ink-soft); font-size: 18px; font-family: var(--serif); font-style: italic; font-weight: 300; margin: -32px 0 0; }
.tcg-form { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.tcg-field { display: flex; flex-direction: column; gap: 8px; }
.tcg-field__lab { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.01em; }
.tcg-field__hint { font-size: 13px; color: var(--ink-soft); margin-top: -2px; }
.tcg-req { color: var(--pink); margin-left: 2px; }
.tcg-input, .tcg-select { width: 100%; background: #fff; border: 1.5px solid var(--ink-faint); border-radius: 14px; padding: 16px 18px; font-size: 15px; color: var(--ink); transition: border-color .2s, box-shadow .2s; font-family: var(--body); }
.tcg-input:focus, .tcg-select:focus { outline: 0; border-color: var(--pink); box-shadow: 0 0 0 4px var(--pink-soft); }
.tcg-input::placeholder { color: rgba(14,25,44,0.4); }
.tcg-select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230E192C'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 48px; }
.tcg-drop { border: 2px dashed var(--ink-faint); border-radius: 18px; padding: 36px; text-align: center; background: #fff; cursor: pointer; transition: border-color .2s, background .2s; display: block; }
.tcg-drop:hover { border-color: var(--pink); background: var(--pink-soft); }
.tcg-drop__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--pink-soft); color: var(--pink); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.tcg-drop__h { font-weight: 600; color: var(--navy); font-size: 15px; }
.tcg-drop__hint { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.tcg-langs { display: flex; flex-wrap: wrap; gap: 8px; }
.tcg-lang { padding: 10px 16px; border-radius: 999px; border: 1.5px solid var(--ink-faint); background: #fff; font-size: 13px; font-weight: 600; color: var(--ink); cursor: pointer; transition: all .15s; user-select: none; }
.tcg-lang:hover { border-color: var(--ink); }
.tcg-lang input { display: none; }
.tcg-lang.is-on { background: var(--pink); border-color: var(--pink); color: #fff; }
.tcg-consent { display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1.5px solid var(--ink-faint); padding: 18px; border-radius: 14px; cursor: pointer; }
.tcg-consent input { flex-shrink: 0; width: 22px; height: 22px; accent-color: var(--pink); margin-top: 1px; cursor: pointer; }
.tcg-submit { padding: 22px 32px; background: var(--pink); color: #fff; border-radius: 999px; font-weight: 700; font-size: 16px; letter-spacing: 0.02em; display: inline-flex; align-items: center; justify-content: center; gap: 10px; width: 100%; box-shadow: 0 16px 36px -10px rgba(238,43,145,.6); transition: transform .2s, box-shadow .2s; border: 0; cursor: pointer; font-family: var(--body); }
.tcg-submit:hover { transform: translateY(-2px); box-shadow: 0 20px 44px -10px rgba(238,43,145,.75); }
@media (max-width: 900px) { .tcg-form-section { padding: 64px 20px; } }

/* ============ SEO BLOCK (closer) ============ */
.tcg-seo { padding: 80px 24px; background: var(--cream-2); border-top: 1px solid var(--ink-faint); }
.tcg-seo__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.tcg-seo__h { font-family: var(--display); font-weight: 800; font-size: clamp(28px, 3.5vw, 40px); letter-spacing: -0.02em; color: var(--navy); margin: 0 0 18px; line-height: 1.1; }
.tcg-seo__h em { font-style: normal; color: var(--pink); }
.tcg-seo__p { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 18px; line-height: 1.55; color: var(--ink-soft); }
.tcg-seo .tcg-eyebrow { justify-content: center; }
@media (max-width: 720px) { .tcg-seo { padding: 56px 20px; } }

/* ============ DIAMOND TIER ============ */
.tcg-card__badge--diamond {
  background: linear-gradient(135deg, #1F8FD6 0%, #B6E0FF 100%);
  color: #0E192C;
  font-weight: 800;
  box-shadow: 0 4px 14px -4px rgba(31,143,214,0.55);
}
.tcg-card--diamond {
  /* Diamond cards get a subtle blue glow ring on hover so they read as elevated */
  box-shadow: 0 0 0 0 rgba(31,143,214,0);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.tcg-card--diamond:hover {
  box-shadow: 0 30px 56px -16px rgba(31,143,214,0.45), 0 0 0 2px rgba(31,143,214,0.5);
}
.tcg-card--diamond .tcg-card__cta {
  background: linear-gradient(90deg, var(--blue), var(--pink));
}

/* ============ STICKY MOBILE BOTTOM BAR ============ */
.tcg-stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 80;
  display: none; align-items: center; gap: 10px;
  padding: 12px 14px env(safe-area-inset-bottom) 14px;
  background: rgba(14,25,44,0.96);
  backdrop-filter: blur(14px) saturate(140%);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--cream);
}
.tcg-stickybar__count {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.04em;
  white-space: nowrap;
}
.tcg-stickybar__count strong { font-family: var(--display); font-weight: 800; font-size: 14px; color: #fff; }
.tcg-stickybar__count::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); animation: tcg-pulse 1.6s ease-out infinite;
}
.tcg-stickybar__cta {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 16px; border-radius: 999px;
  background: #C71D78; color: #fff; /* darker pink for AA contrast on small text */
  font-family: var(--body); font-weight: 800; font-size: 15px; letter-spacing: 0.02em;
  text-decoration: none; box-shadow: 0 8px 20px -8px rgba(238,43,145,0.7);
}
.tcg-stickybar__cta:hover { filter: brightness(1.05); }
@media (max-width: 900px) {
  .tcg-stickybar { display: flex; }
  body { padding-bottom: 72px; } /* keep last section above the bar */
}

/* ============ ADDLIST CTA (BLUE TELEGRAM TONE) ============ */
.tcg-btn--blue {
  background: var(--blue-ink); color: #fff;
  box-shadow: 0 12px 28px -10px rgba(31,143,214,.55);
}
.tcg-btn--blue:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(31,143,214,.7); }

/* Hero second row addlist CTA polish */
.tcg-hero__addlist {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-size: 13px; color: var(--ink-soft);
  letter-spacing: -0.005em;
}
.tcg-hero__addlist a { color: var(--blue); font-weight: 700; }
.tcg-hero__addlist a:hover { color: var(--pink); }
.tcg-hero__addlist svg { width: 14px; height: 14px; }

/* ============ APPLY HERO — "What you keep" stat panel (replaces calculator) ============ */
.tcg-calc__split { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0 20px; }
.tcg-calc__big { font-family: var(--display); font-weight: 800; font-size: 44px; line-height: 1; letter-spacing: -0.03em; color: var(--cream); }
.tcg-calc__big em { color: var(--pink); font-style: normal; font-size: 0.55em; letter-spacing: 0; margin-left: 2px; }
.tcg-calc__small { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,245,248,0.55); margin-top: 8px; line-height: 1.3; }
.tcg-calc__foot { padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; line-height: 1.55; color: rgba(255,245,248,0.78); }
@media (max-width: 720px) { .tcg-calc__big { font-size: 32px; } }

/* ============ MOBILE DRAWER ============ */
.tcg-drawer { position: fixed; inset: 0; z-index: 90; pointer-events: none; }
.tcg-drawer[aria-hidden="true"] { visibility: hidden; }
.tcg-drawer.is-open { pointer-events: auto; visibility: visible; }
.tcg-drawer__backdrop { position: absolute; inset: 0; background: rgba(14,25,44,0); backdrop-filter: blur(0px); transition: background .3s, backdrop-filter .3s; border: 0; cursor: pointer; }
.tcg-drawer.is-open .tcg-drawer__backdrop { background: rgba(14,25,44,0.6); backdrop-filter: blur(8px); }
.tcg-drawer__panel {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: min(420px, 90vw);
  background: var(--cream);
  display: flex; flex-direction: column;
  padding: 24px 24px env(safe-area-inset-bottom, 24px);
  transform: translateX(110%); transition: transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 0 60px -10px rgba(14,25,44,0.4);
}
.tcg-drawer.is-open .tcg-drawer__panel { transform: translateX(0); }
.tcg-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; padding-top: 8px; }
.tcg-drawer__close { width: 40px; height: 40px; border-radius: 50%; background: transparent; color: var(--navy); border: 1.5px solid var(--ink-faint); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .2s, color .2s; }
.tcg-drawer__close:hover { border-color: var(--pink); color: var(--pink); }
.tcg-drawer__menu { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.tcg-drawer__menu a {
  font-family: var(--display); font-weight: 800; font-size: 28px; letter-spacing: -0.02em;
  color: var(--navy); padding: 14px 0; text-decoration: none;
  border-bottom: 1px solid var(--ink-faint);
  transition: color .15s, padding-left .25s;
}
.tcg-drawer__menu a:hover { color: var(--pink); padding-left: 8px; }
.tcg-drawer__cta {
  margin-top: 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 24px; border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  color: #fff; font-weight: 800; font-size: 16px; letter-spacing: -0.005em;
  text-decoration: none; box-shadow: 0 14px 28px -10px rgba(238,43,145,0.5);
  transition: transform .2s;
}
.tcg-drawer__cta:hover { transform: translateY(-2px); }

/* ============ BACK-TO-TOP ============ */
.tcg-totop {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--cream);
  border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 70;
  box-shadow: 0 12px 28px -10px rgba(14,25,44,0.4);
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s, transform .25s, background .2s;
}
.tcg-totop.is-visible { opacity: 1; transform: translateY(0); }
.tcg-totop:hover { background: var(--pink); }
@media (max-width: 900px) {
  /* sit above the sticky bottom bar */
  .tcg-totop { bottom: calc(84px + env(safe-area-inset-bottom, 0px)); width: 42px; height: 42px; }
}
