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

:root {
  --primary: #ff6b35;
  --primary-light: #fff5f2;
  --accent: #ffd233;
  --dark: #111827;
  --gray-900: #1f2937;
  --gray-600: #4b5563;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  color: var(--dark);
  overflow-x: hidden;
  background: var(--white);
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 16px 0;
  z-index: 1000;
  border-bottom: 1px solid var(--gray-200);
}

.navbar .container {
  position: relative;
  z-index: 1001;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1001;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1001;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.nav-menu a:hover::after {
  width: 100%;
}

.hiring-tag {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  backdrop-filter: blur(10px);
  color: #10b981;
  font-size: 8px;
  font-weight: 600;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: super;
  position: relative;
  top: -2px;
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.15), 
              inset 0 1px 1px rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.nav-download-btn {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-download-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.nav-store-badge {
  height: 40px;
  width: 120px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

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

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  z-index: 1002;
  position: relative;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
  display: block;
}

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

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

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

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 107, 53, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 210, 51, 0.06) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, var(--white) 0%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(0, 0, 0, 0.02) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text {
  max-width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

.hero-text h1 {
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.highlight {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Hero Social Proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.rating-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stars {
  color: #fbbf24;
  font-size: 18px;
  letter-spacing: 2px;
}

.rating-badge span {
  font-size: 13px;
  color: var(--gray-600);
  font-weight: 500;
}

.users-count {
  display: flex;
  align-items: center;
  gap: 12px;
}

.users-count .trust-avatars {
  display: flex;
  padding-right: 4px;
}

.users-count p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.4;
}

.users-count p strong {
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Hero Formats */
.hero-formats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.formats-label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.format-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.format-badge {
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-phone-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.hero-phone {
  width: 100%;
  max-width: 280px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.hero-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.3),
    rgba(14, 165, 233, 0.3)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-phone-link:hover .hero-phone::before {
  opacity: 1;
}

.hero-phone-link:hover .hero-phone {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2), 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-phone img {
  width: 100%;
  height: auto;
  display: block;
}

.phone-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.phone-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.phone-slide.active {
  position: relative;
  opacity: 1;
}

.btn {
  padding: 16px 32px;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  text-decoration: none;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-height: 48px;
}

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

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

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-600);
  border: 2px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hero-trust-section {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-avatars {
  display: flex;
  padding-right: 4px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  margin-right: -12px;
  border: 2px solid var(--white);
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.avatar-initials {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* Hero avatar initials (overlapping) */
.trust-avatars .avatar-initials {
  margin-right: -12px;
  width: 36px;
  height: 36px;
  font-size: 16px;
}

/* Testimonial avatar initials (standalone) */
.testimonial-author .avatar-initials {
  width: 40px;
  height: 40px;
  font-size: 14px;
}

.hero-trust p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.4;
}

.hero-trust p strong {
  color: var(--dark);
  font-weight: 700;
  font-size: 16px;
}

.hero-formats {
  display: flex;
  align-items: center;
  gap: 14px;
}

.formats-label {
  font-size: 13px;
  color: var(--gray-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.format-icons {
  display: flex;
  gap: 10px;
}

.format-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.format-icon svg {
  stroke: var(--gray-600);
  transition: all 0.3s ease;
}

.format-icon:hover {
  transform: translateY(-4px) scale(1.1);
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
}

.format-icon:hover svg {
  stroke: var(--primary);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-400);
  font-size: 13px;
  font-weight: 500;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
  color: var(--gray-400);
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* Trust Bar */
.trust-bar {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.trust-bar .container {
  text-align: center;
}

.trust-bar p {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.format-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.format-pill {
  background: var(--gray-100);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-600);
}

/* Supported Formats Section */
.formats-section {
  padding: 80px 0;
  background: var(--white);
}

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

.formats-header {
  margin-bottom: 40px;
}

.formats-header h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.formats-header p {
  font-size: 16px;
  color: var(--gray-600);
}

.formats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.format-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: none;
  transition: all 0.3s ease;
  cursor: default;
}

.format-card:hover .format-icon {
  background: var(--primary-light);
  border-color: var(--primary);
}

.format-card:hover .format-icon svg {
  stroke: var(--primary);
}

.format-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border: 2px solid transparent;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.format-icon svg {
  stroke: var(--gray-600);
  transition: all 0.3s ease;
}

.format-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
}

/* Study Experience Section */
.study-experience {
  padding: 160px 0;
  background: var(--white);
}

/* Feature Showcase */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 180px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.feature-showcase:last-child {
  margin-bottom: 0;
}

.feature-showcase.reverse {
  direction: rtl;
}

.feature-showcase.reverse > * {
  direction: ltr;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--primary-light);
  color: var(--primary);
  border: none;
  box-shadow: none;
}

.quiz-badge,
.flashcard-badge {
  background: var(--primary-light);
  color: var(--primary);
}

.feature-header h3 {
  font-size: 40px;
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
}

.feature-header p {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* Feature Stats - Hidden for minimalism */
.feature-stats {
  display: none;
}

.stat-box {
  display: none;
}

/* Feature Pills - Simplified */
.feature-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gray-100);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-700);
  font-weight: 500;
  box-shadow: none;
}

.feature-pill svg {
  width: 16px;
  height: 16px;
  stroke: var(--gray-600);
}

.quiz-pill,
.flashcard-pill {
  background: var(--gray-100);
  border: none;
}

.quiz-pill svg,
.flashcard-pill svg {
  stroke: var(--gray-600);
}

/* Feature Testimonials - Hidden for minimalism */
.feature-testimonials-wrapper {
  display: none;
}

.feature-testimonials {
  display: none;
}

.feature-testimonial {
  display: none;
}

.testimonial-header {
  display: none;
}

.testimonial-time {
  display: none;
}

.testimonial-content p {
  display: none;
}

.testimonial-meta {
  display: none;
}

.testimonial-likes {
  display: none;
}

.avatar-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: white;
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* Feature Visual */
.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.feature-phone-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.feature-phone {
  width: 100%;
  max-width: 280px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.feature-phone::before {
  display: none;
}

.feature-phone-link:hover .feature-phone {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.feature-phone img {
  width: 100%;
  height: auto;
  display: block;
}

/* Progress Section */
.progress-social {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #fafafa 0%, var(--white) 100%);
  overflow: hidden;
}

.progress-social .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Progress Showcase - Masonry with Columns */
.progress-showcase {
  column-count: 2;
  column-gap: 28px;
  width: 750px;
  max-width: 100%;
  margin: 0 auto;
}

.progress-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 32px;
  break-inside: avoid;
  text-align: center;
}

.progress-phone-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.progress-phone {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  background: var(--white);
  margin-bottom: 20px;
  border: 1px solid var(--gray-200);
}

.progress-phone-link:hover .progress-phone {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: var(--gray-300);
}

.progress-phone img {
  width: 100%;
  height: auto;
  display: block;
}

.progress-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.progress-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
  padding: 0 8px;
}

/* Bento Grid - Hidden */
.bento-grid {
  display: none;
}

.bento-card {
  display: none;
}

/* Old Grid - Hidden */
.progress-grid {
  display: none;
}

.progress-card {
  display: none;
}

/* Stacked Cards - Hidden */
.stacked-cards-container {
  display: none;
}

.stack-card {
  display: none;
}

.floating-stats {
  display: none;
}

/* Stacked Cards Container */
.stacked-cards-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

/* Stack Card Base */
.stack-card {
  position: absolute;
  width: 420px;
  background: var(--white);
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease, z-index 0s 0s, opacity 0.8s ease,
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(40px);
}

.stack-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.stack-card:hover {
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.25), 0 15px 40px rgba(0, 0, 0, 0.2);
  z-index: 100 !important;
}

/* Card Positioning - Cascading Effect */
.card-1 {
  left: 5%;
  top: 50%;
  z-index: 1;
  background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
}

.card-1.animate-in {
  transform: translateY(-50%) rotate(-8deg);
}

.card-1:hover {
  transform: translateY(-50%) rotate(0deg) !important;
}

.card-2 {
  left: 25%;
  top: 45%;
  z-index: 2;
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  transition-delay: 0.1s;
}

.card-2.animate-in {
  transform: translateY(-50%) rotate(-3deg);
}

.card-2:hover {
  transform: translateY(-50%) rotate(0deg) !important;
}

.card-3 {
  left: 45%;
  top: 48%;
  z-index: 3;
  background: linear-gradient(135deg, #fff3e6 0%, #ffffff 100%);
  transition-delay: 0.2s;
}

.card-3.animate-in {
  transform: translateY(-50%) rotate(2deg);
}

.card-3:hover {
  transform: translateY(-50%) rotate(0deg) !important;
}

.card-4 {
  right: 8%;
  top: 52%;
  z-index: 4;
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  transition-delay: 0.3s;
}

.card-4.animate-in {
  transform: translateY(-50%) rotate(6deg);
}

.card-4:hover {
  transform: translateY(-50%) rotate(0deg) !important;
}

/* Card Badge */
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--dark);
}

.badge-xp {
  background: linear-gradient(135deg, #fff5f2 0%, #ffe5dc 100%);
  border-color: rgba(255, 107, 53, 0.2);
  color: var(--primary);
}

.badge-xp svg {
  stroke: var(--primary);
}

.badge-streak {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
  border-color: rgba(255, 210, 51, 0.2);
  color: #d97706;
}

.badge-streak svg {
  stroke: #d97706;
  fill: #d97706;
}

.badge-social {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.badge-social svg {
  stroke: #10b981;
}

/* Card Visual */
.card-visual {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.card-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card Info */
.card-info h3 {
  font-size: 22px;
  color: var(--dark);
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.card-info p {
  font-size: 15px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* Floating Stats - Hidden */
.floating-stats {
  display: none;
}

/* How It Works */
.how-it-works {
  padding: 160px 0;
  background: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--dark);
}

.step p {
  color: var(--gray-600);
  line-height: 1.6;
  font-size: 15px;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: var(--gray-200);
  margin-top: 24px;
  flex-shrink: 0;
}

/* FAQ Section */
.faq {
  padding: 160px 0;
  background: var(--gray-100);
}

.faq-grid {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.faq-question {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-question h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.faq-toggle {
  font-size: 24px;
  color: var(--primary);
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 28px 24px;
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

/* Testimonials Section */
.testimonials-section {
  padding: 160px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-rating {
  color: #fbbf24;
  font-size: 16px;
  letter-spacing: 1px;
}

.testimonial-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--dark);
  margin: 0;
  flex: 1;
  font-weight: 400;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author .avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: white;
}

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

.testimonial-author .author-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
}

.testimonial-author .author-role {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 400;
}

/* Download Section */
.download {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.download-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.download h2 {
  font-size: 48px;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.download > .container > .download-content > p {
  font-size: 20px;
  margin-bottom: 48px;
  color: rgba(255, 255, 255, 0.8);
}

.download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: nowrap;
  align-items: center;
}

.store-badge-link {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  height: 60px;
  width: 180px;
}

.store-badge-link:hover {
  transform: translateY(-4px);
  filter: brightness(1.1);
}

.store-badge {
  height: 60px;
  width: 180px;
  display: block;
  object-fit: contain;
}

.store-badge-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
  height: 60px;
  width: 180px;
}

.store-badge-wrapper:hover {
  transform: translateY(-4px);
  filter: brightness(1.1);
}

.store-badge-wrapper .store-badge {
  height: 60px;
  width: 180px;
  display: block;
  object-fit: contain;
}

.coming-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.download-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-content {
  display: flex;
  flex-direction: row;
  gap: 48px;
  margin-bottom: 48px;
  justify-content: space-between;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.footer-logo:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

.footer-tagline {
  color: var(--gray-400);
  font-size: 15px;
}

.footer-section h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

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

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--gray-600);
  background: transparent;
  color: white;
  font-size: 14px;
  font-family: inherit;
}

.newsletter-input::placeholder {
  color: var(--gray-400);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--primary);
}

.newsletter-btn {
  padding: 12px 20px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.newsletter-btn:hover {
  background: #e55a2b;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gray-600);
  text-align: center;
  color: var(--gray-400);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1200px) {
  .xp-badge {
    right: -80px;
    scale: 0.95;
  }

  .streak-badge {
    left: -80px;
    scale: 0.95;
  }

  .win-badge {
    right: -90px;
    scale: 0.95;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-social-proof {
    justify-content: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .hero-formats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .format-icon {
    width: 44px;
    height: 44px;
  }

  .format-icon svg {
    width: 22px;
    height: 22px;
  }

  .feature-showcase {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 80px;
  }

  .feature-showcase.reverse {
    direction: ltr;
  }

  .feature-visual {
    order: -1;
  }

  .feature-header h3 {
    font-size: 36px;
  }

  .feature-stats {
    grid-template-columns: 1fr;
  }

  .feature-phone {
    max-width: 320px;
  }

  .stacked-cards-container {
    min-height: 800px;
    padding: 40px 20px 100px;
  }

  .stack-card {
    width: 360px;
  }

  .card-1 {
    left: 8%;
    top: 20%;
    transform: translateY(0) rotate(-5deg);
  }

  .card-2 {
    left: 28%;
    top: 25%;
    transform: translateY(0) rotate(-2deg);
  }

  .card-3 {
    right: 28%;
    left: auto;
    top: 30%;
    transform: translateY(0) rotate(2deg);
  }

  .card-4 {
    right: 8%;
    left: auto;
    top: 35%;
    transform: translateY(0) rotate(5deg);
  }

  .floating-stats {
    gap: 16px;
  }

  .experience-row {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .experience-row.reverse {
    direction: ltr;
  }

  .experience-visuals {
    order: -1;
  }

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

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
  }

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

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

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

  /* Navigation */
  .navbar .container {
    position: relative;
  }

  .logo {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

  .nav-right {
    position: relative;
    z-index: 1003;
  }

  .nav-menu {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-bottom: 1px solid var(--gray-200);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    max-height: 500px;
  }

  .nav-menu li {
    width: 100%;
    margin: 0;
  }

  .nav-menu a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
  }

  .nav-menu a::after {
    display: none;
  }

  .hiring-tag {
    font-size: 7px;
    padding: 2px 4px;
    margin-left: 4px;
  }

  .nav-download-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
  }

  .mobile-menu-btn {
    display: flex !important;
    z-index: 9999;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu-btn span {
    pointer-events: none;
  }

  /* Hero Section */
  .hero {
    padding: 100px 0 40px;
    min-height: auto;
  }

  .hero-content {
    gap: 40px;
  }

  .hero-eyebrow {
    font-size: 12px;
    padding: 6px 14px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .tagline {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-social-proof {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
  }

  .format-badges {
    gap: 6px;
    justify-content: center;
  }

  .format-badge {
    font-size: 12px;
    padding: 5px 12px;
  }

  .hero-phone {
    max-width: 240px;
  }

  .hero-phone-link {
    -webkit-tap-highlight-color: transparent;
  }

  .feature-phone-link,
  .progress-phone-link {
    -webkit-tap-highlight-color: transparent;
  }

  .scroll-indicator {
    display: none;
  }

  /* Formats Section */
  .formats-section {
    padding: 60px 0;
  }

  .formats-header h3 {
    font-size: 24px;
  }

  .formats-header p {
    font-size: 15px;
  }

  .formats-grid {
    gap: 20px;
  }

  .format-icon {
    width: 56px;
    height: 56px;
  }

  .format-name {
    font-size: 13px;
  }

  /* Study Experience Section */
  .study-experience {
    padding: 80px 0;
  }

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

  .section-header h2 {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .feature-showcase {
    margin-bottom: 60px;
  }

  .feature-header h3 {
    font-size: 28px;
  }

  .feature-header p {
    font-size: 16px;
  }

  .feature-stats {
    grid-template-columns: 1fr;
  }

  .stat-box {
    padding: 14px;
  }

  .feature-phone {
    max-width: 240px;
  }

  .feature-pills {
    justify-content: center;
  }

  .feature-pill {
    font-size: 13px;
    padding: 8px 14px;
  }

  /* Progress Section */
  .progress-social {
    padding: 60px 0;
  }

  .stacked-cards-container {
    display: none;
  }

  .bento-grid {
    display: none;
  }

  .bento-card {
    display: none;
  }

  .progress-showcase {
    column-count: 2;
    column-gap: 16px;
    width: 100%;
    padding-left: 0;
  }

  .progress-phone-link {
    display: block;
    margin-bottom: 0;
  }

  .progress-item {
    margin-bottom: 20px;
  }

  .progress-item h3 {
    font-size: 18px;
  }

  .progress-item p {
    font-size: 14px;
  }

  .progress-grid {
    display: none;
  }

  .progress-card {
    display: none;
  }

  .stack-card {
    width: 340px;
    padding: 24px;
  }

  .card-1 {
    left: 50%;
    top: 15%;
    transform: translateX(-50%) rotate(-6deg);
  }

  .card-2 {
    left: 50%;
    top: 35%;
    transform: translateX(-50%) rotate(-2deg);
  }

  .card-3 {
    left: 50%;
    top: 55%;
    transform: translateX(-50%) rotate(2deg);
  }

  .card-4 {
    left: 50%;
    right: auto;
    top: 75%;
    transform: translateX(-50%) rotate(5deg);
  }

  .card-info h3 {
    font-size: 20px;
  }

  .card-info p {
    font-size: 14px;
  }

  .floating-stats {
    bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
  }

  .mini-stat {
    padding: 12px 18px;
    scale: 0.9;
  }

  .mini-icon {
    font-size: 24px;
  }

  .mini-value {
    font-size: 17px;
  }

  /* How It Works */
  .how-it-works {
    padding: 80px 0;
  }

  .step h3 {
    font-size: 18px;
  }

  .step p {
    font-size: 14px;
  }

  /* Testimonials */
  .testimonials-section {
    padding: 80px 0;
  }

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

  /* FAQ */
  .faq {
    padding: 80px 0;
  }

  .faq-question {
    padding: 20px 24px;
  }

  .faq-question h3 {
    font-size: 16px;
  }

  .faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
  }

  /* Download Section */
  .download {
    padding: 80px 0;
  }

  .download h2 {
    font-size: 32px;
  }

  .download > .container > .download-content > p {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .download-buttons {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .store-badge-link,
  .store-badge-wrapper {
    height: 50px;
    width: 150px;
  }

  .store-badge {
    height: 50px;
    width: 150px;
  }

  /* Footer */
  .footer {
    padding: 48px 0 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-input {
    width: 100%;
  }

  .newsletter-btn {
    width: 100%;
  }
}

/* Mobile - Single Column Centered */
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .tagline {
    font-size: 15px;
  }

  .hero-phone {
    max-width: 220px;
  }

  .feature-phone {
    max-width: 220px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .feature-header h3 {
    font-size: 24px;
  }

  .formats-grid {
    gap: 16px;
  }

  .format-icon {
    width: 48px;
    height: 48px;
  }

  .format-icon svg {
    width: 20px;
    height: 20px;
  }

  .progress-showcase {
    column-count: 1;
  }

  .progress-item {
    margin-bottom: 24px;
  }

  .download h2 {
    font-size: 28px;
  }

  .download > .container > .download-content > p {
    font-size: 15px;
  }

  .store-badge-link,
  .store-badge-wrapper {
    height: 45px;
    width: 135px;
  }

  .store-badge {
    height: 45px;
    width: 135px;
  }

  .coming-badge {
    font-size: 9px;
    padding: 3px 8px;
  }
}

/* Careers Page */
.careers-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--white) 0%, #fafafa 100%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.careers-hero-content {
  max-width: 800px;
  text-align: left;
}

.careers-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.careers-tagline {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
}

.careers-listings {
  padding: 60px 0 120px;
  background: var(--white);
}

.careers-listings .container {
  max-width: 900px;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.job-header h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

.job-header svg {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.job-card:hover .job-header svg {
  transform: translateX(4px);
}

.job-meta {
  font-size: 15px;
  color: var(--gray-600);
  margin: 0;
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 100px 0 60px;
  }
  
  .careers-hero h1 {
    font-size: 36px;
  }
  
  .careers-tagline {
    font-size: 16px;
  }
  
  .job-card {
    padding: 24px;
  }
  
  .job-header h2 {
    font-size: 20px;
  }
}

/* Job Detail Page */
.job-detail-hero {
  padding: 80px 0 50px;
  background: linear-gradient(135deg, #fff5f2 0%, #ffffff 50%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

.job-detail-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(255, 107, 53, 0.03) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  pointer-events: none;
}

.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.job-badge svg {
  stroke: var(--primary);
}

.meta-item {
  font-size: 15px;
  color: var(--gray-600);
  font-weight: 500;
}

.tiktok-reels-preview {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}

.reel-placeholder {
  width: 140px;
  height: 240px;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--gray-300);
}

.reel-placeholder svg {
  color: var(--gray-400);
}

.reel-placeholder span {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

.job-detail-header h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.compensation {
  font-size: 18px;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0 0 20px 0;
}

.job-meta-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}

.job-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex: 1;
}

.hero-cta {
  flex-shrink: 0;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .job-meta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .hero-cta {
    width: 100%;
    justify-content: center;
  }
}

.compensation strong {
  color: var(--primary);
  font-weight: 700;
}

.job-details-content {
  padding: 60px 0 120px;
  background: var(--white);
}

.job-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.job-section {
  margin-bottom: 48px;
}

.job-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.job-section p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.job-section p strong {
  color: var(--dark);
  font-weight: 600;
}

.job-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-list li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.job-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

.job-apply-section {
  margin-top: 64px;
  text-align: center;
  padding: 48px;
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff9e6 100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

/* Founding Creator Benefits */
.founding-creator-benefits {
  background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
  padding: 40px;
  border-radius: 16px;
  border: 2px solid var(--primary);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  margin-bottom: 12px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefits-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.benefits-list li::before {
  display: none;
}

.benefit-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}

.benefits-list strong {
  color: var(--dark);
  font-weight: 600;
  display: inline;
}

.future-opportunity {
  margin-top: 24px;
  padding: 20px;
  background: #fff9e6;
  border-radius: 12px;
  border-left: 4px solid #fbbf24;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
}

.future-opportunity strong {
  color: #d97706;
  display: block;
  margin-bottom: 8px;
}

.btn-large {
  padding: 18px 40px;
  font-size: 17px;
}

@media (max-width: 768px) {
  .job-detail-header h1 {
    font-size: 32px;
  }
  
  .compensation {
    font-size: 16px;
  }
  
  .tiktok-reels-preview {
    gap: 12px;
  }
  
  .reel-placeholder {
    min-width: 120px;
    height: 200px;
  }
  
  .job-section h2 {
    font-size: 24px;
  }
  
  .job-section p,
  .job-list li {
    font-size: 16px;
  }
  
  .job-apply-section {
    padding: 32px 24px;
  }

  .founding-creator-benefits {
    padding: 24px;
  }

  .benefits-list li {
    padding: 16px;
    font-size: 15px;
  }

  .benefit-icon {
    font-size: 24px;
  }

  .future-opportunity {
    padding: 16px;
    font-size: 14px;
  }
}


/* Application Form Styles */
.application-hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff9e6 100%);
  padding: 60px 0 40px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  transition: all 0.2s ease;
}

.back-link:hover {
  color: var(--primary);
  transform: translateX(-4px);
}

.back-link svg {
  transition: transform 0.2s ease;
}

.back-link:hover svg {
  transform: translateX(-2px);
}

.application-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.application-header h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin: 12px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.application-subtitle {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-top: 12px;
}

.application-form-section {
  padding: 40px 0 60px;
  background: var(--white);
  min-height: calc(100vh - 200px);
}

.application-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.success-message {
  background: white;
  padding: 60px 48px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-200);
  text-align: center;
  animation: fadeInUp 0.5s ease;
}

.success-icon {
  margin: 0 auto 24px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
  border-radius: 50%;
}

.success-message h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.success-message p {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.6;
}

.success-details {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.success-message .btn {
  margin-top: 16px;
}

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

.creator-application-form {
  background: white;
  padding: 32px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-200);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row .form-group {
  margin-bottom: 0;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.required {
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  transition: all 0.2s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 120px;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Rating Scale */
.rating-scale {
  margin-top: 8px;
}

.rating-buttons {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.rating-btn {
  width: 42px;
  height: 42px;
  border: 2px solid var(--gray-200);
  background: white;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.rating-btn:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
}

.rating-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: scale(1.05);
}

.rating-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-500);
  padding: 0 4px;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
  font-size: 17px;
  padding: 18px 32px;
}

.form-note {
  text-align: center;
  margin-top: 16px;
  color: var(--gray-500);
  font-size: 13px;
}

@media (max-width: 768px) {
  .application-hero {
    padding: 60px 0 40px;
  }

  .application-header h1 {
    font-size: 36px;
  }

  .application-subtitle {
    font-size: 16px;
  }

  .application-form-section {
    padding: 60px 0;
  }

  .creator-application-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-row .form-group {
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  .rating-btn {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .rating-buttons {
    gap: 6px;
  }
}
