/* WoofSheet Landing Page Styles */
/* Modern, clean design with app-inspired aesthetics */

:root {
  /* Primary Colors - Matching WoofSheet App */
  --color-walk: #FF8A65;
  --color-walk-bg: #FFF3E0;
  --color-food: #FFB347;
  --color-food-bg: #FFF7EC;
  --color-poo: #D4A574;
  --color-poo-bg: #FAF5EE;
  --color-bath: #95C8E0;
  --color-bath-bg: #F0F8FC;
  --color-medication: #FF6B6B;
  --color-medication-bg: #FFEFEF;
  
  /* Base Colors */
  --color-bg: #FAFBFC;
  --color-bg-secondary: #F6F8FA;
  --color-card: #FFFFFF;
  --color-text: #1A1F36;
  --color-text-secondary: #6B7280;
  --color-text-tertiary: #9CA3AF;
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;
  
  /* Accent Colors */
  --color-primary: #FF8A65;
  --color-primary-dark: #F4734E;
  --color-logo-green: #156452;
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #FF8A65 0%, #F4734E 100%);
  --gradient-hero: linear-gradient(135deg, #FF8A65 0%, #FF6B45 100%);
  --gradient-text: linear-gradient(135deg, #FF8A65 0%, #F4734E 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border-light);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-text);
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.logo-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo:hover .logo-mark {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

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

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--color-logo-green);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 999;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav a {
  display: block;
  padding: 16px 24px;
  color: var(--color-text);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-light);
  transition: background 0.3s ease;
}

.mobile-nav a:hover {
  background: var(--color-bg-secondary);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-secondary) 100%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content {
  animation: slideInLeft 0.8s ease;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-walk-bg);
  color: var(--color-walk);
  padding: 8px 16px 8px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
}

.pulse {
  position: absolute;
  left: 12px;
  width: 8px;
  height: 8px;
  background: var(--color-walk);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 138, 101, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 138, 101, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 138, 101, 0);
  }
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 20px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-hero);
  color: white;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-secondary {
  background: white;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-logo-green);
  color: var(--color-logo-green);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  background: var(--color-bg-secondary);
  border-color: var(--color-text);
}

.btn-white {
  background: white;
  color: var(--color-text);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-white-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: slideInRight 0.8s ease;
}

.phone-mockup {
  width: 320px;
  height: 650px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-2xl);
  position: relative;
  margin: 0 auto;
  transform: rotate(5deg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: rotate(5deg) translateY(0);
  }
  50% {
    transform: rotate(5deg) translateY(-20px);
  }
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.app-interface {
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 30%, white 30%);
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.app-content {
  margin-top: 160px;
}

.app-content h3 {
  font-size: 20px;
  margin-bottom: 4px;
}

.app-content p {
  color: var(--color-text-secondary);
  font-size: 14px;
  margin-bottom: 16px;
}

.activity-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  font-size: 14px;
}

.activity-card.walk {
  background: var(--color-walk-bg);
}

.activity-card.food {
  background: var(--color-food-bg);
}

.activity-card.med {
  background: var(--color-medication-bg);
}

.activity-icon {
  font-size: 20px;
}

.activity-card strong {
  display: block;
  margin-bottom: 2px;
}

.activity-card small {
  color: var(--color-text-tertiary);
  font-size: 12px;
}

/* Recognition Section */
.recognition {
  padding: 60px 0;
  background: white;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.recognition-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.recognition-text {
  max-width: 620px;
}

.recognition-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.recognition-text h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.recognition-text p {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 12px;
}

.newsletter-note {
  font-size: 16px;
  color: var(--color-text);
}

.newsletter-note a {
  color: var(--color-logo-green);
  font-weight: 600;
  text-decoration: none;
}

.newsletter-note a:hover {
  text-decoration: underline;
}

.recognition-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 18px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ph-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.ph-badge img {
  display: block;
  max-width: 250px;
  width: 100%;
  height: auto;
}

.newsletter-feature {
  width: 100%;
  max-width: 760px;
  margin: 32px auto 0;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--color-border-light);
  background: var(--color-bg-secondary);
  box-shadow: var(--shadow-md);
}

.newsletter-feature img {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: var(--shadow-lg);
}

.newsletter-feature figcaption {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-align: center;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeInUp 0.6s ease;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 18px;
  color: var(--color-text-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 32px;
  background: var(--color-bg-secondary);
  border-radius: 20px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease backwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  background: white;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-icon.walk { background: var(--color-walk-bg); }
.feature-icon.food { background: var(--color-food-bg); }
.feature-icon.med { background: var(--color-medication-bg); }
.feature-icon.bath { background: var(--color-bath-bg); }
.feature-icon.collab { background: var(--color-poo-bg); }
.feature-icon.analytics { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: var(--color-bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid var(--color-border-light);
}

.pricing-card.featured {
  border-color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-xl);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-hero);
  color: white;
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 32px;
}

.price-currency {
  font-size: 24px;
  color: var(--color-text-secondary);
  margin-right: 4px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
}

.price-period {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-left: 8px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.check {
  color: #156452;
  font-weight: bold;
}

.x {
  color: var(--color-text-tertiary);
}

.coming-soon-icon {
  color: #156452;
  font-weight: 500;
  font-size: 14px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.testimonial-card {
  background: var(--color-bg-secondary);
  padding: 32px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stars {
  color: #FFB347;
  font-size: 20px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--color-text);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-weight: 600;
}

.testimonial-author span {
  color: var(--color-text-secondary);
  font-size: 14px;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: var(--gradient-hero);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background: var(--color-text);
  color: white;
  padding: 64px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-brand .logo-text {
  color: white;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 16px;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  opacity: 0.6;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-disclaimer {
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.5;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Prose Content (for Privacy/Terms pages) */
.prose {
  max-width: 800px;
  margin: 100px auto 80px;
  padding: 0 24px;
}

.prose h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.prose .meta {
  color: var(--color-text-secondary);
  font-size: 16px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.prose h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 24px;
}

.prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 24px;
}

.prose ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.prose li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.prose a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.prose a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.alert {
  background: var(--color-medication-bg);
  border: 2px solid var(--color-medication);
  color: var(--color-medication);
  padding: 16px 20px;
  border-radius: 12px;
  margin: 32px 0;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-visual {
    display: none;
  }

  .recognition-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .recognition-text {
    margin: 0 auto;
  }
  
  .recognition-badges {
    align-items: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }

  .recognition-text h2 {
    font-size: 30px;
  }
  
  .recognition-text p {
    font-size: 16px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .recognition {
    padding: 48px 0;
  }
  
  .hero-title {
    font-size: 32px;
    letter-spacing: -1px;
  }
  
  .hero-badge {
    font-size: 12px;
    padding: 6px 12px 6px 28px;
  }

  .pulse {
    left: 8px;
    width: 6px;
    height: 6px;
  }
  
  .features,
  .pricing,
  .testimonials,
  .cta {
    padding: 60px 0;
  }
  
  .feature-card {
    padding: 24px;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
}

/* Coming Soon badge */
.badge-soon {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 8px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--color-warning);
  color: white;
  line-height: 1.2;
  vertical-align: middle;
  transform: translateY(-1px);
}

/* Muted style for not-yet-available features (paired with × icon) */
.pricing-features li .x + text, 
.pricing-features li .x ~ * {
  opacity: 0.8;
}

.pricing-legend {
  text-align: center;
  color: var(--color-text-secondary);
  margin-top: 32px;
  font-size: 14px;
}

/* Status / confirmation pages */
.status-body {
  background: var(--color-bg-secondary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.status-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 24px 80px;
}

.status-card {
  width: 100%;
  max-width: 640px;
  background: var(--color-card);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  padding: 56px 48px;
  text-align: center;
  border: 1px solid var(--color-border-light);
}

.status-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  font-weight: 700;
}

.status-icon-success {
  background: rgba(16, 185, 129, 0.14);
  color: var(--color-success);
}

.status-icon-error {
  background: rgba(239, 68, 68, 0.14);
  color: var(--color-error);
}

.status-icon-warn {
  background: rgba(245, 158, 11, 0.14);
  color: var(--color-warning);
}

.status-card h1 {
  font-size: 32px;
  margin-bottom: 16px;
}

.status-message {
  font-size: 18px;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.status-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.status-actions .btn {
  min-width: 200px;
  justify-content: center;
}

.status-details {
  font-size: 16px;
  color: var(--color-text-secondary);
  text-align: left;
  margin: 0 auto;
  max-width: 440px;
}

.status-note {
  margin-bottom: 12px;
}

.status-instructions summary {
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 12px;
}

.status-instructions ol {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.status-footer {
  margin-top: auto;
  padding: 24px 0 40px;
}

@media (max-width: 640px) {
  .status-card {
    padding: 40px 28px;
    border-radius: 20px;
  }

  .status-card h1 {
    font-size: 26px;
  }

  .status-message {
    font-size: 16px;
  }

  .status-actions .btn {
    width: 100%;
  }
}
