:root {
  --bg: #0b0d10;
  --bg-alt: #11151a;
  --surface: #161b22;
  --border: #232a33;
  --text: #e7ecf3;
  --muted: #9aa6b2;
  --accent: #f0b429;
  --accent-soft: #fde68a;
  --radius: 14px;
  --max: 1100px;
  font-feature-settings: "ss01", "cv11";
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 13, 16, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.nav-links a {
  margin-left: 22px;
  color: var(--muted);
  font-size: 14px;
}
.nav-links a:hover { color: var(--text); }

/* Hero */
.hero {
  padding: 96px 0 80px;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(240, 180, 41, 0.10), transparent 60%),
    radial-gradient(900px 400px at 0% 10%, rgba(240, 180, 41, 0.05), transparent 60%);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 16px;
}
h1 {
  font-size: clamp(36px, 5.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 18ch;
}
.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 0 32px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.06s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent);
  color: #1a1303;
}
.btn-primary:hover { background: var(--accent-soft); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--muted); }

/* Sections */
.section { padding: 88px 0; border-top: 1px solid var(--border); }
.section-alt { background: var(--bg-alt); }
h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.section-lede {
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 60ch;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.card:hover { border-color: #2f3946; transform: translateY(-2px); }
.card h3 { margin: 16px 0 8px; font-size: 20px; }
.card p { color: var(--muted); margin: 0; }
.card-mark {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.card-mark.nouri { background: #1f3a2e; color: #6ee7b7; }
.card-mark.goodeats { background: #3a2a1f; color: #fbbf77; }
.card-mark.soon { background: #1f2a3a; color: #93c5fd; }
.card-link { display: block; color: inherit; }
.card-arrow {
  display: inline-block;
  margin-left: 6px;
  color: var(--muted);
  transition: transform 0.15s ease, color 0.15s ease;
}
.card-link:hover .card-arrow {
  color: var(--accent);
  transform: translate(2px, -2px);
}
.card-soft { background: transparent; border-style: dashed; }

/* Consulting */
.consulting-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 760px) {
  .consulting-grid { grid-template-columns: 1fr; gap: 32px; }
}
.capabilities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.capabilities li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.capabilities strong { font-weight: 600; }
.capabilities span { color: var(--muted); font-size: 14px; }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 760px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
}
.contact-form {
  display: grid;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}
.contact-form em { color: #6b7480; font-style: normal; }
.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  padding: 11px 13px;
  font: inherit;
  outline: none;
  transition: border-color 0.15s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; }
.form-status { color: var(--muted); font-size: 14px; margin: 0; min-height: 1.25em; }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
