:root {
  --bg: #f6f3ee;
  --surface: rgba(255, 255, 255, 0.72);
  --text: #22211f;
  --muted: #77736c;
  --line: rgba(34, 33, 31, 0.12);
  --accent: #ff7a3d;
  --accent-soft: #ffe2d3;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow: 0 18px 55px rgba(42, 37, 31, 0.08);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 122, 61, 0.12), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page-shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--text);
  color: var(--bg);
  font: 700 22px/1 "Manrope", sans-serif;
}

.brand-name {
  font: 700 25px/1 "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.48);
}

.hero {
  min-height: 610px;
  padding: 110px 0 90px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  max-width: 900px;
  margin: 0;
  font: 700 clamp(58px, 9.8vw, 126px)/0.89 "Manrope", sans-serif;
  letter-spacing: -0.075em;
}

h1 span {
  color: var(--muted);
}

.intro {
  max-width: 620px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--text);
  color: white;
  box-shadow: 0 12px 30px rgba(34, 33, 31, 0.14);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 96px;
}

.card {
  min-height: 255px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.card-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 13px;
  background: var(--accent-soft);
  color: #a94b22;
  font-weight: 700;
  font-size: 12px;
}

.card h2 {
  margin: 0 0 10px;
  font: 700 22px/1.15 "Manrope", sans-serif;
  letter-spacing: -0.035em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.site-footer {
  min-height: 90px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .site-header {
    min-height: 78px;
  }

  .status-pill {
    font-size: 12px;
  }

  .hero {
    min-height: auto;
    padding: 90px 0 72px;
  }

  h1 {
    font-size: clamp(54px, 18vw, 82px);
  }

  .intro {
    margin-top: 28px;
    font-size: 18px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    flex: 1 1 100%;
  }

  .principles {
    grid-template-columns: 1fr;
    padding-bottom: 64px;
  }

  .card {
    min-height: 220px;
  }

  .card-number {
    margin-bottom: 36px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}
