:root {
  --bg: #f6efe5;
  --panel: rgba(255, 255, 255, 0.86);
  --panel-strong: rgba(255, 255, 255, 0.95);
  --line: rgba(40, 27, 18, 0.08);
  --text: #201813;
  --muted: #68584d;
  --accent: #ea580c;
  --accent-strong: #c2410c;
  --accent-soft: rgba(234, 88, 12, 0.14);
  --teal: #0f766e;
  --shadow: 0 28px 70px rgba(84, 49, 24, 0.14);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --wrapper: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(234, 88, 12, 0.18), transparent 26%),
    radial-gradient(circle at 80% 10%, rgba(15, 118, 110, 0.12), transparent 18%),
    linear-gradient(180deg, #fbf7f2 0%, var(--bg) 100%);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

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

img {
  display: block;
  max-width: 100%;
}

code {
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: rgba(32, 24, 19, 0.08);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.92em;
}

.wrapper {
  width: min(calc(100% - 32px), var(--wrapper));
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.24);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 700;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--accent-strong);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 42px 0 54px;
}

.pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(234, 88, 12, 0.16);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 6px 10px;
  background: var(--accent-soft);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.03em;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 4.6vw, 5.3rem);
  line-height: 0.97;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.2rem;
}

p,
li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.lede {
  max-width: 620px;
  margin-top: 16px;
  font-size: 1.1rem;
}

.hero-actions,
.footer-links,
.inline-points,
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
  box-shadow: 0 18px 36px rgba(234, 88, 12, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--line);
}

.inline-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.inline-points li,
.chip {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(32, 24, 19, 0.07);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text);
}

.chip.active {
  background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
  color: white;
  border-color: transparent;
}

.hero-stage {
  position: relative;
  min-height: 640px;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.78;
}

.glow-one {
  top: 30px;
  left: 70px;
  width: 180px;
  height: 180px;
  background: rgba(234, 88, 12, 0.18);
}

.glow-two {
  right: 30px;
  bottom: 90px;
  width: 160px;
  height: 160px;
  background: rgba(15, 118, 110, 0.16);
}

.browser-card,
.floating-result,
.info-card,
.feature-card,
.step-card,
.callout,
.content-card,
.press-link {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.browser-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.browser-bar,
.browser-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px 0;
}

.browser-bar span,
.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(32, 24, 19, 0.14);
}

.browser-content {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px;
}

.status-card,
.article-mock,
.floating-result,
.info-card,
.steps-panel,
.callout,
.content-card {
  border-radius: var(--radius-lg);
}

.status-card {
  align-self: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
}

.status-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
}

.status-card p {
  margin: 10px 0 14px;
  font-size: 0.94rem;
}

.progress {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(32, 24, 19, 0.08);
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent) 0%, #fb923c 100%);
}

.status-card small {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent-strong);
  font-weight: 800;
}

.article-mock {
  position: relative;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 243, 235, 0.92) 100%);
  border: 1px solid rgba(32, 24, 19, 0.06);
}

.article-header p {
  margin-top: 8px;
}

.article-columns {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.copy-block,
.image-block {
  border-radius: 18px;
}

.copy-block {
  background: linear-gradient(90deg, rgba(32, 24, 19, 0.06), rgba(32, 24, 19, 0.03));
}

.copy-block.tall {
  height: 110px;
}

.copy-block.medium {
  height: 76px;
}

.copy-block.short {
  height: 42px;
  width: 62%;
}

.image-block {
  height: 180px;
}

.image-block.accent {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.84), rgba(251, 191, 36, 0.74));
}

.image-block.muted {
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.74), rgba(96, 165, 250, 0.54));
}

.floating-result {
  position: absolute;
  right: -8px;
  bottom: 20px;
  width: 260px;
  padding: 18px;
  background: var(--panel-strong);
}

.floating-head strong {
  display: block;
  margin-top: 8px;
  font-size: 1.05rem;
}

.thumb-stack {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.thumb-stack div {
  height: 78px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(32, 24, 19, 0.07), rgba(32, 24, 19, 0.03));
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 24px;
  padding: 10px 0 22px;
}

.info-card,
.steps-panel,
.callout,
.content-card {
  padding: 26px;
}

.info-card p,
.callout p {
  margin-top: 12px;
}

.feature-grid,
.steps-grid,
.support-grid,
.policy-stack,
.press-grid {
  display: grid;
  gap: 18px;
}

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

.feature-card,
.step-card,
.press-link {
  padding: 22px;
  border-radius: var(--radius-md);
}

.feature-card p,
.step-card p {
  margin-top: 10px;
}

.steps-panel {
  margin-top: 18px;
}

.section-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

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

.callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 24px auto 0;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0 34px;
}

.footer p {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.page-content {
  padding: 30px 0 60px;
}

.page-intro {
  max-width: 860px;
  margin-bottom: 30px;
}

.page-intro.narrow {
  max-width: 720px;
}

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

.content-card.wide {
  grid-column: 1 / -1;
}

.clean-list {
  margin: 14px 0 0;
  padding-left: 18px;
}

.clean-list.numbered {
  padding-left: 22px;
}

.policy-stack {
  max-width: 860px;
}

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

.press-link {
  font-weight: 800;
}

@media (max-width: 1024px) {
  .hero,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .callout,
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stage {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .wrapper {
    width: min(calc(100% - 20px), var(--wrapper));
  }

  .topbar,
  .nav,
  .browser-content,
  .feature-grid,
  .steps-grid,
  .support-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .topbar,
  .nav,
  .hero-actions,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .browser-content {
    display: grid;
  }

  .floating-result {
    position: static;
    width: auto;
    margin-top: 18px;
  }

  .info-card,
  .steps-panel,
  .callout,
  .content-card,
  .feature-card,
  .step-card,
  .press-link {
    padding: 18px;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }
}
