:root {
  --primary: #fad4c0;
  --secondary: #80a1c1;
  --surface: #fff5e6;
  --surface-2: #ffffff;
  --text: #111827;
  --text-muted: #4b5563;
  --border: rgba(17, 24, 39, 0.08);
  --shadow: 0 1px 2px rgba(17, 24, 39, 0.04), 0 8px 24px rgba(17, 24, 39, 0.06);
  --radius: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  background: var(--surface);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: var(--secondary);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

code {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 16px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
  text-decoration: none;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  color: var(--text-muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--text);
  color: var(--surface);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 80ms ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

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

.card h1 {
  max-width: 820px;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.card h2 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}

.card h3 {
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0;
}

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

.hero {
  min-height: 420px;
  justify-content: center;
  padding: 32px;
  background:
    radial-gradient(800px 400px at 80% -10%, rgba(128, 161, 193, 0.35), transparent 60%),
    radial-gradient(600px 300px at -10% 110%, rgba(250, 212, 192, 0.6), transparent 60%),
    var(--surface-2);
}

.lead {
  max-width: 680px;
  font-size: 20px;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.tag-muted {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.connector-box,
.copy-row {
  width: fit-content;
  max-width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(128, 161, 193, 0.45);
  border-radius: var(--radius-sm);
  background: rgba(255, 245, 230, 0.85);
}

.connector-box code,
.copy-row code {
  font-weight: 600;
}

.proof-card {
  min-height: 210px;
}

.steps {
  margin: 0;
  padding-left: 22px;
}

.steps li + li {
  margin-top: 8px;
}

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

.prompt-grid blockquote {
  margin: 0;
  min-height: 100%;
  padding: 16px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--secondary);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}

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

.capability-grid > div {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
  padding: 16px;
}

.capability-grid p {
  margin-top: 8px;
  font-size: 14px;
}

.account-card {
  justify-content: space-between;
}

.site-footer {
  margin-top: 32px;
  padding: 24px 0 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 14px;
}

.site-footer strong {
  color: var(--text);
}

.col-12 {
  grid-column: span 12;
}

.col-8 {
  grid-column: span 8;
}

.col-6 {
  grid-column: span 6;
}

.col-4 {
  grid-column: span 4;
}

@media (max-width: 900px) {
  .col-8,
  .col-6,
  .col-4 {
    grid-column: span 12;
  }

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

  .card h1 {
    font-size: 42px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 16px 12px;
  }

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

  .nav {
    order: 2;
    width: 100%;
    gap: 16px;
    row-gap: 8px;
  }

  .nav .btn {
    margin-left: auto;
  }

  .card {
    padding: 16px;
  }

  .hero {
    min-height: 0;
    padding: 24px 16px;
  }

  .card h1 {
    font-size: 34px;
  }

  .lead {
    font-size: 18px;
  }

  .prompt-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}
