@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Spline+Sans+Mono:wght@400;500&display=swap');

:root {
  color-scheme: light;
  --bg: #f5f3ef;
  --bg-alt: #ece7df;
  --ink: #151410;
  --muted: #5a534c;
  --accent: #f15b2a;
  --accent-dark: #c7441f;
  --card: #ffffff;
  --shadow: 0 25px 60px rgba(15, 12, 6, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #fff8ef 0%, var(--bg) 35%, #efe7dc 100%);
  color: var(--ink);
  line-height: 1.6;
}

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

.hero {
  padding: 48px 7vw 90px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 91, 42, 0.18) 0%, rgba(241, 91, 42, 0) 70%);
  top: -160px;
  right: -160px;
  z-index: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.hero-content {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.1rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 15px 30px rgba(241, 91, 42, 0.25);
}

.btn.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: #d5c9be;
  color: var(--ink);
}

.btn.ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(15, 12, 6, 0.12);
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 24px;
}

.screen {
  background: #11100f;
  border-radius: 20px;
  padding: 16px;
  position: relative;
}

.screen::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  background: linear-gradient(120deg, #2a2a2a, #1c1c1c 55%, #121212);
}

.screen-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(140deg, #f0c6b4, #f26b37 40%, #ff8a4f 70%, #f5b190);
  border-radius: 12px;
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Spline Sans Mono', monospace;
  color: #1d0d06;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
  align-items: center;
}

.screen-inner span:last-child {
  font-size: 1.1rem;
  letter-spacing: 0.22em;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 14px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-row span {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f7f1ea;
  border: 1px solid #eadfd3;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.value {
  font-weight: 600;
}

main {
  padding: 0 7vw 90px;
}

.section {
  margin-top: 80px;
}

.section-header {
  margin-bottom: 32px;
  max-width: 620px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(15, 12, 6, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 12, 6, 0.14);
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

pre {
  margin-top: 12px;
  background: #141414;
  color: #f2f0ed;
  padding: 16px;
  border-radius: 12px;
  font-family: 'Spline Sans Mono', monospace;
  font-size: 0.9rem;
  overflow-x: auto;
}

.callout {
  background: linear-gradient(120deg, #fff7ef, #fff2e6);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 1px solid #f2d5c5;
}

.footer {
  padding: 40px 7vw 60px;
  text-align: center;
  color: var(--muted);
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero {
    padding: 40px 6vw 72px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .callout {
    align-items: flex-start;
  }
}
