:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #5c687a;
  --paper: #f7f9fb;
  --line: #d9e1ea;
  --cloudflare: #f6821f;
  --accent: #2f6fed;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(246, 130, 31, 0.16), transparent 34rem),
    linear-gradient(135deg, #ffffff 0%, var(--paper) 48%, #edf4ff 100%);
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  min-height: 58vh;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 48px 0 64px;
}

.eyebrow {
  width: fit-content;
  margin: 0;
  padding: 7px 11px;
  border: 1px solid rgba(246, 130, 31, 0.35);
  border-radius: 999px;
  color: #8a4308;
  background: rgba(246, 130, 31, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(3rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.intro {
  max-width: 690px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.08);
}

.button.primary {
  border-color: var(--cloudflare);
  color: #ffffff;
  background: var(--cloudflare);
}

.panel,
.deploy {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 34px rgba(23, 32, 51, 0.07);
}

.number {
  display: block;
  margin-bottom: 36px;
  color: var(--accent);
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

article p,
.deploy li {
  color: var(--muted);
  line-height: 1.65;
}

.deploy ol {
  display: grid;
  gap: 12px;
  max-width: 820px;
  margin: 0;
  padding-left: 1.4rem;
}

code {
  padding: 3px 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #14366f;
  background: #eef5ff;
  font-family: "Cascadia Code", Consolas, monospace;
  font-size: 0.92em;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, 1120px);
    padding: 24px 0;
  }

  .hero {
    min-height: 62vh;
    padding: 28px 0 44px;
  }

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

  article {
    min-height: 0;
  }
}
