
/* Typography System */
:root {
  /* Font Families */
  --font-primary: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'SF Mono', Monaco, Inconsolata, 'Roboto Mono', monospace;
  
  /* Typography Scale */
  --text-xs: 0.75rem;      /* 12px */
  --text-sm: 0.875rem;     /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-lg: 1.125rem;     /* 18px */
  --text-xl: 1.25rem;      /* 20px */
  --text-2xl: 1.5rem;      /* 24px */
  --text-3xl: 1.875rem;    /* 30px */
  --text-4xl: 2.25rem;     /* 36px */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */
  
  /* Line Heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Font Weights */
  --font-thin: 100;
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;
  
  /* Text Colors */
  --text-primary: #2c3e50;
  --text-secondary: #495057;
  --text-muted: #6c757d;
  --text-light: #adb5bd;
  --text-white: #ffffff;
  --text-success: #28a745;
  --text-info: #17a2b8;
  --text-warning: #ffc107;
  --text-danger: #dc3545;
  
  /* Spacing Scale */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
}

/* Base Typography */
body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  font-weight: var(--font-normal);
    position: relative;
    z-index: 1; /* keep content above animated bg (z=0) */
}

/* Glassmorphism base */
.glass-bg {
    background: radial-gradient(2400px 1600px at 10% -10%, rgba(62, 142, 208, 0.28), transparent 60%),
                            radial-gradient(2400px 1600px at 110% 20%, rgba(72, 199, 142, 0.28), transparent 60%),
                            linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
    min-height: 100vh;
}

/* Animated gradient background overlay */
.gradient-anim-bg {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(2000px 1440px at 15% 20%, rgba(62,142,208,0.75), transparent 60%),
        radial-gradient(1800px 1240px at 85% 30%, rgba(72,199,142,0.70), transparent 60%),
        radial-gradient(1640px 1160px at 50% 80%, rgba(147,112,219,0.65), transparent 60%),
        radial-gradient(1520px 1080px at 30% 70%, rgba(255,105,180,0.45), transparent 60%);
    filter: saturate(110%) contrast(110%);
    background-size: 180% 180%, 180% 180%, 180% 180%, 180% 180%;
    animation: gradientMove 32s ease-in-out infinite alternate;
}

@keyframes gradientMove {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    25% { transform: translate3d(-2%, 1%, 0) scale(1.02); }
    50% { transform: translate3d(2%, -1%, 0) scale(1.03); }
    75% { transform: translate3d(-1%, -2%, 0) scale(1.01); }
    100% { transform: translate3d(1%, 2%, 0) scale(1.02); }
}

/* Rotating diagonal band overlay for futuristic gradient motion */
.gradient-anim-bg::after {
        content: '';
        position: absolute;
        top: -20vmax;
        left: -20vmax;
    width: 440vmax;
    height: 440vmax;
        transform-origin: top left;
        transform: rotate(0deg) scale(1);
        background: conic-gradient(
            from 0deg at 0 0,
            rgba(62,142,208,0.70) 0deg,
            rgba(72,199,142,0.75) 120deg,
            rgba(147,112,219,0.65) 240deg,
            rgba(62,142,208,0.70) 360deg
        );
        filter: blur(40px) saturate(120%);
        opacity: 0.95;
        animation: spinWave 10s linear infinite;
}

@keyframes spinGradient { /* kept for backward compatibility if referenced elsewhere */
    from { transform: rotate(0deg) scale(1); }
    to   { transform: rotate(360deg) scale(1); }
}

@keyframes spinWave {
    0%   { transform: rotate(0deg)   scale(1); }
    50%  { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

/* Secondary curved stripes for depth */
.gradient-anim-bg::before {
    content: '';
    position: absolute;
    top: -25vmax;
    left: -25vmax;
    width: 480vmax;
    height: 480vmax;
    transform-origin: top left;
    transform: rotate(0deg) scale(1);
        background: conic-gradient(
            from 20deg at 0 0,
            rgba(255,105,180,0.30) 0deg,
            rgba(62,142,208,0.30) 140deg,
            rgba(72,199,142,0.30) 280deg,
            rgba(255,105,180,0.30) 360deg
        );
        filter: blur(50px) saturate(110%);
    opacity: 0.6;
    animation: spinWaveSlow 18s linear infinite reverse;
}

@keyframes spinWaveSlow {
    0%   { transform: rotate(0deg)   scale(1); }
    50%  { transform: rotate(180deg) scale(1.03); }
    100% { transform: rotate(360deg) scale(1); }
}

.glass-panel {
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.5) !important;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 10px 28px rgba(31, 38, 135, 0.12) !important;
}

.glass-hero {
    position: relative;
}

.glass-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(1800px 900px at 20% 20%, rgba(62,142,208,0.35), transparent 60%),
                            radial-gradient(1800px 900px at 80% 40%, rgba(72,199,142,0.35), transparent 60%);
    pointer-events: none;
}

.glass-footer {
    background: transparent;
    position: relative;
    z-index: 2;
}

.glass-nav {
    background: rgba(255,255,255,0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    position: relative;
    z-index: 2;
}

/* Heading Hierarchy */
.heading-1, h1 {
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-6);
  color: var(--text-primary);
}

.heading-2, h2 {
  font-size: var(--text-4xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
  color: var(--text-primary);
}

.heading-3, h3 {
  font-size: var(--text-3xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.heading-4, h4 {
  font-size: var(--text-2xl);
  font-weight: var(--font-medium);
  line-height: var(--leading-snug);
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.heading-5, h5 {
  font-size: var(--text-xl);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.heading-6, h6 {
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

/* Body Text Styles */
.text-body {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
}

.text-lead {
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  font-weight: var(--font-light);
  color: var(--text-secondary);
}

.text-small {
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--text-muted);
}

.text-caption {
  font-size: var(--text-xs);
  line-height: var(--leading-normal);
  color: var(--text-light);
}

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-light { font-weight: var(--font-light); }
.font-normal { font-weight: var(--font-normal); }
.font-medium { font-weight: var(--font-medium); }
.font-semibold { font-weight: var(--font-semibold); }
.font-bold { font-weight: var(--font-bold); }

.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }
.text-white { color: var(--text-white); }

/* Stacking utilities */
.z-top { position: relative; z-index: 3; }

/* Spacing Utilities */
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }

.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }

/* Common UI Components */
.btn-text {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
}

.footer-nav {
  width: 80%;
  margin: var(--space-5) auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-2);
}

.footer-text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-normal);
}

.footer-caption {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.app-store-badge {
  width: 150px;
  border-radius: 20px;
  margin-bottom: var(--space-1);
}

.team-member-link-container {
  text-align: center;
  margin-bottom: var(--space-4);
}

.team-member-link-btn {
  border-radius: 20px;
  font-size: var(--text-sm);
}

.section-hero-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-5);
  color: var(--text-primary);
}

.section-hero-subtitle {
  font-size: var(--text-xl);
  margin-bottom: var(--space-8);
  color: var(--text-secondary);
}

.beta-section-bg {
  background: linear-gradient(135deg, #48c78e 0%, #3e8ed0 100%);
  margin-top: var(--space-8);
  color: white;
}

.beta-section-padding {
  padding: var(--space-12) var(--space-8);
}

.preview-section-bg {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin-top: var(--space-8);
  padding: var(--space-16) var(--space-8);
}

.preview-widget {
  background: white;
  border-radius: 15px;
  padding: var(--space-6);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.preview-widget:hover {
  transform: translateY(-5px);
}

.widget-header {
  margin-bottom: var(--space-5);
}

.widget-icon {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-2);
}

.widget-title {
  margin-top: var(--space-2);
}

/* Layout utilities */
.vertical-center {
    display: flex;
    align-items: center;
    min-height: 400px;
}

.vertical-center-image {
    display: block;
    margin: 0 auto;
}

.image-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

/* Hero section improvements */
.hero-main {
    padding: 2rem 1rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-logo {
    width: 300px;
    max-width: 100%;
    margin-bottom: 1.5rem;
}

/* One-pager minimal helpers */
.hero-logo-simple {
    max-width: 280px;
    margin: 0 auto 1rem;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mt-4 { margin-top: 1rem !important; }

.feature-emoji {
    font-size: 1.75rem;
}

.screenshot {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* App screenshots grid */
.app-screen {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
    display: block;
}

.app-shot {
    padding: 1rem;
}

.app-shot .app-screen {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.app-shot:hover .app-screen {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 18px 38px rgba(0,0,0,0.16);
}

/* Simple app carousel */
.app-carousel {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.app-slide { display: none; }
.app-slide.active { display: block; }

.app-carousel .app-screen {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

.app-prev, .app-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.5);
    color: #2c3e50;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.app-prev { left: -8px; }
.app-next { right: -8px; }

.app-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
}

.app-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(62,142,208,0.35);
    border: none;
}

.app-dot.is-active { background: #3e8ed0; }

@media (max-width: 768px) {
    .app-prev { left: 4px; }
    .app-next { right: 4px; }
}

@media (prefers-reduced-motion: reduce) {
    .gradient-anim-bg { animation: none !important; }
    .gradient-anim-bg::after { animation: none !important; }
    .gradient-anim-bg::before { animation: none !important; }
}

/* Utility to force animations (add to body if you want to override reduced motion locally) */
.force-anim .gradient-anim-bg,
.force-anim .gradient-anim-bg::after,
.force-anim .gradient-anim-bg::before {
    animation-play-state: running !important;
}

.screenshot-portrait {
    max-width: 320px;
    width: 100%;
    border-radius: 12px;
}

.app-badge {
    height: 40px;
}

/* Inline showcase image between hero and features */
.inline-showcase {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Simple padding utility */
.p-4 { padding: 1rem !important; }

.hero-subtitle {
    font-size: var(--text-2xl);
    margin: var(--space-6) 0;
    line-height: var(--leading-snug);
    color: var(--text-secondary);
    font-weight: var(--font-light);
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-image {
    width: 325px;
    max-width: 100%;
    margin: 0 auto;
}

/* Enhanced Feature sections */
.features-container {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.features-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(72, 199, 142, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(62, 142, 208, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.features-container .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 1px 8px rgba(0, 0, 0, 0.02);
}

.feature-card.alternate {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #48c78e, #3e8ed0);
    opacity: 0.8;
}

.feature-content-text {
    padding: 1rem 0;
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-icon .icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-6);
    line-height: var(--leading-tight);
    color: var(--text-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-description {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-8);
    max-width: none;
    font-weight: var(--font-normal);
}

.feature-highlights {
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #495057;
}

.highlight-item .icon {
    margin-right: 0.8rem;
    font-weight: bold;
}

/* Feature Visual Mockups */
.feature-visual {
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.mock-journal, .mock-game {
    background: #ffffff;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid #e1e5e9;
    width: 100%;
    max-width: 350px;
    position: relative;
}

.mock-journal::before, .mock-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3e8ed0, #48c78e);
    border-radius: 15px 15px 0 0;
}

.journal-header h4, .game-header {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.journal-header p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.journal-content {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.journal-content p {
    color: #495057;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.ai-suggestion {
    background: #e8f6f3;
    border-radius: 6px;
    padding: 0.6rem;
    border-left: 3px solid #48c78e;
    font-size: 0.8rem;
}

.suggestion-label {
    font-weight: 600;
    color: #2d5a87;
}

.ai-suggestion span:last-child {
    color: #495057;
}

/* Game mockup styles */
.game-progress {
    background: #e9ecef;
    border-radius: 10px;
    height: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #48c78e, #3e8ed0);
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.game-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.game-question p {
    color: #2c3e50;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-align: center;
}

.game-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.game-options .option {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.game-options .option:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.game-options .option.correct {
    background: #d4edda;
    border-color: #48c78e;
    color: #155724;
}

/* Email signup form */
.email-signup-container {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

.email-signup-form {
    display: flex;
    gap: 1rem;
    align-items: stretch;
}

.email-input {
    flex: 1;
}

.email-input .input {
    height: 100%;
    min-height: 2.5rem;
}

.email-button {
    flex-shrink: 0;
}

/* What is Lingle section */
.what-is-lingle {
    padding: 4rem 2rem;
    background-color: rgba(0, 0, 0, 0.05);
}

.what-is-lingle .title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-6);
    font-weight: var(--font-bold);
    color: var(--text-primary);
}

.what-is-lingle .subtitle {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-weight: var(--font-normal);
}

/* About Page Styling */
.about-hero {
    padding: 4rem 1.5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-8);
    text-align: center;
    line-height: var(--leading-tight);
}

.about-description {
  font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 0;
    padding: 0 var(--space-4);
}

.team-section {
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    width: 250px;
    height: 250px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.team-member-bio {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-member-name {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    text-align: center;
    line-height: var(--leading-snug);
}

.team-member-description {
    font-size: var(--text-base);
    line-height: var(--leading-loose);
    color: var(--text-secondary);
    text-align: left;
    flex-grow: 1;
    font-weight: var(--font-normal);
}

.team-member-link .button {
    transition: all 0.3s ease;
    border-width: 2px;
}

.team-member-link .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(62, 142, 208, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        padding: 0 2rem;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-description {
        font-size: 1.1rem;
        max-width: 700px;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .team-member-image {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .about-hero {
    padding: 3rem 1rem 0;
    }
    
    .about-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-description {
        font-size: 1rem;
    margin-bottom: 0;
        padding: 0;
    }
    
    .team-section {
        margin-top: 2rem;
    }
    
    .team-member {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .team-member-image {
        width: 180px;
        height: 180px;
        margin-bottom: 1.5rem;
    }
    
    .team-member-name {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .team-member-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .team-member-link .button {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
    padding: 2rem 0.5rem 0;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .team-member {
        padding: 1rem;
    }
    
    .team-member-image {
        width: 150px;
        height: 150px;
    }
    
    .team-member-name {
        font-size: 1.2rem;
    }
    
    .team-member-description {
        font-size: 0.9rem;
    }
    
    .team-member-link .button {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Interactive Preview Widget Enhancements */
.preview-widget {
  position: relative;
  overflow: hidden;
}

.preview-widget::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.5s;
  opacity: 0;
}

.preview-widget:hover::before {
  animation: shimmer 0.8s ease-in-out;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.journal-input {
  cursor: pointer;
  transition: all 0.3s ease;
}

.journal-input:hover {
  background-color: #f8f9fa !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.translation-option {
  transition: all 0.2s ease;
  border: 1px solid #e1e5e9 !important;
}

.translation-option:hover:not(:disabled) {
  border-color: #3e8ed0 !important;
  box-shadow: 0 2px 4px rgba(62, 142, 208, 0.2);
}

.feedback-demo {
  transition: all 0.3s ease;
}

.game-progress {
  position: relative;
  overflow: hidden;
}

.progress-bar {
  background: linear-gradient(90deg, #48c78e, #3e8ed0) !important;
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* Beta signup enhancements */
.beta-gradient {
  background: linear-gradient(135deg, #48c78e 0%, #3e8ed0 100%);
}

/* Beta form mobile improvements */
.beta-form .box {
  margin: 0 1rem;
}

/* Responsive video container */
.video-responsive {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto;
}

.video-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Mobile-friendly footer buttons */
.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 20px;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-buttons .button {
  flex: 1;
  min-width: 120px;
  font-size: 0.85rem;
}

/* Interactive widget mobile improvements */
.preview-widget {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
  cursor: pointer;
}

/* Hover effect only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
  .preview-widget:hover {
    transform: translateY(-5px);
  }
}

.beta-section {
  position: relative;
  overflow: hidden;
}

.beta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(72, 199, 142, 0.1) 0%, rgba(62, 142, 208, 0.1) 100%);
  z-index: -1;
}

/* Form styling improvements */
.beta-form .box {
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.beta-form .input,
.beta-form .textarea,
.beta-form .select select {
  border-radius: 8px;
  border: 2px solid #e1e5e9;
  transition: border-color 0.3s ease;
}

.beta-form .input:focus,
.beta-form .textarea:focus,
.beta-form .select select:focus {
  border-color: #48c78e;
  box-shadow: 0 0 0 0.125em rgba(72, 199, 142, 0.25);
}

/* Pretty stacked options for radios/checkboxes */
.pretty-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pretty-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: #f8f9fa;
    border: 1.5px solid #e1e5e9;
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.pretty-option:hover {
    background: #eef2f7;
    border-color: #cfd6dd;
}

.pretty-option input[type="radio"],
.pretty-option input[type="checkbox"] {
    accent-color: #48c78e;
}

.pretty-option span { color: #2c3e50; }

/* Button hover effects */
.button.is-success:hover {
  background-color: #3ec28a;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.button.is-success {
    box-shadow: 0 8px 20px rgba(72, 199, 142, 0.25);
}

.button.is-link:hover {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.button.is-link {
    box-shadow: 0 8px 20px rgba(62, 142, 208, 0.25);
}

/* Outlined CTA button (unfilled + shadow) */
.button.cta-outline {
    background-color: transparent !important;
    color: #257942 !important; /* darker success text for contrast*/
    border: 2px solid #48c78e !important;
    box-shadow: 0 8px 20px rgba(72, 199, 142, 0.25);
    font-weight: 700;
}

.button.cta-outline strong { color: inherit; }

.button.cta-outline::after {
    content: "→";
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.button.cta-outline:hover {
    background-color: rgba(72, 199, 142, 0.08) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(72, 199, 142, 0.28);
}

.button.cta-outline:hover::after { transform: translateX(2px); }

.button.cta-outline:focus,
.button.cta-outline:focus-visible {
    box-shadow: 0 0 0 0.125em rgba(72, 199, 142, 0.35);
}


/* Add this after your existing .button.cta-outline styles */
.button.cta-outline {
    background-color: rgba(72, 199, 142, 0.08) !important; /* Very light green background */
}

.button.cta-outline:hover {
    background-color: rgba(72, 199, 142, 0.12) !important; /* Slightly more visible on hover */
}

/* Make submit survey button match the outline style */
.button.is-success {
    background-color: rgba(72, 199, 142, 0.08) !important; /* Same light green background */
    color: #257942 !important; /* Darker green text for contrast */
    border: 2px solid #48c78e !important; /* Green border */
    box-shadow: 0 8px 20px rgba(72, 199, 142, 0.25);
    font-weight: 700;
  margin-top: 20px
}

.button.is-success:hover {
    background-color: rgba(72, 199, 142, 0.12) !important; /* Same hover effect */
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(72, 199, 142, 0.3);
}


/* Form validation enhancements */
.input.is-danger, .textarea.is-danger, .select select.is-danger {
  border-color: #ff3860 !important;
  box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25) !important;
  animation: shake 0.5s ease-in-out;
}

.input.is-danger:focus, .textarea.is-danger:focus, .select select.is-danger:focus {
  border-color: #ff3860 !important;
  box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25) !important;
}

.help.is-danger {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

.help.is-danger::before {
  content: "⚠️";
  margin-right: 0.5rem;
}

.help.is-hidden {
  display: none !important;
}

/* Form loading states */
.button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.input:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

/* Success state styling */
.input.is-success, .textarea.is-success {
  border-color: #48c78e !important;
  box-shadow: 0 0 0 0.125em rgba(72, 199, 142, 0.25) !important;
}

.help.is-success {
  color: #48c78e;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

.help.is-success::before {
  content: "✓";
  margin-right: 0.5rem;
}

/* Form feedback animations */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

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

.notification {
  animation: fadeInUp 0.3s ease-out;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.notification.is-success {
  background-color: #eefcf5;
  border: 1px solid #48c78e;
  color: #257942;
}

.notification.is-danger {
  background-color: #fef7f7;
  border: 1px solid #ff3860;
  color: #cc0f35;
}

.notification.is-warning {
  background-color: #fffbeb;
  border: 1px solid #ffdd57;
  color: #947600;
}

/* Accessibility improvements */
.field label.label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.field label.label .has-text-danger {
  font-weight: 700;
}

/* Focus management */
.input:focus, .textarea:focus, .select select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .input.is-danger, .textarea.is-danger {
    border-width: 3px;
  }
  
  .help.is-danger {
    font-weight: bold;
  }
}

/* Enhanced Feature sections responsive design */
@media (max-width: 1024px) {
    .features-container {
        padding: 4rem 1.5rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
        margin-bottom: 2.5rem;
    }
    
    .feature-title {
        font-size: 2rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
    
    .feature-visual {
        min-height: 250px;
    }
    
    .mock-journal, .mock-game {
        max-width: 300px;
        padding: 1.2rem;
    }
}

/* Home page responsive design */
@media (max-width: 1024px) {
    .hero-main {
        padding: 1.5rem 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .what-is-lingle .title {
        font-size: 2rem;
    }
    
    .what-is-lingle .subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-main {
        padding: 1rem;
    }
    
    .hero-content .columns {
        flex-direction: column-reverse;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .hero-buttons .button {
        flex: 1;
        min-width: 0;
        font-size: 0.9rem;
    }
    
    /* Enhanced feature sections mobile */
    .features-container {
        padding: 3rem 1rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-card .columns {
        flex-direction: column;
    }
    
    .feature-card-right .columns {
        flex-direction: column-reverse;
    }
    
    .feature-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .feature-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .feature-content-text {
        text-align: center;
        padding: 0;
    }
    
    .feature-visual {
        min-height: 200px;
        padding: 0;
    }
    
    .mock-journal, .mock-game {
        max-width: 280px;
        padding: 1rem;
    }
    
    .highlight-item {
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .email-signup-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .email-button {
        align-self: stretch;
    }
    
    .what-is-lingle {
        padding: 3rem 1rem;
    }
    
    .what-is-lingle .title {
        font-size: 1.8rem;
    }
    
    .what-is-lingle .subtitle {
        font-size: 1rem;
    }
    
    /* Beta form mobile adjustments */
    .beta-form .box {
        margin: 0 0.5rem;
        padding: 1.5rem;
    }
    
    .beta-form .field {
        margin-bottom: 1rem;
    }
    
    /* Interactive widgets mobile */
    .preview-widget {
        padding: 20px;
        margin-bottom: 1.5rem;
    }
    
    .preview-widget h3 {
        font-size: 1.2rem;
    }
    
    /* Footer improvements */
    .footer-buttons {
        flex-direction: column;
        gap: 0.3rem;
        max-width: 300px;
    }
    
    .footer-buttons .button {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Responsive hero sections */
    .hero.is-medium .hero-body {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-main {
        padding: 0.5rem;
    }
    
    .hero-logo {
        width: 250px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin: 1rem 0;
    }
    
    .hero-buttons .button {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    /* Enhanced feature sections extra small mobile */
    .features-container {
        padding: 2rem 0.5rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-description {
        font-size: 0.9rem;
    }
    
    .mock-journal, .mock-game {
        max-width: 250px;
        padding: 0.8rem;
    }
    
    .highlight-item {
        font-size: 0.85rem;
    }
    
    .email-signup-container {
        padding: 0 0.5rem;
    }
    
    #signup-feedback {
        font-size: 0.85rem !important;
        margin-top: 10px !important;
    }
    
    .what-is-lingle {
        padding: 2rem 0.5rem;
    }
    
    .what-is-lingle .title {
        font-size: 1.5rem;
    }
    
    .what-is-lingle .subtitle {
        font-size: 0.9rem;
    }
    
    /* Mobile-specific improvements */
    .beta-form .box {
        margin: 0 0.2rem;
        padding: 1rem;
    }
    
    .preview-widget {
        padding: 15px;
    }
    
    .preview-widget h3 {
        font-size: 1.1rem;
    }
    
    .hero.is-medium .hero-body {
        padding: 2rem 1rem;
    }
    
    /* Small screen footer */
    .footer .columns {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-buttons {
        max-width: 250px;
    }
    
    .footer-buttons .button {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonial-card {
    transition: all 0.5s ease;
}

.testimonial-card .testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.avatar-circle:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: #2e6da4 !important;
    transform: scale(1.1);
}

.testimonial-nav-btn:active {
    transform: scale(0.95);
}

.dot.active {
    background-color: #3e8ed0 !important;
}

.dot:hover {
    background-color: #5a9fd4 !important;
}

.achievement-stat:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

.social-proof-box:hover {
    transform: translateY(-2px);
    transition: transform 0.3s ease;
}

/* Testimonials Responsive Design */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 60px 20px !important;
    }
    
    .testimonial-card .columns {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-content {
        margin-top: 20px;
        padding: 30px !important;
    }
    
    .achievement-stat {
        margin-bottom: 20px;
    }
    
    .social-indicators {
        flex-direction: column !important;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 15px !important;
    }
    
    .testimonials-section .title {
        font-size: 2.2rem !important;
        margin-bottom: 15px !important;
    }
    
    .testimonials-section .subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 40px !important;
    }
    
    .achievement-stat {
        padding: 20px !important;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2.2rem !important;
    }
    
    .testimonial-content {
        padding: 25px !important;
    }
    
    .testimonial-text {
        font-size: 1rem !important;
    }
    
    .metric-value {
        font-size: 1.4rem !important;
    }
    
    .testimonial-navigation {
        margin-top: 30px !important;
    }
    
    .testimonial-nav-btn {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }
    
    .social-proof-box {
        padding: 30px !important;
    }
    
    .social-proof-box .button {
        margin-bottom: 10px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 30px 10px !important;
    }
    
    .testimonials-section .title {
        font-size: 1.8rem !important;
    }
    
    .testimonials-section .subtitle {
        font-size: 1rem !important;
    }
    
    .achievement-stat {
        padding: 15px !important;
    }
    
    .stat-number {
        font-size: 1.8rem !important;
    }
    
    .stat-label {
        font-size: 0.9rem !important;
    }
    
    .avatar-circle {
        width: 80px !important;
        height: 80px !important;
        font-size: 1.8rem !important;
    }
    
    .testimonial-name {
        font-size: 1.1rem !important;
    }
    
    .testimonial-content {
        padding: 20px !important;
    }
    
    .quote-icon {
        font-size: 2rem !important;
        top: -5px !important;
        left: 20px !important;
    }
    
    .testimonial-text {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
    }
    
    .metric-value {
        font-size: 1.2rem !important;
    }
    
    .metric-label {
        font-size: 0.75rem !important;
    }
    
    .testimonial-badges .tag {
        font-size: 0.7rem !important;
        margin: 1px !important;
    }
    
    .social-proof-box {
        padding: 20px !important;
    }
    
    .social-proof-box .title {
        font-size: 1.2rem !important;
        margin-bottom: 20px !important;
    }
    
    .indicator-value {
        font-size: 1.2rem !important;
    }
    
    .indicator-label {
        font-size: 0.8rem !important;
    }
    
    .stars {
        font-size: 1rem !important;
    }
}

/* Development page helpers (minimal) */
.dev-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dev-section {
    padding: 60px 20px;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-subtle {
    background: rgba(0, 0, 0, 0.05);
}

.radius-12 {
    border-radius: 12px;
}

.max-900 { max-width: 900px; margin: 0 auto; }
.max-800 { max-width: 800px; margin: 0 auto; }
.max-600 { max-width: 600px; margin: 0 auto; }

.timeline-dot {
    color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    font-weight: 700;
}

.grad-purple { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.grad-teal { background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%); }
.grad-orange { background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%); }
.grad-green { background: linear-gradient(135deg, #48c78e 0%, #3e8ed0 100%); }

.box-accent-purple { border-left: 5px solid #667eea; }
.box-accent-teal { border-left: 5px solid #4ecdc4; }
.box-accent-orange { border-left: 5px solid #ff6b35; }
.box-accent-green { border-left: 5px solid #48c78e; }

.bg-gradient-purple { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; }
.bg-gradient-green-blue { background: linear-gradient(135deg, #48c78e 0%, #3e8ed0 100%); }

.badge-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #fff;
}

.bg-orange { background: #ff6b35; }
.bg-teal { background: #4ecdc4; }
.bg-indigo { background: #667eea; }

/* Small helpers to replace inline styles on development page */
.box-soft {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}

.list-loose {
    line-height: 1.8;
}

.h-100 { height: 100%; }

.text-indigo { color: #667eea; }
.text-teal { color: #4ecdc4; }
.text-orange { color: #ff6b35; }
.text-green { color: #48c78e; }

.text-095 { font-size: 0.95rem; }


.screenshot {
  border: none;
  box-shadow: none;
  outline: none;
}
