@charset "utf-8";
:root {
  --bg: #0f1417;
  --bg-soft: #151d22;
  --panel: #f3efe7;
  --panel-soft: #e7dfd1;
  --text: #f7f3ea;
  --text-dark: #1a1f22;
  --muted: #aeb8b8;
  --muted-dark: #52605f;
  --line: rgba(247, 243, 234, 0.14);
  --line-dark: rgba(26, 31, 34, 0.15);
  --accent: #d28c36;
  --accent-dark: #9c5b18;
  --blueprint: #243640;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --max: 1180px;
  --font: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    radial-gradient(circle at 20% 10%, rgba(210,140,54,0.18), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(83,120,130,0.22), transparent 35%),
    var(--bg);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 22px;
  backdrop-filter: blur(14px);
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: 0.02em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--text-dark);
  background: var(--accent);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(210, 140, 54, 0.28);
}
.brand-text { font-size: 18px; }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}
.site-nav a:hover { background: rgba(255,255,255,0.07); color: var(--text); }
.site-nav .nav-cta { color: var(--text-dark); background: var(--panel); font-weight: 700; }
.site-nav .nav-cta:hover { background: var(--accent); color: var(--text-dark); }
.nav-toggle, .nav-toggle-label { display: none; }

.hero { max-width: var(--max); margin: 26px auto 0; padding: 28px 22px 52px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}
.hero-copy {
  min-height: 620px;
  padding: clamp(30px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, rgba(247,243,234,0.08), rgba(247,243,234,0.02)),
    linear-gradient(160deg, rgba(36,54,64,0.82), rgba(15,20,23,0.92));
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-copy::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(210,140,54,0.35);
  border-radius: 50%;
}
.eyebrow, .section-kicker {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 800;
  margin: 0 0 14px;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 860px;
  margin-bottom: 26px;
}
.hero-lede {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
  margin-bottom: 34px;
}
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--text-dark); background: var(--accent); }
.button.secondary { color: var(--text); border-color: var(--line); background: rgba(255,255,255,0.05); }
.button.secondary:hover { background: rgba(255,255,255,0.10); }
.hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.signal-card, .mini-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(247,243,234,0.07);
  box-shadow: 0 18px 55px rgba(0,0,0,0.18);
}
.signal-card.large {
  grid-column: 1 / -1;
  padding: 30px;
  background:
    linear-gradient(140deg, rgba(210,140,54,0.18), rgba(36,54,64,0.70)),
    var(--blueprint);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.signal-label { color: var(--accent); text-transform: uppercase; font-size: 12px; letter-spacing: 0.15em; font-weight: 800; }
.signal-card strong { display: block; font-size: 38px; line-height: 1; margin: 14px 0; letter-spacing: -0.04em; }
.signal-card p { color: var(--muted); margin-bottom: 0; }
.mini-card {
  min-height: 170px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--panel);
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

.section { max-width: var(--max); margin: 0 auto; padding: 56px 22px; scroll-margin-top: 90px; }
.split-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.section h2 {
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin-bottom: 0;
}
.text-stack p { color: var(--muted); font-size: 18px; }
.text-stack p:last-child { margin-bottom: 0; }
.section-heading { max-width: 820px; margin-bottom: 24px; }
.section-heading.narrow { max-width: 720px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  min-height: 270px;
  padding: 26px;
  border-radius: var(--radius);
  color: var(--text-dark);
  background: var(--panel);
  border: 1px solid var(--line-dark);
  transition: transform 0.2s ease, background 0.2s ease;
}
.service-card:nth-child(even) { background: var(--panel-soft); }
.service-card:hover { transform: translateY(-4px); }
.service-card span { color: var(--accent-dark); font-weight: 900; font-size: 13px; }
.service-card h3 { font-size: 24px; line-height: 1.1; letter-spacing: -0.03em; margin: 18px 0 14px; }
.service-card p { color: var(--muted-dark); margin-bottom: 0; }

.approach-section {
  background: rgba(255,255,255,0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: none;
  padding-left: calc((100vw - var(--max)) / 2 + 22px);
  padding-right: calc((100vw - var(--max)) / 2 + 22px);
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.timeline-item { position: relative; padding: 24px; border-left: 1px solid var(--line); }
.timeline-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 22px;
  box-shadow: 0 0 0 8px rgba(210,140,54,0.12);
}
.timeline-item h3 { font-size: 24px; margin-bottom: 10px; }
.timeline-item p { color: var(--muted); margin-bottom: 0; }

.proof-section {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 16px;
}
.proof-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247,243,234,0.06);
}
.intro-proof { background: var(--blueprint); }
.metric { display: flex; flex-direction: column; justify-content: space-between; }
.metric strong { color: var(--accent); font-size: clamp(42px, 5vw, 68px); letter-spacing: -0.06em; line-height: 1; }
.metric p { color: var(--muted); margin-bottom: 0; }

.founder-section { padding-top: 20px; }
.founder-card {
  max-width: 860px;
  margin-left: auto;
  padding: 38px;
  color: var(--text-dark);
  background: var(--panel);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}
.founder-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-dark);
  background: rgba(210,140,54,0.25);
  font-weight: 800;
  font-size: 13px;
}
.founder-card h2 { color: var(--text-dark); margin-bottom: 18px; }
.founder-card p { color: var(--muted-dark); font-size: 17px; }
.founder-card p:last-child { margin-bottom: 0; }

.contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, rgba(210,140,54,0.20), rgba(36,54,64,0.85));
  border: 1px solid var(--line);
}
.contact-box h2 { margin-bottom: 14px; }
.contact-box p { color: var(--muted); max-width: 700px; margin-bottom: 0; }
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 30px 22px 44px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}
.site-footer p { margin: 0; }

@media (max-width: 980px) {
  .hero-grid, .split-section, .contact-box { grid-template-columns: 1fr; }
  .hero-copy { min-height: auto; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline, .proof-section { grid-template-columns: 1fr 1fr; }
  .intro-proof { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .site-header { padding: 14px 18px; }
  .brand-mark { width: 42px; height: 42px; }
  .nav-toggle-label { display: block; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; position: relative; }
  .nav-toggle-label span, .nav-toggle-label::before, .nav-toggle-label::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    height: 2px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav-toggle-label span { top: 20px; }
  .nav-toggle-label::before { top: 14px; }
  .nav-toggle-label::after { top: 26px; }
  .site-nav {
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav a { padding: 14px; }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .nav-toggle:checked + .nav-toggle-label span { opacity: 0; }
  .nav-toggle:checked + .nav-toggle-label::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle:checked + .nav-toggle-label::after { transform: translateY(-6px) rotate(-45deg); }
  .hero { padding-top: 16px; }
  .hero-copy { padding: 28px; border-radius: 24px; }
  h1 { font-size: clamp(38px, 12vw, 58px); }
  .hero-panel, .service-grid, .timeline, .proof-section { grid-template-columns: 1fr; }
  .mini-card { min-height: 110px; }
  .section { padding: 42px 18px; }
  .approach-section { padding-left: 18px; padding-right: 18px; }
  .service-card, .proof-card { min-height: auto; }
  .contact-actions { flex-direction: column; align-items: stretch; }
  .site-footer { flex-direction: column; padding-left: 18px; padding-right: 18px; }
}
