:root {
  --primary: #2E4036;
  --accent: #CC5833;
  --bg-main: #F2F0E9;
  --bg-alt: #FFFFFF;
  --bg-discovery: #F6F3ED;
  --text: #1A1A1A;
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Montserrat', sans-serif;
  --radius: 32px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7; /* Requested line-height */
}

/* Paper / Grain texture for that organic trustworthy feel */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035; /* Subtle */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography Base */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 800;
}

/* Desktop Font Sizes (Requested constraints) */
h1 { font-size: 50px; }
h2 { font-size: 42px; }
h3 { font-size: 30px; }

.serif {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 800;
}

.tag-text {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--text);
}

.accent-text {
  color: var(--accent);
}

p, li, .plan-desc {
  font-size: 19px; /* Never 14, 15, 16 */
  margin-bottom: 1.25rem;
  color: var(--text);
}

/* Strong readable lists */
.bad-list {
  list-style: none;
  margin: 2rem 0;
  padding-left: 0.5rem;
}

.bad-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.bad-list li::before {
  content: '—';
  color: var(--accent);
  font-weight: bold;
}

/* Layout */
.container {
  max-width: 900px; /* Reduced for editorial optimal reading width */
  margin: 0 auto;
  padding: 0 2rem;
}

.narrative-container {
  max-width: 680px;
  margin: 0 auto;
}

.padding-section {
  padding: 7rem 0;
}

/* Section Background Strategy */
.bg-hero { background-color: var(--bg-main); }
.bg-story { background-color: var(--bg-alt); }
.bg-discovery { background-color: var(--bg-discovery); color: var(--text); }
.bg-content { background-color: var(--bg-alt); }
.bg-offer { background-color: var(--bg-main); }
.bg-pricing { background-color: var(--bg-alt); }
.bg-cta { background-color: var(--primary); color: var(--bg-main); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.15rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 19px;
  cursor: pointer;
  border: none;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, background-color 0.3s ease;
  will-change: transform;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-alt);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--bg-alt);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Navbar / Floating CTA */
.navbar {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  top: auto;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: none;
  border: none;
}
.navbar .nav-logo {
  display: none !important;
}
.navbar .btn {
  padding: 0.95rem 2.1rem;
  font-size: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh; /* Reduced for calmer hierarchy */
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url('https://images.unsplash.com/photo-1542273917363-3b1817f69a5d?q=80&w=2500&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  z-index: -2;
  opacity: 0.15; /* Softened texture integration */
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-main), rgba(242, 240, 233, 0.4) 60%, rgba(242, 240, 233, 0.1));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
}

.hero h1 .serif {
  display: block;
  font-size: 64px;
  margin-top: -0.5rem;
  color: var(--primary);
  line-height: 1;
}

.hero-sub {
  font-size: 19px;
  opacity: 0.85;
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-callout {
  padding-left: 1.5rem;
  border-left: 3px solid var(--accent);
  max-width: 600px;
}

.hero-callout p {
  opacity: 0.85;
  margin: 0;
}

/* UI Elements inside Narrative */
.quote-box {
  margin: 4rem 0;
  padding: 3rem;
  background: rgba(46, 64, 54, 0.03); /* Softer */
  border-radius: var(--radius);
  text-align: center;
}

.quote-box .serif {
  font-size: 34px;
}

.callout {
  margin: 2rem 0; padding-left: 1.5rem; border-left: 3px solid var(--primary);
}

.pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 4rem 0;
}

.pill {
  padding: 0.8rem 1.6rem;
  background: rgba(46, 64, 54, 0.05); /* organic */
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.emphasis-text {
  font-size: 36px;
  color: var(--accent);
  text-align: center;
}

/* Grid Icons */
.grid-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.icon-item {
  background: var(--bg-alt);
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.big-question {
  margin-top: 4rem;
  text-align: center;
}
.big-question p {
  font-size: 38px;
  color: var(--accent);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.feature-card {
  background: var(--bg-main);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: #FFF;
}

.feature-card h3 {
  margin-top: 0.5rem;
}

/* Dynamic uis in card */
.dynamic-ui {
  margin-top: 2rem;
  min-height: 80px;
  padding: 1rem;
  border-radius: 12px;
}
.type-bg { background: rgba(46,64,54,0.05); }

.progress-track {
  width: 100%; height: 6px; background: rgba(0,0,0,0.08);
  border-radius: 3px; overflow: hidden; margin-top: 0.5rem;
}
.progress-bar { height: 100%; width: 0%; background: var(--primary); }

.schedule-item {
  background: var(--bg-alt); padding: 0.75rem 1rem; margin-bottom: 0.5rem;
  border-radius: 8px; font-size: 16px; border: 1px solid rgba(0,0,0,0.05);
}

/* Fascinations */
.fascinations-list {
  display: flex; flex-direction: column; gap: 1rem; margin-top: 3rem;
}

.fascination-item {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 20px;
  border-left: 4px solid var(--accent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
  margin-top: 4rem;
}

.price-card {
  background: var(--bg-main);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
}

.price-card.featured {
  background: var(--primary);
  color: var(--bg-main);
  transform: scale(1.03);
  box-shadow: 0 24px 48px rgba(0,0,0,0.1);
  border: none;
}

.price-card.featured p, .price-card.featured .tag-text {
  color: var(--bg-main);
  opacity: 0.9;
}

.price {
  font-size: 42px;
  font-weight: 800;
  margin: 1.5rem 0;
  font-family: var(--font-serif);
}

/* CTA */
.cta-section {
  text-align: center;
}

.cta-btn {
  font-size: 19px !important;
  padding: 1.5rem 4rem !important;
}

/* Footer */
footer {
  background: #111111;
  color: rgba(255,255,255,0.7);
  padding: 4rem 2rem;
  text-align: center;
}

.footer-nav {
  margin: 2rem 0; display: flex; justify-content: center; gap: 2rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.6); text-decoration: none; font-family: var(--font-sans); font-size: 14px;
}

.system-status {
  display: inline-flex; align-items: center; gap: 0.75rem; font-family: var(--font-sans); font-size: 13px; margin-top: 3rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.05em;
}

.pulse-dot {
  width: 8px; height: 8px; background-color: #00ff00; border-radius: 50%; box-shadow: 0 0 10px #00ff00; animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  /* Layout */
  .container { padding: 0 1.25rem !important; }
  .padding-section { padding: 4rem 0 !important; }

  /* Mobile Typography - User Required 30-36px for H */
  h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  h3 { font-size: 28px; }
  .hero h1 .serif { font-size: 46px; }

  .navbar { width: auto; bottom: 1.25rem; left: 50%; transform: translateX(-50%); right: auto; top: auto; padding: 0; justify-content: center; gap: 0; background: transparent; backdrop-filter: none; border: none; box-shadow: none; }
  .nav-logo { display: none; }
  .btn { width: 100%; text-align: center; padding: 1.25rem !important; font-size: 19px !important; }
  .navbar .btn { width: auto; padding: 0.85rem 1.6rem !important; font-size: 15px !important; }
  
  .hero { align-items: center; padding-bottom: 2rem; padding-top: 6rem; min-height: 80vh; }
  .hero-content { margin-left: 0; text-align: center; }
  .hero-callout { border-left: none; padding-left: 0; padding-top: 1rem; border-top: 3px solid var(--accent); margin: 1.5rem auto 0; text-align: left; }
  
  .story h2 { text-align: center; }
  .narrative-container { text-align: center; }
  .bad-list { text-align: left; display: inline-block; margin-top: 1.5rem; }
  .pills-container { justify-content: center; margin: 1.5rem 0 3rem 0; }
  .emphasis-text { font-size: 28px; }
  
  .discovery { margin: 0; border-radius: 24px; padding: 4rem 1.25rem !important; }
  .grid-icons { grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2rem 0; }
  .big-question p { font-size: 34px; margin-top: 2rem; }
  
  .features-grid, .pricing-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .feature-card { padding: 2rem 1.5rem; }
  .price-card.featured { transform: scale(1); margin: 0; }
  
  .cta-section h2 { font-size: 36px !important; }
  .cta-section p { text-align: center; }
  
  .footer-nav { flex-direction: column; gap: 1rem; align-items: center; }
  footer { padding: 3rem 1.25rem; }
}
