:root {
  color-scheme: light;
  --blue: #2563eb;
  --red: #D11E00;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --panel: #f8fafc;
  --yellow: #ffe66d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
}

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.36rem;
  font-weight: 950;
  line-height: 1;
}

.brand img {
  width: 38px;
  height: 38px;
}

.brand span span {
  color: var(--red);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-cta,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 900;
}

.nav-cta,
.primary-action {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.18);
}

.secondary-action {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: 48px 0 72px;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.eyebrow {
  margin: 0;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 790px;
  font-size: clamp(3.5rem, 8.4vw, 7.6rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.88;
}

.hero-text {
  max-width: 680px;
  color: #475569;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 650;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.access-note {
  max-width: 570px;
  margin: -4px 0 0;
  color: #64748b;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.45;
}

.product-panel {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 38%),
    #ffffff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
}

.panel-toolbar {
  display: flex;
  gap: 7px;
}

.panel-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.panel-toolbar span:first-child {
  background: var(--red);
}

.import-card,
.recipe-card-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.import-card {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.import-card p,
.recipe-card-preview p {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
}

.import-card strong {
  overflow-wrap: anywhere;
  color: #1e293b;
}

.import-card button {
  width: fit-content;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 16px;
  background: var(--blue);
  color: white;
  font: inherit;
  font-weight: 900;
}

.recipe-card-preview {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 5px 10px;
  background: #eff6ff;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
}

.recipe-card-preview h2 {
  font-size: 1.9rem;
  line-height: 1;
}

.recipe-card-preview ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recipe-card-preview li {
  border-top: 1px solid var(--line);
  padding-top: 8px;
  color: #334155;
  font-weight: 750;
}

.workflow,
.feature-band,
.privacy-section,
.cta-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2,
.feature-band > div:first-child h2,
.privacy-card h2,
.cta-section h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 950;
  line-height: 0.95;
}

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

.steps article,
.feature-grid article,
.privacy-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.steps article {
  display: grid;
  gap: 14px;
  min-height: 230px;
  padding: 22px;
}

.steps article span {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 950;
}

.steps h3,
.feature-grid h3 {
  font-size: 1.32rem;
}

.steps p,
.feature-grid p,
.privacy-card p,
.cta-section p {
  color: #475569;
  font-weight: 650;
  line-height: 1.55;
}

.feature-band {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: 40px;
  align-items: start;
}

.feature-band > div:first-child {
  display: grid;
  gap: 12px;
  position: sticky;
  top: 96px;
}

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

.feature-grid article {
  display: grid;
  gap: 10px;
  padding: 22px;
  background: var(--panel);
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 20px;
  align-items: stretch;
}

.privacy-card {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), transparent 48%),
    #ffffff;
}

.signal-list {
  display: grid;
  gap: 10px;
}

.signal-list span {
  display: grid;
  align-items: center;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 20px;
  background: var(--panel);
  color: #1e293b;
  font-weight: 900;
}

.cta-section {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 820px;
  text-align: center;
}

.cta-section img {
  width: 74px;
  height: 74px;
  filter: drop-shadow(0 14px 24px rgba(37, 99, 235, 0.2));
}

.cta-section p {
  max-width: 590px;
  font-size: 1.08rem;
}

.cta-section .access-note {
  max-width: 620px;
  margin-top: -6px;
  font-size: 0.96rem;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 28px 0 38px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

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

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

  nav a:not(.nav-cta) {
    display: none;
  }

  .hero,
  .feature-band,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .steps,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-band > div:first-child {
    position: static;
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .workflow,
  .feature-band,
  .privacy-section,
  .cta-section,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .brand span {
    font-size: 1.14rem;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .hero-actions a {
    width: 100%;
  }

  .workflow,
  .feature-band,
  .privacy-section,
  .cta-section {
    padding: 56px 0;
  }
}
