/* ============================================
   CSS Variables & Design System
   ============================================ */

:root {
  /* Brand Colors */
  --color-orange: #FC8460;
  --color-red: #F4226E;
  --color-black: #000000;
  --color-white: #FFFFFF;
  
  /* Typography */
  --font-display: "Helvetica Now Display", "Helvetica Neue", Arial, "Inter", sans-serif;
  --font-text: "Helvetica Now Text", "Helvetica Neue", Arial, "Inter", sans-serif;
  
  /* Layout */
  --max-width: 1280px;
  --padding-mobile: 24px;
  --padding-desktop: 40px;
  --section-spacing-mobile: 64px;
  --section-spacing-desktop: 96px;
  
  /* Easing */
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   Reset & Base Styles
   ============================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 800;
}

h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
}

h3 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  p {
    font-size: 18px;
  }
}

small {
  font-size: 13px;
}

@media (min-width: 768px) {
  small {
    font-size: 14px;
  }
}

/* ============================================
   Container & Layout
   ============================================ */

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

@media (min-width: 768px) {
  .container {
    padding: 0 var(--padding-desktop);
  }
}

section {
  margin-bottom: var(--section-spacing-mobile);
}

@media (min-width: 768px) {
  section {
    margin-bottom: var(--section-spacing-desktop);
  }
}

/* ============================================
   Header & Navigation
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-smooth);
  border-bottom: 1px solid transparent;
  width: 100%;
}

@media (max-width: 767px) {
  .header {
    z-index: 1001;
  }
}

.header.scrolled {
  background-color: rgba(0, 0, 0, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav {
  padding: 20px 0;
  transition: padding 0.4s var(--ease-smooth);
  width: 100%;
}

.header.scrolled .nav {
  padding: 16px 0;
}

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

  .header.scrolled .nav {
    padding: 12px 0;
  }
}

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

@media (min-width: 768px) {
  .nav-container {
    padding: 0 var(--padding-desktop);
  }
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s var(--ease-smooth);
}

@media (max-width: 767px) {
  .logo {
    font-size: 18px;
    gap: 10px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }
}

.logo-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-smooth);
}

.logo:hover .logo-icon {
  transform: scale(1.1) rotate(-5deg);
}

.logo-text {
  transition: color 0.3s var(--ease-smooth);
}

.logo:hover .logo-text {
  color: var(--color-orange);
}

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

@media (min-width: 768px) {
  .nav-links {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 0;
    flex-direction: row;
    align-items: center;
  }
}

.nav-link {
  font-size: 15px;
  color: var(--color-white);
  text-decoration: none;
  position: relative;
  transition: color 0.3s var(--ease-smooth);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-white);
  transition: width 0.3s var(--ease-smooth);
}

.nav-link:hover {
  color: var(--color-orange);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

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

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

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

.nav-cta {
  display: none;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .nav-cta {
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .nav-cta {
    display: none !important;
  }
}

/* Mobile Menu */
@media (max-width: 767px) {
  /* Backdrop overlay */
  .nav-links::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-smooth);
    z-index: -1;
  }

  .nav-links.active::before {
    opacity: 1;
    pointer-events: all;
  }

  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    transition: right 0.4s var(--ease-smooth);
    z-index: 999;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-white) !important;
    display: block;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover {
    color: var(--color-orange) !important;
  }

  /* Mobile menu CTA button */
  .nav-links .nav-cta {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    margin-top: 24px;
    padding: 14px 24px;
  }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  border: none;
  font-family: var(--font-text);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-orange), var(--color-red));
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(252, 132, 96, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-red), var(--color-orange));
  transition: left 0.3s var(--ease-smooth);
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(252, 132, 96, 0.4);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-black);
  position: relative;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 24px;
  width: calc(100% - 48px);
  height: 1px;
  background-color: var(--color-black);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-smooth);
}

.btn-secondary:hover::after {
  transform: scaleX(1);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

@media (max-width: 767px) {
  .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

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

.btn-arrow {
  transition: transform 0.3s var(--ease-smooth);
  display: inline-block;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(252, 132, 96, 0.01) 100%);
}

@media (max-width: 767px) {
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  overflow: hidden;
}

.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 7s ease-in-out infinite;
}

.glow-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--color-orange), var(--color-red));
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.glow-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-red), var(--color-orange));
  bottom: -150px;
  left: -150px;
  animation-delay: 2s;
}

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

@media (prefers-reduced-motion: reduce) {
  .glow-blob {
    animation: none;
  }
}

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

@media (min-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 767px) {
  .hero-content {
    gap: 32px;
  }
}

.hero-text {
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextEntrance 0.9s var(--ease-smooth) 0.2s forwards;
}

@keyframes heroTextEntrance {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextEntrance 0.9s var(--ease-smooth) 0.3s forwards;
}

@media (max-width: 767px) {
  .hero-title {
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextEntrance 0.9s var(--ease-smooth) 0.4s forwards;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroTextEntrance 0.9s var(--ease-smooth) 0.5s forwards;
}

@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 400px;
}

@media (max-width: 767px) {
  .hero-visual {
    min-height: 300px;
  }
}

.hero-device-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  z-index: 2;
  transform: scale(0.98);
  animation: heroDeviceEntrance 1.2s var(--ease-smooth) 0.7s forwards;
}

@keyframes heroDeviceEntrance {
  to {
    transform: scale(1);
  }
}

.device-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.95));
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    inset 0 0 0 3px rgba(255, 255, 255, 0.1),
    inset 0 0 40px rgba(252, 132, 96, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.device-screen {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.screen-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  z-index: 1;
}

/* Status Bar */
.status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  height: 32px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px 12px 0 0;
}

.status-time {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
}

.status-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}

.status-icon {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
}

.status-icon:nth-child(1) {
  width: 16px;
  height: 8px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.7);
}

.status-icon:nth-child(2) {
  width: 18px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(76, 175, 80, 0.8), rgba(76, 175, 80, 0.4));
}

.status-icon:nth-child(3) {
  width: 20px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 20%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 100%);
}

/* App Grid */
.app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px 12px;
  flex: 1;
}

.app-icon-item {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-icon-shape {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  animation: iconShimmer 3s ease-in-out infinite;
}

.app-icon-1 {
  background: linear-gradient(135deg, #FC8460, #F4226E);
  box-shadow: 0 4px 12px rgba(252, 132, 96, 0.3);
}

.app-icon-2 {
  background: linear-gradient(135deg, #4CAF50, #2E7D32);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.app-icon-3 {
  background: linear-gradient(135deg, #2196F3, #1565C0);
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.app-icon-4 {
  background: linear-gradient(135deg, #FF9800, #F57C00);
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.app-icon-5 {
  background: linear-gradient(135deg, #9C27B0, #6A1B9A);
  box-shadow: 0 4px 12px rgba(156, 39, 176, 0.3);
}

.app-icon-6 {
  background: linear-gradient(135deg, #00BCD4, #00838F);
  box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.app-icon-7 {
  background: linear-gradient(135deg, #F4226E, #C2185B);
  box-shadow: 0 4px 12px rgba(244, 34, 110, 0.3);
}

.app-icon-8 {
  background: linear-gradient(135deg, #607D8B, #455A64);
  box-shadow: 0 4px 12px rgba(96, 125, 139, 0.3);
}

.app-icon-shape::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmer 2s infinite;
}

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

@keyframes iconShimmer {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

/* App Dock */
.app-dock {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  margin: 0 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dock-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s var(--ease-smooth);
}

.dock-icon.active {
  background: linear-gradient(135deg, rgba(252, 132, 96, 0.3), rgba(244, 34, 110, 0.3));
  border-color: rgba(252, 132, 96, 0.4);
  box-shadow: 0 4px 12px rgba(252, 132, 96, 0.2);
  transform: scale(1.1);
}

/* Home Indicator */
.home-indicator {
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  margin: 0 auto 8px;
}

.screen-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 132, 96, 0.15), transparent);
  filter: blur(40px);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  animation: heroOrbEntrance 1s var(--ease-smooth) 0.6s forwards, heroFloat 7s ease-in-out infinite 1.6s;
}

.hero-orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--color-orange), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.hero-orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-red), transparent);
  bottom: -50px;
  right: -50px;
  z-index: 0;
  animation: heroOrbEntrance 1s var(--ease-smooth) 0.8s forwards, heroFloat2 7s ease-in-out infinite 1.8s;
}

@keyframes heroOrbEntrance {
  to {
    opacity: 0.25;
  }
}

@keyframes heroFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-15px);
  }
}

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

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-orange);
  opacity: 0.6;
  animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 1.5s;
  background: var(--color-red);
}

.particle:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
}

.particle:nth-child(4) {
  top: 40%;
  right: 30%;
  animation-delay: 4.5s;
  background: var(--color-red);
}

.particle:nth-child(5) {
  bottom: 20%;
  right: 10%;
  animation-delay: 6s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-30px) translateX(20px);
    opacity: 1;
  }
}

@media (max-width: 968px) {
  .hero-device-mockup {
    width: 240px;
    height: 480px;
  }
  
  .app-grid {
    gap: 10px;
    padding: 16px 10px;
  }
  
  .dock-icon {
    width: 40px;
    height: 40px;
  }
  
  .app-dock {
    gap: 16px;
    padding: 10px 12px;
  }
}

@media (max-width: 767px) {
  .hero-device-mockup {
    width: 200px;
    height: 400px;
  }
  
  .device-screen {
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    border-radius: 24px;
  }
  
  .app-grid {
    gap: 8px;
    padding: 12px 8px;
  }
  
  .status-bar {
    padding: 6px 12px;
    height: 28px;
  }
  
  .status-time {
    font-size: 12px;
  }
  
  .dock-icon {
    width: 36px;
    height: 36px;
  }
  
  .app-dock {
    gap: 12px;
    padding: 8px 10px;
  }
  
  .home-indicator {
    width: 100px;
    height: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-text,
  .hero-title,
  .hero-description,
  .hero-ctas {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .hero-orb,
  .hero-device-mockup,
  .particle,
  .app-icon-shape,
  .screen-glow {
    animation: none;
  }
  
  .hero-orb-1,
  .hero-orb-2 {
    opacity: 0.25;
    transform: translate(-50%, -50%);
  }
  
  .hero-device-mockup {
    transform: scale(1);
  }
  
  .app-icon-shape::before {
    animation: none;
  }
}

/* ============================================
   Apps Section
   ============================================ */

.apps-section {
  padding: 140px 0;
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(252, 132, 96, 0.01) 50%, rgba(255, 255, 255, 1) 100%);
}

@media (max-width: 767px) {
  .apps-section {
    padding: 80px 0;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
  position: relative;
  display: inline-block;
  width: 100%;
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 48px;
  }
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-red));
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.8s var(--ease-smooth) 0.3s, width 0.8s var(--ease-smooth) 0.3s;
}

.section-title.revealed::after {
  opacity: 1;
  width: 100px;
}

.section-title.revealed {
  opacity: 1;
  transform: translateY(0);
}

.apps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .apps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.app-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 48px;
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.98));
}

@media (max-width: 767px) {
  .app-card {
    padding: 32px 24px;
  }
}

.app-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252, 132, 96, 0.15), rgba(244, 34, 110, 0.15));
  transform: translate(-50%, -50%);
  transition: width 0.8s var(--ease-smooth), height 0.8s var(--ease-smooth), opacity 0.6s var(--ease-smooth);
  z-index: 0;
  opacity: 0;
}

.app-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s var(--ease-smooth);
  z-index: 1;
}

.app-card:hover::before {
  width: 400px;
  height: 400px;
  opacity: 1;
}

.app-card:hover::after {
  transform: scaleX(1);
}

.app-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(252, 132, 96, 0.1);
  border-color: rgba(252, 132, 96, 0.3);
}

.app-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.app-card > * {
  position: relative;
  z-index: 1;
}

.app-card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 32px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, rgba(252, 132, 96, 0.1), rgba(244, 34, 110, 0.1));
  padding: 8px;
}

.app-card-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-red));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s var(--ease-smooth);
}

.app-card:hover .app-card-icon {
  transform: rotate(5deg) scale(1.08);
  box-shadow: 0 12px 32px rgba(252, 132, 96, 0.25);
}

.app-card:hover .app-card-icon::before {
  opacity: 1;
}

.app-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.5s var(--ease-smooth);
}

.app-card:hover .app-card-icon img {
  transform: scale(1.05);
}

.app-card-name {
  margin-bottom: 16px;
  font-size: 26px;
  transition: color 0.3s var(--ease-smooth);
}

.app-card:hover .app-card-name {
  background: linear-gradient(135deg, var(--color-orange), var(--color-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.app-card-description {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 20px;
}

.app-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(252, 132, 96, 0.1), rgba(244, 34, 110, 0.1));
  border-radius: 8px;
  color: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(252, 132, 96, 0.2);
  transition: all 0.3s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

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

.app-card:hover .tag::before {
  left: 100%;
}

.app-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
  position: relative;
  transition: all 0.3s var(--ease-smooth);
  margin-top: 8px;
}

.app-card-link::after {
  content: '→';
  transition: transform 0.3s var(--ease-smooth);
  display: inline-block;
}

.app-card:hover .app-card-link {
  color: var(--color-orange);
}

.app-card:hover .app-card-link::after {
  transform: translateX(6px);
  color: var(--color-red);
}

/* ============================================
   Work Section
   ============================================ */

.work-section {
  padding: 140px 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, rgba(252, 132, 96, 0.02) 50%, rgba(0, 0, 0, 0.01) 100%);
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .work-section {
    padding: 80px 0;
  }
}

.work-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(252, 132, 96, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(244, 34, 110, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.work-section .container {
  position: relative;
  z-index: 1;
}

.work-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 968px) {
  .work-content {
    grid-template-columns: 1fr 2fr;
    gap: 60px;
  }
}

@media (max-width: 767px) {
  .work-content {
    gap: 32px;
  }
}

.work-text {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.work-text.revealed {
  opacity: 1;
  transform: translateY(0);
}

.work-intro {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 16px;
}

.work-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .work-pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
  position: relative;
  padding: 32px;
  border-radius: 20px;
  background: var(--color-white);
  transition: all 0.4s var(--ease-smooth);
}

@media (max-width: 767px) {
  .pillar {
    padding: 24px;
  }
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.pillar.revealed {
  opacity: 1;
  transform: translateY(0);
}

.pillar:nth-child(1) {
  transition-delay: 0.1s;
}

.pillar:nth-child(2) {
  transition-delay: 0.2s;
}

.pillar:nth-child(3) {
  transition-delay: 0.3s;
}

.pillar-visual {
  margin-bottom: 24px;
  position: relative;
}

.pillar-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(252, 132, 96, 0.1), rgba(244, 34, 110, 0.1));
  color: var(--color-orange);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: visible;
  padding: 14px;
  box-sizing: border-box;
}

.pillar-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-red));
  opacity: 0;
  transition: opacity 0.4s var(--ease-smooth);
  z-index: 0;
}

.pillar-icon svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 40px;
  max-height: 40px;
  stroke: currentColor;
  transition: all 0.4s var(--ease-smooth);
  overflow: visible;
}

.pillar-icon-1 {
  color: var(--color-orange);
}

.pillar-icon-2 {
  color: var(--color-red);
  background: linear-gradient(135deg, rgba(244, 34, 110, 0.1), rgba(252, 132, 96, 0.1));
}

.pillar-icon-3 {
  color: var(--color-orange);
  background: linear-gradient(135deg, rgba(252, 132, 96, 0.15), rgba(244, 34, 110, 0.1));
}

.pillar:hover .pillar-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(252, 132, 96, 0.3);
}

.pillar:hover .pillar-icon::before {
  opacity: 1;
}

.pillar:hover .pillar-icon svg {
  color: var(--color-white);
  transform: scale(1.1);
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-orange), var(--color-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1;
  opacity: 0.15;
  transition: opacity 0.4s var(--ease-smooth);
}

.pillar:hover .pillar-number {
  opacity: 0.25;
}

.pillar-title {
  margin-bottom: 16px;
  font-size: 22px;
  transition: color 0.3s var(--ease-smooth);
}

.pillar:hover .pillar-title {
  color: var(--color-orange);
}

.pillar-description {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 80px 0 40px;
  margin-bottom: 0;
}

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

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.footer-column.revealed {
  opacity: 1;
  transform: translateY(0);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-white);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s var(--ease-smooth);
}

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

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

.newsletter-input {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 14px;
  font-family: var(--font-text);
  transition: all 0.3s var(--ease-smooth);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--color-orange);
  background: rgba(255, 255, 255, 0.15);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Accessibility & Reduced Motion
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .app-card,
  .section-title,
  .work-text,
  .pillar,
  .footer-column {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ============================================
   Terms & Privacy Page
   ============================================ */

.terms-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.terms-header {
  text-align: center;
  margin-bottom: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.terms-title {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.terms-intro {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
}

.terms-content {
  max-width: 900px;
  margin: 0 auto;
}

.terms-section {
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}

.terms-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.section-heading::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-red));
}

.section-intro {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 32px;
  font-style: italic;
}

.company-info {
  background: linear-gradient(135deg, rgba(252, 132, 96, 0.05), rgba(244, 34, 110, 0.05));
  padding: 24px;
  border-radius: 16px;
  border-left: 3px solid var(--color-orange);
  margin-bottom: 40px;
  font-size: 15px;
  line-height: 1.8;
}

.terms-subsection {
  margin-bottom: 40px;
}

.subsection-heading {
  font-size: clamp(20px, 2.5vw, 24px);
  margin-bottom: 16px;
  color: var(--color-black);
  font-weight: 700;
}

.terms-subsection p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 16px;
}

.terms-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.terms-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.8);
}

.terms-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: 600;
}

.terms-link {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s var(--ease-smooth);
  border-bottom: 1px solid transparent;
}

.terms-link:hover {
  color: var(--color-red);
  border-bottom-color: var(--color-red);
}

.terms-footer {
  text-align: center;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .terms-page {
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .terms-header {
    margin-bottom: 40px;
    padding-bottom: 24px;
  }

  .terms-title {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 12px;
  }

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

  .terms-subsection {
    margin-bottom: 28px;
  }

  .section-heading {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 20px;
  }

  .subsection-heading {
    font-size: clamp(18px, 5vw, 22px);
  }

  .company-info {
    padding: 20px;
    font-size: 14px;
  }

  .terms-list li {
    font-size: 15px;
    padding-left: 24px;
  }
}

/* ============================================
   Contact Page
   ============================================ */

.contact-page {
  padding-top: 120px;
  padding-bottom: 100px;
  min-height: 100vh;
}

.contact-header {
  text-align: center;
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-title {
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--color-orange), var(--color-red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-intro {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-note {
  text-align: center;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-black);
  letter-spacing: 0.01em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
  font-family: var(--font-text);
  color: var(--color-black);
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: all 0.3s var(--ease-smooth);
  outline: none;
}

.form-input:focus,
.form-textarea:focus {
  background: var(--color-white);
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(252, 132, 96, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.btn-submit {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-message {
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 8px;
  display: none;
}

.form-message.form-message-success {
  display: block;
  background: rgba(76, 175, 80, 0.1);
  color: #2e7d32;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.form-message.form-message-error {
  display: block;
  background: rgba(244, 67, 54, 0.1);
  color: #c62828;
  border: 1px solid rgba(244, 67, 54, 0.2);
}


@media (max-width: 768px) {
  .contact-page {
    padding-top: 100px;
    padding-bottom: 60px;
  }

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

  .contact-title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .contact-intro {
    font-size: 16px;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }

  .form-input,
  .form-textarea {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* ============================================
   Utility Classes
   ============================================ */

.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

