/* NovaFound — monochrome, bold, confident */
:root {
  --bg: #f5f2ec;
  --ink: #0e0e0c;
  --mid: #8a857c;
  --hair: #0e0e0c22;
  --accent: #0e0e0c; /* monochrome by default */
  --accent-ink: #f5f2ec;
  --display: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

[data-theme="dark"] {
  --bg: #0b0b09;
  --ink: #f2efe8;
  --mid: #8a857c;
  --hair: #f2efe822;
  --accent: #f2efe8;
  --accent-ink: #0b0b09;
}

[data-vibe="minimal"] {
  --display: 'Inter Tight', sans-serif;
}
[data-vibe="editorial"] {
  --sans: 'Fraunces', serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

::selection { background: var(--ink); color: var(--bg); }

a { color: inherit; text-decoration: none; }

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 720px) {
  .container { padding: 0 24px; }
}

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(12px);
  background: color-mix(in oklab, var(--bg) 70%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.nav.scrolled { border-color: var(--hair); }

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.wordmark-mark {
  width: 22px; height: 22px;
  background: var(--ink);
  transform: rotate(45deg);
  position: relative;
}
.wordmark-mark::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--bg);
  transform: rotate(0deg);
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a { opacity: 0.7; transition: opacity 0.2s; cursor: pointer; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }

.nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { transform: translateY(-1px); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  transition: background 0.2s, border-color 0.2s;
}
.nav-phone:hover {
  background: color-mix(in oklab, var(--ink) 4%, transparent);
  border-color: var(--ink);
}
.nav-phone-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2cb67d;
  box-shadow: 0 0 0 3px color-mix(in oklab, #2cb67d 30%, transparent);
}

@media (max-width: 820px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-phone { padding: 7px 11px; font-size: 12px; }
}

@media (max-width: 480px) {
  .nav-right { gap: 8px; }
  .nav-phone { padding: 6px 10px; font-size: 11.5px; }
  .nav-cta { padding: 8px 12px; font-size: 12px; }
}

/* ---------- HERO ---------- */
.hero {
  padding: 180px 0 120px;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 32px;
}
.eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 10vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 48px;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--mid);
}

.hero-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  max-width: 52ch;
  margin-bottom: 48px;
  color: color-mix(in oklab, var(--ink) 80%, transparent);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--hair);
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  transition: background 0.2s;
}
.btn-ghost:hover { background: color-mix(in oklab, var(--ink) 6%, transparent); }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 48px;
  border-top: 1px solid var(--hair);
}
.hero-meta-item .num {
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.hero-meta-item .lbl {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid);
  max-width: 22ch;
  line-height: 1.4;
}
@media (max-width: 720px) {
  .hero-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero-meta-item .num { font-size: 36px; }
}

/* ---------- SECTIONS ---------- */
section {
  padding: 140px 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  margin-bottom: 80px;
  align-items: start;
}
.section-num {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  padding-top: 12px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 400;
  max-width: 18ch;
}
.section-title em { font-style: italic; color: var(--mid); }

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
}

/* ---------- INCLUDED (What's included) ---------- */
.included {
  border-top: 1px solid var(--hair);
}

.included-grid {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
}
.included-items { display: flex; flex-direction: column; }

.inc-item {
  display: grid;
  grid-template-columns: 60px 1fr 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--hair);
  align-items: start;
  position: relative;
}
.inc-item:last-child { border-bottom: 1px solid var(--hair); }

.inc-item .rank {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.1em;
  padding-top: 8px;
}
.inc-item .name {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
}
.inc-item .name small {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 12px;
  font-weight: 500;
}
.inc-item .desc {
  font-size: 17px;
  line-height: 1.5;
  color: color-mix(in oklab, var(--ink) 85%, transparent);
  max-width: 44ch;
}
.inc-item .desc ul {
  list-style: none;
  margin-top: 16px;
}
.inc-item .desc li {
  padding: 8px 0;
  border-bottom: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.inc-item .desc li span:last-child { color: var(--mid); }

@media (max-width: 900px) {
  .inc-item { grid-template-columns: 1fr; gap: 20px; }
  .included-grid { grid-template-columns: 1fr; }
}

/* ---------- PROCESS (7-day timeline) ---------- */
.process {
  border-top: 1px solid var(--hair);
  background: var(--ink);
  color: var(--bg);
}
.process .section-num,
.process .inc-item .rank { color: color-mix(in oklab, var(--bg) 60%, transparent); }
.process .section-title em { color: color-mix(in oklab, var(--bg) 50%, transparent); }

.timeline {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: color-mix(in oklab, var(--bg) 15%, transparent);
  border: 1px solid color-mix(in oklab, var(--bg) 15%, transparent);
}
.day {
  background: var(--ink);
  padding: 32px 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.day .d-num {
  font-family: var(--display);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.day .d-label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: color-mix(in oklab, var(--bg) 60%, transparent);
  margin-top: 8px;
}
.day .d-task {
  font-size: 14px;
  line-height: 1.4;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .day { min-height: 180px; }
}
@media (max-width: 500px) {
  .timeline { grid-template-columns: 1fr; }
}

/* ---------- CASE STUDY 001 ---------- */
.case-study {
  border-top: 1px solid color-mix(in oklab, var(--bg) 15%, transparent);
  background: var(--ink);
  color: var(--bg);
}
.case-study .section-num { color: color-mix(in oklab, var(--bg) 60%, transparent); }
.case-study .section-title em { color: color-mix(in oklab, var(--bg) 50%, transparent); }

.case-lede {
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--bg) 72%, transparent);
  margin: -40px 0 48px 160px;
}

.case-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background: #0b1210;
  box-shadow: 0 40px 120px rgba(0,0,0,.45), 0 10px 30px rgba(0,0,0,.3);
  border: 1px solid color-mix(in oklab, var(--bg) 14%, transparent);
}
.case-video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #0b1210;
}

.case-meta {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.case-chip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bg) 75%, transparent);
  border: 1px solid color-mix(in oklab, var(--bg) 22%, transparent);
  padding: 8px 14px;
  border-radius: 999px;
}

@media (max-width: 900px) {
  .case-lede { margin-left: 0; margin-top: 0; font-size: 16px; }
}

/* ---------- PRICING ---------- */
.pricing {
  border-top: 1px solid var(--hair);
}

.tier-row {
  display: grid;
  grid-template-columns: 120px repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hair);
}
.tier-row:last-child { border-bottom: 1px solid var(--hair); }

.tier-cell {
  padding: 24px 20px;
  border-left: 1px solid var(--hair);
  font-size: 14px;
  display: flex;
  align-items: center;
}
.tier-cell:first-child {
  border-left: none;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
}

.tier-header .tier-cell {
  padding: 40px 20px;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}
.tier-header .tier-name {
  font-family: var(--display);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.03em;
}
.tier-header .tier-price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--mid);
}
.tier-header .tier-price strong {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}
.tier-header .tier-tag {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  color: var(--mid);
}
.tier-header .tier-tag.popular {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.check { display: inline-block; width: 14px; height: 14px; border-radius: 50%; background: var(--ink); position: relative; flex-shrink: 0; }
.check::after {
  content: '';
  position: absolute;
  inset: 3px 3px 3px 3px;
  background: var(--bg);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 20%, 86% 6%, 40% 72%);
}
.dash { color: var(--mid); }

@media (max-width: 900px) {
  .tier-row { grid-template-columns: 1fr; }
  .tier-cell { border-left: none; border-bottom: 1px solid var(--hair); }
  .tier-cell:first-child { padding-top: 16px; padding-bottom: 4px; }
}

/* ---------- PROBLEM ---------- */
.problem {
  border-top: 1px solid var(--hair);
}
.problem-stat {
  font-family: var(--display);
  font-size: clamp(60px, 12vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.problem-stat em { font-style: italic; color: var(--mid); display: block; font-size: 0.4em; line-height: 1.2; margin-top: 16px; font-family: var(--sans); letter-spacing: -0.01em; font-weight: 400; }
.problem-body {
  max-width: 60ch;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
}
.problem-body em { font-style: italic; color: var(--mid); }

/* ---------- WHAT'S IN EVERY SITE ---------- */
.cases { border-top: 1px solid var(--hair); }

.whats-in-intro {
  max-width: 60ch;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: color-mix(in oklab, var(--ink) 80%, transparent);
  margin-bottom: 64px;
}

.whats-in-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.whats-col {
  background: var(--bg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.whats-col-title {
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--hair);
}
.whats-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.whats-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.4;
}
.chk {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
}
.chk::after {
  content: '';
  position: absolute;
  inset: 3px 3px 3px 3px;
  background: var(--bg);
  clip-path: polygon(14% 44%, 0 60%, 40% 100%, 100% 20%, 86% 6%, 40% 72%);
}
@media (max-width: 900px) {
  .whats-in-grid { grid-template-columns: 1fr; }
}

/* ---------- MID-PAGE CTA ---------- */
.mid-cta {
  border-top: 1px solid var(--hair);
  padding: 80px 0;
  background: var(--bg);
}
.mid-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 40px;
  border: 1px solid var(--ink);
  border-radius: 24px;
  background: color-mix(in oklab, var(--ink) 3%, var(--bg));
}
.mid-cta-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 12px;
}
.mid-cta-headline {
  font-family: var(--display);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 24ch;
}
.mid-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.mid-cta-actions .btn-primary,
.mid-cta-actions .btn-ghost {
  padding: 14px 22px;
  font-size: 14px;
}
@media (max-width: 800px) {
  .mid-cta-inner { grid-template-columns: 1fr; padding: 32px 24px; }
}

/* ---------- CASE STUDIES (legacy, unused) ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hair);
  border: 1px solid var(--hair);
}
.case {
  background: var(--bg);
  padding: 48px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  cursor: pointer;
  transition: background 0.3s;
}
.case:hover { background: color-mix(in oklab, var(--ink) 4%, var(--bg)); }
.case-industry {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
}
.case-headline {
  font-family: var(--display);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 24px 0;
}
.case-headline em { font-style: italic; color: var(--mid); }
.case-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--hair);
}
.case-stat .num {
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
}
.case-stat .lbl {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid);
  margin-top: 6px;
}

@media (max-width: 800px) {
  .case-grid { grid-template-columns: 1fr; }
  .case { padding: 32px; min-height: 280px; }
}

/* ---------- INDUSTRIES ---------- */
.industries { border-top: 1px solid var(--hair); overflow: hidden; }
.ticker {
  display: flex;
  gap: 0;
  animation: ticker 40s linear infinite;
  white-space: nowrap;
  padding: 20px 0;
}
.ticker-row:hover .ticker { animation-play-state: paused; }
.ticker span {
  font-family: var(--display);
  font-size: clamp(60px, 10vw, 140px);
  line-height: 1;
  letter-spacing: -0.03em;
  padding: 0 40px;
  flex-shrink: 0;
}
.ticker span:nth-child(even) { font-style: italic; color: var(--mid); }
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--hair); }
.faq-list { max-width: 900px; margin-left: auto; }
.faq-item {
  border-top: 1px solid var(--hair);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item:last-child { border-bottom: 1px solid var(--hair); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
  font-size: 16px;
  line-height: 1;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--ink); color: var(--bg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 16px;
  line-height: 1.5;
  color: color-mix(in oklab, var(--ink) 80%, transparent);
  max-width: 60ch;
}
.faq-item.open .faq-a { max-height: 300px; padding-top: 16px; }

/* ---------- CTA ---------- */
.cta-section {
  border-top: 1px solid var(--hair);
  background: var(--ink);
  color: var(--bg);
  padding: 160px 0;
  text-align: left;
}
.cta-section h2 {
  font-family: var(--display);
  font-size: clamp(60px, 10vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: 48px;
  font-weight: 400;
  max-width: 14ch;
}
.cta-section h2 em { font-style: italic; color: color-mix(in oklab, var(--bg) 50%, transparent); }

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cta-form input {
  flex: 1;
  min-width: 200px;
  background: transparent;
  border: 1px solid color-mix(in oklab, var(--bg) 30%, transparent);
  color: var(--bg);
  padding: 18px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.cta-form input:focus { border-color: var(--bg); }
.cta-form input::placeholder { color: color-mix(in oklab, var(--bg) 50%, transparent); }
.cta-form button {
  background: var(--bg);
  color: var(--ink);
  padding: 18px 28px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s;
}
.cta-form button:hover { transform: translateY(-2px); }

/* ---------- FOOTER ---------- */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--hair);
  background: var(--bg);
  color: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}
.footer-grid h4 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-grid a { font-size: 14px; opacity: 0.8; transition: opacity 0.2s; }
.footer-grid a:hover { opacity: 1; }

.footer-tag {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-top: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 2fr repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- BIG STATEMENT ---------- */
.big-word {
  padding: 80px 32px 80px;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.big-word .word {
  font-family: var(--display);
  font-size: clamp(44px, 8.5vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-align: center;
  font-weight: 400;
  max-width: 18ch;
  margin: 0 auto;
  text-wrap: balance;
}
.big-word .word em { font-style: italic; color: var(--mid); }

/* ---------- SCROLL REVEALS ---------- */
@supports (animation-timeline: view()) {
  .reveal {
    animation: reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  @keyframes reveal {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ---------- TWEAKS PANEL ---------- */
.tweaks-panel {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--bg);
  border: 1px solid var(--ink);
  border-radius: 16px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  font-size: 13px;
  display: none;
  max-height: 80vh;
  overflow-y: auto;
}
.tweaks-panel.open { display: block; }
.tweaks-panel h3 {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--mid);
}
.tweak-group { margin-bottom: 20px; }
.tweak-group label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mid);
  margin-bottom: 8px;
}
.tweak-seg {
  display: flex;
  border: 1px solid var(--hair);
  border-radius: 8px;
  overflow: hidden;
}
.tweak-seg button {
  flex: 1;
  padding: 8px 6px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 11px;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s;
}
.tweak-seg button:hover { background: color-mix(in oklab, var(--ink) 6%, transparent); }
.tweak-seg button.active { background: var(--ink); color: var(--bg); }
.tweak-checks { display: flex; flex-direction: column; gap: 6px; }
.tweak-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
  cursor: pointer;
}
.tweak-swatches { display: flex; gap: 6px; }
.tweak-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--hair);
  cursor: pointer;
  padding: 0;
}
.tweak-swatch.active { border-color: var(--ink); transform: scale(1.1); }
