:root {
  --bg: #0a0a0d;
  --bg-card: #13131a;
  --bg-card-elevated: #18181f;
  --border: #25252e;
  --border-bright: #3a3a46;
  --text: #f4f4ec;
  --text-muted: #8d8d96;
  --text-subtle: #5a5a64;
  --accent: #f97316;
  --accent-bright: #fb923c;
  --accent-dim: #b85a14;
  --amber: #fbbf24;
  --green: #22c55e;
  --red: #ef4444;
  --blue: #38bdf8;
  --grid-line: rgba(249, 115, 22, 0.06);
  --grid-line-strong: rgba(249, 115, 22, 0.18);
  --max: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grid background overlay */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse at top, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at top, black 0%, transparent 80%);
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.mono { font-family: 'JetBrains Mono', monospace; font-size: 0.85em; letter-spacing: 0.02em; }

/* Layout */
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

/* Navigation */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 13, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.brand:hover {
  color: var(--accent);
}
.brand-mark {
  width: 28px; height: 28px;
  background: var(--accent);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: '';
  position: absolute;
  inset: 6px;
  border: 2px solid var(--bg);
  border-radius: 1px;
  border-right: none;
  border-bottom: none;
}
.brand-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.1);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  margin-left: 4px;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #0a0a0d !important;
  padding: 9px 18px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--accent-bright); transform: translateY(-1px); }

@media (max-width: 768px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* Hero */
.hero { padding: 100px 0 80px; position: relative; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.25);
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.hero-tag .dot { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  margin-bottom: 28px;
  max-width: 1100px;
}
.hero h1 .accent { color: var(--accent); font-style: italic; font-family: 'Bricolage Grotesque', serif; font-weight: 600; }
.hero h1 .strike-line { position: relative; display: inline-block; }

.hero-sub {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-muted);
  max-width: 780px;
  line-height: 1.55;
  margin-bottom: 48px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (max-width: 768px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
.stat {
  padding: 28px 0;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat:last-child { border-right: none; }
@media (max-width: 768px) {
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat-num .unit { font-size: 0.55em; color: var(--accent); font-weight: 600; }
.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-subtle);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
}
.stat-detail {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Section base */
section { padding: 100px 0; position: relative; }
.section-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 24px; height: 1px; background: var(--accent);
}
.section-title {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
  max-width: 900px;
}
.section-title .em { color: var(--accent); }
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 760px;
  line-height: 1.6;
  margin-bottom: 64px;
}

/* Project at a glance card */
.glance {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 36px 40px;
  margin-top: 48px;
  border-radius: 4px;
  position: relative;
}
.glance-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.glance-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.5;
  font-weight: 500;
  color: var(--text);
}
.glance-text em { color: var(--accent); font-style: italic; }

/* Problem section */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s;
}
.problem-card:hover { border-color: var(--border-bright); transform: translateY(-2px); }
.problem-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-subtle);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.problem-icon {
  width: 44px; height: 44px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}
.problem-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text);
}
.problem-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* Solution / pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 36px 32px;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-elevated) 100%);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: 4px;
  position: relative;
}
.pillar-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}
.pillar h3 {
  font-size: 20px;
  margin-bottom: 14px;
  margin-top: 8px;
}
.pillar h3 .colon { color: var(--accent); }
.pillar p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

.principle {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  padding: 40px 48px;
  border-radius: 4px;
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}
.principle::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
}
.principle-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.principle-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  font-style: italic;
}
.principle-text strong { font-style: normal; color: var(--accent); font-weight: 700; }

/* Architecture diagram */
.arch-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.arch-diagram {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 48px 32px;
  margin-bottom: 40px;
  overflow-x: auto;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; } }
.tier {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  position: relative;
}
.tier-confirmed { border-left: 3px solid var(--green); }
.tier-verified { border-left: 3px solid var(--amber); }
.tier-unverified { border-left: 3px solid var(--text-subtle); }

.tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 14px;
}
.tier-confirmed .tier-badge { background: rgba(34, 197, 94, 0.1); color: var(--green); }
.tier-verified .tier-badge { background: rgba(251, 191, 36, 0.1); color: var(--amber); }
.tier-unverified .tier-badge { background: rgba(141, 141, 150, 0.1); color: var(--text-muted); }

.tier h4 { font-size: 18px; margin-bottom: 10px; color: var(--text); }
.tier p { font-size: 14px; color: var(--text-muted); line-height: 1.55; }
.tier .ex { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-subtle); margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--border-bright); }

/* Flywheel section */
.flywheel-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .flywheel-grid { grid-template-columns: 1fr; } }
.flywheel-text h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 20px; }
.flywheel-text p { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }

/* Roadmap */
.roadmap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  position: relative;
}
@media (max-width: 1024px) { .roadmap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .roadmap { grid-template-columns: 1fr; } }
.phase {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s;
}
.phase:hover { border-color: var(--accent-dim); transform: translateY(-3px); }
.phase-marker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.phase-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--accent);
  background: rgba(249, 115, 22, 0.1);
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.phase-time { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--text-subtle); letter-spacing: 0.05em; }
.phase h4 { font-size: 18px; margin-bottom: 14px; color: var(--text); }
.phase ul { list-style: none; }
.phase ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0 6px 16px;
  position: relative;
  line-height: 1.5;
}
.phase ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 1px;
  background: var(--accent);
}

/* Tech stack */
.stack-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-card) 100%); }

.stack-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .stack-cols { grid-template-columns: 1fr; } }

.stack-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px;
}
.stack-block-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.stack-block-title h3 { font-size: 22px; }
.stack-icon {
  width: 40px; height: 40px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
}
.stack-icon-aws { background: rgba(255, 153, 0, 0.12); color: #ff9900; border: 1px solid rgba(255, 153, 0, 0.3); }
.stack-icon-nv  { background: rgba(118, 185, 0, 0.12); color: #76b900; border: 1px solid rgba(118, 185, 0, 0.3); }
.stack-icon-llm { background: rgba(56, 189, 248, 0.12); color: var(--blue); border: 1px solid rgba(56, 189, 248, 0.3); }
.stack-icon-data { background: rgba(249, 115, 22, 0.12); color: var(--accent); border: 1px solid rgba(249, 115, 22, 0.3); }

.stack-list { list-style: none; }
.stack-list li {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.stack-list li:last-child { border-bottom: none; }
.stack-list .key {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text);
  font-weight: 500;
}
.stack-list .val { color: var(--text-muted); line-height: 1.55; }
@media (max-width: 600px) {
  .stack-list li { grid-template-columns: 1fr; gap: 4px; }
}

/* Why this program */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }
.why {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 4px;
}
.why-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.why h4 { font-size: 17px; margin-bottom: 10px; }
.why p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Compute table */
.compute-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 32px;
}
.compute-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.6fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  font-size: 14px;
  gap: 16px;
}
.compute-row:last-child { border-bottom: none; }
.compute-row.head {
  background: var(--bg-card-elevated);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-subtle);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.compute-row .workload { font-weight: 600; color: var(--text); }
.compute-row .phase-cell { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--accent); }
.compute-row .infra { color: var(--text-muted); }
.compute-row .scale { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--text-muted); }
@media (max-width: 800px) {
  .compute-row { grid-template-columns: 1fr; gap: 4px; }
  .compute-row.head { display: none; }
  .compute-row .workload::before { content: 'Workload: '; color: var(--text-subtle); font-weight: 400; font-family: 'JetBrains Mono', monospace; font-size: 11px; }
  .compute-row .phase-cell::before { content: 'Phase: '; color: var(--text-subtle); }
  .compute-row .infra::before { content: 'Infrastructure: '; color: var(--text-subtle); font-family: 'JetBrains Mono', monospace; font-size: 11px; }
  .compute-row .scale::before { content: 'Scale: '; color: var(--text-subtle); }
}

/* Existing platform proof */
.proof-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .proof-grid { grid-template-columns: 1fr; } }
.proof-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.proof-stat {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 4px;
}
.proof-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.proof-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--text-subtle);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.proof-stat-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.about-section {
  background: var(--bg);
}
.about-card {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.about-details {
  display: grid;
  gap: 14px;
  font-size: 16px;
  margin-bottom: 24px;
}
.about-card p {
  margin-top: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Contact */
.contact-section {
  text-align: center;
  padding: 120px 0;
  border-top: 1px solid var(--border);
}
.contact-section h2 {
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.contact-section h2 .em { color: var(--accent); font-style: italic; }
.contact-section p { color: var(--text-muted); font-size: 18px; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.contact-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  font-family: 'Manrope', sans-serif;
}
.btn-primary { background: var(--accent); color: #0a0a0d; }
.btn-primary:hover { background: var(--accent-bright); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-bright);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.contact-page-wrap {
  display: grid;
  gap: 26px;
}
.contact-form {
  background: linear-gradient(180deg, var(--bg-card-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-bright);
  border-radius: 12px;
  padding: 36px;
  display: grid;
  gap: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 700px) {
  .contact-form {
    padding: 24px;
  }
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.contact-field {
  display: grid;
  gap: 9px;
}
.contact-field label {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid var(--border-bright);
  background: #0f1016;
  color: var(--text);
  border-radius: 8px;
  padding: 13px 15px;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--text-subtle);
}
.contact-field textarea {
  min-height: 280px;
  line-height: 1.65;
  resize: vertical;
}
.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.16);
}
.contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
}
.contact-actions .btn {
  min-width: 190px;
}
@media (max-width: 700px) {
  .contact-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
.contact-feedback {
  min-height: 24px;
  font-size: 14px;
  color: var(--text-muted);
}
.contact-feedback.is-success {
  color: var(--green);
}
.contact-feedback.is-error {
  color: var(--red);
}
.contact-company-card {
  background: linear-gradient(180deg, var(--bg-card) 0%, #101119 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  display: grid;
  gap: 12px;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: var(--text-subtle);
}
.footer-inner a { color: var(--text-muted); text-decoration: none; }
.footer-inner a:hover { color: var(--accent); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease-out, transform 0.7s ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Helper utility */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }