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

:root {
  --primary: #ae1f23;
  --primary-dark: #8b1518;
  --accent: #fdb931;
  --bg: #fdf8f0;
  --text: #1a0a0a;
  --muted: #7a5c5c;
  --light: #f5ece5;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e8d8d0;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  font-style: italic;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(174, 31, 35, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(174, 31, 35, 0.4);
}

.btn-outline {
  background: none;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* HERO WORDMARK */
.hero-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(140deg, #6b0d10 0%, #ae1f23 60%, #c8272c 100%);
  border-radius: 20px;
  padding: 16px 24px;
  margin-bottom: 20px;
  box-shadow: 0 12px 40px rgba(174, 31, 35, 0.35);
}

.hero-wordmark-icon {
  height: 52px;
  width: 52px;
  border-radius: 12px;
  flex-shrink: 0;
}

.hero-wordmark-name {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  color: white;
  letter-spacing: 0.3px;
  line-height: 1.2;
  text-align: left;
}

.hero-wordmark-sub {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #fdb931;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
  text-align: left;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background:
    radial-gradient(circle at top left, rgba(253, 185, 49, 0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(174, 31, 35, 0.06), transparent 40%);
}

.hero-inner {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(174, 31, 35, 0.08);
  color: var(--primary);
  border: 1px solid rgba(174, 31, 35, 0.2);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
}

.hero h1 em {
  color: var(--primary);
  font-style: italic;
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta .btn-primary {
  font-size: 16px;
  padding: 14px 32px;
}

.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: #b09090;
}

/* FEATURES */
.features {
  padding: 100px 24px;
  background: white;
}

.section-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-family: Georgia, serif;
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 14px;
  color: var(--text);
}

.section-header p {
  color: var(--muted);
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg);
  border: 1px solid #e8d8d0;
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(174, 31, 35, 0.08);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 100px 24px;
  background:
    radial-gradient(circle at top right, rgba(253, 185, 49, 0.06), transparent 40%),
    var(--bg);
  text-align: center;
}

.pricing-card {
  max-width: 440px;
  margin: 0 auto;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow: 0 16px 48px rgba(174, 31, 35, 0.12);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text);
  font-weight: 900;
  font-size: 13px;
  padding: 6px 20px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-trial {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.pricing-currency {
  font-size: 24px;
  margin-top: 8px;
  margin-left: 2px;
}

.pricing-cents {
  font-size: 32px;
  margin-top: 10px;
}

.pricing-period {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
  flex-shrink: 0;
}

.pricing-card .btn-primary {
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 14px;
  border-radius: 14px;
}

.pricing-no-cb {
  margin-top: 16px;
  font-size: 13px;
  color: #b09090;
}

/* FOOTER */
footer {
  background: #1a0a0a;
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 32px;
  text-align: center;
}

.footer-logo {
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: white;
  margin-bottom: 8px;
}

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

.footer-tagline {
  font-size: 13px;
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s;
}

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

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  nav { padding: 0 16px; }
  .hero { padding: 60px 16px; }
  .features, .pricing { padding: 70px 16px; }
  .pricing-card { padding: 40px 24px; }
  .hero-cta { flex-direction: column; align-items: center; }
}
