@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Caveat:wght@400;500;600;700&display=swap');

:root {
  --bg: #FFFBF5;
  --bg-alt: #FFF5EC;
  --surface: #FFF0E6;
  --surface-alt: #FFE8D8;
  --accent: #FF6B6B;
  --accent-hover: #FF5252;
  --secondary: #FFD93D;
  --secondary-hover: #FFD000;
  --success: #4ECDC4;
  --text: #1A0E1F;
  --text-secondary: #4A3F52;
  --muted: #8B7A9E;
  --border: #E8DCD0;
  --card-bg: #FFFFFF;
  --nav-bg: rgba(255, 251, 245, 0.9);
  --shadow: 0 4px 24px rgba(26, 14, 31, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 14, 31, 0.12);
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-hand: 'Caveat', cursive;
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dark {
  --bg: #1A0E1F;
  --bg-alt: #211228;
  --surface: #2D1B35;
  --surface-alt: #3A2543;
  --accent: #FF6B6B;
  --accent-hover: #FF8585;
  --secondary: #FFD93D;
  --secondary-hover: #FFE066;
  --success: #4ECDC4;
  --text: #F8F5F0;
  --text-secondary: #D4CCD9;
  --muted: #B8B0C8;
  --border: #3A2D40;
  --card-bg: #2D1B35;
  --nav-bg: rgba(26, 14, 31, 0.9);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  transition: background 0.3s, color 0.3s;
}
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.15; color: var(--text); }
.font-hand { font-family: var(--font-hand); }

/* === Container === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* === Navigation === */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--border);
  padding: 0 1.5rem;
  transition: background 0.3s, border-color 0.3s;
}
.site-nav .container { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.site-logo { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--accent); }
.site-logo span { color: var(--text); }
.nav-links { display: none; gap: 0.25rem; align-items: center; }
.nav-links a {
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.9rem; font-weight: 500;
  color: var(--text-secondary); transition: all 0.2s;
}
.nav-links a:hover { background: var(--surface); color: var(--text); }
.nav-links a.nav-cta {
  background: var(--accent); color: #fff; margin-left: 0.5rem;
}
.nav-links a.nav-cta:hover { background: var(--accent-hover); transform: scale(1.05); }
.nav-toggle { display: flex; align-items: center; gap: 0.75rem; }
.theme-btn {
  width: 40px; height: 40px; border-radius: 999px; border: 2px solid var(--border);
  background: var(--surface); cursor: pointer; display: flex; align-items: center;
  justify-content: center; color: var(--text); transition: all 0.2s;
  font-size: 1.1rem;
}
.theme-btn:hover { border-color: var(--accent); }
.hamburger {
  width: 40px; height: 40px; border-radius: 999px; border: 2px solid var(--border);
  background: var(--surface); cursor: pointer; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px; transition: all 0.2s;
}
.hamburger span {
  display: block; width: 18px; height: 2px; background: var(--text);
  border-radius: 2px; transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }
.hamburger:hover { border-color: var(--accent); }

.mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 99; padding: 2rem 1.5rem;
  display: none; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 1rem; border-radius: 12px; font-size: 1.1rem;
  font-weight: 500; color: var(--text-secondary); transition: all 0.2s;
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--surface); color: var(--text); }
.mobile-menu a.mobile-cta {
  background: var(--accent); color: #fff; text-align: center; margin-top: 1.5rem;
  border-bottom: none; border-radius: 999px; font-weight: 600;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* === Hero Section === */
.hero { padding: 8rem 0 4rem; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 217, 61, 0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.2rem, 7vw, 4rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary); margin-bottom: 2rem; max-width: 540px;
  line-height: 1.4;
}
.hero-sub em { font-style: italic; color: var(--accent); }
.hero-visual {
  margin-top: 2rem; position: relative;
}
.chart-comparison {
  display: flex; align-items: flex-end; gap: 2rem; padding: 2rem;
  background: var(--card-bg); border-radius: 24px; border: 2px solid var(--border);
  box-shadow: var(--shadow); max-width: 500px;
}
.chart-bar-group { flex: 1; text-align: center; }
.chart-bar {
  width: 80px; max-width: 100%; border-radius: 12px 12px 0 0;
  margin: 0 auto 0.75rem; position: relative; transition: height 1s var(--bounce);
}
.chart-bar.airbnb-bar {
  height: 200px; background: linear-gradient(180deg, #FF5A5F, #E0484D);
}
.chart-bar.you-bar {
  height: 40px; background: linear-gradient(180deg, var(--success), #3DBDB5);
}
.chart-label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); }
.chart-value {
  font-family: var(--font-display); font-size: 0.9rem; font-weight: 600;
  position: absolute; top: -1.5rem; left: 50%; transform: translateX(-50%);
  white-space: nowrap; color: var(--muted);
}
.hero-doodle {
  position: absolute; top: -20px; right: -20px; width: 80px; height: 80px;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
  .hero-visual { margin-top: 0; }
  .hero { padding: 10rem 0 6rem; }
}

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 999px; font-family: var(--font-display);
  font-weight: 600; font-size: 1.05rem; border: none; cursor: pointer;
  transition: all 0.25s var(--bounce); text-decoration: none;
}
.btn-primary {
  background: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(255, 107, 107, 0.3);
}
.btn-primary:hover { background: var(--accent-hover); transform: scale(1.05) translateY(-2px); box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4); }
.btn-secondary {
  background: var(--surface); color: var(--text); border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); transform: translateY(-2px); }
.btn-micromini {
  display: block; margin-top: 0.75rem; font-size: 0.8rem; color: var(--muted);
}
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* === Section base === */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-label {
  font-family: var(--font-hand); font-size: 1.1rem; color: var(--accent); margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin-bottom: 2.5rem;
  line-height: 1.5;
}

/* === Roast Cards (Stacking) === */
.roast-stack { position: relative; }
.roast-card {
  position: sticky; padding: 1.5rem 2rem; border-radius: 20px;
  margin-bottom: 1.5rem; transition: all 0.3s;
  border: 2px solid var(--border);
}
.roast-card:nth-child(1) { top: 80px; z-index: 5; background: var(--card-bg); }
.roast-card:nth-child(2) { top: 100px; z-index: 4; background: var(--card-bg); }
.roast-card:nth-child(3) { top: 120px; z-index: 3; background: var(--card-bg); }
.roast-card:nth-child(4) { top: 140px; z-index: 2; background: var(--card-bg); }
.roast-card:nth-child(5) { top: 160px; z-index: 1; background: var(--card-bg); }

.roast-card::before {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px; height: 4px;
  border-radius: 20px 20px 0 0;
}
.roast-card:nth-child(1)::before { background: var(--accent); }
.roast-card:nth-child(2)::before { background: var(--secondary); }
.roast-card:nth-child(3)::before { background: var(--success); }
.roast-card:nth-child(4)::before { background: #A78BFA; }
.roast-card:nth-child(5)::before { background: #F97316; }

.roast-card:nth-child(odd) { transform: rotate(-0.5deg); }
.roast-card:nth-child(even) { transform: rotate(0.5deg); }

.roast-number {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 700;
  color: var(--muted); opacity: 0.3; line-height: 1; margin-bottom: 0.25rem;
}
.roast-card h3 {
  font-size: 1.2rem; margin-bottom: 0.5rem;
}
.roast-card p {
  color: var(--text-secondary); font-size: 0.95rem; line-height: 1.6;
}
.roast-card .roast-icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1rem;
}
.roast-card:nth-child(1) .roast-icon { background: rgba(255, 107, 107, 0.15); color: var(--accent); }
.roast-card:nth-child(2) .roast-icon { background: rgba(255, 217, 61, 0.2); color: #D4A800; }
.roast-card:nth-child(3) .roast-icon { background: rgba(78, 205, 196, 0.15); color: var(--success); }
.roast-card:nth-child(4) .roast-icon { background: rgba(167, 139, 250, 0.15); color: #A78BFA; }
.roast-card:nth-child(5) .roast-icon { background: rgba(249, 115, 22, 0.15); color: #F97316; }

@media (max-width: 767px) {
  .roast-card { padding: 1.25rem; }
  .roast-card:nth-child(1) { top: 72px; }
  .roast-card:nth-child(2) { top: 88px; }
  .roast-card:nth-child(3) { top: 104px; }
  .roast-card:nth-child(4) { top: 120px; }
  .roast-card:nth-child(5) { top: 136px; }
}

/* === Pivot Section === */
.pivot-visual {
  border-radius: 24px; overflow: hidden; position: relative;
  border: 2px solid var(--border); box-shadow: var(--shadow-lg);
  background: var(--card-bg);
}
.pivot-visual img { width: 100%; height: 300px; object-fit: cover; }
.pivot-visual .pivot-overlay {
  padding: 1.5rem; background: var(--card-bg);
  border-top: 2px solid var(--border);
}
.pivot-visual .pivot-overlay p {
  font-family: var(--font-hand); font-size: 1.1rem; color: var(--text-secondary);
}
@media (min-width: 768px) {
  .pivot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
}

/* === Testimonials === */
.testimonials-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}
.testimonial-card {
  padding: 1.5rem; border-radius: 20px; border: 2px solid var(--border);
  background: var(--card-bg); position: relative;
}
.testimonial-card::after {
  content: ''; position: absolute; bottom: -10px; left: 30px;
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid var(--card-bg);
  filter: drop-shadow(0 2px 1px var(--border));
}
.testimonial-card:nth-child(odd) { transform: rotate(-1deg); }
.testimonial-card:nth-child(even) { transform: rotate(1deg); }
.testimonial-card:nth-child(3) { transform: rotate(-0.5deg); }
.testimonial-text {
  font-family: var(--font-body); font-size: 0.95rem; line-height: 1.7;
  color: var(--text-secondary); margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-author {
  font-family: var(--font-hand); font-size: 1rem; color: var(--text);
  font-weight: 600;
}
.testimonial-author span { color: var(--muted); font-weight: 400; }

/* === CTA Section === */
.cta-section {
  padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
  background: var(--surface);
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 107, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; position: relative;
}
.cta-section p {
  color: var(--text-secondary); max-width: 500px; margin: 0 auto 2rem; position: relative;
}
.cta-section .btn-group { justify-content: center; position: relative; }

/* === Features Accordion === */
.feature-item {
  border: 2px solid var(--border); border-radius: 20px; margin-bottom: 1rem;
  overflow: hidden; transition: all 0.3s; background: var(--card-bg);
}
.feature-item:hover { border-color: var(--accent); }
.feature-trigger {
  width: 100%; display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 2rem; background: none; border: none; cursor: pointer;
  text-align: left; color: var(--text);
  transition: background 0.2s;
}
.feature-trigger:hover { background: var(--surface); }
.feature-question {
  flex: 1; font-family: var(--font-hand); font-size: 1.2rem; font-weight: 600;
  color: var(--text-secondary);
}
.feature-trigger .feature-icon {
  width: 44px; height: 44px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0;
  background: rgba(255, 107, 107, 0.1); color: var(--accent);
}
.feature-chevron {
  width: 28px; height: 28px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  background: var(--surface); transition: transform 0.3s var(--bounce);
  color: var(--muted); font-size: 0.9rem; font-weight: 600;
}
.feature-item.open .feature-chevron { transform: rotate(180deg); }
.feature-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s var(--bounce);
}
.feature-answer-inner {
  padding: 0 2rem 1.5rem; border-top: 1px solid var(--border);
  padding-top: 1.5rem; color: var(--text-secondary); line-height: 1.7;
}
.feature-answer-inner strong { color: var(--text); font-weight: 600; }

/* === Pricing === */
.pricing-card {
  max-width: 560px; margin: 0 auto; padding: 3rem 2.5rem;
  border-radius: 32px; border: 2px solid var(--border); background: var(--card-bg);
  box-shadow: var(--shadow-lg); text-align: center; position: relative;
}
.pricing-card::before {
  content: ''; position: absolute; top: -2px; left: -2px; right: -2px; height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--secondary), var(--success));
  border-radius: 32px 32px 0 0;
}
.pricing-amount {
  font-family: var(--font-display); font-size: 4rem; font-weight: 700;
  color: var(--accent); line-height: 1;
}
.pricing-amount small { font-size: 1.5rem; color: var(--muted); }
.pricing-sub { color: var(--muted); margin-bottom: 2rem; font-size: 1.1rem; }
.pricing-features { list-style: none; text-align: left; margin: 2rem 0; }
.pricing-features li {
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.75rem; font-size: 0.95rem;
  color: var(--text-secondary);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: ''; width: 20px; height: 20px; border-radius: 50%;
  background: var(--success); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.1);
}
.pricing-toggle {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--surface); padding: 0.5rem; border-radius: 999px;
  margin-bottom: 2rem; cursor: pointer;
}
.pricing-toggle span {
  padding: 0.4rem 1rem; border-radius: 999px; font-size: 0.85rem;
  font-weight: 500; color: var(--muted); transition: all 0.2s;
  cursor: pointer;
}
.pricing-toggle span.active { background: var(--accent); color: #fff; }
.pricing-compare {
  max-width: 560px; margin: 3rem auto 0; padding: 2rem;
  border-radius: 20px; background: var(--surface);
  border: 2px solid var(--border); text-align: center;
}
.pricing-compare p {
  font-size: 1.1rem; color: var(--text-secondary); line-height: 1.6;
}
.pricing-compare strong { color: var(--accent); }
.pricing-faq { max-width: 640px; margin: 3rem auto 0; }
.pricing-faq details {
  padding: 1.25rem 0; border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.pricing-faq details:last-child { border-bottom: none; }
.pricing-faq summary {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text); list-style: none;
}
.pricing-faq summary::-webkit-details-marker { display: none; }
.pricing-faq summary::after {
  content: '+'; font-size: 1.4rem; color: var(--accent); transition: transform 0.2s;
}
.pricing-faq details[open] summary::after { transform: rotate(45deg); }
.pricing-faq .faq-answer {
  margin-top: 0.75rem; color: var(--text-secondary); line-height: 1.7;
  font-size: 0.95rem;
}

/* === Contact Form === */
.contact-form-wrap {
  max-width: 560px; margin: 0 auto; padding: 2.5rem;
  border-radius: 24px; border: 2px solid var(--border);
  background: var(--card-bg); transition: all 0.3s;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-family: var(--font-hand); font-size: 1.05rem;
  margin-bottom: 0.4rem; color: var(--text);
}
.form-field {
  width: 100%; padding: 0.85rem 1.25rem; border-radius: 12px;
  border: 2px solid var(--border); background: var(--bg);
  color: var(--text); transition: all 0.2s; font-size: 0.95rem;
}
.form-field:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1); }
.form-field::placeholder { color: var(--muted); }
select.form-field { appearance: none; cursor: pointer; }
textarea.form-field { min-height: 120px; resize: vertical; }

.form-success {
  text-align: center; padding: 3rem 2rem; display: none;
}
.form-success.show { display: block; }
.form-success-icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--success);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; font-size: 1.5rem; color: #fff;
}
.form-success h3 { margin-bottom: 0.75rem; }
.form-success p { color: var(--text-secondary); line-height: 1.6; }

/* === Footer === */
.site-footer {
  padding: 3rem 0; border-top: 2px solid var(--border); text-align: center;
}
.site-footer p { color: var(--muted); font-size: 0.85rem; line-height: 1.6; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* === Animations === */
@keyframes bounceIn {
  0% { opacity: 0; transform: translateY(40px) scale(0.95); }
  60% { transform: translateY(-8px) scale(1.02); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(-1deg); }
  50% { transform: rotate(1deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
@keyframes drawLine {
  0% { width: 0; }
  100% { width: 100%; }
}

.animate-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s var(--bounce), transform 0.6s var(--bounce);
}
.animate-in.visible {
  opacity: 1; transform: translateY(0);
}
.animate-in-delay-1 { transition-delay: 0.1s; }
.animate-in-delay-2 { transition-delay: 0.2s; }
.animate-in-delay-3 { transition-delay: 0.3s; }
.animate-in-delay-4 { transition-delay: 0.4s; }

.bounce-in {
  animation: bounceIn 0.6s var(--bounce) forwards;
}

/* === Doodle / Hand-drawn elements === */
.doodle-arrow {
  display: inline-block; width: 60px; height: 30px; position: relative;
}
.doodle-arrow svg { width: 100%; height: 100%; }

.highlight-yellow {
  background: linear-gradient(180deg, transparent 60%, rgba(255, 217, 61, 0.35) 60%);
  display: inline; padding: 0 0.25rem;
}
.highlight-coral {
  background: linear-gradient(180deg, transparent 60%, rgba(255, 107, 107, 0.25) 60%);
  display: inline; padding: 0 0.25rem;
}
.squiggle-underline {
  text-decoration: none;
  background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='12' viewBox='0 0 120 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 10 C 20 2, 30 18, 50 10 C 70 2, 80 18, 100 10 C 110 6, 115 12, 118 10' stroke='%23FF6B6B' stroke-width='2.5' fill='none' stroke-linecap='round' /%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: 0 100%;
  padding-bottom: 4px;
  background-size: 60px 12px;
}

/* === Speech bubble variants === */
.speech-bubble-left {
  position: relative; border-radius: 20px 20px 20px 4px;
}
.speech-bubble-left::before {
  content: ''; position: absolute; bottom: -10px; left: 20px;
  border: 10px solid transparent; border-top-color: var(--border); border-bottom: 0;
}

.speech-bubble-right {
  position: relative; border-radius: 20px 20px 4px 20px;
}

/* === Sticky Note === */
.sticky-note {
  padding: 1.5rem; border-radius: 4px; position: relative;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.06);
  transform: rotate(-1deg);
}
.sticky-note::before {
  content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 16px; background: rgba(0,0,0,0.06);
  border-radius: 2px;
}
.sticky-note.yellow { background: #FFF3B0; color: #3D3520; }
.sticky-note.pink { background: #FFD6D6; color: #4A2020; }
.sticky-note.green { background: #C5F0E8; color: #1A3D35; }

/* === Torn paper edge (CSS only) === */
.torn-edge {
  position: relative;
}
.torn-edge::after {
  content: '';
  position: absolute;
  bottom: -16px; left: 0; right: 0; height: 16px;
  background:
    linear-gradient(135deg, var(--bg) 33%, transparent 33%) 0 0,
    linear-gradient(225deg, var(--bg) 33%, transparent 33%) 0 0;
  background-size: 16px 16px;
  background-repeat: repeat-x;
}

/* === Page header === */
.page-header {
  padding: 8rem 0 3rem; text-align: center;
}
.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1rem;
}
.page-header p {
  font-size: 1.1rem; color: var(--text-secondary); max-width: 500px; margin: 0 auto;
}

/* === Roast section intro === */
.roast-intro {
  position: relative; padding: 2rem; border-radius: 20px;
  background: var(--surface); border: 2px solid var(--border); margin-bottom: 3rem;
  text-align: center;
}
.roast-intro h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 0.5rem; }
.roast-intro p { color: var(--text-secondary); font-size: 1rem; }
.roast-intro .doodle-star {
  position: absolute; top: -15px; right: -10px; width: 40px; height: 40px;
}

/* === Split hero visual === */
.split-doodle {
  display: flex; gap: 1rem; align-items: stretch;
}
.split-card {
  flex: 1; border-radius: 20px; overflow: hidden;
  border: 2px solid var(--border); background: var(--card-bg); position: relative;
}
.split-card img { width: 100%; height: 200px; object-fit: cover; }
.split-tag {
  position: absolute; font-family: var(--font-display); font-weight: 700;
  font-size: 0.8rem; padding: 0.5rem 1rem; border-radius: 999px;
}
.split-tag.tag-airbnb { top: 10px; right: 10px; background: #FF5A5F; color: #fff; }
.split-tag.tag-you { top: 10px; right: 10px; background: var(--success); color: #fff; }
.split-amount {
  padding: 1rem; font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 600; text-align: center; color: var(--text);
}
.split-amount.small { font-size: 0.85rem; color: var(--muted); }

@media (max-width: 479px) {
  .split-doodle { flex-direction: column; }
}

/* === VS badge === */
.vs-badge {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--border);
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  color: var(--muted); flex-shrink: 0;
}

/* === Scroll progress === */
.scroll-line {
  position: fixed; top: 0; left: 0; width: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  z-index: 200; transition: width 0.1s linear;
}

/* === Partners / trust bar === .trust-bar removed, not needed */

/* === SVG doodle paths === */
.doodle-line {
  fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round;
}

/* ===== Responsive helpers ===== */
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ===== Active page nav indicator ===== */
.nav-links a.active-page {
  background: var(--surface); color: var(--text);
}

/* ===== Mobile menu open body lock ===== */
body.menu-open { overflow: hidden; }

/* ===== Print styles ===== */
@media print {
  .site-nav, .scroll-line { display: none; }
  .hero { padding-top: 2rem; }
}
