/* ==========================================================================
   MOBISPARK CREATIONS TECHNOLOGY LLC
   Electric cyan (#00f5d4) × vivid purple (#9333ea) on deep dark navy
   Fonts: Plus Jakarta Sans (headings) + Inter (body)
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Backgrounds */
  --bg-deep:      #030309;
  --bg-surface:   #07071a;
  --bg-card:      #0d0d24;
  --bg-card-2:    #11112e;

  /* Accent */
  --accent-1:       #00f5d4;
  --accent-2:       #9333ea;
  --gradient:       linear-gradient(135deg, #00f5d4 0%, #9333ea 100%);
  --gradient-soft:  linear-gradient(135deg, rgba(0,245,212,.10) 0%, rgba(147,51,234,.10) 100%);
  --gradient-glow:  linear-gradient(135deg, rgba(0,245,212,.25) 0%, rgba(147,51,234,.25) 100%);

  /* Text */
  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,.62);
  --text-muted:     rgba(255,255,255,.35);

  /* UI */
  --border:         rgba(255,255,255,.07);
  --border-accent:  rgba(0,245,212,.28);
  --radius:         16px;
  --radius-lg:      24px;
  --radius-xl:      32px;

  /* Type */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Layout */
  --max-w:      1200px;
  --section-py: 100px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }

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

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-1);
  padding: 6px 14px;
  background: rgba(0,245,212,.08);
  border: 1px solid rgba(0,245,212,.22);
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-header {
  max-width: 640px;
  margin-bottom: 60px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, color .25s ease;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--gradient);
  color: #000;
  box-shadow: 0 0 28px rgba(0,245,212,.22);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(0,245,212,.38);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
}

.nav.scrolled {
  background: rgba(3,3,9,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  color: var(--text-primary);
  letter-spacing: .06em;
  flex-shrink: 0;
}

.logo-mark { font-size: 20px; line-height: 1; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}
.nav__links a:hover { color: var(--text-primary); }

.nav__cta { margin-left: 8px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(7,7,26,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 88px 28px 40px;
  transform: translateY(-110%);
  transition: transform .36s cubic-bezier(.4,0,.2,1);
  border-bottom: 1px solid var(--border);
}
.nav-drawer.open { transform: translateY(0); }
.nav-drawer ul { list-style: none; }
.nav-drawer__link {
  display: block;
  padding: 18px 0;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav-drawer__link:hover { color: var(--accent-1); }


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

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,212,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,212,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.spark {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .42;
  animation: sparkFloat 9s ease-in-out infinite;
  pointer-events: none;
}
.spark--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,245,212,.28), transparent);
  top: -140px; right: -120px;
  animation-delay: 0s;
}
.spark--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(147,51,234,.28), transparent);
  bottom: -80px; left: -120px;
  animation-delay: -3.5s;
}
.spark--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(0,245,212,.14), transparent);
  top: 40%; left: 28%;
  animation-delay: -6.5s;
}

@keyframes sparkFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(22px,-22px) scale(1.06); }
  66%      { transform: translate(-16px,16px) scale(.94); }
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-1);
  padding: 8px 16px;
  background: rgba(0,245,212,.08);
  border: 1px solid rgba(0,245,212,.22);
  border-radius: 100px;
  margin-bottom: 26px;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent-1);
  box-shadow: 0 0 8px var(--accent-1);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.7); }
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(46px, 6.5vw, 78px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__platforms {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 500;
}

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

.platform-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-secondary);
  padding: 5px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 7px;
  letter-spacing: .02em;
}
.platform-badge svg { width: 13px; height: 13px; }

/* Phone cluster visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-cluster {
  position: relative;
  width: 340px;
  height: 440px;
}

.phone {
  position: absolute;
  background: var(--bg-card);
  border-radius: 28px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(255,255,255,.04);
}

.phone--main {
  width: 188px; height: 370px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  border-color: rgba(0,245,212,.22);
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 50px rgba(0,245,212,.1);
  animation: phoneFloat 6s ease-in-out infinite;
}

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

.phone--secondary {
  width: 136px; height: 268px;
  z-index: 2;
  opacity: .72;
}
.phone--left  { top: 18%; left: -8px; transform: rotate(-9deg); }
.phone--right { top: 18%; right: -8px; transform: rotate(9deg); }

.phone__screen {
  width: 100%; height: 100%;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone__status-bar {
  height: 3px;
  background: var(--gradient);
  border-radius: 2px;
  margin-bottom: 4px;
}

.phone__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-preview { width: 100%; display: flex; flex-direction: column; gap: 10px; align-items: center; }

.app-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--gradient);
}

.app-text-lines { width: 100%; display: flex; flex-direction: column; gap: 5px; }
.line { border-radius: 3px; background: rgba(255,255,255,.1); }
.line--title { height: 8px; width: 68%; }
.line--sub   { height: 5px; width: 50%; }

.app-card-row { display: flex; gap: 5px; width: 100%; }
.card-thumb { flex: 1; height: 52px; border-radius: 8px; }
.card-thumb--1 { background: rgba(0,245,212,.3); }
.card-thumb--2 { background: rgba(147,51,234,.3); }
.card-thumb--3 { background: rgba(0,245,212,.14); }

.fitness-ring {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: 5px solid transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
              var(--gradient) border-box;
}

.fitness-stats { width: 100%; display: flex; gap: 5px; align-items: flex-end; height: 42px; }
.stat-bar { border-radius: 3px 3px 0 0; }
.stat-bar--1 { width: 33%; height: 42px; background: rgba(0,245,212,.5); }
.stat-bar--2 { width: 33%; height: 28px; background: rgba(147,51,234,.5); }
.stat-bar--3 { width: 33%; height: 36px; background: rgba(0,245,212,.3); }

.prod-tasks { width: 100%; display: flex; flex-direction: column; gap: 7px; }
.task { height: 9px; border-radius: 3px; }
.task--done    { width: 100%; background: rgba(0,245,212,.38); }
.task--active  { width: 76%; background: var(--gradient); }
.task--pending { width: 58%; background: rgba(255,255,255,.1); }

.app-label {
  font-size: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(24px);
}
.glow-orb--1 {
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(0,245,212,.22), transparent);
  top: 10%; right: 0;
}
.glow-orb--2 {
  width: 90px; height: 90px;
  background: radial-gradient(circle, rgba(147,51,234,.28), transparent);
  bottom: 14%; left: 0;
}


/* ---------- Focus Areas ---------- */
.focus {
  padding: var(--section-py) 0;
  background: var(--bg-surface);
  position: relative;
}
.focus::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: .28;
}

.focus__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.focus-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.focus-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.focus-card:hover { border-color: var(--border-accent); transform: translateY(-5px); }
.focus-card:hover::after { opacity: 1; }

.focus-card--featured {
  border-color: rgba(0,245,212,.18);
  background: linear-gradient(135deg, rgba(0,245,212,.05), rgba(147,51,234,.06));
}

.focus-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.focus-card__icon {
  width: 54px; height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.focus-card__icon svg { width: 24px; height: 24px; }

.entertainment-icon { background: rgba(0,245,212,.1); color: var(--accent-1); }
.fitness-icon       { background: rgba(147,51,234,.1); color: #c084fc; }
.productivity-icon  { background: rgba(0,245,212,.08); color: var(--accent-1); }

.focus-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
}
.focus-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.focus-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin-top: auto;
}
.focus-card__tags li {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-muted);
  padding: 4px 10px;
  background: rgba(255,255,255,.05);
  border-radius: 100px;
  letter-spacing: .04em;
}

.focus-card__badge {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.focus-card__badge--active {
  color: var(--accent-1);
  background: rgba(0,245,212,.08);
  border-color: rgba(0,245,212,.22);
}


/* ---------- Upcoming Apps ---------- */
.apps { padding: var(--section-py) 0; }

.apps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .3s, transform .3s;
}
.app-card:hover { border-color: var(--border-accent); transform: translateY(-5px); }

.app-card--featured {
  border-color: rgba(0,245,212,.22);
  background: linear-gradient(135deg, rgba(0,245,212,.05), rgba(147,51,234,.07));
  box-shadow: 0 0 48px rgba(0,245,212,.07);
}

.app-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-card__icon svg { width: 24px; height: 24px; }

.app-card__icon--entertainment { background: rgba(0,245,212,.12); color: var(--accent-1); }
.app-card__icon--fitness       { background: rgba(147,51,234,.12); color: #c084fc; }
.app-card__icon--productivity  { background: rgba(0,245,212,.08);  color: var(--accent-1); }

.app-card__status {
  font-size: 10px;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 10px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 100px;
}
.app-card__status--active {
  color: var(--accent-1);
  background: rgba(0,245,212,.08);
  border-color: rgba(0,245,212,.24);
}

.app-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.app-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  flex: 1;
}

.app-card__meta { display: flex; gap: 6px; flex-wrap: wrap; }
.meta-tag {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--text-muted);
  padding: 3px 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 5px;
  letter-spacing: .03em;
}

.app-card__footer { margin-top: auto; }

.app-stores { display: flex; gap: 8px; flex-wrap: wrap; }
.store-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-heading);
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  letter-spacing: .02em;
}
.store-chip--disabled {
  color: var(--text-muted);
  background: rgba(255,255,255,.03);
  cursor: not-allowed;
  opacity: .5;
}


/* ---------- About ---------- */
.about {
  padding: var(--section-py) 0;
  background: var(--bg-surface);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gradient);
  opacity: .18;
}

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

.about__left .section-title { margin-top: 0; }

.about__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about__left .btn { margin-top: 8px; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .3s, transform .3s;
}
.value-card:hover { border-color: var(--border-accent); transform: translateY(-3px); }

.value-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,245,212,.07);
  border: 1px solid rgba(0,245,212,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-1);
  margin-bottom: 14px;
}
.value-icon svg { width: 22px; height: 22px; }

.value-card h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 6px;
}
.value-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}


/* ---------- Stats Band ---------- */
.stats-band {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(44px, 5.5vw, 64px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item__label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}


/* ---------- CTA Section ---------- */
.cta-section { padding: var(--section-py) 0; }

.cta-card {
  background: linear-gradient(135deg, rgba(0,245,212,.05) 0%, rgba(147,51,234,.08) 100%);
  border: 1px solid rgba(0,245,212,.15);
  border-radius: var(--radius-xl);
  padding: 88px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-sparks { position: absolute; inset: 0; pointer-events: none; }

.cta-spark {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .28;
}
.cta-spark--a {
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(0,245,212,.5), transparent);
  top: -120px; left: -80px;
}
.cta-spark--b {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(147,51,234,.5), transparent);
  bottom: -80px; right: -60px;
}
.cta-spark--c {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,245,212,.22), transparent);
  top: 40%; right: 15%;
  animation: sparkFloat 7s ease-in-out infinite;
}

.cta-card .section-label { display: inline-block; margin-bottom: 22px; }

.cta-card__title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 20px;
}

.cta-card__sub {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.cta-card__legal {
  margin-top: 32px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: .05em;
}


/* ---------- Footer ---------- */
.footer {
  padding: 64px 0 32px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand .nav__logo {
  margin-bottom: 14px;
}
.footer__brand p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 240px;
}

.footer__links-group h5 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links-group a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .2s;
}
.footer__links-group a:hover { color: var(--accent-1); }

.footer__address {
  font-style: normal;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer__email {
  font-size: 13px;
  color: var(--accent-1);
  text-decoration: none;
  transition: opacity .2s;
}
.footer__email:hover { opacity: .75; }

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom p {
  font-size: 12px;
  color: var(--text-muted);
}


/* ---------- Reveal Animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal--right {
  transform: translateX(28px);
}
.reveal.in-view {
  opacity: 1;
  transform: translate(0,0);
}


/* ---------- Inner Pages ---------- */
.page-hero {
  padding: 140px 0 72px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,245,212,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,212,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 70% 100% at 50% 0%, black, transparent);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__label {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-1);
  padding: 6px 14px;
  background: rgba(0,245,212,.08);
  border: 1px solid rgba(0,245,212,.22);
  border-radius: 100px;
  margin-bottom: 20px;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 14px;
}
.page-hero__meta {
  font-size: 14px;
  color: var(--text-muted);
}

.page-body {
  padding: 72px 0 100px;
}

.prose {
  max-width: 760px;
}
.prose h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  margin: 48px 0 14px;
  color: var(--text-primary);
}
.prose h2:first-child { margin-top: 0; }
.prose p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}
.prose ul, .prose ol {
  margin: 0 0 16px 20px;
}
.prose li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 6px;
}
.prose a {
  color: var(--accent-1);
  text-decoration: none;
}
.prose a:hover { text-decoration: underline; }
.prose strong { color: var(--text-primary); font-weight: 600; }
.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

/* Careers no-vacancies card */
.no-vacancies {
  text-align: center;
  padding: 80px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  max-width: 560px;
  margin: 0 auto;
}
.no-vacancies__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(0,245,212,.08);
  border: 1px solid rgba(0,245,212,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-1);
  margin: 0 auto 24px;
}
.no-vacancies__icon svg { width: 30px; height: 30px; }
.no-vacancies h2 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
}
.no-vacancies p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 auto 28px;
}
.no-vacancies__email {
  font-size: 14px;
  color: var(--text-muted);
}
.no-vacancies__email a {
  color: var(--accent-1);
  text-decoration: none;
}
.no-vacancies__email a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; text-align: center; }
  .hero__sub       { max-width: 100%; }
  .hero__actions   { justify-content: center; }
  .hero__platforms { justify-content: center; }
  .hero__visual    { display: none; }
  .focus__grid, .apps__grid { grid-template-columns: 1fr 1fr; }
  .about__grid     { grid-template-columns: 1fr; gap: 48px; }
  .footer__top     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .focus__grid, .apps__grid, .stats-band__grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-card    { padding: 52px 28px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .section-header { margin-bottom: 40px; }
}
