:root {
  --bg: #faf9f7;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #5c5c5c;
  --accent: #c45d2c;
  --accent-hover: #a34d24;
  --border: #e8e4df;
  --success: #1d6b42;
  --error: #b42318;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-serif: "Lora", Georgia, serif;
  --max: 720px;
  --wide: 960px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.container--wide {
  width: min(100% - 48px, var(--wide));
}

.site-header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
}

.hero {
  padding: 80px 0 64px;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.15;
  font-weight: 600;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.hero .subhead {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0 auto 32px;
  max-width: 36em;
}

.micro-trust {
  font-size: 0.875rem;
  color: var(--muted);
  margin-top: 24px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent-hover);
  text-decoration: none;
  color: #fff;
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--secondary:hover {
  border-color: var(--text);
  text-decoration: none;
}

section {
  padding: 64px 0;
}

section:nth-child(even) {
  background: var(--surface);
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  margin: 0 0 24px;
  font-weight: 600;
}

h3 {
  font-size: 1.125rem;
  margin: 0 0 12px;
  font-weight: 600;
}

p {
  margin: 0 0 16px;
}

ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

li {
  margin-bottom: 8px;
}

.cost-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.cost-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.cost-list strong {
  color: var(--accent);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9375rem;
}

th,
td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

th {
  font-weight: 600;
  background: var(--bg);
}

blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--accent);
  background: var(--bg);
  font-style: italic;
  color: var(--muted);
}

blockquote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 0.875rem;
}

.icp-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 640px) {
  .icp-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.icp-yes,
.icp-no {
  padding: 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.icp-yes {
  background: #f4faf6;
  border-color: #c8e6d4;
}

.icp-no {
  background: #fafafa;
}

.icp-yes ul,
.icp-no ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.icp-yes li::before {
  content: "✓ ";
  color: var(--success);
  font-weight: 600;
}

.icp-no li::before {
  content: "✗ ";
  color: var(--muted);
}

.cta-section {
  text-align: center;
  padding: 80px 0;
}

.cta-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.cta-section li {
  margin-bottom: 8px;
}

.waitlist-form {
  max-width: 420px;
  margin: 32px auto 0;
  text-align: left;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group label .optional {
  font-weight: 400;
  color: var(--muted);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  background: var(--surface);
}

.form-group input:focus,
.form-group select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-message {
  margin-top: 16px;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.9375rem;
  display: none;
}

.form-message.visible {
  display: block;
}

.form-message.success {
  background: #ecfdf3;
  color: var(--success);
  border: 1px solid #c8e6d4;
}

.form-message.error {
  background: #fef3f2;
  color: var(--error);
  border: 1px solid #fecdca;
}

.fine-print {
  font-size: 0.8125rem;
  color: var(--muted);
  margin-top: 16px;
}

.site-footer {
  padding: 32px 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
