/* ============================================================
   alextracks.com — Site styles
   Dark, calm, watch-face premium. 8pt rhythm.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--at-off-black);
  color: var(--fg-2);
  font-family: var(--font-sans);
  /* Slight vignette so the canvas reads as "stage", not flat HTML */
  background:
    radial-gradient(ellipse at 50% -10%, rgba(203,183,157,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 100%, rgba(75,93,110,0.04) 0%, transparent 50%),
    var(--at-off-black);
  min-height: 100vh;
  position: relative;
}

/* ----- Page-level monogram watermark (subtle, behind everything) ----- */
.body-monogram {
  position: fixed;
  bottom: -22vh;
  right: -12vw;
  width: 80vw;
  max-width: 1200px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-6deg);
}
.body-monogram svg,
.body-monogram img { width: 100%; height: auto; display: block; }

/* Body content above the watermark */
.shell, .section, .footer { position: relative; z-index: 1; }

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

/* ----- Layout shell ----- */
.shell {
  max-width: 1480px;
  margin: 0 auto;
  padding: 18px 24px 0;
}

/* ----- Top status bar (mirrors reference 'CASE UI/UX · KRIS ANFALOVA') ----- */
.status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 4px 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: var(--fw-medium);
  color: var(--fg-3);
}
.status-left, .status-right { display: flex; align-items: center; gap: 10px; }
.status-dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--at-sage);
  box-shadow: 0 0 0 3px rgba(92,182,99,0.18);
}
.status .sep { color: var(--fg-4); }
.status-right svg { width: 14px; height: 14px; }

/* ============================================================
   HERO CARD
   ============================================================ */
.hero {
  position: relative;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(203,183,157,0.07) 0%, transparent 60%),
    linear-gradient(180deg, #0E1115 0%, #0A0C0F 100%);
  border: 1px solid var(--border-default);
  overflow: hidden;
  /* Reserve enough room for the watch-face hero composition */
  min-height: 760px;
  isolation: isolate;
}

/* Triangle monogram bleed — large, faint, decorative */
.hero-monogram {
  position: absolute;
  top: -6%;
  right: -8%;
  width: 50%;
  max-width: 720px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.hero-monogram svg,
.hero-monogram img { width: 100%; height: auto; display: block; }

/* Wavy data-line wisps (sage/steel) along bottom — per brand spec */
.hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

/* Vignette gradient at bottom for text/UI legibility */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(11,13,16,0.6) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* ----- Top nav row inside hero card (logo + right cluster only) ----- */
.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 0;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img {
  height: 48px;
  width: auto;
  /* Subtle drop so logo reads cleanly on the dark hero */
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}

/* ----- Floating centered nav pill (fixed across all pages) ----- */
.nav-pill {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  background: rgba(11,13,16,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid var(--border-default);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), inset 0 1px 0 rgba(247,248,250,0.04);
  transition: top var(--duration-base) var(--ease-standard);
}
.nav-pill a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--fg-3);
  border-radius: 999px;
  transition: color var(--duration-base) var(--ease-standard),
              background var(--duration-base) var(--ease-standard);
  white-space: nowrap;
}
.nav-pill a:hover { color: var(--fg-1); background: var(--at-white-04); }
.nav-pill a.active {
  background: var(--at-off-black);
  color: var(--fg-1);
  border: 1px solid var(--border-default);
  padding: 9px 17px;
}

/* ----- 6-cell page indicator (3×2 grid — one cell highlighted = current page) ----- */
.page-dot {
  width: 15px;
  height: 10px;
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5px;
  flex-shrink: 0;
}
.page-dot span {
  background: var(--fg-4);
  border-radius: 1.5px;
  transition: background var(--duration-base) var(--ease-standard),
              box-shadow var(--duration-base) var(--ease-standard);
}
.nav-pill a:not(.active) .page-dot { opacity: 0; width: 0; margin-right: -8px; }
.nav-pill a.active .page-dot span.is-on {
  background: var(--at-sand);
  box-shadow: 0 0 8px rgba(203,183,157,0.6);
}

/* Right-side cluster: socials + lang toggle / CTA */
.nav-right { display: flex; align-items: center; gap: 8px; }
.social-cluster {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: rgba(11,13,16,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.social-cluster a {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  color: var(--fg-3);
  transition: color var(--duration-base) var(--ease-standard),
              background var(--duration-base) var(--ease-standard);
}
.social-cluster a:hover { color: var(--at-sand); background: var(--at-white-04); }
.social-cluster svg { width: 15px; height: 15px; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 4px;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: rgba(11,13,16,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.lang-toggle button {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--fg-3);
  font-size: 12px;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-standard);
}
.lang-toggle button.is-active {
  background: var(--at-sand);
  color: var(--fg-on-sand);
}

/* (app download CTA removed — no app to download yet) */

/* ----- Hero content ----- */
.hero-inner {
  position: relative;
  z-index: 4;
  padding: 110px 32px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 8px;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: rgba(11,13,16,0.5);
  backdrop-filter: blur(8px);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: var(--fw-medium);
  margin-bottom: 28px;
}
.hero-eyebrow .pulse {
  width: 18px; height: 18px;
  border-radius: 999px;
  background: rgba(92,182,99,0.15);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-eyebrow .pulse::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--at-sage);
  box-shadow: 0 0 0 0 rgba(92,182,99,0.6);
  animation: pulse 2.4s var(--ease-standard) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(92,182,99,0.6); }
  60% { box-shadow: 0 0 0 12px rgba(92,182,99,0); }
  100% { box-shadow: 0 0 0 0 rgba(92,182,99,0); }
}

.hero-headline {
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-size: clamp(48px, 8.6vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--fg-1);
  max-width: 14ch;
  margin: 0;
  text-wrap: balance;
}
.hero-headline .accent { color: var(--at-sand); }
.hero-headline .thin { font-weight: var(--fw-light); color: var(--fg-2); }

/* Thai display tracking: a touch wider than Latin display */
.hero-headline[lang="th"] { letter-spacing: -0.02em; line-height: 1.0; }

.hero-subhead {
  margin-top: 24px;
  max-width: 56ch;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-3);
  font-weight: var(--fw-regular);
}

/* ----- Floating dashboard subject ----- */
.hero-stage {
  position: relative;
  margin-top: 64px;
  width: min(820px, 92%);
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-glow {
  position: absolute;
  inset: -10% -8%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(203,183,157,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 70%, rgba(92,182,99,0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 30%, rgba(75,93,110,0.16) 0%, transparent 50%);
  filter: blur(8px);
  z-index: 0;
  pointer-events: none;
}

/* Center: ring score watch face */
.ring-tile {
  position: relative;
  z-index: 3;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(203,183,157,0.12) 0%, transparent 70%),
    linear-gradient(180deg, #15191E 0%, #0E1115 100%);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(203,183,157,0.10),
    inset 0 1px 0 rgba(247,248,250,0.04);
  display: flex; align-items: center; justify-content: center;
  animation: floatA 9s var(--ease-standard) infinite;
}
.ring-tile svg.ring { position: absolute; inset: 24px; width: calc(100% - 48px); height: calc(100% - 48px); }
.ring-tile .ring-content {
  position: relative;
  text-align: center;
}
.ring-tile .ring-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: var(--fw-medium);
}
.ring-tile .ring-value {
  font-size: 84px;
  font-weight: var(--fw-bold);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg-1);
  font-variant-numeric: tabular-nums;
  margin-top: 6px;
}
.ring-tile .ring-sub {
  font-size: 12px;
  color: var(--at-sage);
  font-weight: var(--fw-medium);
  margin-top: 6px;
  display: inline-flex; gap: 6px; align-items: center;
}

/* Floating tiles around the ring */
.float-tile {
  position: absolute;
  z-index: 4;
  background:
    linear-gradient(180deg, rgba(26,29,34,0.95) 0%, rgba(17,20,24,0.95) 100%);
  border: 1px solid var(--border-default);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  min-width: 156px;
}
.float-tile .ft-row { display: flex; align-items: center; gap: 10px; }
.float-tile .ft-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
.float-tile .ft-icon svg { width: 16px; height: 16px; }
.ft-icon.sand  { background: var(--tint-sand);  color: var(--at-sand); }
.ft-icon.sage  { background: var(--tint-sage);  color: var(--at-sage); }
.ft-icon.steel { background: var(--tint-steel); color: var(--at-steel-blue); }

.float-tile .ft-label {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-3); font-weight: var(--fw-medium);
}
.float-tile .ft-value {
  margin-top: 8px;
  font-size: 30px;
  font-weight: var(--fw-bold);
  color: var(--fg-1);
  letter-spacing: -0.025em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.float-tile .ft-value .unit {
  font-size: 13px; color: var(--fg-3); font-weight: var(--fw-regular);
  margin-left: 3px; letter-spacing: 0;
}
.float-tile .ft-delta {
  margin-top: 6px;
  font-size: 11px;
  color: var(--at-sage);
  font-weight: var(--fw-medium);
}
.float-tile .ft-spark { margin-top: 10px; height: 28px; }

/* Tile placement (orbit-ish) */
.tile-tl { top: 8%; left: -2%; animation: floatB 8s var(--ease-standard) infinite; }
.tile-tr { top: 4%; right: -4%; animation: floatC 10s var(--ease-standard) infinite; }
.tile-bl { bottom: 4%; left: 4%; animation: floatA 9s 0.5s var(--ease-standard) infinite; }
.tile-br { bottom: 0%; right: 0%; animation: floatB 11s 1s var(--ease-standard) infinite; }

@keyframes floatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes floatB {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes floatC {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ============================================================
   SECTIONS BELOW HERO
   ============================================================ */
.section {
  padding: 96px 28px;
  position: relative;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto 56px;
}
.section-header-left { max-width: 640px; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--at-sand); font-weight: var(--fw-semibold);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--at-sand);
}
.section-title {
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: var(--fw-bold);
  color: var(--fg-1);
  margin: 0;
  text-wrap: balance;
}
.section-sub {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-3);
  max-width: 56ch;
}
.section-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--fg-2);
  font-size: 13px;
  font-weight: var(--fw-medium);
  padding: 10px 14px;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  white-space: nowrap;
  transition: all var(--duration-base) var(--ease-standard);
}
.section-link:hover { color: var(--at-sand); border-color: rgba(203,183,157,0.4); }
.section-link svg { width: 14px; height: 14px; }

.container { max-width: 1200px; margin: 0 auto; }

/* ============================================================
   TRACKER PREVIEW
   ============================================================ */
.tracker-preview {
  position: relative;
  border: 1px solid var(--border-default);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 60% 50% at 30% 0%, rgba(203,183,157,0.05) 0%, transparent 60%),
    var(--at-charcoal);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  min-height: 560px;
}
.tracker-pitch { padding: 56px 48px; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
.tracker-pitch h3 {
  font-size: 36px; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--fg-1); margin: 0;
}
.tracker-pitch p {
  font-size: 15px; line-height: 1.6; color: var(--fg-3); max-width: 44ch; margin: 16px 0 0;
}
.tracker-features { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.tf {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  background: var(--at-white-04);
  font-size: 13px;
  color: var(--fg-2);
}
.tf svg { width: 16px; height: 16px; color: var(--at-sand); flex-shrink: 0; }

.tracker-frame {
  position: relative;
  background:
    linear-gradient(180deg, rgba(11,13,16,0) 0%, rgba(11,13,16,0.4) 100%),
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(75,93,110,0.10) 0%, transparent 60%);
  border-left: 1px solid var(--border-subtle);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone {
  width: 320px;
  background: var(--at-off-black);
  border: 1px solid var(--border-strong);
  border-radius: 36px;
  padding: 14px;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(247,248,250,0.06);
}
.phone-screen {
  background: var(--at-charcoal);
  border-radius: 24px;
  padding: 18px 16px 22px;
}
.phone-topbar {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--fg-3);
  margin-bottom: 14px;
}
.phone-topbar .name { color: var(--fg-1); font-weight: var(--fw-semibold); font-size: 14px; }
.phone-topbar .date { letter-spacing: 0.04em; }
.phone-hero {
  background: linear-gradient(135deg, rgba(203,183,157,0.10) 0%, rgba(11,13,16,0) 60%);
  border: 1px solid rgba(203,183,157,0.20);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.phone-ring {
  width: 56px; height: 56px; flex-shrink: 0;
  position: relative;
}
.phone-ring .ring-num {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: var(--fw-bold); color: var(--fg-1);
  letter-spacing: -0.02em;
}
.phone-hero-text { font-size: 11px; line-height: 1.4; color: var(--fg-2); }
.phone-hero-text .eyebrow { font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); }
.phone-hero-text .delta { color: var(--at-sage); }

.phone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
.phone-tile {
  background: var(--at-slate);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px 12px;
}
.phone-tile .pt-icon {
  width: 22px; height: 22px; border-radius: 7px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.phone-tile .pt-icon svg { width: 12px; height: 12px; }
.phone-tile .pt-icon.sand { background: var(--tint-sand); color: var(--at-sand); }
.phone-tile .pt-icon.sage { background: var(--tint-sage); color: var(--at-sage); }
.phone-tile .pt-icon.steel { background: var(--tint-steel); color: var(--at-steel-blue); }
.phone-tile .pt-icon.cool { background: rgba(75,93,110,0.18); color: var(--at-steel-blue); }
.phone-tile .pt-label { font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--fg-3); font-weight: 500; }
.phone-tile .pt-value {
  font-size: 18px; font-weight: var(--fw-bold); color: var(--fg-1);
  letter-spacing: -0.02em; margin-top: 2px; font-variant-numeric: tabular-nums;
}
.phone-tile .pt-value .unit { font-size: 9px; color: var(--fg-3); font-weight: 400; margin-left: 2px; }
.phone-tile .pt-sub { font-size: 9px; color: var(--fg-3); margin-top: 2px; }

.phone-chart {
  background: var(--at-slate);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 12px;
}
.phone-chart-header {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.phone-chart-header .h-num { font-size: 18px; font-weight: var(--fw-bold); color: var(--fg-1); letter-spacing: -0.02em; }
.phone-chart-header .h-num .unit { font-size: 9px; color: var(--fg-3); font-weight: 400; }
.phone-chart-header .h-sub { font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); }
.phone-chart-bars {
  display: flex; align-items: flex-end; gap: 4px; height: 44px;
}
.phone-chart-bars .bar {
  flex: 1; background: rgba(203,183,157,0.30);
  border-radius: 3px;
}
.phone-chart-bars .bar.high { background: var(--at-sand); }

/* ============================================================
   COACHING (3 packages)
   ============================================================ */
.coaching-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.coach-card {
  position: relative;
  border: 1px solid var(--border-default);
  border-radius: 20px;
  background: var(--at-charcoal);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-standard),
              border-color var(--duration-base) var(--ease-standard);
}
.coach-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.coach-card.is-featured {
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(203,183,157,0.10) 0%, transparent 70%),
    var(--at-charcoal);
  border-color: rgba(203,183,157,0.30);
}
.coach-card .coach-num {
  position: absolute; top: 24px; right: 28px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-4); font-weight: var(--fw-medium);
  font-variant-numeric: tabular-nums;
}
.coach-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--border-default);
  background: var(--at-white-04);
}
.coach-icon svg { width: 24px; height: 24px; }
.coach-icon.sand svg { color: var(--at-sand); }
.coach-icon.sage svg { color: var(--at-sage); }
.coach-icon.steel svg { color: var(--at-steel-blue); }

.coach-card h4 {
  font-size: 24px; font-weight: var(--fw-semibold); letter-spacing: -0.015em;
  color: var(--fg-1); margin: 0 0 8px; line-height: 1.2;
}
.coach-card .coach-sub {
  font-size: 13px; color: var(--fg-3); margin: 0 0 24px; line-height: 1.5;
}
.coach-card ul {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 10px;
}
.coach-card li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; line-height: 1.5; color: var(--fg-2);
}
.coach-card li svg {
  width: 14px; height: 14px;
  color: var(--at-sage);
  margin-top: 4px; flex-shrink: 0;
}
.coach-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-default);
  background: var(--at-white-04);
  color: var(--fg-1);
  font-size: 13px; font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-standard);
}
.coach-cta:hover { background: var(--at-white-08); }
.coach-card.is-featured .coach-cta {
  background: var(--at-sand);
  color: var(--fg-on-sand);
  border-color: var(--at-sand);
}
.coach-card.is-featured .coach-cta:hover { filter: brightness(1.06); }
.coach-cta svg { width: 14px; height: 14px; }

/* ============================================================
   ARTICLES (categorized)
   ============================================================ */
.articles-toolbar {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.cat-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-default);
  background: var(--at-charcoal);
  color: var(--fg-2);
  font-size: 12px; font-weight: var(--fw-medium);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-standard);
  letter-spacing: 0.02em;
}
.cat-chip:hover { color: var(--at-sand); border-color: rgba(203,183,157,0.4); }
.cat-chip.is-active {
  background: var(--at-sand); color: var(--fg-on-sand); border-color: var(--at-sand);
}
.cat-chip .count {
  font-size: 10px; opacity: 0.7;
  font-variant-numeric: tabular-nums;
}
.cat-chip svg { width: 12px; height: 12px; }

.articles-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
.article-card {
  position: relative;
  border: 1px solid var(--border-default);
  border-radius: 20px;
  background: var(--at-charcoal);
  overflow: hidden;
  transition: transform var(--duration-base) var(--ease-standard),
              border-color var(--duration-base) var(--ease-standard);
  cursor: pointer;
  display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.article-card.is-feature { grid-row: span 2; }

.article-image {
  width: 100%;
  aspect-ratio: 16/10;
  background:
    linear-gradient(180deg, rgba(11,13,16,0) 0%, rgba(11,13,16,0.7) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(203,183,157,0.20) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(92,182,99,0.15) 0%, transparent 60%),
    var(--at-slate);
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}
.article-image .placeholder-tag {
  position: absolute; bottom: 14px; left: 14px;
  font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fg-4); font-weight: var(--fw-medium);
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(11,13,16,0.6);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border-subtle);
}
.article-image .cat-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--at-sand); font-weight: var(--fw-semibold);
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(11,13,16,0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(203,183,157,0.3);
}
.article-card.is-feature .article-image {
  aspect-ratio: 16/9;
  background:
    linear-gradient(180deg, rgba(11,13,16,0) 0%, rgba(11,13,16,0.7) 100%),
    radial-gradient(ellipse at 30% 30%, rgba(203,183,157,0.30) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(75,93,110,0.20) 0%, transparent 50%),
    var(--at-slate);
}

.article-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.article-meta {
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--fg-3);
  display: flex; gap: 10px; margin-bottom: 10px;
}
.article-meta .dot { color: var(--fg-4); }
.article-card h4 {
  font-size: 18px; line-height: 1.3; letter-spacing: -0.015em;
  font-weight: var(--fw-semibold); color: var(--fg-1);
  margin: 0 0 10px; text-wrap: pretty;
}
.article-card.is-feature h4 { font-size: 28px; line-height: 1.15; }
.article-card p { font-size: 13px; color: var(--fg-3); line-height: 1.55; margin: 0; }
.article-readtime {
  margin-top: 16px;
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--fg-4);
  display: inline-flex; align-items: center; gap: 6px;
}
.article-readtime svg { width: 12px; height: 12px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  position: relative;
  border: 1px solid var(--border-default);
  border-radius: 20px;
  background:
    radial-gradient(ellipse 80% 50% at 0% 0%, rgba(203,183,157,0.05) 0%, transparent 60%),
    var(--at-charcoal);
  padding: 28px 28px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform var(--duration-base) var(--ease-standard),
              border-color var(--duration-base) var(--ease-standard);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.t-stat {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
}
.t-stat-value {
  font-size: 44px;
  font-weight: var(--fw-bold);
  letter-spacing: -0.03em;
  color: var(--at-sand);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.t-stat-value .unit {
  font-size: 16px;
  color: var(--fg-3);
  font-weight: var(--fw-regular);
  margin-left: 3px;
  letter-spacing: 0;
}
.t-stat-label {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: var(--fw-medium);
}
.testimonial-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  text-wrap: pretty;
  flex: 1;
  position: relative;
  padding-left: 14px;
}
.testimonial-card blockquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--at-sand);
  opacity: 0.4;
}
.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--at-sand) 0%, #8C7C68 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: var(--fw-bold);
  color: var(--fg-on-sand);
  flex-shrink: 0;
}
.t-name {
  font-size: 14px;
  font-weight: var(--fw-semibold);
  color: var(--fg-1);
}
.t-role {
  font-size: 12px;
  color: var(--fg-3);
  margin-top: 1px;
}

@media (max-width: 980px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  border-radius: 20px;
  border: 1px solid var(--border-default);
  background:
    linear-gradient(180deg, rgba(11,13,16,0) 30%, rgba(11,13,16,0.7) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(203,183,157,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(92,182,99,0.10) 0%, transparent 60%),
    var(--at-charcoal);
  position: relative;
  overflow: hidden;
}
.about-image .ph-label {
  position: absolute; bottom: 20px; left: 20px;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fg-4); font-weight: var(--fw-medium);
}
.about-image .ph-mono {
  position: absolute; top: 20px; right: 20px;
  width: 60px; height: 60px; opacity: 0.4;
}
.about-text h3 {
  font-size: clamp(32px, 3.6vw, 48px); line-height: 1.1; letter-spacing: -0.02em;
  font-weight: var(--fw-bold); color: var(--fg-1); margin: 0 0 20px;
}
.about-text p { font-size: 15px; line-height: 1.7; color: var(--fg-2); margin: 0 0 16px; }
.about-quote {
  margin-top: 32px;
  padding: 24px;
  border-left: 1px solid var(--at-sand);
  font-size: 15px; line-height: 1.6; color: var(--fg-2);
  font-style: italic;
}
.about-author {
  margin-top: 16px;
  display: flex; align-items: center; gap: 12px;
}
.about-avatar {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--at-sand) 0%, #8C7C68 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: var(--fw-bold); color: var(--fg-on-sand);
}
.about-author .name { font-size: 14px; font-weight: var(--fw-semibold); color: var(--fg-1); }
.about-author .role { font-size: 12px; color: var(--fg-3); }

/* ============================================================
   NEWSLETTER + FOOTER
   ============================================================ */
.newsletter {
  border: 1px solid var(--border-default);
  border-radius: 24px;
  background:
    radial-gradient(ellipse 60% 70% at 100% 50%, rgba(203,183,157,0.08) 0%, transparent 60%),
    var(--at-charcoal);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter h3 {
  font-size: clamp(28px, 3.2vw, 40px); line-height: 1.1; letter-spacing: -0.02em;
  color: var(--fg-1); margin: 0;
}
.newsletter p { font-size: 14px; line-height: 1.55; color: var(--fg-3); margin: 14px 0 0; max-width: 44ch; }

.subscribe-form {
  display: flex; gap: 8px;
  background: var(--at-off-black);
  border: 1px solid var(--border-default);
  border-radius: 999px;
  padding: 6px;
}
.subscribe-form input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--fg-1);
  font-family: inherit;
  font-size: 14px;
  padding: 10px 16px;
  outline: none;
}
.subscribe-form input::placeholder { color: var(--fg-4); }
.subscribe-form button {
  appearance: none; border: none;
  background: var(--at-sand);
  color: var(--fg-on-sand);
  font-weight: var(--fw-semibold);
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: filter var(--duration-base) var(--ease-standard);
  white-space: nowrap;
}
.subscribe-form button:hover { filter: brightness(1.06); }
.subscribe-disclaimer { font-size: 11px; color: var(--fg-4); margin-top: 12px; }

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 64px 28px 40px;
  margin-top: 64px;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 48px;
}
.footer-brand img { height: 28px; margin-bottom: 18px; }
.footer-brand p {
  font-size: 13px; line-height: 1.6; color: var(--fg-3); max-width: 36ch; margin: 0 0 24px;
}
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border-default);
  color: var(--fg-3);
  transition: all var(--duration-base) var(--ease-standard);
}
.footer-socials a:hover { color: var(--at-sand); border-color: rgba(203,183,157,0.4); }
.footer-socials svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: var(--fw-semibold);
  color: var(--fg-3); margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 13px; color: var(--fg-2);
  transition: color var(--duration-base) var(--ease-standard);
}
.footer-col a:hover { color: var(--at-sand); }

.footer-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: var(--fg-4);
  letter-spacing: 0.04em;
}

/* ============================================================
   Language toggle — show/hide TH/EN content
   ============================================================ */
[data-lang="en"] .lang-th,
[data-lang="th"] .lang-en {
  display: none !important;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .nav-pill {
    top: auto;
    bottom: 14px;
    padding: 4px;
    gap: 0;
    max-width: calc(100vw - 28px);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .nav-pill::-webkit-scrollbar { display: none; }
  .nav-pill a { padding: 8px 12px; font-size: 12px; }
  .nav { padding: 20px 20px 0; }
  .hero-inner { padding: 80px 20px 60px; }
  .tracker-preview { grid-template-columns: 1fr; }
  .tracker-pitch { padding: 40px 28px; }
  .tracker-frame { padding: 32px; border-left: 0; border-top: 1px solid var(--border-subtle); }
  .coaching-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr 1fr; }
  .article-card.is-feature { grid-row: span 1; grid-column: span 2; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .newsletter { grid-template-columns: 1fr; padding: 40px 32px; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .shell { padding: 10px 12px 0; }
  .status { font-size: 9px; padding: 4px 6px 12px; }
  .hero { border-radius: 18px; min-height: 620px; }
  .hero-inner { padding: 60px 16px 40px; }
  .hero-stage { height: 320px; }
  .ring-tile { width: 220px; height: 220px; }
  .ring-tile .ring-value { font-size: 64px; }
  .float-tile { padding: 10px 12px; min-width: 120px; }
  .float-tile .ft-value { font-size: 22px; }
  .tile-tl { left: -2%; }
  .tile-tr { right: -2%; }
  .section { padding: 64px 16px; }
  .articles-grid { grid-template-columns: 1fr; }
  .article-card.is-feature { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .nav-right .social-cluster { display: none; }
}
