:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #f4f0e8;
  color: #111412;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f4f0e8;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(17, 20, 18, 0.12);
  background: rgba(244, 240, 232, 0.94);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.brand span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 6px;
  background: #111412;
  color: #f4f0e8;
  font-size: 0.78rem;
}

.site-header nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 16px;
}

.site-header nav a,
.site-footer nav a {
  color: #435048;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-header nav a[aria-current="page"] {
  color: #111412;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(40px, 7vw, 88px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(244, 240, 232, 0.98), rgba(244, 240, 232, 0.84)),
    url("/og-image.svg") right center / min(980px, 78vw) auto no-repeat;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: #28715d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.3rem, 10vw, 8.25rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lede {
  max-width: 680px;
  margin: 26px 0 0;
  color: #334139;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button,
.download-slots button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #111412;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: #111412;
  color: #f4f0e8;
}

.button.secondary,
.download-slots button {
  background: transparent;
  color: #111412;
}

.button.disabled,
.download-slots button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.workspace-visual {
  min-width: 0;
  border: 1px solid rgba(17, 20, 18, 0.18);
  border-radius: 8px;
  background: #111412;
  box-shadow: 0 24px 70px rgba(17, 20, 18, 0.2);
  overflow: hidden;
}

.visual-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(244, 240, 232, 0.12);
  color: #cbd7ce;
}

.visual-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d95b43;
}

.visual-toolbar span:nth-child(2) {
  background: #d6a73d;
}

.visual-toolbar span:nth-child(3) {
  background: #4cba8b;
}

.visual-toolbar strong {
  margin-left: 8px;
  font-size: 0.82rem;
}

.visual-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1px;
  background: rgba(244, 240, 232, 0.12);
}

.visual-grid > div {
  min-height: 168px;
  padding: 18px;
  background: #18201c;
}

.visual-grid small {
  display: block;
  margin-bottom: 14px;
  color: #89b3a4;
  font-weight: 800;
  text-transform: uppercase;
}

.terminal-pane code {
  color: #f4f0e8;
  font-family: "SFMono-Regular", Consolas, monospace;
  line-height: 1.9;
}

.plan-pane b,
.review-pane b {
  display: block;
  margin-top: 10px;
  padding: 10px;
  border-left: 3px solid #d6a73d;
  background: rgba(244, 240, 232, 0.08);
  color: #f4f0e8;
}

.graph-pane {
  position: relative;
}

.graph-pane i {
  position: absolute;
  width: 58px;
  height: 58px;
  border: 2px solid #4cba8b;
  border-radius: 50%;
}

.graph-pane i:nth-child(2) {
  right: 40px;
  top: 54px;
  border-color: #d6a73d;
}

.graph-pane i:nth-child(3) {
  left: 48px;
  bottom: 28px;
  border-color: #d95b43;
}

.graph-pane i:nth-child(4) {
  right: 88px;
  bottom: 36px;
  border-color: #7ea1d8;
}

.section {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 4vw, 56px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  color: #435048;
  font-size: 1.08rem;
}

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

.card,
.price-panel,
.release-panel article,
.timeline article,
.legal {
  border: 1px solid rgba(17, 20, 18, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.42);
}

.card {
  padding: 22px;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card p {
  margin: 12px 0 0;
  color: #435048;
}

.pricing-layout {
  background: #e7e0d2;
}

.price-panel {
  max-width: 620px;
  padding: clamp(24px, 5vw, 42px);
}

.price {
  color: #435048;
}

.price span {
  color: #111412;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
}

.price-panel ul {
  margin: 26px 0;
  padding-left: 20px;
}

.price-panel li + li {
  margin-top: 10px;
}

.fine-print,
.release-version {
  color: #6a554a;
  font-size: 0.94rem;
}

.release-panel {
  max-width: 900px;
}

.download-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.timeline article,
.legal {
  max-width: 860px;
  padding: 24px;
}

.timeline time {
  color: #28715d;
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(17, 20, 18, 0.12);
  color: #435048;
}

.site-footer p {
  margin: 0;
}

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

  .site-header nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .workspace-visual {
    max-width: 720px;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .card-grid,
  .visual-grid {
    grid-template-columns: 1fr;
  }

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