:root {
  color-scheme: dark;
  --ink: #f4f7f7;
  --muted: #aeb8bd;
  --paper: #050606;
  --panel: #0b0d0e;
  --panel-raised: #111416;
  --line: #596166;
  --line-soft: rgba(214, 219, 222, 0.22);
  --platinum: #d6dbde;
  --platinum-bright: #f7f9f9;
  --accent: #c3cbd0;
  --accent-strong: #f7f9f9;
  --gold: #c49a52;
  --dark: #050606;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(214, 219, 222, 0.11), transparent 32%),
    linear-gradient(180deg, #050606 0%, #090b0c 48%, #050606 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px 32px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 6, 6, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 -1px 0 rgba(247, 249, 249, 0.08);
}

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

.brand-logo {
  display: block;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 8px;
  object-fit: cover;
  background: #050606;
  box-shadow:
    0 0 0 1px rgba(247, 249, 249, 0.3),
    0 12px 28px rgba(0, 0, 0, 0.42);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--platinum-bright);
  font-size: 16px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

nav a {
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: #c3cbd0;
  text-decoration: none;
  font-size: 14px;
}

nav a:hover,
nav a:focus-visible {
  border-color: rgba(247, 249, 249, 0.42);
  color: var(--platinum-bright);
  background: rgba(247, 249, 249, 0.05);
  outline: none;
}

main {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 48px;
  align-items: center;
  min-height: 600px;
  padding: 72px 7vw 56px;
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(135deg, rgba(247, 249, 249, 0.08), transparent 34%),
    radial-gradient(circle at 88% 24%, rgba(247, 249, 249, 0.09), transparent 28%),
    #050606;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--platinum);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 56px;
  line-height: 1.04;
  font-weight: 760;
  color: var(--platinum-bright);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
}

h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.12;
  color: var(--platinum-bright);
}

h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.lede {
  max-width: 760px;
  margin: 22px 0 0;
  color: #c8d0d4;
  font-size: 21px;
  line-height: 1.55;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  max-width: 100%;
  padding: 11px 16px;
  border: 1px solid rgba(247, 249, 249, 0.54);
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.button.primary {
  color: #050606;
  background: linear-gradient(135deg, #f7f9f9, #aeb8bd 52%, #f1f4f4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 10px 28px rgba(0, 0, 0, 0.34);
}

.button.secondary {
  color: var(--platinum-bright);
  background: rgba(247, 249, 249, 0.03);
}

.button:hover,
.button:focus-visible {
  outline: 2px solid #d1a159;
  outline-offset: 2px;
}

.cta-note {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.proof-panel {
  border: 1px solid rgba(247, 249, 249, 0.28);
  border-left: 4px solid var(--platinum);
  border-radius: 8px;
  padding: 22px 24px;
  background:
    linear-gradient(135deg, rgba(247, 249, 249, 0.08), rgba(247, 249, 249, 0.02)),
    var(--panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 46px rgba(0, 0, 0, 0.28);
}

.panel-logo {
  display: block;
  width: min(160px, 58%);
  aspect-ratio: 1;
  margin: 0 0 24px;
  border-radius: 8px;
  object-fit: cover;
  background: #050606;
  box-shadow:
    0 0 0 1px rgba(247, 249, 249, 0.16),
    0 24px 60px rgba(0, 0, 0, 0.36);
}

.panel-label {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.panel-value {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 720;
  color: var(--platinum-bright);
}

.section {
  padding: 64px 7vw;
  border-bottom: 1px solid var(--line-soft);
  background: #070809;
}

.split {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 48px;
}

.text-stack {
  display: grid;
  gap: 18px;
  color: #c8d0d4;
  font-size: 18px;
  line-height: 1.65;
}

.text-stack p,
.section-heading p,
.next-step p {
  margin: 0;
}

.proof-band {
  background:
    linear-gradient(180deg, #0b0d0e 0%, #070809 100%);
}

.section-heading {
  max-width: 820px;
}

.section-heading p {
  margin-top: 16px;
  color: #c8d0d4;
  font-size: 18px;
  line-height: 1.65;
}

.outcome-section {
  background:
    linear-gradient(180deg, #080a0b 0%, #070809 100%);
}

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

.example-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(196, 154, 82, 0.12), transparent 28%),
    #050606;
}

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

.step-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(247, 249, 249, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 249, 249, 0.08), rgba(247, 249, 249, 0.02)),
    var(--panel-raised);
}

.step-card span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(247, 249, 249, 0.38);
  border-radius: 8px;
  color: #050606;
  background: linear-gradient(135deg, #f7f9f9, #aeb8bd 58%, #f1f4f4);
  font-weight: 800;
}

.step-card p {
  margin: 0;
  color: #c0c9ce;
  line-height: 1.55;
}

.sample-section {
  background:
    linear-gradient(180deg, #070809 0%, #0b0d0e 100%);
}

.sample-card {
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(247, 249, 249, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 249, 249, 0.08), rgba(247, 249, 249, 0.02)),
    var(--panel-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sample-header {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(247, 249, 249, 0.18);
  background: rgba(247, 249, 249, 0.05);
}

.sample-header span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sample-header strong {
  color: var(--platinum-bright);
  font-size: 18px;
}

.sample-table {
  display: grid;
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(247, 249, 249, 0.14);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row span {
  min-width: 0;
  padding: 16px 18px;
  color: #c8d0d4;
  line-height: 1.45;
}

.table-row span + span {
  border-left: 1px solid rgba(247, 249, 249, 0.14);
}

.table-head span {
  color: var(--platinum-bright);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(247, 249, 249, 0.05);
}

.deliverables-section {
  background:
    linear-gradient(135deg, rgba(247, 249, 249, 0.06), transparent 34%),
    #070809;
}

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

.deliverable-list article {
  padding: 24px;
  border: 1px solid rgba(247, 249, 249, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 249, 249, 0.08), rgba(247, 249, 249, 0.02)),
    var(--panel);
}

.deliverable-list p {
  margin: 0;
  color: #c0c9ce;
  line-height: 1.55;
}

.engagement-section {
  background:
    radial-gradient(circle at 16% 20%, rgba(247, 249, 249, 0.08), transparent 28%),
    #050606;
}

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

.scope-item {
  min-height: 186px;
  padding: 22px;
  border: 1px solid rgba(247, 249, 249, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 249, 249, 0.08), rgba(247, 249, 249, 0.02)),
    var(--panel);
}

.scope-item p {
  margin: 0;
  color: #c0c9ce;
  line-height: 1.55;
}

.founder-section {
  background:
    radial-gradient(circle at 12% 24%, rgba(247, 249, 249, 0.08), transparent 28%),
    #050606;
}

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

.proof-item {
  min-height: 176px;
  padding: 24px;
  border: 1px solid rgba(247, 249, 249, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 249, 249, 0.08), rgba(247, 249, 249, 0.02)),
    var(--panel-raised);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.proof-item p {
  margin: 0;
  color: #c0c9ce;
  line-height: 1.55;
}

.limits {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 48px;
  background:
    linear-gradient(135deg, rgba(247, 249, 249, 0.07), transparent 38%),
    var(--dark);
  color: var(--platinum-bright);
}

.limits .eyebrow {
  color: var(--gold);
}

.limit-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.limit-list li {
  padding: 14px 16px;
  border: 1px solid rgba(247, 249, 249, 0.18);
  border-left: 3px solid var(--gold);
  background: rgba(247, 249, 249, 0.07);
  color: #eef2f2;
  line-height: 1.45;
}

.next-step {
  max-width: 920px;
  background: #070809;
}

.next-step p {
  margin: 18px 0 0;
  color: #c8d0d4;
  font-size: 18px;
  line-height: 1.65;
}

.next-step .button {
  margin-top: 24px;
}

.contact-panel {
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(247, 249, 249, 0.22);
  border-radius: 8px;
  background: rgba(247, 249, 249, 0.05);
}

.contact-panel p {
  margin: 0;
  color: var(--platinum-bright);
}

.contact-panel ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 20px;
  color: #c8d0d4;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  gap: 8px;
  padding: 28px 7vw 40px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  background: #050606;
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 20px;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .split,
  .limits {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 34px;
    min-height: auto;
    padding: 64px 24px 48px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .lede {
    font-size: 18px;
  }

  .section {
    padding: 48px 24px;
  }

  .proof-grid,
  .outcome-grid,
  .steps,
  .deliverable-list,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .table-row span + span {
    border-left: 0;
    border-top: 1px solid rgba(247, 249, 249, 0.12);
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .button {
    width: 100%;
  }

  h1 {
    font-size: 34px;
  }
}
