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

:root {
  --primary: #ff6b35;
  --primary-dark: #cc5529;
  --secondary: #ffa500;
  --accent: #ff4757;

  --text-primary: #ffffff;
  --text-secondary: #b8b8b8;
  --text-dim: #707070;

  --bg-black: #000000;
  --bg-card: rgba(15, 15, 15, 0.9);
  --border: rgba(255, 107, 53, 0.25);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Animated gradient orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
  top: -250px;
  right: -250px;
  animation: float1 25s ease-in-out infinite;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  bottom: -200px;
  left: -200px;
  animation: float2 30s ease-in-out infinite;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  top: 40%;
  right: 20%;
  animation: float3 35s ease-in-out infinite;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
}

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

.hero-content {
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 2px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

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

.btn {
  padding: 16px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.4s forwards;
}

.dragon-wrapper {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dragon-glow {
  position: absolute;
  inset: -30%;
  background: transparent;
  filter: blur(80px);
  animation: breathe 5s ease-in-out infinite;
}

.dragon-image {
  position: relative;
  width: 100%;
  height: auto;
  filter: none;
  animation: float 6s ease-in-out infinite;
}

/* Stats Bar */
.stats-bar {
  margin-top: 60px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.stat {
  text-align: center;
  position: relative;
  padding: 16px;
  transition: transform 0.3s ease;
}

.stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}

.stat:hover {
  transform: scale(1.05);
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-family: 'Courier New', monospace;
}

/* Section Styles */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.5s ease;
  opacity: 0;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.25);
  background: rgba(20, 20, 20, 0.95);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.4);
  position: relative;
  transition: all 0.4s ease;
}

.feature-icon i {
  width: 28px;
  height: 28px;
  color: white;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(255, 107, 53, 0.6);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* More Features Toggle */
.features-toggle {
  width: 100%;
  max-width: 600px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 36px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.features-toggle:hover {
  border-color: var(--primary);
  background: rgba(20, 20, 20, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.2);
}

.toggle-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.toggle-icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.toggle-count {
  font-size: 1.2rem;
  color: var(--primary);
  font-family: 'Courier New', monospace;
}

.toggle-arrow {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-arrow i {
  width: 100%;
  height: 100%;
  color: var(--primary);
}

.features-toggle[aria-expanded="true"] .toggle-arrow {
  transform: rotate(180deg);
}

.additional-features {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease 0.1s,
              margin-top 0.6s ease;
  margin-top: 0;
}

.additional-features.expanded {
  max-height: 2000px;
  opacity: 1;
  margin-top: 60px;
}

.features-grid-compact .feature-card {
  padding: 32px 28px;
}

.features-grid-compact .feature-icon {
  width: 56px;
  height: 56px;
}

.features-grid-compact .feature-icon i {
  width: 24px;
  height: 24px;
}

.features-grid-compact .feature-title {
  font-size: 1.2rem;
}

.features-grid-compact .feature-description {
  font-size: 0.95rem;
}

/* Timeline */
.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  order: 2;
}

.timeline-content {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.timeline-content:hover {
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.25);
  transform: translateX(8px);
}

.timeline-content:hover::before {
  transform: scaleY(1);
}

.timeline-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.timeline-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.timeline-description {
  color: var(--text-secondary);
  line-height: 1.8;
}

.timeline-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  opacity: 0.3;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  border: 4px solid var(--bg-black);
  box-shadow: 0 0 20px var(--primary);
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
}

.cta-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 60px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
  animation: rotate 25s linear infinite;
}

.cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.cta-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.8;
}

.app-store-badge {
  display: inline-block;
  width: 180px;
  height: auto;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.1));
}

.app-store-badge svg {
  width: 100%;
  height: auto;
  display: block;
}

.app-store-badge:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 20px rgba(255, 107, 53, 0.4));
}

.app-store-badge:active {
  transform: translateY(-2px);
}

.coming-soon {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: white;
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  animation: pulseGlow 3s ease-in-out infinite;
}

.coming-soon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: shimmer 3s infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
  }
  50% {
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.7);
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

.cta-link {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.cta-link:hover {
  color: var(--primary);
}

.cta-link span {
  color: var(--primary);
  text-decoration: underline;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
  background: rgba(0, 0, 0, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 400px;
}

.footer-section h4 {
  font-size: 0.9rem;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--primary);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  font-size: 0.9rem;
}

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

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

@keyframes float1 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(100px, 100px);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-80px, -80px);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes breathe {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .timeline::before {
    left: 0;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 60px;
  }

  .timeline-item:nth-child(even) .timeline-content {
    order: 1;
  }

  .timeline-visual {
    display: none;
  }

  .timeline-dot {
    left: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .subtitle {
    font-size: 1.1rem;
    margin-bottom: 32px;
  }

  .badge {
    font-size: 0.7rem;
    padding: 6px 16px;
    margin-bottom: 24px;
  }

  .hero {
    padding: 90px 0 40px;
    min-height: auto;
  }

  .hero-visual {
    max-width: 350px;
  }

  .dragon-wrapper {
    padding: 20px;
  }

  section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .section-description {
    font-size: 1rem;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.85rem;
    width: 100%;
    text-align: center;
  }

  .cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .feature-icon i {
    width: 24px;
    height: 24px;
  }

  .feature-title {
    font-size: 1.2rem;
  }

  .stats-bar {
    margin-top: 40px;
    padding: 32px 24px;
    gap: 32px;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .footer-brand p {
    max-width: 100%;
  }

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

  .cta-box {
    padding: 50px 24px;
    margin: 0 20px;
  }

  .cta-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .cta-text {
    font-size: 1rem;
    margin-bottom: 32px;
  }

  .app-store-badge {
    width: 160px;
  }

  .coming-soon {
    padding: 12px 32px;
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .timeline-item {
    padding-left: 40px;
    margin-bottom: 60px;
  }

  .timeline-content {
    padding: 28px 24px;
  }

  .timeline-number {
    font-size: 3rem;
    margin-bottom: 12px;
  }

  .timeline-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .timeline-description {
    font-size: 0.95rem;
  }

  .orb-1, .orb-2, .orb-3 {
    opacity: 0.05;
  }

  .features-toggle {
    margin-top: 40px;
    font-size: 1.4rem;
    padding: 20px 24px;
  }

  .toggle-icon {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .hero {
    padding: 80px 0 30px;
  }

  .hero-visual {
    max-width: 280px;
  }

  section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }

  .stats-bar {
    padding: 24px 20px;
  }

  .app-store-badge {
    width: 140px;
  }

  .cta-box {
    padding: 40px 20px;
  }

  .timeline-item {
    padding-left: 32px;
  }
}
