/* Glook Landing Page Styles */

/* CSS Variables - Using your brand colors */
:root {
  --primary: #000000;
  --primary-light: #F5F5F5;
  --primary-dark: #1A1A1A;
  --secondary: #333333;
  --text-primary: #000000;
  --text-secondary: #555555;
  --text-tertiary: #999999;
  --background: #FFFFFF;
  --background-off: #FAFAFA;
  --border-light: #E0E0E0;
  --success: #34C759;
  --error: #FF3B30;
  --white: #FFFFFF;
  --black: #000000;
  
  /* Spacing */
  --container-max-width: 1200px;
  --section-padding: 120px;
  --card-radius: 24px;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  color: var(--text-primary);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Enhanced Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.nav.hidden {
  transform: translateY(-100%);
}

.nav.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: auto;
  height: 160px;
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  animation: logoPulse 3s ease-in-out infinite;
}

.logo-text {
  display: none;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 48px;
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

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

.nav-actions {
  display: flex;
  align-items: center;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav-cta svg {
  transition: transform 0.2s ease;
}

.nav-cta:hover svg {
  transform: translateX(2px);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.mobile-menu-btn:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: rgba(248, 245, 255, 0.95);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 32px;
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-logo {
  width: auto;
  height: 100px;
  border-radius: 0;
  object-fit: contain;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-primary);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.mobile-menu-close:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 18px;
  padding: 12px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-nav-link:hover {
  color: var(--primary);
  padding-left: 8px;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  margin-top: 24px;
  transition: all 0.3s ease;
}

.mobile-nav-cta:hover {
  transform: scale(1.02);
}

/* Animations */
@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Intro Header Section */
.intro-header {
  padding: 180px 0 20px;
  background: var(--background);
  text-align: center;
}

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

.intro-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.1;
}

.intro-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .intro-header {
    padding: 160px 0 40px;
  }
  
  .intro-title {
    font-size: 2.5rem;
  }
  
  .intro-description {
    font-size: 1.125rem;
  }
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: 2;
  pointer-events: none;
}

.hero-background-video {
  position: absolute;
  top: 120px; /* Pushed down to accommodate new header */
  left: 0;
  width: 100%;
  height: calc(100% - 120px);
  object-fit: contain;
  z-index: 1;
  background: #f3edf7;
  border-radius: 24px 24px 0 0;
  margin: 0 24px;
  width: calc(100% - 48px);
}

.hero-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.hero-content {
  opacity: 1;
  transform: none;
}

.hero-intro {
  margin-bottom: 24px;
}

.intro-label {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-name {
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.badge-text {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-primary);
  opacity: 0;
  transform: translateY(30px);
}

.highlight-text {
  color: var(--primary);
  font-weight: 700;
}

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

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-cta {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
}

.cta-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
  padding: 16px 32px;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.cta-secondary:hover {
  background: var(--background-off);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  opacity: 1;
  transform: none;
}

.hero-content-visual {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  width: 80px;
  height: 100px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 1;
}

.floating-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card.card-1 {
  top: 20%;
  left: -60px;
  transform: rotate(-10deg);
}

.floating-card.card-2 {
  top: 60%;
  right: -60px;
  transform: rotate(10deg);
}

.floating-card.card-3 {
  top: 40%;
  left: -80px;
  transform: rotate(-15deg);
}


/* How It Works Section */
.how-it-works {
  padding: calc(var(--section-padding) * 0.75) 0 var(--section-padding);
  background: #FAFAFA;
}

.how-intro {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--secondary);
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  border-radius: 16px;
  background: currentColor;
  opacity: 0.7;
}

.how-intro .section-title {
  font-size: 2.6rem;
  margin: 18px 0 14px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.how-intro .section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
}

.how-step {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  margin-bottom: 72px;
  border-radius: 28px;
  background: transparent;
  box-shadow: none;
  border: none;
  position: relative;
  overflow: visible;
  min-height: 78vh;
}

.how-step:last-of-type {
  margin-bottom: 0;
}

.step-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
}

.step-copy h3 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text-primary);
}

.step-copy p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
}

.step-track {
  position: relative;
  overflow: visible;
  padding: 0;
  background: transparent;
}

.track-inner {
  display: flex;
  gap: 24px;
  min-width: 100%;
  scroll-behavior: smooth;
}

.step-card {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  border: none;
  transition: transform 0.4s ease;
}

.step-card.is-active {
  transform: translateY(-6px);
}

.step-media {
  position: relative;
  overflow: visible;
  border-radius: 18px;
  background: #fff;
  max-width: 240px;
  margin: 0 auto;
}

.step-media video,
.step-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: inherit;
}

.step-details h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.step-details p {
  color: var(--text-secondary);
  line-height: 1.55;
}

.step-visual {
  border-radius: 18px;
  padding: 0;
  background: #fff;
  box-shadow: 0 20px 60px rgba(17, 24, 39, 0.12);
  border: none;
}

.step-video {
  width: 100%;
  border-radius: 16px;
}

.step-track::-webkit-scrollbar,
.track-inner::-webkit-scrollbar {
  display: none;
}

.step-track,
.track-inner {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (max-width: 1200px) {
  .step-copy h3 {
    font-size: 2.1rem;
  }

  .how-step {
    padding: 40px;
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .how-step {
    grid-template-columns: 1fr;
  }

  .step-copy {
    order: 1;
    text-align: center;
  }

  .step-track,
  .step-visual {
    order: 2;
  }
}

@media (max-width: 768px) {
  .how-intro {
    margin-bottom: 56px;
  }

  .how-intro .section-title {
    font-size: 2.4rem;
  }

  .how-step {
    padding: 32px 24px;
    gap: 32px;
  }

  .step-track {
    padding: 20px;
  }

  .track-inner {
    flex-direction: column;
  }

  .step-card {
    flex: 1 0 auto;
    padding: 24px;
  }

  .step-media {
    aspect-ratio: 3 / 4;
  }
}

/* New How It Works layout */
.how-intro {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.how-intro .section-title {
  font-size: 2.6rem;
  margin: 18px 0 14px;
  letter-spacing: -0.02em;
}

.how-intro .section-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
}

.how-slide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  min-height: 78vh;
  margin-bottom: 72px;
  padding: 48px;
  border-radius: 32px;
  background: var(--background);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.08);
  position: relative;
  opacity: 0;
  transform: translateY(80px);
}

.how-slide:first-of-type {
  opacity: 1;
  transform: translateY(0);
}

.how-slide.is-visible,
.how-slide.is-active {
  opacity: 1;
  transform: translateY(0);
}

.how-slide[data-stage="discover"] {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, var(--background) 100%);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.06);
}

.how-slide[data-stage="avatar"] {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0%, var(--background) 100%);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.06);
}

.how-slide[data-stage="bring-to-life"] {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.02) 55%, var(--background) 100%);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.06);
}

.how-slide__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 440px;
}

.how-slide__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
}

.how-slide__content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--text-primary);
}

.how-slide__content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.6;
}

.how-slide__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  gap: 12px;
  color: #4b5563;
  font-size: 1rem;
  justify-items: start;
}

.how-slide__list li::before {
  content: '•';
  color: var(--primary);
  margin-right: 8px;
}

.how-slide__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.device {
  position: relative;
  border-radius: 28px;
  background: #101010;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.device video,
.device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.how-visual--discover {
  height: 420px;
  max-width: 520px;
}

.device--discover {
  position: absolute;
  width: 240px;
  aspect-ratio: 9 / 19.5;
}

.device--discover-left {
  top: 80px;
  left: 0;
  transform: rotate(-6deg);
  z-index: 1;
}

.device--discover-center {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 260px;
}

.device--discover-right {
  top: 90px;
  right: 0;
  transform: rotate(6deg);
  z-index: 1;
}

.device--discover:hover,
.device--discover:focus {
  transform: translateY(-8px) scale(1.02) rotate(0deg);
  z-index: 3;
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.2);
}

.how-visual--avatar {
  height: 420px;
  max-width: 520px;
  position: relative;
}

.device--avatar {
  position: absolute;
  width: 240px;
  aspect-ratio: 9 / 19.5;
  --avatar-translateX: 0px;
  --avatar-translateY: 0px;
  --avatar-rotate: 0deg;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  transform: translateX(var(--avatar-translateX)) translateY(var(--avatar-translateY)) rotate(var(--avatar-rotate)) scale(1);
}

.device--avatar-top {
  top: 70px;
  left: 0;
  --avatar-rotate: -7deg;
  z-index: 1;
}

.device--avatar-middle {
  top: 0;
  left: 50%;
  --avatar-translateX: -50%;
  width: 260px;
  z-index: 2;
}

.device--avatar-bottom {
  top: 90px;
  right: 0;
  --avatar-rotate: 6deg;
  z-index: 1;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.12);
}

.device--avatar:hover,
.device--avatar:focus {
  transform: translateX(var(--avatar-translateX)) translateY(calc(var(--avatar-translateY) - 8px)) rotate(0deg) scale(1.02);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.2);
  z-index: 3;
}

.how-visual--bring .device--bring {
  width: 260px;
  aspect-ratio: 9 / 19.5;
  border-radius: 28px;
  background: transparent;
  box-shadow: 0 18px 60px rgba(17, 24, 39, 0.16);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.how-visual--bring .device--bring:hover,
.how-visual--bring .device--bring:focus {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.2);
}

@media (max-width: 1200px) {
  .how-slide {
    gap: 40px;
  }

  .how-slide__content h3 {
    font-size: 2.4rem;
  }
}

@media (max-width: 1024px) {
  .how-slide {
    grid-template-columns: 1fr;
    text-align: center;
    margin-bottom: 56px;
    padding: 40px 32px;
  }

  .how-slide__content {
    align-items: center;
  }

  .how-slide__list {
    justify-items: center;
  }

  .how-slide__list li::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .how-intro {
    margin-bottom: 48px;
  }

  .how-slide {
    min-height: auto;
    gap: 32px;
    padding: 32px 24px;
  }

  .how-slide__content {
    align-items: center;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
  }

  .how-slide__badge {
    margin: 0 auto;
  }

  .how-slide__content h3 {
    font-size: clamp(1.8rem, 4.5vw + 0.25rem, 2.1rem);
  }

  .how-slide__visual {
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 16px;
    min-height: auto;
    width: 100%;
    overflow-x: auto;
    padding: 8px 4px 16px;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .how-slide__visual::-webkit-scrollbar {
    display: none;
  }

  .how-visual--discover,
  .how-visual--avatar,
  .how-visual--bring {
    height: auto;
    max-width: none;
  }

  .device--discover,
  .device--discover-left,
  .device--discover-center,
  .device--discover-right,
  .device--avatar,
  .device--avatar-top,
  .device--avatar-middle,
  .device--avatar-bottom,
  .how-visual--bring .device--bring {
    position: static;
    transform: none;
    width: min(280px, 75vw);
    flex: 0 0 min(280px, 75vw);
    margin: 0 auto;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.12);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .device--avatar {
    --avatar-translateX: 0;
    --avatar-translateY: 0;
    --avatar-rotate: 0deg;
  }
}


/* Feature Preview Section */
.feature-preview {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--background-off) 0%, var(--background) 100%);
}

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

.preview-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 350px;
}

.preview-video {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border: none;
  outline: none;
  max-width: 280px;
  background: transparent;
}

.preview-video::-webkit-media-controls,
.preview-video::-webkit-media-controls-panel,
.preview-video::-webkit-media-controls-play-button,
.preview-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.video-label {
  text-align: center;
  padding: 16px 0 0 0;
}

.video-label span {
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
}

.preview-text {
  opacity: 0;
  transform: translateY(30px);
}

.preview-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  line-height: 1.2;
}

.preview-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.7;
}

.preview-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-point {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}

.feature-point span {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}

/* Worldwide Search Section */
/* Features Section */
.features {
  padding: var(--section-padding) 0;
  background: var(--background);
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
}

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

.feature-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
}

.feature-card:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.feature-card:nth-child(even) .feature-visual {
  order: 2;
}

.feature-card:nth-child(even) .feature-content {
  order: 1;
}

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

.feature-image {
  position: relative;
  z-index: 2;
}

.feature-screenshot {
  width: 250px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.feature-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Showcase Section */
.showcase {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--background-off) 0%, var(--background) 100%);
}

.screenshot-carousel {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.carousel-container {
  position: relative;
  height: 600px;
  overflow: hidden;
  border-radius: var(--card-radius);
}

.screenshot-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--card-radius);
  padding: 40px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s ease;
}

.screenshot-slide.active {
  opacity: 1;
  transform: translateX(0);
}

.carousel-image {
  width: 250px;
  height: auto;
  border-radius: 20px;
  margin-bottom: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.slide-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.slide-content p {
  color: var(--text-secondary);
  text-align: center;
  max-width: 400px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--border-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Download Section */
.download {
  padding: var(--section-padding) 0;
  background: var(--primary-light);
}

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

.download-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
}

.download-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
}

.download-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.download-actions {
  opacity: 0;
  transform: translateY(20px);
}

.store-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.store-button {
  display: block;
  transition: transform 0.3s ease;
}

.store-button:hover {
  transform: translateY(-2px);
}

.store-button img {
  height: 60px;
  width: auto;
}

.download-note {
  color: var(--text-secondary);
  font-size: 0.875rem;
  text-align: center;
}

/* Static Pages */
.static-page {
  background: var(--background);
  min-height: 100vh;
  padding: 160px 0 120px;
}

.static-page .container {
  max-width: 960px;
}

.static-page-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}

.static-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.static-page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.static-page-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 640px;
}

.static-section {
  margin-top: 48px;
  display: grid;
  gap: 20px;
}

.static-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.static-section p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.static-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 12px;
  color: var(--text-secondary);
}

.static-list li {
  position: relative;
  padding-left: 20px;
}

.static-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.static-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.static-card {
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 20px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.08);
}

.static-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.static-card p,
.static-card a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
}

.static-card a:hover {
  color: var(--primary);
}

.static-contact-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 16px;
  font-size: 1rem;
  color: var(--text-secondary);
}

.static-contact-list strong {
  color: var(--text-primary);
}

.static-note {
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.08);
  color: var(--text-primary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.static-table-wrapper {
  overflow-x: auto;
  margin-top: 24px;
}

.static-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.08);
}

.static-table th,
.static-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.static-table thead {
  background: rgba(0, 0, 0, 0.08);
  color: var(--text-primary);
  font-weight: 600;
}

.static-table tbody tr:last-child td {
  border-bottom: none;
}

.static-code {
  background: #0f172a;
  color: #e2e8f0;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
  font-size: 0.9rem;
  padding: 20px;
  border-radius: 16px;
  line-height: 1.6;
  overflow-x: auto;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.35);
}

.static-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(15, 118, 110, 0.12);
  color: #0f766e;
}

.static-form-card {
  margin-top: 24px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 24px;
  padding: 32px;
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(17, 24, 39, 0.09);
}

.static-form {
  display: grid;
  gap: 24px;
}

.static-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.static-form-group {
  display: grid;
  gap: 10px;
}

.static-form-group label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.static-input,
.static-textarea,
.static-select {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.static-input:focus,
.static-textarea:focus,
.static-select:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
}

.static-textarea {
  min-height: 140px;
  resize: vertical;
}

.static-submit {
  justify-self: flex-start;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.static-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.static-submit:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .static-page {
    padding: 120px 0 80px;
  }

  .static-page-title {
    font-size: 2.2rem;
  }

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

/* Footer */
.footer {
  background: #F5F5F5;
  color: var(--text-primary);
  padding: 60px 0 32px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: auto;
  height: 80px;
  border-radius: 0;
  object-fit: contain;
}

.footer-logo span {
  display: none;
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.link-group h4 {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.link-group a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

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

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

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }
  
  .hero-container,
  .feature-card,
  .download-content,
  .preview-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .feature-card:nth-child(even) .feature-visual {
    order: 1;
  }
  
  .feature-card:nth-child(even) .feature-content {
    order: 2;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .nav-links {
    display: none;
  }
}

/* Animation States */
.animate-in {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) !important;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

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

.animate-float-delayed {
  animation: float-delayed 6s ease-in-out infinite;
}

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

.animate-float-slow {
  animation: float-slow 8s ease-in-out infinite;
}

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

/* Enhanced Mobile Responsiveness */
@media (max-width: 1024px) {
  .nav-content {
    gap: 32px;
  }
  
  .nav-links {
    gap: 32px;
  }
  
  .nav-cta {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  body {
    padding-top: calc(64px + env(safe-area-inset-top));
  }

  .nav {
    padding-top: env(safe-area-inset-top);
  }

  .nav-container {
    padding: 0 20px;
    height: 64px;
  }
  
  .nav-content {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .logo-icon {
    width: auto;
    height: 100px;
  }
  
  .logo-text {
    font-size: 18px;
  }

  .container {
    padding: 0 16px;
  }

  .intro-header {
    padding: 72px 0 28px;
  }

  .brand-name {
    font-size: 36px;
  }

  .hero {
    display: none;
  }

  .video-container {
    max-width: 280px;
  }

  .preview-title {
    font-size: 1.8rem;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 16px;
    height: 64px;
  }
  
  .logo-text {
    display: none;
  }

  .intro-header {
    padding: 80px 0 28px;
  }
  
  .mobile-menu {
    width: 280px;
  }
}
