/* tarly.css — extracted verbatim from pages/tarly.php */

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --dark:        #0A0A0A;
  --dark-2:      #0D0D0D;
  --dark-3:      #111111;
  --panel-r:     #070709;
  --amber:       #D97706;
  --amber-hover: #B45309;
  --green:       #22c55e;
  --green-dim:   rgba(34,197,94,.08);
  --green-border:rgba(34,197,94,.2);
  --border:      rgba(255,255,255,.07);
  --border-mid:  rgba(255,255,255,.05);
  --muted:       #555;
  --subtle:      #777;
  --max-w:       1320px;
  --gutter:      2.5rem;
}

/* ─── BASE ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, sans-serif;
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 1.4rem;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-amber {
  background: var(--amber);
  color: #fff;
  padding: .85rem 1.75rem;
  border-radius: 2px;
}
.btn-amber:hover {
  background: var(--amber-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(217,119,6,.28);
}
.btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.65);
  padding: .75rem 1.75rem;
  border-radius: 100px;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}

/* ─── HERO ANIMATION (CSS-only, no JS dependency) ───────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge { animation: heroFadeUp .6s ease both; }
.hero-h1    { animation: heroFadeUp .6s ease .07s both; }
.hero-sub   { animation: heroFadeUp .6s ease .14s both; }
.hero-ctas  { animation: heroFadeUp .6s ease .21s both; }
.hero-proof { animation: heroFadeUp .6s ease .3s  both; }

/* ─── SCROLL-REVEAL (JS-controlled, below-fold only) ─────────── */
.fu { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.fu.vis { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem var(--gutter);
  transition: all .3s ease;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(10,10,10,.7);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  padding: .9rem var(--gutter);
  border-bottom-color: var(--border);
}
.nav-brand {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Sora', sans-serif;
}
.nav-brand-parent { font-weight: 600; font-size: .85rem; color: rgba(255,255,255,.35); }
.nav-brand-sep     { color: rgba(255,255,255,.15); }
.nav-brand-name    { font-weight: 800; font-size: .85rem; letter-spacing: -.02em; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.45);
  padding: .4rem .8rem; border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.05); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-signin {
  font-size: .82rem; font-weight: 600;
  padding: .5rem 1.1rem;
  background: var(--amber); color: #fff;
  border-radius: 2px;
  transition: background .15s;
}
.nav-signin:hover { background: var(--amber-hover); }

/* ═══════════════════════════════════════════════════════════════
   DEMO-ENDED STRIP
═══════════════════════════════════════════════════════════════ */
.demo-strip {
  background: rgba(34,197,94,.07);
  border-bottom: 1px solid rgba(34,197,94,.15);
  padding: 12px var(--gutter);
  text-align: center;
  font-size: .82rem;
  color: #86efac;
  margin-top: 62px;
}
.demo-strip a { color: var(--green); font-weight: 600; margin-left: 10px; text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════════════════════════════════════════════════
   HERO, SPLIT LAYOUT
═══════════════════════════════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
  padding-top: 0;
}

/* ── LEFT PANEL ── */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10vh clamp(2rem,4vw,4rem) 8vh clamp(2rem,7vw,7rem);
  position: relative;
  background: var(--dark);
}
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.07) 30%, rgba(255,255,255,.07) 70%, transparent);
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,.07);
  border: 1px solid rgba(34,197,94,.18);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  color: var(--green);
  margin-bottom: 2rem;
  width: fit-content;
}
.badge-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.25;} }

.hero-h1 {
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  letter-spacing: -.055em;
  line-height: 1.02;
  margin-bottom: 1.5rem;
  color: #fff;
}
.hero-h1 em {
  font-style: normal;
  font-weight: 400;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.7);
}

.hero-sub {
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  color: var(--subtle);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

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

.hero-proof {
  display: flex; align-items: center; gap: 20px;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.05);
}
.proof-item { font-size: .75rem; color: #444; }
.proof-item strong { display: block; font-size: 1.1rem; font-weight: 800; color: rgba(255,255,255,.6); font-family: 'Sora', sans-serif; letter-spacing: -.03em; }
.proof-sep { width: 1px; height: 28px; background: rgba(255,255,255,.07); }

/* ── RIGHT PANEL ── */
.hero-right {
  position: relative;
  background: var(--panel-r);
  overflow: hidden;
}

/* Grid texture */
.hr-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 52px 52px;
}

/* Grid vignette, fade grid at edges */
.hr-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, var(--panel-r) 80%);
}

/* Glows */
.hr-glow-green {
  position: absolute; top: -120px; right: -80px; z-index: 0;
  width: 560px; height: 560px;
  background: radial-gradient(ellipse, rgba(34,197,94,.13) 0%, transparent 65%);
  animation: glowFloat 8s ease-in-out infinite;
}
.hr-glow-amber {
  position: absolute; bottom: -60px; left: -40px; z-index: 0;
  width: 360px; height: 360px;
  background: radial-gradient(ellipse, rgba(217,119,6,.07) 0%, transparent 65%);
  animation: glowFloat 11s ease-in-out infinite reverse;
}
@keyframes glowFloat {
  0%,100% { transform: scale(1) translate(0,0); opacity:1; }
  50%      { transform: scale(1.08) translate(12px,-16px); opacity:.7; }
}

/* Scan line */
.hr-scan {
  position: absolute; left: 0; right: 0; height: 1px; z-index: 3;
  background: linear-gradient(90deg, transparent 0%, rgba(34,197,94,.5) 25%, rgba(34,197,94,.8) 50%, rgba(34,197,94,.5) 75%, transparent 100%);
  animation: scanDown 5s linear infinite;
}
@keyframes scanDown {
  0%   { top: -1px; opacity: 0; }
  4%   { opacity: 1; }
  96%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Dot nodes on grid intersections */
.hr-nodes {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
}
.hr-node {
  position: absolute;
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(34,197,94,.5);
  animation: nodePulse 3s ease-in-out infinite;
}
.hr-node:nth-child(2) { animation-delay: .8s; background: rgba(217,119,6,.5); }
.hr-node:nth-child(3) { animation-delay: 1.6s; }
.hr-node:nth-child(4) { animation-delay: 2.2s; background: rgba(217,119,6,.4); }
.hr-node:nth-child(5) { animation-delay: .4s; }
@keyframes nodePulse {
  0%,100% { transform: scale(1); opacity: .5; box-shadow: 0 0 0 0 rgba(34,197,94,.3); }
  50%     { transform: scale(1.8); opacity: 1; box-shadow: 0 0 0 6px rgba(34,197,94,.0); }
}

/* ── Floating Cards ── */
.fc {
  position: absolute; z-index: 10;
  background: rgba(12,12,18,.88);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04) inset;
}

/* Card 1, Live timer session */
.fc-timer {
  width: 230px;
  top: 22%;
  left: 14%;
  transform: rotate(-2deg);
  animation: fcFloat1 7s ease-in-out infinite;
}
@keyframes fcFloat1 {
  0%,100% { transform: rotate(-2deg) translateY(0); }
  50%     { transform: rotate(-2deg) translateY(-10px); }
}
.fc-timer-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.fc-member { font-family: 'Sora',sans-serif; font-size: .78rem; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.fc-status {
  display: flex; align-items: center; gap: 5px;
  font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--green);
}
.fc-status-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: pulse 1.8s infinite; }
.fc-divider { height: 1px; background: rgba(255,255,255,.06); margin-bottom: 12px; }
.fc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.fc-row:last-child { margin-bottom: 0; }
.fc-label { font-size: .68rem; color: #444; text-transform: uppercase; letter-spacing: .08em; }
.fc-val { font-size: .78rem; color: rgba(255,255,255,.75); font-weight: 500; }
.fc-timer-digits {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: -.03em;
  color: var(--amber);
  font-variant-numeric: tabular-nums;
  margin: 10px 0 6px;
}
.fc-activity-bar { height: 3px; background: rgba(255,255,255,.07); border-radius: 2px; margin-top: 4px; overflow: hidden; }
.fc-activity-fill { height: 100%; border-radius: 2px; background: linear-gradient(90deg, var(--green), rgba(34,197,94,.4)); width: 78%; }

/* Card 2, Team status */
.fc-team {
  width: 200px;
  bottom: 20%;
  right: 10%;
  transform: rotate(1.5deg);
  animation: fcFloat2 9s ease-in-out infinite;
}
@keyframes fcFloat2 {
  0%,100% { transform: rotate(1.5deg) translateY(0); }
  50%     { transform: rotate(1.5deg) translateY(-8px); }
}
.fc-team-title { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: #444; margin-bottom: 10px; }
.fc-member-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.fc-member-row:last-child { margin-bottom: 0; }
.fc-avatar {
  width: 22px; height: 22px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; font-weight: 700; font-family: 'Sora',sans-serif;
  flex-shrink: 0;
}
.fc-avatar.g { background: rgba(34,197,94,.15); color: var(--green); border: 1px solid rgba(34,197,94,.2); }
.fc-avatar.a { background: rgba(217,119,6,.15); color: var(--amber); border: 1px solid rgba(217,119,6,.2); }
.fc-avatar.m { background: rgba(255,255,255,.05); color: rgba(255,255,255,.3); border: 1px solid rgba(255,255,255,.07); }
.fc-mname { font-size: .74rem; font-weight: 500; color: rgba(255,255,255,.75); flex: 1; }
.fc-mtime { font-size: .68rem; color: #444; font-variant-numeric: tabular-nums; }

/* Card 3, Screenshot chip (small, decorative) */
.fc-shot {
  width: 130px;
  top: 60%;
  left: 8%;
  transform: rotate(.8deg);
  padding: 10px 12px;
  animation: fcFloat3 6s ease-in-out infinite;
}
@keyframes fcFloat3 {
  0%,100% { transform: rotate(.8deg) translateY(0); }
  50%     { transform: rotate(.8deg) translateY(-6px); }
}
.fc-shot-row { display: flex; align-items: center; gap: 7px; }
.fc-shot-icon { font-size: .9rem; }
.fc-shot-text { font-size: .68rem; color: rgba(255,255,255,.4); line-height: 1.4; }
.fc-shot-text strong { display: block; color: rgba(255,255,255,.7); font-weight: 600; font-size: .72rem; }

/* ═══════════════════════════════════════════════════════════════
   TICKER, transition bridge from dark hero to light body
═══════════════════════════════════════════════════════════════ */
.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: #EDE8E0;
  padding: 11px 0;
}
.ticker-track {
  display: flex; gap: 0;
  animation: tickerScroll 40s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 28px;
  font-size: .72rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: #aaa;
  padding: 0 28px;
  white-space: nowrap;
}
.ticker-item span { color: var(--amber); font-size: .5rem; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════════════════════════ */
.section { padding: 72px var(--gutter); }
.section-alt { background: var(--dark-2); }

/* ── Light sections (warm cream, below the dark hero) ── */
.section-light { background: #F9F6F1; color: #0A0A0A; }
.section-light-2 { background: #F4F0EA; color: #0A0A0A; }

.section-light .eyebrow,
.section-light-2 .eyebrow { color: #aaa; }

.section-light .section-header h2,
.section-light-2 .section-header h2 { color: #0A0A0A; }

.section-light .section-header p,
.section-light-2 .section-header p { color: #777; }

.section-light .built-text h2,
.section-light-2 .built-text h2 { color: #0A0A0A; }

.section-light .built-text p,
.section-light-2 .built-text p { color: #666; }

.section-light .check-list li,
.section-light-2 .check-list li { color: #666; }

.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); letter-spacing: -.045em; margin-bottom: .9rem; }
.section-header p { color: var(--subtle); font-size: 1rem; max-width: 500px; line-height: 1.8; }

/* Dark feat-grid (unused now but kept for reference) */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  overflow: hidden;
  background: var(--border-mid);
  gap: 1px;
}
.feat-card {
  background: rgba(255,255,255,.018);
  padding: 28px 26px 32px;
  transition: background .25s;
  position: relative;
}
.feat-card:hover { background: rgba(217,119,6,.05); }
.feat-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
}
.feat-num {
  font-family: 'Sora', sans-serif;
  font-size: .6rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: #2a2a2a; margin-bottom: 16px;
}
.feat-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: .92rem; font-weight: 700;
  letter-spacing: -.025em;
  color: rgba(255,255,255,.85);
  margin-bottom: .5rem;
}
.feat-card p { font-size: .82rem; color: #555; line-height: 1.7; }
.feat-accent {
  display: inline-block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--amber);
  margin-bottom: 12px;
  opacity: .6;
}
.feat-card:hover .feat-accent { opacity: 1; background: var(--green); }

/* ── Light feat-grid ── */
.feat-grid-light {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0,0,0,.08);
  gap: 1px;
}
.feat-grid-light .feat-card {
  background: #F9F6F1;
}
.feat-grid-light .feat-card:hover { background: rgba(217,119,6,.04); }
.feat-grid-light .feat-card::before {
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.04), transparent);
}
.feat-grid-light .feat-num { color: #ddd; }
.feat-grid-light .feat-card h3 { color: #0A0A0A; }
.feat-grid-light .feat-card p { color: #777; }

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════ */
.steps-wrap { max-width: var(--max-w); margin: 0 auto; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  overflow: hidden;
}
.step-card {
  padding: 36px 28px 40px;
  border-right: 1px solid rgba(0,0,0,.08);
  background: #F4F0EA;
  position: relative;
}
.step-card:last-child { border-right: none; }
.step-idx {
  font-family: 'Sora', sans-serif;
  font-size: 3rem; font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
  color: rgba(0,0,0,.06);
  margin-bottom: 1rem;
  user-select: none;
}
.step-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: .95rem; font-weight: 700;
  letter-spacing: -.025em;
  color: #0A0A0A;
  margin-bottom: .6rem;
}
.step-card p { font-size: .82rem; color: #777; line-height: 1.7; }
.step-tag {
  display: inline-block;
  font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

/* ═══════════════════════════════════════════════════════════════
   BUILT SECTION
═══════════════════════════════════════════════════════════════ */
.built-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.built-text h2 { font-size: clamp(2rem, 3vw, 2.6rem); margin-bottom: 1.4rem; line-height: 1.08; }
.built-text p { color: var(--subtle); font-size: .9rem; line-height: 1.85; margin-bottom: .9rem; }
.check-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: #555;
}
.check-list li::before {
  content: '';
  width: 14px; height: 14px;
  border: 1px solid rgba(217,119,6,.35);
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
  background: rgba(217,119,6,.06) url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L4 6.5L9 1' stroke='%23D97706' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

/* ── Team activity card (replaces terminal) ── */
.activity-card {
  background: #FFFDF8;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,.07);
}
.ac-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px 12px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  background: #F5F2EC;
}
.ac-title { font-family: 'Sora',sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: -.02em; color: #0A0A0A; }
.ac-live { display: flex; align-items: center; gap: 6px; font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--green); }
.ac-live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

.ac-body { padding: 6px 0; }
.ac-row {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 18px;
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: background .15s;
}
.ac-row:last-child { border-bottom: none; }
.ac-row:hover { background: rgba(0,0,0,.02); }
.ac-avatar {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: .68rem; font-weight: 700;
  flex-shrink: 0;
}
.ac-avatar.g { background: rgba(34,197,94,.1); color: #16a34a; border: 1px solid rgba(34,197,94,.2); }
.ac-avatar.a { background: rgba(217,119,6,.1); color: var(--amber); border: 1px solid rgba(217,119,6,.2); }
.ac-avatar.s { background: rgba(0,0,0,.05); color: #aaa; border: 1px solid rgba(0,0,0,.08); }
.ac-info { flex: 1; min-width: 0; }
.ac-name { font-size: .82rem; font-weight: 600; color: #0A0A0A; margin-bottom: 2px; }
.ac-sub { font-size: .7rem; color: #aaa; }
.ac-right { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.ac-hours { font-family: 'Sora',sans-serif; font-size: .78rem; font-weight: 700; color: #0A0A0A; letter-spacing: -.02em; }
.ac-bar-track { width: 64px; height: 3px; background: rgba(0,0,0,.07); border-radius: 2px; overflow: hidden; }
.ac-bar-fill { height: 100%; border-radius: 2px; background: var(--amber); }
.ac-status-row { display: flex; align-items: center; gap: 4px; font-size: .62rem; color: #aaa; }
.ac-dot { width: 5px; height: 5px; border-radius: 50%; background: #ddd; }
.ac-dot.active { background: var(--green); }

.ac-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 18px;
  border-top: 1px solid rgba(0,0,0,.06);
  background: #F5F2EC;
}
.ac-week-label { font-size: .65rem; color: #aaa; text-transform: uppercase; letter-spacing: .08em; }
.ac-week-bars { display: flex; align-items: flex-end; gap: 4px; height: 22px; }
.ac-day { width: 6px; border-radius: 2px 2px 0 0; background: rgba(217,119,6,.25); transition: background .15s; }
.ac-day:hover { background: var(--amber); }
.ac-day.today { background: var(--amber); }
.ac-total { font-family: 'Sora',sans-serif; font-size: .8rem; font-weight: 700; color: #0A0A0A; letter-spacing: -.02em; }

/* ═══════════════════════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════════════════════ */
.stats-strip {
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: #EDE8E0;
  padding: 40px var(--gutter);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  max-width: var(--max-w); margin: 0 auto;
}
.stat { text-align: center; padding: 0 20px; border-right: 1px solid rgba(0,0,0,.08); }
.stat:last-child { border-right: none; }
.stat-n {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 800; letter-spacing: -.06em;
  color: #0A0A0A; margin-bottom: 4px;
  line-height: 1;
}
.stat-n sup { font-size: .5em; color: var(--amber); vertical-align: top; margin-top: .2em; }
.stat-l { font-size: .75rem; color: #999; }

/* ═══════════════════════════════════════════════════════════════
   CTA, split, white, personal
═══════════════════════════════════════════════════════════════ */
.cta-section {
  padding: 72px var(--gutter);
  background: #F9F6F1;
  border-top: 1px solid rgba(0,0,0,.07);
}
.cta-split {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -.05em;
  color: #0A0A0A;
  margin-bottom: 1.1rem;
  line-height: 1.08;
}
.cta-left p { font-size: .95rem; color: #777; line-height: 1.85; max-width: 420px; margin-bottom: 0; }
.cta-left-note {
  display: flex; align-items: center; gap: 10px;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0,0,0,.07);
  font-size: .78rem; color: #aaa;
}
.cta-left-note strong { color: #777; font-weight: 600; }
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-right .btn-amber { font-size: .95rem; padding: .95rem 1.8rem; width: fit-content; }
.cta-right .btn-ghost { width: fit-content; font-size: .875rem; }
.cta-right-note { font-size: .75rem; color: #bbb; margin-top: 4px; }
.cta-right-note a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
footer {
  border-top: 1px solid var(--border);
  padding: 32px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-brand { font-family: 'Sora',sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.18); }
footer nav { display: flex; gap: 20px; }
footer nav a { font-size: .78rem; color: #333; transition: color .15s; }
footer nav a:hover { color: rgba(255,255,255,.6); }
.footer-copy { font-size: .72rem; color: #2a2a2a; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

/* ── Tablet (≤1024px) ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 110px var(--gutter) 56px; }
  .hero-left::after { display: none; }
  .hero-right { height: 360px; }
  .built-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-split { grid-template-columns: 1fr; gap: 40px; }
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .feat-grid-light { grid-template-columns: repeat(2,1fr); }
  .section { padding: 60px var(--gutter); }
  .cta-section { padding: 60px var(--gutter); }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
  :root { --gutter: 1.25rem; }

  /* Nav */
  .nav-links { display: none; }
  #nav { padding: 1.1rem var(--gutter); }

  /* Hero */
  .hero-left {
    padding: 96px var(--gutter) 48px;
    text-align: center;
    align-items: center;
  }
  .hero-h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-sub { max-width: 100%; font-size: .92rem; }
  .hero-badge { margin-bottom: 1.5rem; }
  .hero-ctas { justify-content: center; }
  .hero-proof {
    justify-content: center;
    gap: 12px;
    padding-top: 1.5rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
  }
  .proof-sep { display: none; }
  .hero-right { height: 260px; }

  /* Floating cards, scale down & reposition on mobile */
  .fc { transform: none !important; animation-duration: 0s !important; }
  .fc-timer { width: 190px; top: 10%; left: 5%; }
  .fc-team  { width: 170px; bottom: 10%; right: 5%; }
  .fc-shot  { width: 115px; top: 55%; left: 5%; }

  /* Sections */
  .section { padding: 52px var(--gutter); }
  .cta-section { padding: 52px var(--gutter); }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.75rem, 6vw, 2.2rem); }

  /* Steps */
  .steps { grid-template-columns: 1fr 1fr; border-radius: 10px; }
  .step-card { padding: 24px 18px 28px; border-right: none; border-bottom: 1px solid rgba(0,0,0,.08); }
  .step-card:last-child, .step-card:nth-child(even) { border-right: none; }
  .step-idx { font-size: 2.2rem; }

  /* Stats strip */
  .stats-strip { padding: 32px var(--gutter); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 0; }
  .stat { border-right: none; border-bottom: 1px solid rgba(0,0,0,.08); padding: 18px 0; }
  .stat:nth-child(odd) { border-right: 1px solid rgba(0,0,0,.08); }
  .stat:last-child, .stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* CTA */
  .cta-left h2 { font-size: clamp(1.75rem, 6vw, 2.2rem); }
  .cta-right .btn-amber, .cta-right .btn-ghost { width: 100%; justify-content: center; }

  /* Footer */
  footer { flex-direction: column; align-items: flex-start; gap: 14px; padding: 28px var(--gutter); }
  footer nav { flex-wrap: wrap; gap: 12px; }
}

/* ── Small mobile (≤560px) ── */
@media (max-width: 560px) {
  :root { --gutter: 1rem; }

  /* Nav */
  .nav-links { display: none; }

  /* Hero */
  .hero-left { padding: 88px var(--gutter) 40px; }
  .hero-h1 { font-size: clamp(1.9rem, 8.5vw, 2.4rem); }
  .hero-sub { font-size: .88rem; }
  .hero-right { height: 220px; }

  /* Hide smaller floating card on tiny screens */
  .fc-shot { display: none; }
  .fc-timer { width: 175px; left: 4%; top: 8%; }
  .fc-team  { width: 160px; right: 4%; bottom: 8%; }

  /* Feat grids */
  .feat-grid, .feat-grid-light { grid-template-columns: 1fr; }

  /* Steps */
  .steps { grid-template-columns: 1fr; }
  .step-card:nth-child(even) { border-right: none; }
  .step-card:nth-child(odd) { border-right: none; }

  /* Built section */
  .built-grid { gap: 32px; }
  .check-list { gap: 8px; }

  /* CTA */
  .cta-left p { font-size: .88rem; }
  .cta-left-note { flex-wrap: wrap; }

  /* Ticker */
  .ticker-item { font-size: .65rem; padding: 0 18px; gap: 16px; }
}
