:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0a0d0c;
  color: #f4f3ef;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -14%, #18211d 0, #0a0d0c 40%),
    #0a0d0c;
}

a { color: inherit; }

.shell {
  width: min(1180px, calc(100% - 56px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid #202623;
}

.logo {
  display: block;
  width: 260px;
  height: auto;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #a7b0ab;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
}

.status:hover { color: #f4f3ef; }

.status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00d95a;
  box-shadow: 0 0 10px rgba(0, 217, 90, .22);
}

.hero {
  max-width: 940px;
  padding: clamp(94px, 13vw, 154px) 0 104px;
}

.eyebrow,
.section-label {
  margin: 0 0 22px;
  color: #00d95a;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

h1 {
  margin: 0;
  font-size: clamp(62px, 10vw, 126px);
  line-height: .88;
  letter-spacing: -.06em;
  font-weight: 800;
}

.intro {
  max-width: 700px;
  margin: 34px 0 0;
  color: #a1aaa5;
  font-size: clamp(18px, 2.1vw, 25px);
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px 20px;
  margin-top: 34px;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 13px 16px;
  border: 1px solid rgba(0, 217, 90, .46);
  border-radius: 9px;
  background: rgba(0, 217, 90, .08);
  color: #eef3f0;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.primary-action:hover {
  border-color: #00d95a;
  background: rgba(0, 217, 90, .13);
  transform: translateY(-1px);
}

.primary-action span { color: #00d95a; font-size: 18px; }

.action-note {
  color: #5f6863;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 40px;
  color: #f4f3ef;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
}

.principles span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-left: 28px;
  vertical-align: middle;
  border-radius: 50%;
  background: #414944;
}

.approach {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) minmax(0, 2fr);
  gap: clamp(44px, 8vw, 110px);
  padding: 55px 0 72px;
  border-top: 1px solid #202623;
}

.approach-heading { align-self: start; }
.section-label { margin-bottom: 15px; font-size: 10px; }

.approach h2 {
  max-width: 320px;
  margin: 0;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #29302c;
}

.approach article {
  min-width: 0;
  padding: 22px 22px 6px;
  border-left: 1px solid #29302c;
}

.feature-number {
  color: #00d95a;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
}

.approach h3 {
  margin: 24px 0 10px;
  font-size: 15px;
  line-height: 1.25;
}

.approach article p {
  margin: 0;
  color: #7f8984;
  font-size: 12px;
  line-height: 1.6;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding: 24px 0 30px;
  border-top: 1px solid #202623;
  color: #747d78;
  font-size: 12px;
}

.muted { color: #525a56; }

@media (max-width: 850px) {
  .approach { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 30px, 1180px); }
  .header { padding: 22px 0; align-items: flex-start; }
  .logo { width: 205px; }
  .status { margin-top: 6px; font-size: 9px; }
  .hero { padding: 82px 0 84px; }
  h1 { font-size: clamp(50px, 15vw, 66px); line-height: .94; }
  .intro { margin-top: 28px; }
  .principles { gap: 10px 18px; }
  .principles span:not(:last-child)::after { margin-left: 18px; }
  .approach { padding: 42px 0 56px; }
  .approach-grid { grid-template-columns: 1fr; border-top: 0; }
  .approach article { padding: 20px 0 22px; border-top: 1px solid #29302c; border-left: 0; }
  .approach h3 { margin-top: 13px; }
}

@media (max-width: 440px) {
  .header { align-items: center; }
  .logo { width: 175px; }
  .status { max-width: 110px; line-height: 1.35; }
  .action-note { width: 100%; }
}
