:root {
  --bg: #0C0C10;
  --bg-card: #131318;
  --bg-card-alt: #18181F;
  --fg: #F5F0E8;
  --fg-muted: #8A8799;
  --accent: #E8912D;
  --accent-dim: rgba(232, 145, 45, 0.12);
  --border: rgba(245, 240, 232, 0.07);
  --studio-bg: #0F1018;
  --studio-accent: #5B8AF5;
  --studio-accent-dim: rgba(91, 138, 245, 0.1);
  --labs-bg: #0C1010;
  --labs-accent: #4ADE80;
  --labs-accent-dim: rgba(74, 222, 128, 0.1);
  --cares-bg: #100F0C;
  --cares-accent: #F59E0B;
  --cares-accent-dim: rgba(245, 158, 11, 0.1);
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ───────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(12, 12, 16, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ─── HERO ──────────────────────────────── */
.hero {
  padding: 140px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: end;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
  border-right: 1px solid var(--border);
  padding-right: 80px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 6px;
  line-height: 1.4;
}
.hero-text {
  padding-bottom: 8px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  font-weight: 300;
  font-style: italic;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-rule {
  margin-top: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 60%);
  opacity: 0.3;
}

/* ─── MANIFESTO ─────────────────────────── */
.manifesto {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 780px;
}
.manifesto-text {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.manifesto-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  border: 1px solid var(--border);
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* ─── BRANDS ─────────────────────────────── */
.brands {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}
.brands-header {
  margin-bottom: 60px;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 480px;
  font-weight: 300;
}
.brands-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr;
  gap: 20px;
}
.brand-card {
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}
.brand-card:hover { transform: translateY(-3px); }
.brand-card--studio { background: var(--studio-bg); }
.brand-card--labs { background: var(--labs-bg); }
.brand-card--cares { background: var(--cares-bg); }

.brand-icon {
  margin-bottom: 20px;
}
.brand-card--studio .brand-icon { color: var(--studio-accent); }
.brand-card--labs .brand-icon { color: var(--labs-accent); }
.brand-card--cares .brand-icon { color: var(--cares-accent); }

.brand-domain {
  font-size: 0.72rem;
  color: var(--fg-muted);
  font-family: 'DM Sans', monospace;
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 8px;
}
.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 10px;
}
.brand-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}

.brand-features {
  list-style: none;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.brand-features li {
  font-size: 0.8rem;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
}
.brand-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--fg-muted);
}

.brand-proof {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.proof-item {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

/* ─── VALUES ────────────────────────────── */
.values {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.values-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  margin-top: 50px;
}
.value-item { display: flex; flex-direction: column; }
.value-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.value-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--fg);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.value-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.6;
}

/* ─── VISION ────────────────────────────── */
.vision {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}
.vision-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.vision-blockquote {
  position: relative;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-card);
}
.vision-blockquote::before {
  content: '\201C';
  font-family: 'Syne', sans-serif;
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 30px;
  line-height: 1;
}
.vision-blockquote p {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--fg);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 20px;
}
.vision-blockquote cite {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: normal;
}
.vision-heading {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}
.vision-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}

/* ─── FOOTER ────────────────────────────── */
.footer {
  padding: 60px 40px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-link {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.5;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ─── BATTLECARD ─────────────────────────── */
.battlecard {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.battlecard-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.battlecard-header {
  margin-bottom: 50px;
}
.battlecard-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 10px;
}
.battlecard-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  font-weight: 300;
  font-style: italic;
}
.battlecard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Benefits */
.battlecard-benefits-label {
  font-size: 0.72rem;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.battlecard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.battlecard-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.battlecard-list-icon {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.battlecard-list li strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 2px;
}
.battlecard-list li span {
  font-size: 0.83rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* Cost Comparison */
.battlecard-cost-label {
  font-size: 0.72rem;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cost-before,
.cost-after {
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
}
.cost-before {
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.cost-after {
  border: 1px solid rgba(232, 145, 45, 0.3);
  background: var(--accent-dim);
}
.cost-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.cost-badge--before {
  background: rgba(245, 240, 232, 0.06);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.cost-badge--after {
  background: var(--accent);
  color: #0C0C10;
}
.cost-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cost-tool {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
}
.cost-price {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.cost-price--old { color: var(--fg-muted); text-decoration: line-through; opacity: 0.6; }
.cost-price--old span { font-size: 0.75rem; font-weight: 400; }
.cost-price--new { color: var(--accent); }
.cost-price--new span { font-size: 0.75rem; font-weight: 400; }
.cost-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.cost-total span { font-size: 0.82rem; color: var(--fg-muted); font-weight: 400; }
.cost-total strong { font-family: 'Syne', sans-serif; font-size: 1.2rem; letter-spacing: -0.02em; }
.cost-total--old strong { color: var(--fg-muted); }
.cost-total--new strong { color: var(--accent); }
.cost-total--new { border-top-color: rgba(232, 145, 45, 0.3); }
.cost-context {
  font-size: 0.72rem;
  color: var(--fg-muted);
  opacity: 0.6;
  margin-top: 8px;
  text-align: center;
}
.cost-context--new { opacity: 0.8; color: var(--accent); }
.cost-vs {
  text-align: center;
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 300;
  padding: 4px 0;
  position: relative;
}
.cost-vs::before,
.cost-vs::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.cost-vs::before { display: block; }
.cost-vs span {
  position: relative;
  background: var(--bg);
  padding: 0 12px;
}

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-stats { border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 40px; flex-direction: row; gap: 30px; }
  .brands-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .vision-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; }
}
@media (max-width: 600px) {
  .hero { padding: 110px 20px 60px; }
  .manifesto { padding: 60px 20px; }
  .brands { padding: 60px 20px; }
  .values { padding: 60px 20px; }
  .vision { padding: 60px 20px; }
  .footer { padding: 40px 20px; }
  .hero-stats { flex-direction: column; gap: 24px; }
}