@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  --bg-main: #FFFDF9;
  --bg-secondary: #FFF9EC;
  --bg-card: #FFFFFF;
  --bg-card-alt: #FCF8F2;
  --bg-teal-light: #E6F4F1;
  
  --text-main: #27272A;
  --text-dark: #18181B;
  --text-muted: #71717A;
  --text-amber-dark: #78350F;
  
  --primary: #F97316;
  --primary-hover: #EA580C;
  --primary-light: #FFF0E5;
  
  --teal: #0D9488;
  --teal-hover: #0F766E;
  --teal-light: #CCFBF1;
  
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  
  --rose: #F43F5E;
  --rose-light: #FFE4E6;
  
  --border-color: #EBE1CD;
  --border-light: #F3EDE0;
  
  --shadow-sm: 0 2px 4px rgba(120, 53, 15, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(249, 115, 22, 0.08), 0 8px 10px -6px rgba(120, 53, 15, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(120, 53, 15, 0.12);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-full: 9999px;
  
  --font-sans: 'Quicksand', 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header & Nav */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid var(--border-light);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--text-dark);
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(249, 115, 22, 0.25));
  transition: transform 0.25s ease;
}

.logo:hover .logo-img {
  transform: scale(1.06) rotate(-3deg);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #F97316 0%, #F59E0B 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-amber-dark);
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.2s ease;
}

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

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
  color: white;
}

.btn-secondary {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-amber-dark);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background: #FFF0E5;
  border-color: rgba(249, 115, 22, 0.4);
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.btn-teal {
  background: var(--teal);
  color: white;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-teal:hover {
  background: var(--teal-hover);
  transform: translateY(-2px);
  color: white;
}

/* Hero Section */
.hero {
  max-width: 1200px;
  margin: 3.5rem auto 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-amber-dark);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: 3.6rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 .highlight-orange {
  color: var(--primary);
}

.hero h1 .highlight-teal {
  color: var(--teal);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 600;
  max-width: 780px;
  margin: 0 auto 2.5rem auto;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
}

/* Feature Grid & Cards */
.features-section {
  max-width: 1200px;
  margin: 2rem auto 6rem auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-family: var(--font-sans);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 600;
  max-width: 680px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
  position: relative;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.4);
  box-shadow: var(--shadow-lg);
}

.feature-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.icon-orange {
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.icon-teal {
  background: var(--teal-light);
  color: var(--teal);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.icon-amber {
  background: var(--amber-light);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.icon-rose {
  background: var(--rose-light);
  color: var(--rose);
  border: 1px solid rgba(244, 63, 94, 0.2);
}

.tag-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-orange { background: #FFF0E5; color: #C2410C; border: 1px solid #FFEDD5; }
.tag-teal { background: #E6F4F1; color: #0F766E; border: 1px solid #CCFBF1; }
.tag-amber { background: #FEF3C7; color: #92400E; border: 1px solid #FDE68A; }
.tag-rose { background: #FFE4E6; color: #9F1239; border: 1px solid #FECDD3; }

.feature-card h3 {
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.feature-list {
  list-style: none;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-list li {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-amber-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 800;
}

/* Call to Action Banner */
.cta-banner {
  max-width: 1200px;
  margin: 0 auto 6rem auto;
  padding: 3.5rem 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.cta-banner h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 600;
  max-width: 640px;
  margin: 0 auto 2rem auto;
}

/* Footer */
footer {
  margin-top: auto;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
  padding: 3rem 2rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 0.85rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 3rem;
}

.footer-col h4 {
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-copy {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Pricing Section - Ultra Themed */
.pricing-section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.pricing-container {
  background: linear-gradient(180deg, #FFF9EC 0%, #FFF0E5 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.pricing-container::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-container::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-card-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.pricing-card {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem 3rem 3rem;
  max-width: 620px;
  width: 100%;
  box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.18), 0 10px 15px -5px rgba(120, 53, 15, 0.05);
  position: relative;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #F97316 0%, #F59E0B 100%);
  color: white;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.5rem 1.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
  white-space: nowrap;
}

.pricing-header-content {
  margin-bottom: 1.5rem;
}

.pricing-icon-wrapper {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.2rem auto;
}

.pricing-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  font-weight: 600;
}

.pricing-price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin: 1.5rem 0 1rem 0;
}

.pricing-price-box .currency {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.pricing-price-box .price-amount {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text-dark);
  letter-spacing: -0.04em;
}

.price-period-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.pricing-price-box .price-period {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
}

.pricing-price-box .price-subtext {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-family-pill {
  display: inline-block;
  background: var(--teal-light);
  border: 1px solid rgba(13, 148, 136, 0.25);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.45rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
}

.pricing-features-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px dashed var(--border-color);
}

.pricing-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.feature-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}

.pricing-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.btn-large {
  width: 100%;
  justify-content: center;
  padding: 1.1rem 2rem;
  font-size: 1.1rem;
  border-radius: var(--radius-full);
}

.pricing-trust-badges {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  flex-wrap: wrap;
  justify-content: center;
}

/* Beta Badge */
.beta-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: var(--rose-light);
  color: var(--rose);
  border: 1px solid rgba(244, 63, 94, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  vertical-align: middle;
}

/* Waitlist Banner & Form */
.waitlist-banner {
  max-width: 1200px;
  margin: 0 auto 6rem auto;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #FFF0E5 0%, #FFF9EC 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.waitlist-content {
  max-width: 720px;
  margin: 0 auto;
}

.waitlist-banner h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.waitlist-banner p {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 640px;
  margin: 0 auto;
}

.form-group-row {
  display: flex;
  gap: 1rem;
}

.waitlist-input,
.waitlist-select {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--text-dark);
  font-weight: 600;
  outline: none;
  transition: all 0.2s ease;
}

.waitlist-input:focus,
.waitlist-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.waitlist-note {
  font-size: 0.85rem !important;
  color: var(--text-muted) !important;
  margin-top: 0.75rem !important;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.4rem; }
  .nav-links { display: none; }
  .hero-actions { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .form-group-row { flex-direction: column; }
  .hero-trust-bar { flex-direction: column; gap: 0.5rem; border-radius: var(--radius-md); }
  .trust-divider { display: none; }
  .hero-email-input-wrapper { flex-direction: column; border-radius: var(--radius-md); padding: 0.6rem; }
  .hero-submit-btn { width: 100%; border-radius: var(--radius-full); }
}

/* Hero Inline Email Form */
.hero-email-form {
  max-width: 620px;
  margin: 0 auto 1.5rem auto;
}

.hero-email-input-wrapper {
  display: flex;
  gap: 0.75rem;
  background: var(--bg-card);
  padding: 0.4rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.15);
  transition: all 0.25s ease;
}

.hero-email-input-wrapper:focus-within {
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.25);
  border-color: var(--primary-hover);
}

.hero-email-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.8rem 1.4rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  outline: none;
}

.hero-email-input::placeholder {
  color: #A1A1AA;
}

.hero-submit-btn {
  white-space: nowrap;
  padding: 0.85rem 1.8rem;
  font-size: 1.02rem;
}

/* Elevated Trust & Safety Badges Bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 0 auto 3rem auto;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 249, 236, 0.7);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  max-width: fit-content;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-amber-dark);
}

.trust-icon {
  font-size: 1.1rem;
}

.trust-text {
  font-weight: 500;
}

.trust-text strong {
  font-weight: 800;
  color: var(--text-dark);
}

.trust-divider {
  color: #D4D4D8;
  font-weight: bold;
}

/* Visual Proof & Side-by-Side Device Mockups */
.hero-mockup-section {
  margin-top: 3rem;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.mockup-header-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-light);
  border: 1px solid rgba(13, 148, 136, 0.25);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Device Preview Switcher Bar */
.mockup-switcher-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.mockup-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 800;
  background: var(--bg-card);
  color: var(--text-amber-dark);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.mockup-tab:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-2px);
}

.mockup-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary-hover);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.mockup-view-panel {
  transition: opacity 0.25s ease;
}

.mockup-caption-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.caption-pill {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-amber-dark);
  background: white;
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

/* Focused Mockup Layout (Single Device + Callouts) */
.focused-mockup-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
  align-items: center;
  text-align: left;
}

.focused-device {
  max-width: 380px;
  margin: 0 auto;
}

.focused-callouts {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.focused-callout-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.focused-callout-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(249, 115, 22, 0.3);
}

.callout-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.focused-callout-item strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  font-weight: 800;
}

.focused-callout-item p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0;
}

/* Tablet Browser Mockup */
.tablet-mockup-container {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.tablet-browser-chrome {
  background: #27272A;
  padding: 0.8rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.browser-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #EF4444; }
.dot-yellow { background: #F59E0B; }
.dot-green { background: #10B981; }

.tablet-url-bar {
  background: #18181B;
  color: #A1A1AA;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.3rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid #3F3F46;
  flex: 1;
  max-width: 480px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tablet-live-indicator {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.tablet-screen-frame {
  background: #FFFDF9;
  overflow: hidden;
}

.tablet-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.tablet-caption-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
}

.tablet-caption-col strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.tablet-caption-col p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7);
  animation: pulse-ring 1.8s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(13, 148, 136, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(13, 148, 136, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(13, 148, 136, 0); }
}

.side-by-side-mockups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
  align-items: stretch;
}

.device-mockup {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.device-mockup:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 115, 22, 0.3);
}

.device-header {
  background: #27272A;
  color: white;
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.device-camera {
  width: 10px;
  height: 10px;
  background: #52525B;
  border-radius: 50%;
}

.device-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.device-title strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.1;
}

.device-sub {
  font-size: 0.72rem;
  color: #A1A1AA;
  display: block;
}

.device-icon {
  font-size: 1.3rem;
}

.device-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.badge-child {
  background: #FFF0E5;
  color: #C2410C;
}

.badge-parent {
  background: #E6F4F1;
  color: #0F766E;
}

.device-screen {
  background: #FAFAFA;
  padding: 1.25rem;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.device-screen.screenshot-container {
  background: #FFFDF9;
  padding: 0;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.app-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transition: transform 0.3s ease;
}

.device-mockup:hover .app-screenshot-img {
  transform: scale(1.015);
}

/* Chat UI in Child View */
.chat-header-bar {
  background: white;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid #E4E4E7;
  margin-bottom: 1rem;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar-circle {
  width: 38px;
  height: 38px;
  background: var(--amber-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-name {
  display: block;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.1;
}

.status-online {
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 700;
}

.chat-messages-area {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.2rem;
  flex: 1;
}

.message-bubble {
  max-width: 82%;
  padding: 0.8rem 1.1rem;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.4;
  position: relative;
}

.message-bubble.received {
  background: white;
  border: 1px solid #E4E4E7;
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.message-bubble.sent {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.25);
}

.bubble-sender {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  opacity: 0.85;
}

/* Sentence Builder Helpers Container */
.sentence-builder-box {
  background: white;
  border: 1.5px solid #FED7AA;
  border-radius: var(--radius-md);
  padding: 0.85rem;
  box-shadow: var(--shadow-sm);
  margin-top: auto;
}

.builder-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: #C2410C;
  margin-bottom: 0.5rem;
}

.chip-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.prompt-chip {
  background: #FFF7ED;
  border: 1px solid #FFEDD5;
  color: #C2410C;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.15s ease;
}

.prompt-chip.active,
.prompt-chip:hover {
  background: #F97316;
  color: white;
  border-color: #EA580C;
}

.prompt-chip.icon-chip {
  background: #FEF3C7;
  border-color: #FDE68A;
  color: #92400E;
}

.input-preview-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FAF5FF;
  border: 1px solid #E9D5FF;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
}

.typed-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: #6B21A8;
}

.send-btn-visual {
  background: #9333EA;
  color: white;
  border: none;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
}

/* Parent Admin View Controls */
.admin-panel-card {
  background: white;
  border: 1px solid #E4E4E7;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.admin-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #F4F4F5;
}

.admin-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.admin-status-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-light);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.contact-approval-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.contact-approval-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  background: #FAFAFA;
  border: 1px solid #F4F4F5;
}

.contact-avatar-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: 1px solid #E4E4E7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-details {
  flex: 1;
}

.contact-details strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  line-height: 1.2;
}

.contact-details span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.toggle-badge {
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
}

.approved-toggle {
  background: #D1FAE5;
  color: #065F46;
}

.approve-action-btn {
  background: var(--primary);
  color: white;
  border: none;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.15s ease;
}

.approve-action-btn:hover {
  background: var(--primary-hover);
}

.admin-features-bar {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.admin-feature-pill {
  font-size: 0.72rem;
  font-weight: 700;
  background: #F4F4F5;
  color: var(--text-dark);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-full);
}

@media (max-width: 900px) {
  .side-by-side-mockups {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PWA Installation Guide Page Styles
   ========================================================================== */

.install-page-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
}

/* Install Hero */
.install-hero {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.install-hero h1 {
  font-family: var(--font-sans);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 1.25rem 0 1rem;
}

.install-hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 2rem;
}

.install-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.install-launch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  padding: 0.85rem 1.75rem;
}

.install-url-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.install-url-code {
  font-family: var(--font-mono);
  color: var(--primary);
  font-weight: 700;
  background: var(--primary-light);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
}

/* Store Badges in Hero */
.store-badge-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.25rem;
}

.store-badge-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: #18181B;
  color: #FFFFFF;
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1.5px solid #27272A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  font-family: inherit;
}

.store-badge-btn:hover {
  transform: translateY(-2px);
  background: #09090B;
  border-color: #3F3F46;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.store-badge-btn.webapp-btn {
  background: #FFFFFF;
  color: var(--text-dark);
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

.store-badge-btn.webapp-btn:hover {
  background: #FAF7F2;
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.store-badge-svg {
  flex-shrink: 0;
}

.webapp-btn-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.15;
}

.store-btn-subtitle {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

.store-badge-btn.webapp-btn .store-btn-subtitle {
  color: var(--text-muted);
}

.store-btn-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

/* App Store Showcase Feature Cards */
.app-store-showcase-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #FDFBF7 100%);
  border: 1.5px solid #F0E6D8;
  border-radius: var(--radius-lg);
  padding: 1.85rem 2.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  box-shadow: 0 8px 24px rgba(120, 53, 15, 0.06);
  margin-bottom: 2.5rem;
}

.app-store-showcase-card.showcase-apple {
  background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
  border-color: #E2E8F0;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.showcase-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.showcase-app-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
  flex-shrink: 0;
}

.testflight-app-icon-wrap {
  position: relative;
  flex-shrink: 0;
}

.testflight-subbadge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: #0071E3;
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 113, 227, 0.4);
  border: 2px solid white;
}

.testflight-airplane-icon {
  font-size: 0.8rem;
  line-height: 1;
}

.showcase-meta h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.showcase-dev {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-bottom: 0.65rem;
}

.showcase-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.showcase-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #F4ECE0;
  color: #78350F;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.showcase-apple .showcase-tag {
  background: #E2E8F0;
  color: #334155;
}

.showcase-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
  flex-shrink: 0;
}

.testflight-action-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn-store-download {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: #0F172A;
  color: #FFFFFF;
  text-decoration: none;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
  transition: all 0.25s ease;
  font-family: inherit;
  cursor: pointer;
  border: none;
}

.btn-store-download:hover {
  background: #020617;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.25);
}

.btn-playstore-large {
  background: #00875A;
}

.btn-playstore-large:hover {
  background: #006644;
}

.btn-testflight-store-app {
  background: #0071E3;
}

.btn-testflight-store-app:hover {
  background: #005BB5;
}

.btn-testflight-beta-link {
  background: #334155;
}

.btn-testflight-beta-link:hover {
  background: #1E293B;
}

.btn-step-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.btn-store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.btn-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.btn-main {
  font-size: 1.05rem;
  font-weight: 800;
}

.store-direct-link-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.store-direct-link-note code {
  font-family: var(--font-mono);
  background: #F4ECE0;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  color: #78350F;
}

/* Platform Switcher Tabs */
.platform-switcher-container {
  width: 100%;
  max-width: 680px;
  margin-top: 1rem;
}

.platform-switcher {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  background: #F4ECE0;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: inset 0 2px 4px rgba(120, 53, 15, 0.05);
}

.platform-tab {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.25rem;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  font-family: var(--font-sans);
}

.platform-tab-icon {
  font-size: 1.8rem;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.platform-tab-text {
  display: flex;
  flex-direction: column;
}

.platform-tab-text strong {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 800;
}

.platform-tab-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.platform-tab:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-dark);
}

.platform-tab.active {
  background: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.15), 0 2px 4px rgba(120, 53, 15, 0.06);
  transform: translateY(-1px);
}

.platform-tab.active .platform-tab-text strong {
  color: var(--primary-hover);
}

/* Instructions Content Section */
.instructions-section {
  margin-bottom: 5rem;
}

.platform-content {
  display: none;
  animation: fadeInTab 0.35s ease forwards;
}

.platform-content.active {
  display: block;
}

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

.platform-content-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.platform-header-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.badge-android {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #BBF7D0;
}

.badge-apple {
  background: #F1F5F9;
  color: #334155;
  border: 1px solid #E2E8F0;
}

.platform-content-header h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.platform-content-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Apple Safari Alert */
.apple-safari-alert {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #FFFBEB;
  border: 1.5px solid #FDE68A;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  max-width: 880px;
  margin: 0 auto 2.5rem;
  box-shadow: var(--shadow-sm);
}

.apple-safari-alert .alert-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.apple-safari-alert .alert-text {
  font-size: 0.95rem;
  color: #92400E;
  line-height: 1.5;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #FDBA74;
}

.step-number-badge {
  position: absolute;
  top: -12px;
  left: 1.4rem;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--amber) 100%);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(249, 115, 22, 0.35);
}

.step-icon-wrap {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  height: 48px;
  display: flex;
  align-items: center;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.step-card p strong {
  color: var(--text-dark);
}

.step-card p code {
  font-family: var(--font-mono);
  background: #F4F4F5;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--text-dark);
}

.step-code-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.45rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-hover);
}

.step-copy-link {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.step-copy-link:hover {
  text-decoration: underline;
}

.step-tip-box,
.step-success-box {
  background: var(--primary-light);
  border: 1px solid #FFEDD5;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  color: #9A3412;
  font-weight: 600;
  line-height: 1.4;
}

.step-success-box {
  background: #F0FDF4;
  border-color: #DCFCE7;
  color: #166534;
}

.step-visual-pill {
  background: #F4F4F5;
  border: 1px solid #E4E4E7;
  border-radius: var(--radius-full);
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
}

.step-visual-pill.apple-pill {
  background: #EFF6FF;
  border-color: #DBEAFE;
  color: #1E40AF;
}

/* Callout Card */
.platform-callout-card {
  background: linear-gradient(135deg, #FFF9EC 0%, #FFFDF9 100%);
  border: 1.5px solid #F3EDE0;
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: var(--shadow-sm);
  max-width: 960px;
  margin: 0 auto;
}

.platform-callout-card.mac-callout {
  background: linear-gradient(135deg, #F8FAFC 0%, #FFFDF9 100%);
  border-color: #E2E8F0;
}

.callout-icon {
  font-size: 2.2rem;
  line-height: 1;
  padding: 0.75rem;
  background: #FFFFFF;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.callout-content h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.callout-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.callout-content p strong {
  color: var(--text-dark);
}

/* Benefits Section */
.install-benefits-section {
  padding: 4.5rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 4.5rem;
}

.install-benefits-section .section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ Accordion */
.install-faq-section {
  max-width: 840px;
  margin: 0 auto 5rem;
}

.install-faq-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: #FDBA74;
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-answer code {
  font-family: var(--font-mono);
  background: var(--bg-secondary);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  color: var(--primary-hover);
}

/* Final CTA */
.install-final-cta {
  max-width: 920px;
  margin: 0 auto;
}

.final-cta-box {
  background: linear-gradient(135deg, #FFF6E9 0%, #FFFDF9 100%);
  border: 2px solid #FDE68A;
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.final-cta-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.final-cta-box p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.final-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Dedicated Parent Oversight Showcase Section */
.oversight-feature-showcase {
  max-width: 1100px;
  margin: 0 auto 6rem auto;
  padding: 0 2rem;
}

.oversight-portal-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-align: left;
}

.portal-header-bar {
  background: #27272A;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.portal-title-center {
  background: #18181B;
  color: #A1A1AA;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  padding: 0.35rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid #3F3F46;
  flex: 1;
  max-width: 520px;
  text-align: center;
}

.portal-status-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.portal-preview-container {
  background: #FFFDF9;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.portal-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.portal-screenshot-img:hover {
  transform: scale(1.008);
}

.portal-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
  padding: 2.25rem;
  background: var(--bg-secondary);
}

.capability-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.capability-icon {
  font-size: 1.9rem;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 2px;
}

.capability-text h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.capability-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Install Page App Preview Showcase */
.install-preview-section {
  max-width: 1000px;
  margin: 4rem auto 5rem auto;
  padding: 0 1.5rem;
  text-align: center;
}

.install-mockup-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 820px;
  margin: 2.5rem auto 0 auto;
}

.install-mockup-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.install-mockup-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249, 115, 22, 0.4);
}

.mockup-caption-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.3rem;
  background: #27272A;
  color: white;
  text-align: left;
}

.caption-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.mockup-caption-top strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.2;
}

.mockup-caption-top span {
  font-size: 0.72rem;
  color: #A1A1AA;
  display: block;
}

.mockup-card-footer {
  display: flex;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  justify-content: center;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.pill-tag {
  background: white;
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-amber-dark);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .app-store-showcase-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .showcase-right {
    align-items: flex-start;
    width: 100%;
  }
  .testflight-action-buttons {
    width: 100%;
    justify-content: flex-start;
  }
  .btn-store-download {
    width: 100%;
    justify-content: center;
  }
  .side-by-side-mockups {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .focused-mockup-layout {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .tablet-caption-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }
  .tablet-url-bar {
    display: none;
  }
  .install-mockup-duo {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 2rem auto 0 auto;
  }
}

@media (max-width: 640px) {
  .install-hero h1 {
    font-size: 2.1rem;
  }
  .store-badge-group {
    flex-direction: column;
    width: 100%;
  }
  .store-badge-btn {
    width: 100%;
    justify-content: center;
  }
  .platform-switcher {
    grid-template-columns: 1fr;
  }
  .showcase-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .platform-callout-card {
    flex-direction: column;
  }
  .final-cta-box {
    padding: 2.5rem 1.5rem;
  }
  .final-cta-box h2 {
    font-size: 1.75rem;
  }
  .final-cta-actions .btn-primary,
  .final-cta-actions .btn-secondary {
    width: 100%;
  }
  .mockup-switcher-bar {
    gap: 0.4rem;
  }
  .mockup-tab {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
  .portal-header-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .portal-title-center {
    display: none;
  }
  .portal-capabilities-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
}



