/* ============================================================
   JASHN TECHNOLOGY — Main Stylesheet
   Premium dark theme · Glassmorphism · Responsive grid
   ============================================================ */

/* ---------- CSS Variables (Dark Theme Default) ---------- */
:root,
[data-theme="dark"] {
  --color-base: #0A0A0F;
  --color-surface: #12121A;
  --color-surface-2: #1A1A26;
  --color-text: #EDEDF2;
  --color-text-muted: #9898A8;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-light: rgba(255, 255, 255, 0.12);
  --accent-violet: #7C3AED;
  --accent-cyan: #06B6D4;
  --gradient-accent: linear-gradient(135deg, #7C3AED 0%, #06B6D4 100%);
  --gradient-glow: 0 0 40px rgba(124, 58, 237, 0.25), 0 0 80px rgba(6, 182, 212, 0.1);
  --glass-bg: rgba(18, 18, 26, 0.6);
  --glass-blur: blur(16px);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.2);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-max: 1280px;
  --header-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Override */
[data-theme="light"] {
  --color-base: #F5F5FA;
  --color-surface: #FFFFFF;
  --color-surface-2: #EEEEF4;
  --color-text: #1A1A2E;
  --color-text-muted: #6B6B80;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-light: rgba(0, 0, 0, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto; /* Lenis handles smooth scroll */
  font-size: 16px;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-base);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background-color var(--transition), color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Focus states for accessibility */
:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .preloader { display: none !important; }
  .cursor { display: none !important; }
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
}

.section-sm {
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.section-header {
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-header.center {
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 600px;
  margin: 1rem auto 0;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  min-height: 44px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  z-index: -1;
  transition: opacity var(--transition);
}

.btn-primary {
  color: #fff;
  box-shadow: var(--gradient-glow);
}

.btn-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  transition: height 0.4s ease;
  z-index: -1;
}

.btn-primary:hover::after {
  height: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.btn-outline {
  color: var(--color-text);
  border: 1px solid var(--color-border-light);
  background: transparent;
}

.btn-outline::before {
  opacity: 0;
}

.btn-outline:hover::before {
  opacity: 1;
}

.btn-outline:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-white {
  color: var(--color-base);
  background: #fff;
}

.btn-white::before {
  background: #fff;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

.cursor-ring {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

.cursor.cursor-hover .cursor-dot {
  width: 4px;
  height: 4px;
}

.cursor.cursor-hover .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: rgba(255, 255, 255, 0.8);
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
}

/* ---------- 1. Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--color-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  text-align: center;
  z-index: 2;
}

.preloader-logo {
  margin: 0 auto 1.5rem;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

.preloader-counter {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--color-surface-2);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient-accent);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.preloader-curtain {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--color-base);
  z-index: 3;
}

.preloader-curtain--left { left: 0; }
.preloader-curtain--right { right: 0; }

.preloader.hidden {
  pointer-events: none;
}

/* ---------- 2. Navbar ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nav-logo strong {
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-accent);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-text-muted);
  transition: color var(--transition), background var(--transition);
}

.theme-toggle:hover {
  color: var(--color-text);
  background: var(--color-surface-2);
}

.theme-toggle .fa-sun { display: none; }
[data-theme="light"] .theme-toggle .fa-moon { display: none; }
[data-theme="light"] .theme-toggle .fa-sun { display: block; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-base);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-links {
  text-align: center;
}

.mobile-link {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 600;
  padding: 0.75rem 0;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.mobile-link:hover {
  color: var(--color-text);
}

@media (max-width: 991px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (min-width: 992px) {
  .mobile-menu { display: none; }
}

/* ---------- 3. Hero ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(60px, 60px); }
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 50%);
}

.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-grid-layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--glass-bg);
  border: 1px solid var(--color-border-light);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.split-text .word,
.split-text .char {
  display: inline-block;
  overflow: hidden;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.android-phone-wrap {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
}

/* ---------- Android Phone Mockup ---------- */
.android-phone {
  position: relative;
  margin: 0 auto;
}

.android-phone--hero {
  width: clamp(240px, 32vw, 290px);
}

.android-phone--sm {
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
}

.android-phone__shell {
  position: relative;
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(145deg, #2a2a35 0%, #1a1a24 50%, #0f0f16 100%);
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 20px 50px rgba(0, 0, 0, 0.45),
    var(--gradient-glow);
}

.android-phone--hero .android-phone__shell {
  padding: 11px;
  border-radius: 36px;
}

.android-phone__side-btn {
  position: absolute;
  background: linear-gradient(180deg, #3a3a48, #22222e);
  border-radius: 2px;
  z-index: 2;
}

.android-phone__side-btn--vol-up {
  left: -3px;
  top: 22%;
  width: 3px;
  height: 28px;
}

.android-phone__side-btn--vol-down {
  left: -3px;
  top: 32%;
  width: 3px;
  height: 28px;
}

.android-phone__side-btn--power {
  right: -3px;
  top: 26%;
  width: 3px;
  height: 44px;
}

.android-phone__screen {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: #000;
}

.android-phone--hero .android-phone__screen {
  border-radius: 28px;
}

.android-status-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.5rem;
  min-height: 28px;
  padding: 6px 14px 4px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
  flex-shrink: 0;
}

.android-phone--sm .android-status-bar {
  min-height: 22px;
  padding: 4px 10px 3px;
  font-size: 9px;
}

.android-status-bar__time {
  justify-self: start;
}

.android-status-bar__hole {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #3a3a48, #0a0a0f 70%);
  border: 1.5px solid #1a1a24;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.8);
  justify-self: center;
}

.android-phone--hero .android-status-bar__hole {
  width: 11px;
  height: 11px;
}

.android-status-bar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  justify-self: end;
}

.android-icon {
  display: inline-block;
  flex-shrink: 0;
}

.android-icon--signal {
  width: 14px;
  height: 10px;
  background:
    linear-gradient(to top, #fff 100%, #fff 100%) 0 100% / 3px 40% no-repeat,
    linear-gradient(to top, #fff 100%, #fff 100%) 4px 100% / 3px 60% no-repeat,
    linear-gradient(to top, #fff 100%, #fff 100%) 8px 100% / 3px 80% no-repeat,
    linear-gradient(to top, #fff 100%, #fff 100%) 12px 100% / 3px 100% no-repeat;
  opacity: 0.95;
}

.android-icon--wifi {
  width: 12px;
  height: 10px;
  border: 2px solid transparent;
  border-top-color: #fff;
  border-radius: 50% 50% 0 0;
  position: relative;
  opacity: 0.95;
}

.android-icon--wifi::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
}

.android-battery {
  display: flex;
  align-items: center;
  gap: 3px;
}

.android-battery__body {
  position: relative;
  width: 22px;
  height: 11px;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  padding: 1.5px;
  background: rgba(0, 0, 0, 0.25);
}

.android-phone--sm .android-battery__body {
  width: 18px;
  height: 9px;
}

.android-battery__fill {
  display: block;
  height: 100%;
  width: var(--battery-level, 80%);
  border-radius: 1px;
  background: linear-gradient(90deg, #34D399, #10B981);
  transition: width 0.3s ease;
}

.android-battery[data-level="100"] .android-battery__fill {
  background: linear-gradient(90deg, #34D399, #10B981);
}

.android-battery[data-level="55"] .android-battery__fill,
.android-battery[data-level="68"] .android-battery__fill {
  background: linear-gradient(90deg, #FBBF24, #F59E0B);
}

.android-battery__cap {
  width: 2px;
  height: 5px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0 1px 1px 0;
}

.android-battery__text {
  font-size: 9px;
  font-weight: 600;
  min-width: 24px;
  text-align: right;
  opacity: 0.95;
}

.android-phone--sm .android-battery__text {
  font-size: 8px;
  min-width: 22px;
}

.android-phone__content {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: #000;
}

.android-phone__content img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 360 / 780;
  object-fit: contain;
  object-position: top center;
}

.android-nav-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 6px 0 8px;
  background: rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.android-phone--sm .android-nav-bar {
  min-height: 14px;
  padding: 4px 0 6px;
}

.android-nav-bar__pill {
  width: 72px;
  height: 4px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.35);
}

.android-phone--sm .android-nav-bar__pill {
  width: 56px;
  height: 3px;
}

.android-phone-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  z-index: -1;
  filter: blur(40px);
  pointer-events: none;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  z-index: 1;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: var(--gradient-accent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ---------- 4. Marquee ---------- */
.marquee-section {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-content {
  display: flex;
  gap: 4rem;
  padding: 0 2rem;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.marquee-item i {
  color: var(--accent-violet);
  font-size: 1.25rem;
}

/* ---------- 5. About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

.about-text strong {
  color: var(--color-text);
}

.about-mission {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.25rem;
  background: var(--glass-bg);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  color: var(--color-text) !important;
  font-weight: 500;
}

.about-mission i {
  color: var(--accent-cyan);
  margin-top: 0.2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--accent-cyan);
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* ---------- 6. Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  transform-style: preserve-3d;
  will-change: transform;
}

.service-card:hover {
  box-shadow: var(--gradient-glow);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--gradient-accent);
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 1.25rem;
  transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---------- 7. Monetization ---------- */
.monetization-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .monetization-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.monetization-content p {
  color: var(--color-text-muted);
  margin: 1rem 0 1.5rem;
  font-size: 1.0625rem;
}

.monetization-points {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.monetization-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
}

.monetization-points i {
  color: var(--accent-cyan);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.chart-container {
  padding: 2rem;
}

.chart-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.revenue-chart {
  width: 100%;
  height: auto;
}

.chart-axis {
  stroke: var(--color-border-light);
  stroke-width: 1;
}

.chart-grid {
  stroke: var(--color-border);
  stroke-width: 0.5;
  stroke-dasharray: 4;
}

.chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.chart-line.animated {
  animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.chart-area {
  opacity: 0;
  transition: opacity 1s ease 0.5s;
}

.chart-area.animated {
  opacity: 1;
}

.chart-dot {
  fill: var(--accent-violet);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.chart-dot.animated {
  opacity: 1;
}

.chart-label {
  fill: var(--color-text-muted);
  font-size: 11px;
  text-anchor: middle;
}

.chart-legend {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient-accent);
  margin-right: 0.5rem;
}

/* ---------- 8. Process Timeline ---------- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

@media (min-width: 768px) {
  .timeline-line {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-progress {
  width: 100%;
  height: 0%;
  background: var(--gradient-accent);
  transition: height 0.1s linear;
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  align-items: start;
  position: relative;
}

@media (min-width: 768px) {
  .timeline-step {
    grid-template-columns: 1fr 48px 1fr;
    gap: 2rem;
  }

  .timeline-step:nth-child(odd) .timeline-dot { grid-column: 2; grid-row: 1; }
  .timeline-step:nth-child(odd) h3,
  .timeline-step:nth-child(odd) p { grid-column: 3; text-align: left; }

  .timeline-step:nth-child(even) .timeline-dot { grid-column: 2; grid-row: 1; }
  .timeline-step:nth-child(even) h3,
  .timeline-step:nth-child(even) p { grid-column: 1; text-align: right; }

  .timeline-step:nth-child(even) {
    grid-template-columns: 1fr 48px 1fr;
  }
}

.timeline-dot {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-accent);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: var(--gradient-glow);
}

.timeline-step h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.timeline-step p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---------- 9. Portfolio ---------- */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.625rem 1.5rem;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gradient-accent);
  color: #fff;
  border-color: transparent;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform, opacity;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-item .android-phone {
  transition: transform var(--transition);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
}

.portfolio-overlay span {
  font-size: 0.8125rem;
  color: var(--accent-cyan);
}

/* ---------- 10. Why Choose Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.why-visual {
  position: relative;
}

.why-image {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}

.why-image-accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--accent-violet);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.checklist-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  font-size: 0.75rem;
}

.checklist-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.checklist-item p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ---------- 11. Tech Stack ---------- */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 576px) {
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .tech-grid { grid-template-columns: repeat(6, 1fr); }
}

.tech-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.tech-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--gradient-glow);
}

.tech-item i {
  font-size: 2rem;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tech-item span {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
}

/* ---------- 12. Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.team-grid--solo {
  max-width: 820px;
  margin: 0 auto;
}

.team-card--featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .team-card--featured {
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    text-align: left;
  }
}

.team-card {
  padding: 1.5rem;
  overflow: hidden;
}

.team-image-wrap--avatar {
  width: 180px;
  height: 180px;
  margin: 0 auto 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid transparent;
  background: linear-gradient(var(--color-surface), var(--color-surface)) padding-box,
              var(--gradient-accent) border-box;
  box-shadow: var(--gradient-glow);
}

@media (min-width: 640px) {
  .team-image-wrap--avatar {
    margin: 0;
  }
}

.team-image-wrap--avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}

.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
}

.team-role {
  display: block;
  font-size: 0.8125rem;
  color: var(--accent-cyan);
  margin: 0.25rem 0 0.75rem;
}

.team-card--featured p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.team-social {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .team-social {
    justify-content: flex-start;
  }
}

.team-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.team-social a:hover {
  background: var(--gradient-accent);
  color: #fff;
  border-color: transparent;
}

/* ---------- 13. Testimonials ---------- */
.testimonials-swiper {
  padding: 1rem 0 3rem;
  overflow: hidden;
}

.testimonial-card {
  padding: 2.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.25rem;
}

.testimonial-card blockquote {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9375rem;
}

.testimonial-author span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
  color: var(--accent-violet);
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--accent-violet);
}

/* ---------- 14. FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  min-height: 44px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-text);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent-cyan);
}

.faq-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  font-size: 0.75rem;
  transition: transform 0.3s ease, background var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--gradient-accent);
  border-color: transparent;
  color: #fff;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- 15. CTA Banner ---------- */
.cta-banner {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.cta-inner {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  background: var(--gradient-accent);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.3;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 2vw, 1.125rem);
  margin-bottom: 2rem;
  position: relative;
}

.cta-inner .btn {
  position: relative;
}

/* ---------- 16. Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--gradient-accent);
  color: #fff;
  font-size: 1.125rem;
}

.contact-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-item p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.contact-item a:hover {
  color: var(--accent-cyan);
}

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 1rem;
  border: 1px solid var(--color-border-light);
}

/* Contact Form */
.contact-form {
  padding: 2rem;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem 0.875rem 0.5rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  transition: border-color var(--transition);
  min-height: 44px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group label {
  position: absolute;
  left: 0.875rem;
  top: 1rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-group input:not(:placeholder-shown),
.form-group select:valid,
.form-group textarea:not(:placeholder-shown) {
  border-color: var(--accent-violet);
  outline: none;
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:valid + label,
.form-group.has-value select + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 0.3rem;
  font-size: 0.6875rem;
  color: var(--accent-cyan);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: transparent;
}

.form-error {
  display: block;
  font-size: 0.75rem;
  color: #EF4444;
  margin-top: 0.25rem;
  min-height: 1rem;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #EF4444;
}

/* ---------- 17. Footer ---------- */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: clamp(3rem, 8vw, 5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 576px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-accent);
  color: #fff;
  border-color: transparent;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.footer-newsletter p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  min-height: 44px;
}

.newsletter-form button {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--gradient-accent);
  color: #fff;
  transition: transform var(--transition);
}

.newsletter-form button:hover {
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* ---------- 18. Floating Buttons ---------- */
.whatsapp-btn {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  font-size: 1.75rem;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition);
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  color: var(--color-text);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

.scroll-progress {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.scroll-progress-bg {
  fill: none;
  stroke: var(--color-border);
  stroke-width: 2;
}

.scroll-progress-fill {
  fill: none;
  stroke: url(#scrollGrad);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 125.6;
  stroke-dashoffset: 125.6;
  transition: stroke-dashoffset 0.1s linear;
}

.scroll-top i {
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast i {
  color: #10B981;
  font-size: 1.25rem;
}

/* ---------- Animation Helpers ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Split text initial state */
.split-text .word {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}

.split-text .char {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
}

.split-text.revealed .char {
  transform: translateY(0);
  opacity: 1;
}
