@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  /* Brand Palette from App Screenshots */
  --bg-color: #FAF7F2;     /* Soft Light Cream */
  --surface-color: #FFFFFF; /* Pure white for cards */
  --surface-glass: rgba(255, 255, 255, 0.85);
  --border-color: #ebdcca; /* Soft tan border */
  --gold: #C09A6B;         /* Muted gold/tan */
  --gold-glow: rgba(192, 154, 107, 0.4);
  --text-main: #423023;    /* Deep warm brown */
  --text-muted: #827265;   /* Muted brown/gray */
  
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  
  --max-width: 1200px;
  --border-radius: 32px; /* Highly rounded matching app */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Base Elements */
a {
  color: var(--gold);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--text-main);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0 0 16px 0;
  color: var(--text-main);
}

p, li, ul {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-weight: 400;
}

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

/* Navigation */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 24px 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: var(--surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

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

.logo {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-main);
}
.logo span {
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-main);
}
.nav-links a:hover {
  color: var(--gold);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 99px; /* Pill shaped like in app */
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.2px;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover {
  background: var(--text-main);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(66, 48, 35, 0.15);
}
.btn-outline {
  background: #fff;
  color: var(--text-main);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: var(--bg-color);
  color: var(--text-main);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
}

.hero-inner {
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content h1 {
  font-size: 68px;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-content p {
  font-size: 19px;
  max-width: 480px;
  margin-bottom: 40px;
  color: var(--text-muted);
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}
.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.8;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(66, 48, 35, 0.12), 0 10px 20px rgba(66, 48, 35, 0.05);
  border: 8px solid #fff;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-image-wrapper:hover {
  transform: translateY(-8px) scale(1.02);
}
.hero-image-wrapper img {
  width: 100%;
  display: block;
}

/* Sections Global */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}
.section-eyebrow {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(192, 154, 107, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
}
.section-header h2 {
  font-size: 48px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.section-header p {
  font-size: 19px;
  max-width: 600px;
  margin: 0 auto;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.feature-card {
  background: var(--surface-color);
  border: 1px solid rgba(0,0,0,0.02);
  padding: 48px;
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
  box-shadow: 0 16px 40px rgba(66, 48, 35, 0.04), 0 4px 10px rgba(66, 48, 35, 0.02);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 60px rgba(66, 48, 35, 0.08), 0 10px 20px rgba(66, 48, 35, 0.04);
}
.feature-icon {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--bg-color);
  border-radius: 20px;
  color: var(--gold);
}
.feature-icon svg {
  width: 32px;
  height: 32px;
}
.feature-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
}

/* Steps Section */
.steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--surface-color);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}
.step-number {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  font-style: italic;
}
.step-content {
  flex: 1;
}
.step-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
}
.step-content p {
  margin: 0;
  font-size: 17px;
}

/* Pricing Section - Modeled to Match App Screenshot */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  padding: 48px;
  border-radius: var(--border-radius);
  position: relative;
  transition: var(--transition-smooth);
}
.pricing-card.featured {
  border-color: var(--gold);
  border-width: 2px;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(192, 154, 107, 0.15);
}
.badge {
  position: absolute;
  top: 32px;
  right: 32px;
  background: var(--gold);
  color: #fff;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
}
.price-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.price-block .price {
  font-size: 56px;
  color: var(--text-main);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -2px;
}
.price-block .interval {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.plan-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}
.plan-features li::before {
  content: '✓';
  color: var(--gold);
  font-size: 16px;
  font-weight: bold;
}
.pricing-card .btn {
  width: 100%;
}

/* Promise/Manifesto */
.promise {
  text-align: center;
  background: var(--surface-color);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.promise h2 {
  font-family: var(--font-sans);
}
.promise-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.pill {
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 99px;
  font-size: 14px;
  color: var(--text-main);
  background: var(--bg-color);
  font-weight: 500;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 28px 0;
  color: var(--text-main);
  font-size: 22px;
  font-family: var(--font-serif);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-icon {
  color: var(--gold);
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding-bottom: 28px;
}

/* Footer */
.site-footer {
  padding: 80px 0 40px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.05);
  margin-top: 80px;
}
.footer-links {
  margin-bottom: 24px;
}
.footer-links a {
  margin: 0 16px;
  color: var(--text-muted);
  font-weight: 500;
}
.footer-links a:hover {
  color: var(--gold);
}
.copyright {
  font-size: 14px;
  color: rgba(0,0,0,0.3);
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: scale(1); }
  .step-item { flex-direction: column; text-align: center; }
  .logo { font-size: 24px;}
}

@media (max-width: 600px) {
  .nav-inner { flex-direction: column; gap: 16px; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .hero { padding-top: 140px; }
  .hero-content h1 { font-size: 42px; }
  .section-header h2 { font-size: 32px; }
  .feature-card { padding: 32px; }
  .pricing-card { padding: 32px; }
  .page-header { padding: 140px 0 60px; }
  .page-header h1 { font-size: 36px; }
  .page-content { padding: 32px 24px; margin: 40px auto; }
}

/* Content Pages (Privacy, Terms) */
.page-header {
  padding: 180px 0 80px;
  text-align: center;
  background: var(--surface-color);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.page-header h1 {
  font-size: 56px;
}
.page-content {
  max-width: 800px;
  margin: 80px auto;
  background: var(--surface-color);
  padding: 60px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.02);
}
.page-content h2 { margin-top: 60px; font-size: 32px; }
.page-content h3 { margin-top: 40px; font-size: 24px; }
.page-content ul { color: var(--text-muted); margin-bottom: 24px; padding-left: 20px;}
.page-content li { margin-bottom: 10px; }

/* Contact Form Elements */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}
.form-control {
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text-main);
  transition: var(--transition-smooth);
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
}
textarea.form-control {
  min-height: 150px;
  resize: vertical;
}
.contact-form .btn {
  margin-top: 16px;
  align-self: flex-start;
}
