:root {
  --bg: #faf9f6;
  --surface: #ffffff;
  --text: #1c2b4a;
  --text-muted: #5b6b83;
  --accent: #e2962f;
  --accent-dark: #9c631a;
  --accent-soft: #fbe9cf;
  --navy: #1c2b4a;
  --navy-hover: #2c3f63;
  --navy-soft: #eef1f5;
  --border: #e7e3d9;
  --shadow: 0 10px 30px rgba(28, 43, 74, 0.08);
  --radius: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

/* Header */
.site-header {
  padding: 24px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.wordmark span {
  color: var(--accent);
}

.wordmark-icon {
  display: block;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

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

.site-nav .btn-nav {
  color: #fff;
  background: var(--navy);
  padding: 9px 16px;
  border-radius: 999px;
  transition: background 0.15s ease;
}

.site-nav .btn-nav:hover {
  background: var(--navy-hover);
  color: #fff;
}

@media (max-width: 640px) {
  .site-nav {
    gap: 14px;
  }

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

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 999px;
  margin: 0 0 18px;
}

.hero-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 480px;
  background: radial-gradient(circle, rgba(226, 150, 47, 0.22) 0%, rgba(226, 150, 47, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.hero-subhead {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
  color: var(--text-muted);
}

.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero {
  width: auto;
  padding: 14px 28px;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-secondary {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
}

.btn-hero-secondary:hover {
  color: var(--accent-dark);
}

/* Signup form */
.signup {
  padding: 0 0 96px;
}

.signup-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
  text-align: center;
}

.signup-card h2 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.signup-intro {
  color: var(--text-muted);
  margin: 0 0 24px;
}

.waitlist-form {
  text-align: left;
}

.waitlist-form .field-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

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

.waitlist-form input[type="text"],
.waitlist-form input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
  background: #fefdfb;
}

.waitlist-form input:focus {
  outline: none;
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-primary {
  width: 100%;
  padding: 13px 18px;
  border: none;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.15s ease;
}

.btn-primary:hover {
  background: var(--navy-hover);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: default;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.form-error {
  color: #d1435b;
  font-size: 0.85rem;
  margin-top: 10px;
  display: none;
}

.success-message {
  display: none;
  text-align: center;
}

.success-message .check {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 16px;
}

.success-message h3 {
  margin: 0 0 6px;
}

.success-message p {
  color: var(--text-muted);
  margin: 0;
}

/* Demo */
.demo {
  padding: 64px 0 96px;
}

.demo h2 {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.demo-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

@media (max-width: 860px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .demo-arrow {
    transform: rotate(90deg);
  }
}

.demo-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  text-align: center;
}

.demo-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.demo-arrow {
  font-size: 1.8rem;
  color: var(--navy);
  justify-self: center;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.pdf-embed {
  width: 100%;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 14px;
}

.pdf-embed embed {
  width: 100%;
  height: 100%;
}

.demo-link {
  display: inline-block;
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

.demo-link:hover {
  text-decoration: underline;
}

/* Features */
.features {
  padding: 64px 0 96px;
}

.features h2 {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.features-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 48px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 720px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing */
.pricing {
  padding: 64px 0 96px;
}

.pricing h2 {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.pricing-intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

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

.pricing-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  text-align: left;
}

.pricing-card.featured {
  border-color: var(--accent-dark);
  box-shadow: 0 10px 30px rgba(226, 150, 47, 0.22);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  right: 24px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--navy);
  padding: 4px 10px;
  border-radius: 999px;
}

.pricing-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.price {
  margin: 0 0 12px;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-left: 4px;
}

.pricing-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0 0 20px;
  min-height: 40px;
}

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

.pricing-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.pricing-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent-dark);
  font-weight: 700;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  box-sizing: border-box;
}

.pricing-card .btn-secondary {
  background: var(--accent-soft);
  color: var(--navy);
  border: none;
  transition: background 0.15s ease;
}

.pricing-card .btn-secondary:hover {
  background: #f5dcab;
}

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

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-inner p {
  margin: 0;
}

.footer-logo {
  height: 22px;
  width: auto;
  opacity: 0.9;
}

/* Thanks page */
.thanks-hero {
  padding: 120px 0;
  text-align: center;
}

.thanks-hero h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.thanks-hero a {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: none;
}
