:root {
  --orange: #f97316;
  --orange-dark: #c9550b;
  --charcoal: #202020;
  --muted: #626262;
  --line: #e8e3dc;
  --cream: #fffaf3;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(32, 32, 32, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  background: rgba(255, 250, 243, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232, 227, 220, 0.8);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 800;
}

.brand-main { color: var(--orange); font-size: 1.05rem; }
.brand-sub { color: var(--charcoal); font-size: 0.78rem; margin-top: 4px; }

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.nav a:hover { color: var(--orange); }

.section-pad { padding: clamp(64px, 10vw, 120px) clamp(20px, 5vw, 72px); }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
  min-height: 82vh;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  max-width: 900px;
  font-size: clamp(3.2rem, 9vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

h1 span, footer span { color: var(--orange); }

h2 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 34px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--muted);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-actions.centered { justify-content: center; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--orange); color: var(--white); box-shadow: 0 12px 30px rgba(249, 115, 22, 0.28); }
.button.primary:hover { background: var(--orange-dark); }
.button.secondary { border: 1px solid var(--line); background: var(--white); }

.hero-card {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card p {
  margin: 0;
  padding: 20px 0;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  border-bottom: 1px solid var(--line);
}

.hero-card p:last-child { border-bottom: 0; }

.section { border-top: 1px solid var(--line); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 6vw, 84px);
}

.section-copy p, .founder-box p, .cta p {
  font-size: 1.08rem;
  color: var(--muted);
}

.cards, .standard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.card, .standard-grid div, .founder-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
}

.card span {
  display: inline-flex;
  margin-top: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff1e8;
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.card.muted { background: transparent; }

.standard-grid p, .card p { color: var(--muted); margin-bottom: 0; }

.founder { background: var(--charcoal); color: var(--white); }
.founder-box { max-width: 960px; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.founder-box p { color: rgba(255,255,255,0.78); }

.cta {
  text-align: center;
  background: var(--white);
}

.cta h2 { margin-left: auto; margin-right: auto; }
.cta p { margin-bottom: 28px; }

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.footer p { margin: 6px 0 0; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-weight: 700; color: var(--muted); }
.footer-links a:hover { color: var(--orange); }

@media (max-width: 800px) {
  .site-header { align-items: flex-start; gap: 18px; }
  .nav { gap: 14px; font-size: 0.86rem; flex-wrap: wrap; justify-content: flex-end; }
  .hero, .split, .cards, .standard-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  h1 { font-size: clamp(3rem, 17vw, 5.2rem); }
  .footer { flex-direction: column; }
}

@media (max-width: 520px) {
  .site-header { position: static; flex-direction: column; }
  .nav { justify-content: flex-start; }
  .button { width: 100%; }
}
