/* ============================================
   Pointy Nose Website Styles
   ============================================ */

:root {
  --primary: #40306F;
  --primary-light: #58468C;
  --primary-dark: #2D2150;
  --accent: #F0AF45;
  --accent-light: #F7C977;
  --coral: #E58E73;
  --coral-bg: #FCE9E3;
  --bg-cream: #F7F2EA;
  --bg-white: #FFFFFF;
  --bg-subtle: #E9E2F8;
  --text-dark: #232323;
  --text-mid: #6D6A73;
  --text-light: #9A969E;
  --text-inverse: #FFFFFF;
  --border: #ECE7E1;
  --success: #34A86B;
  --shadow-sm: 0 2px 8px rgba(64, 48, 111, 0.06);
  --shadow-md: 0 4px 24px rgba(64, 48, 111, 0.1);
  --shadow-lg: 0 12px 48px rgba(64, 48, 111, 0.15);
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Plus Jakarta Sans', -apple-system, sans-serif; font-size: 16px; line-height: 1.6; color: var(--text-dark); background: var(--bg-cream); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition-fast); }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; color: var(--text-dark); }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 700; }
p { color: var(--text-mid); }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm); padding: 12px 24px; font-family: inherit; font-size: 15px; font-weight: 600; border: none; border-radius: var(--radius-full); cursor: pointer; transition: all var(--transition-base); }
.btn svg { flex-shrink: 0; }
.btn-primary { background: var(--primary); color: var(--text-inverse); box-shadow: 0 4px 16px rgba(64, 48, 111, 0.25); }
.btn-primary:hover { background: var(--primary-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(64, 48, 111, 0.3); }
.btn-secondary { background: var(--bg-white); color: var(--primary); border: 1.5px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); background: var(--bg-subtle); }
.btn-accent { background: var(--accent); color: var(--text-dark); box-shadow: 0 4px 16px rgba(240, 175, 69, 0.3); }
.btn-accent:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; }

/* Navigation */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(247, 242, 234, 0.92); backdrop-filter: blur(20px); border-bottom: 1px solid transparent; transition: all var(--transition-base); }
.nav.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-container { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 14px 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.logo-icon { width: 40px; height: 40px; border-radius: var(--radius-md); object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: var(--space-xl); }
.nav-links a:not(.btn) { font-size: 14px; font-weight: 500; color: var(--text-mid); }
.nav-links a:not(.btn):hover { color: var(--primary); }
.nav-links .btn { margin-left: var(--space-sm); }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer; }
.mobile-menu-btn span { width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--bg-white); padding: var(--space-lg); flex-direction: column; gap: var(--space-sm); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); z-index: 999; }
.mobile-menu.active { display: flex; }
.mobile-menu a { padding: var(--space-md); font-weight: 500; color: var(--text-dark); border-radius: var(--radius-md); }

/* Phone Frame */
.phone-frame { position: relative; width: 260px; background: #1a1a1a; border-radius: 40px; padding: 10px; box-shadow: var(--shadow-lg), inset 0 0 0 2px #333; }
.phone-frame.small { width: 220px; border-radius: 36px; padding: 8px; }
.phone-frame::before { content: ''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 80px; height: 24px; background: #1a1a1a; border-radius: 12px; z-index: 10; }
.phone-frame.small::before { width: 60px; height: 20px; top: 12px; }
.phone-frame-inner { background: var(--bg-cream); border-radius: 30px; overflow: hidden; aspect-ratio: 9/19.5; }
.phone-frame.small .phone-frame-inner { border-radius: 28px; }
.phone-screen { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* Laptop Frame */
.laptop-frame { width: 100%; max-width: 480px; }
.laptop-screen { background: #1a1a1a; border-radius: 12px 12px 0 0; padding: 8px 8px 0 8px; }
.laptop-screen-inner { background: var(--bg-cream); border-radius: 6px 6px 0 0; overflow: hidden; aspect-ratio: 16/10; }
.laptop-base { background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%); height: 16px; border-radius: 0 0 8px 8px; display: flex; align-items: center; justify-content: center; }
.laptop-notch { width: 80px; height: 6px; background: #333; border-radius: 0 0 4px 4px; margin-top: -2px; }


/* Hero */
.hero { padding: 140px 0 60px; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; }
.hero-content { max-width: 560px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: var(--bg-white); border: 1px solid var(--border); color: var(--primary); border-radius: var(--radius-full); font-size: 13px; font-weight: 600; margin-bottom: var(--space-lg); }
.badge-icon { color: var(--accent); }
.hero h1 { margin-bottom: var(--space-lg); }
.hero-subtitle { font-size: 1.125rem; line-height: 1.7; margin-bottom: var(--space-xl); }
.hero-cta { display: flex; gap: var(--space-md); flex-wrap: wrap; margin-bottom: var(--space-xl); }
.hero-trust { display: flex; gap: var(--space-lg); flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--text-mid); }
.trust-item svg { color: var(--success); }
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-decoration { position: absolute; border-radius: 50%; z-index: -1; }
.decoration-1 { width: 320px; height: 320px; background: var(--bg-subtle); top: -60px; right: -120px; opacity: 0.7; }
.decoration-2 { width: 180px; height: 180px; background: linear-gradient(135deg, var(--accent-light), var(--coral)); bottom: -20px; left: -60px; opacity: 0.3; }

/* Early Access Banner */
.early-access-banner { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: var(--space-xl) 0; }
.banner-content { display: flex; align-items: center; justify-content: space-between; gap: var(--space-xl); flex-wrap: wrap; }
.banner-text { color: var(--text-inverse); }
.banner-text h3 { color: var(--text-inverse); font-size: 1.25rem; margin-bottom: 4px; }
.banner-text p { color: rgba(255, 255, 255, 0.85); margin: 0; }
.banner-text strong { color: var(--accent-light); }

/* Sections */
section { padding: var(--space-4xl) 0; }

/* Premium Section Intros - Editorial Style */
.section-intro { margin-bottom: var(--space-3xl); }
.section-intro.left-aligned { text-align: left; }
.section-intro-inner { text-align: center; max-width: 720px; margin: 0 auto; }

.display-heading {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--text-dark);
  margin-bottom: var(--space-lg);
}
.display-heading.light { color: var(--text-inverse); }

.display-subheading {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 540px;
  margin: 0 auto;
}

.section-divider {
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 2px;
  margin-top: var(--space-md);
}
.section-divider.coral { background: linear-gradient(90deg, var(--coral), #F4A08A); }
.section-divider.light { background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.3)); }
.section-divider.centered { margin: var(--space-md) auto 0; }

/* Benefits Headlines */
.benefits-headline {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: var(--space-md);
}

/* Story Headline */
.story-headline {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: var(--space-xl);
}

/* Legacy section header (for screenshots, activities) */
.section-header { text-align: center; max-width: 600px; margin: 0 auto var(--space-3xl); }
.section-header h2 { margin-bottom: var(--space-md); font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: -0.025em; }
.section-header p { font-size: 1.125rem; color: var(--text-mid); }

/* Legacy section label - kept for compatibility */
.section-label { display: inline-block; padding: 6px 14px; background: var(--bg-subtle); color: var(--primary); font-size: 13px; font-weight: 600; border-radius: var(--radius-full); margin-bottom: var(--space-md); }
.provider-label { background: var(--coral-bg); color: var(--coral); }

/* Screenshots Section */
.screenshots { background: var(--bg-white); }
.screenshots-row { display: flex; justify-content: center; align-items: flex-start; gap: var(--space-3xl); }
.screenshot-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.screenshot-item .phone-frame { margin-bottom: var(--space-lg); }
.screenshot-item.featured { margin-top: -20px; }
.screenshot-item.featured .phone-frame { width: 280px; }
.screenshot-item h3 { margin-bottom: var(--space-xs); }
.screenshot-item p { font-size: 14px; max-width: 200px; }

/* How It Works */
.how-it-works { background: var(--bg-cream); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.step-card { position: relative; padding: var(--space-xl); background: var(--bg-white); border-radius: var(--radius-xl); text-align: center; box-shadow: var(--shadow-sm); transition: all var(--transition-base); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-number { position: absolute; top: -14px; left: 24px; width: 28px; height: 28px; background: var(--primary); color: var(--text-inverse); font-size: 13px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.step-icon { width: 64px; height: 64px; margin: 0 auto var(--space-md); background: var(--bg-subtle); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.step-card h3 { margin-bottom: var(--space-sm); }
.step-card p { font-size: 14px; line-height: 1.6; }

/* Activities */
.activities-showcase { background: var(--bg-white); }
.activities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.activity-card { border-radius: var(--radius-xl); overflow: hidden; background: var(--bg-white); box-shadow: var(--shadow-sm); transition: all var(--transition-base); }
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.activity-image { height: 180px; overflow: hidden; }
.activity-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-base); }
.activity-card:hover .activity-image img { transform: scale(1.05); }
.activity-content { padding: var(--space-lg); }
.activity-content h3 { margin-bottom: var(--space-xs); font-size: 1rem; }
.activity-content p { font-size: 13px; margin: 0; }

/* Benefits */
.benefits { overflow: hidden; padding-top: var(--space-3xl); }
.benefits-content { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; }
.benefits-content.reverse { direction: rtl; }
.benefits-content.reverse > * { direction: ltr; }
.benefits-text { max-width: 520px; }
.benefits-intro { font-size: 1.0625rem; margin-bottom: var(--space-xl); line-height: 1.7; }
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-lg); }
.benefits-list li { display: flex; gap: var(--space-md); }
.benefit-icon { flex-shrink: 0; width: 48px; height: 48px; background: var(--bg-subtle); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.provider-icon { background: var(--coral-bg); color: var(--coral); }
.benefits-list strong { display: block; margin-bottom: 4px; color: var(--text-dark); font-size: 15px; }
.benefits-list p { font-size: 14px; margin: 0; line-height: 1.5; }
.benefits-visual { display: flex; justify-content: center; }
.parents-section { background: var(--bg-white); }
.providers-section { background: var(--bg-cream); }

/* Story */
/* Story */
.story-section {
  background: var(--bg-cream);
  overflow: hidden;
}

.story-content {
  display: block;
  overflow: hidden;
}

.story-image {
  float: left;
  width: 42%;
  margin: 0 var(--space-2xl) var(--space-lg) 0;
  position: relative;
}

.story-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.story-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  background: var(--bg-subtle);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.story-text {
  max-width: none;
}

.story-text p {
  margin-bottom: 18px;
  line-height: 1.85;
}
.story-signature { margin-top: var(--space-xl); padding-top: var(--space-lg); border-top: 1px solid var(--border); }
.story-signature p { margin: 0; }
.signature-location { font-size: 14px; color: var(--text-light); }

/* Signup */
.signup-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: var(--space-4xl) 0; }
.signup-card { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--space-3xl); align-items: center; background: var(--bg-white); border-radius: var(--radius-xl); padding: var(--space-3xl); box-shadow: var(--shadow-lg); }
.signup-header { margin-bottom: var(--space-xl); text-align: center; }
.signup-header .display-heading { margin-bottom: var(--space-sm); }
.signup-header .display-heading.light { color: var(--primary); }
.signup-header .section-divider.light { background: linear-gradient(90deg, var(--accent), var(--accent-light)); }
.signup-header p { font-size: 1.0625rem; margin-top: var(--space-lg); line-height: 1.6; color: var(--text-mid); }
.signup-form { display: flex; flex-direction: column; gap: var(--space-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-weight: 600; font-size: 13px; color: var(--text-dark); }
.form-group input[type="text"], .form-group input[type="email"] { padding: 14px 16px; font-family: inherit; font-size: 15px; border: 1.5px solid var(--border); border-radius: var(--radius-md); background: var(--bg-white); transition: all var(--transition-fast); }
.form-group input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--bg-subtle); }
.form-group input[aria-invalid="true"] { border-color: #B63D3D; }
.form-group input::placeholder { color: var(--text-light); }
.field-error { min-height: 18px; margin: 0; color: #B63D3D; font-size: 12px; font-weight: 600; }
.user-type-options { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
.user-type-option { cursor: pointer; }
.user-type-option input { position: absolute; opacity: 0; pointer-events: none; }
.option-card { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: var(--space-lg); background: var(--bg-cream); border: 2px solid var(--border); border-radius: var(--radius-lg); transition: all var(--transition-fast); }
.user-type-option input:checked + .option-card { border-color: var(--primary); background: var(--bg-subtle); }
.option-icon { color: var(--primary); }
.option-label { font-weight: 700; font-size: 15px; color: var(--text-dark); }
.option-desc { font-size: 12px; color: var(--text-mid); }
.form-status { min-height: 22px; margin: calc(var(--space-md) * -1) 0 0; text-align: center; font-size: 13px; font-weight: 700; }
.form-status.error { color: #B63D3D; }
.form-status.info { color: var(--primary); }
.form-note { text-align: center; font-size: 12px; color: var(--text-light); margin: 0; }
.signup-visual { display: flex; justify-content: center; align-items: center; }
.mascot-image { max-width: 280px; border-radius: var(--radius-xl); }

/* App Stores */
.app-stores { background: var(--bg-cream); padding: var(--space-3xl) 0; }
.app-stores-content { text-align: center; }
.app-stores-content h2 { margin-bottom: var(--space-sm); }
.app-stores-content > p { margin-bottom: var(--space-xl); }
.store-buttons { display: flex; justify-content: center; gap: var(--space-md); flex-wrap: wrap; }
.store-btn { position: relative; display: flex; align-items: center; gap: var(--space-md); padding: 12px 24px; background: var(--text-dark); color: var(--text-inverse); border-radius: var(--radius-md); }
.store-btn.disabled { opacity: 0.7; cursor: not-allowed; }
.store-text { display: flex; flex-direction: column; align-items: flex-start; }
.store-label { font-size: 10px; opacity: 0.8; }
.store-name { font-size: 16px; font-weight: 600; }
.coming-soon-badge { position: absolute; top: -8px; right: -8px; padding: 4px 10px; background: var(--accent); color: var(--text-dark); font-size: 10px; font-weight: 700; border-radius: var(--radius-full); }

/* FAQ */
.faq { background: var(--bg-white); }
.faq-grid { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-md); }
.faq-item { background: var(--bg-cream); border-radius: var(--radius-lg); overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: var(--space-lg); font-family: inherit; font-size: 15px; font-weight: 600; color: var(--text-dark); background: none; border: none; cursor: pointer; text-align: left; }
.faq-question:hover { background: rgba(0, 0, 0, 0.02); }
.faq-icon { flex-shrink: 0; color: var(--primary); transition: transform var(--transition-fast); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-base); }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 var(--space-lg) var(--space-lg); line-height: 1.7; font-size: 14px; }
.faq-answer a { color: var(--primary); text-decoration: underline; }

/* Footer */
.footer { background: var(--text-dark); color: var(--text-inverse); padding: var(--space-3xl) 0 var(--space-lg); }
.footer-content { display: grid; grid-template-columns: 1.2fr 2fr; gap: var(--space-3xl); margin-bottom: var(--space-3xl); }
.footer-brand .logo { color: var(--text-inverse); margin-bottom: var(--space-md); }
.footer-brand .logo-icon { background: var(--bg-white); padding: 4px; }
.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 14px; max-width: 280px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); }
.footer-column h4 { color: var(--text-inverse); font-size: 13px; font-weight: 700; margin-bottom: var(--space-md); text-transform: uppercase; letter-spacing: 0.05em; }
.footer-column a { display: block; color: rgba(255, 255, 255, 0.6); font-size: 14px; padding: 6px 0; }
.footer-column a:hover { color: var(--text-inverse); }
.footer-bottom { padding-top: var(--space-lg); border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255, 255, 255, 0.5); }

/* Responsive */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-visual { margin-top: var(--space-xl); }
  .section-intro.left-aligned { text-align: center; }
  .section-divider { margin-left: auto; margin-right: auto; }
  .benefits-content { grid-template-columns: 1fr; text-align: center; }
  .story-content { text-align: center; }
  .benefits-content.reverse { direction: ltr; }
  .benefits-text, .story-text { max-width: 100%; margin: 0 auto; }
  .benefits-headline, .story-headline { text-align: center; }
  .benefits-list li { text-align: left; }
  .story-image { float: none; width: 100%; max-width: 400px; margin: 0 auto var(--space-xl) auto; }
  .story-text { text-align: left; }
  .signup-card { grid-template-columns: 1fr; }
  .signup-visual { display: none; }
  .footer-content { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .footer-links { justify-items: center; }
  .activities-grid { grid-template-columns: repeat(2, 1fr); }
  .laptop-frame { max-width: 400px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .screenshots-row { flex-direction: column; align-items: center; gap: var(--space-2xl); }
  .screenshot-item.featured { margin-top: 0; }
  .screenshot-item .phone-frame, .screenshot-item.featured .phone-frame { width: 240px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .activities-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .form-row, .user-type-options { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; gap: var(--space-xl); }
  .banner-content { flex-direction: column; text-align: center; }
  .store-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  :root { --space-lg: 20px; --space-xl: 28px; --space-3xl: 48px; --space-4xl: 64px; }
  .hero { padding: 120px 0 48px; }
  .hero-badge { font-size: 12px; }
  .btn-lg { padding: 14px 24px; font-size: 15px; }
  .phone-frame { width: 220px; border-radius: 36px; }
  .phone-frame.small { width: 200px; }
  .signup-card { padding: var(--space-xl); }
  .story-image-accent { display: none; }
}

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-content, .hero-visual { animation: fadeInUp 0.7s ease forwards; }
.hero-visual { animation-delay: 0.15s; }
