/* ============================================
   STAR CODING — Next-Gen CSS (2026)
   Aurora · Glassmorphism · 3D Tilt · Orbits
   ============================================ */

:root {
  --bg: #050508;
  --bg-2: #0a0a12;
  --bg-card: rgba(15, 15, 25, 0.7);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --text: #eeeef2;
  --text-2: #9898b0;
  --text-3: #5a5a72;
  --accent: #7c6cf0;
  --accent-2: #00e5c0;
  --accent-3: #f472b6;
  --g: linear-gradient(135deg, var(--accent), var(--accent-2));
  --g2: linear-gradient(135deg, var(--accent-2), var(--accent-3));
  --border: rgba(255, 255, 255, 0.06);
  --glow: rgba(124, 108, 240, 0.25);
  --r-s: 8px;
  --r-m: 14px;
  --r-l: 22px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --spring: cubic-bezier(.34, 1.56, .64, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'Space Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent-2);
  text-decoration: none;
  transition: color .3s var(--ease);
}

a:hover {
  color: var(--accent);
}

::selection {
  background: var(--accent);
  color: #fff;
}

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

/* ============ CUSTOM CURSOR ============ */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 108, 240, 0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity .3s;
}

.cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .2s var(--spring), height .2s var(--spring);
}

.cursor-dot.expanded {
  width: 40px;
  height: 40px;
  background: rgba(124, 108, 240, 0.15);
  border: 1px solid var(--accent);
}

@media (max-width: 768px) {

  .cursor-glow,
  .cursor-dot {
    display: none;
  }
}

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--g);
  z-index: 10001;
  width: 0%;
  transition: none;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s var(--ease);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(5, 5, 8, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.02em;
}

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

.logo-cube {
  width: 32px;
  height: 32px;
  position: relative;
  perspective: 200px;
}

.cube-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  backface-visibility: hidden;
  animation: cubeFlip 4s var(--ease) infinite;
}

.cube-face.back {
  transform: rotateY(180deg);
}

@keyframes cubeFlip {

  0%,
  40% {
    transform: rotateY(0deg);
  }

  50%,
  90% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

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

.logo-icon {
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.3em;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 4px;
}

.nav-link {
  color: var(--text-2);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--r-s);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--g);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}

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

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link-cta {
  background: var(--g);
  color: #fff !important;
  border-radius: 100px;
  padding: 8px 22px;
}

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

.nav-link-cta:hover {
  box-shadow: 0 0 20px var(--glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width:768px) {
  .nav-toggle {
    position: fixed;
    top: 18px;
    right: 24px;
    display: flex;
    z-index: 1002;
    transition: top .4s var(--ease);
  }

  /* When scrolled, match the smaller navbar padding */
  .navbar.scrolled .nav-toggle {
    top: 10px;
  }

  .navbar {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .navbar.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(5, 5, 8, 0.95);
  }

  /* Lock navbar state when menu is open */
  body.menu-open .navbar {
    padding: 18px 0;
    background: transparent;
    border-bottom-color: transparent;
  }

  body.menu-open .navbar.scrolled {
    padding: 18px 0;
    background: transparent;
    border-bottom-color: transparent;
  }

  body.menu-open .nav-toggle {
    top: 18px;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(5, 5, 8, 0.97);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 4px;
    z-index: 1001;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 14px 16px;
  }

  .nav-link-cta {
    display: inline-block;
    text-align: center;
    margin-top: 12px;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Aurora background */
.aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  filter: blur(80px);
  opacity: .6;
}

.aurora-layer {
  position: absolute;
  border-radius: 50%;
}

.aurora-layer.a1 {
  width: 60vw;
  height: 60vw;
  top: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(124, 108, 240, 0.3), transparent 70%);
  animation: auroraMove1 20s ease-in-out infinite alternate;
}

.aurora-layer.a2 {
  width: 50vw;
  height: 50vw;
  top: 20%;
  right: -15%;
  background: radial-gradient(circle, rgba(0, 229, 192, 0.2), transparent 70%);
  animation: auroraMove2 25s ease-in-out infinite alternate;
}

.aurora-layer.a3 {
  width: 40vw;
  height: 40vw;
  bottom: -10%;
  left: 30%;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.15), transparent 70%);
  animation: auroraMove3 18s ease-in-out infinite alternate;
}

@keyframes auroraMove1 {
  0% {
    transform: translate(0, 0) scale(1)
  }

  100% {
    transform: translate(10%, 15%) scale(1.3)
  }
}

@keyframes auroraMove2 {
  0% {
    transform: translate(0, 0) scale(1)
  }

  100% {
    transform: translate(-15%, -10%) scale(1.2)
  }
}

@keyframes auroraMove3 {
  0% {
    transform: translate(0, 0) scale(1)
  }

  100% {
    transform: translate(10%, -20%) scale(1.4)
  }
}

/* Grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 140px 24px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--mono);
  font-size: .8rem;
  color: var(--accent-2);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .4;
    transform: scale(.8)
  }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: titleReveal .8s var(--spring) forwards;
}

.title-line[data-delay="1"] {
  animation-delay: .15s;
}

.title-line[data-delay="2"] {
  animation-delay: .3s;
}

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

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

.typing-text::after {
  content: '|';
  -webkit-text-fill-color: var(--accent);
  animation: blink 1s step-end infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0
  }
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-2);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: var(--accent-2);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Metric rings */
.hero-metrics {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.metric {
  text-align: center;
}

.metric-ring {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 8px;
}

.metric-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.metric-ring-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 3;
}

.metric-ring-fill {
  fill: none;
  stroke: url(#metricGrad);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  transition: stroke-dashoffset 2s var(--ease);
}

.metric-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--g);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: .75rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 500;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: .65rem;
  letter-spacing: .2em;
  font-weight: 600;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--g);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    top: -50%;
  }

  100% {
    top: 150%;
  }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: .92rem;
  font-weight: 600;
  font-family: var(--font);
  border-radius: var(--r-m);
  cursor: none;
  transition: all .3s var(--ease);
  border: none;
  position: relative;
  overflow: hidden;
}

@media (max-width:768px) {
  .btn {
    cursor: pointer;
  }
}

.btn-primary {
  background: transparent;
  color: #fff;
  z-index: 1;
}

.btn-primary .btn-bg {
  position: absolute;
  inset: 0;
  background: var(--g);
  border-radius: inherit;
  z-index: -1;
  transition: transform .3s var(--ease);
}

.btn-primary:hover .btn-bg {
  transform: scale(1.05);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px var(--glow);
  color: #fff;
}

.btn-glass {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  border-color: var(--accent);
  background: rgba(124, 108, 240, 0.08);
  color: var(--text);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  position: relative;
  z-index: 1;
  transition: transform .3s var(--ease);
}

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

/* ============ SECTIONS ============ */
.section {
  padding: 140px 0;
  position: relative;
}

.section-dark {
  background: var(--bg-2);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 80px;
}

.section-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .05em;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ============ SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width:768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-l);
  padding: 44px;
  transition: transform .5s var(--spring), box-shadow .5s var(--ease);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.03) 45%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.03) 55%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .8s var(--ease);
  pointer-events: none;
}

.service-card:hover .card-shine {
  transform: translateX(100%);
}

.card-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid transparent;
  background: var(--g) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}

.service-card:hover .card-border {
  opacity: 1;
}

.card-glow {
  position: absolute;
  bottom: -50%;
  left: 20%;
  right: 20%;
  height: 200px;
  background: radial-gradient(ellipse, var(--glow), transparent 70%);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}

.service-card:hover .card-glow {
  opacity: .5;
}

.service-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-number {
  font-family: var(--mono);
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-3);
  margin-bottom: 20px;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(124, 108, 240, 0.1);
  border-radius: var(--r-m);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-2);
  font-size: .92rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tags span {
  padding: 4px 12px;
  font-size: .72rem;
  font-weight: 600;
  font-family: var(--mono);
  background: rgba(0, 229, 192, 0.06);
  color: var(--accent-2);
  border-radius: 100px;
  border: 1px solid rgba(0, 229, 192, 0.12);
}

/* ============ STARDENT ============ */
.stardent-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width:900px) {
  .stardent-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.stardent-desc {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
}

.stardent-content .section-tag {
  display: block;
  margin-bottom: 12px;
}

.stardent-content .section-title {
  margin-bottom: 20px;
}

.stardent-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 36px;
}

.stardent-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  transition: all .3s var(--ease);
}

.stardent-features li:hover {
  border-color: var(--glow);
  background: rgba(124, 108, 240, 0.04);
  transform: translateX(6px);
}

.feature-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--g);
}

.stardent-features strong {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.stardent-features span {
  font-size: .82rem;
  color: var(--text-3);
  line-height: 1.4;
}

/* Phone mockup */
.phone-mockup {
  width: 280px;
  margin: 0 auto;
  background: #111118;
  border-radius: 36px;
  border: 3px solid #222;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
}

.phone-notch {
  width: 120px;
  height: 24px;
  background: #111118;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.phone-screen {
  background: #0d0d14;
  padding: 0 16px 16px;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px 12px;
  font-size: .65rem;
  color: var(--text-3);
}

.phone-status-icons {
  display: flex;
  gap: 4px;
}

.phone-status-icons span {
  width: 14px;
  height: 8px;
  border-radius: 2px;
  background: var(--text-3);
  opacity: .5;
}

.phone-app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
}

.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--g);
}

.phone-greeting {
  flex: 1;
}

.phone-greeting small {
  font-size: .65rem;
  color: var(--text-3);
  display: block;
}

.phone-greeting strong {
  font-size: .8rem;
  color: var(--text);
}

.phone-bell {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.phone-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.phone-stat-card {
  padding: 14px;
  border-radius: var(--r-m);
  background: var(--bg-glass);
  border: 1px solid var(--border);
}

.phone-stat-card.ps1 {
  border-left: 3px solid var(--accent);
}

.phone-stat-card.ps2 {
  border-left: 3px solid var(--accent-2);
}

.ps-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  display: block;
  line-height: 1.2;
}

.ps-label {
  font-size: .6rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.phone-schedule {
  flex: 1;
}

.phone-sched-title {
  font-size: .7rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

.phone-appointment {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: all .3s var(--ease);
}

.phone-appointment:last-child {
  border-bottom: none;
}

.appt-time {
  font-family: var(--mono);
  font-size: .7rem;
  color: var(--text-3);
  width: 36px;
}

.appt-info {
  flex: 1;
}

.appt-name {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
}

.appt-type {
  font-size: .65rem;
  color: var(--text-3);
}

.appt-status {
  font-size: .6rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  color: var(--text-3);
  background: var(--bg-glass);
  border: 1px solid var(--border);
}

.appt-status.active {
  background: rgba(0, 229, 192, 0.12);
  color: var(--accent-2);
  border-color: rgba(0, 229, 192, 0.2);
}

.phone-nav-bar {
  display: flex;
  justify-content: space-around;
  padding: 12px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.pnav-item svg {
  width: 18px;
  height: 18px;
  color: var(--text-3);
}

.pnav-item.active svg {
  color: var(--accent);
}

/* Floating notification */
.floating-notif {
  position: absolute;
  top: 60px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(15, 15, 25, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  animation: notifFloat 6s ease-in-out infinite;
  z-index: 3;
}

.notif-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
}

.notif-text strong {
  display: block;
  font-size: .75rem;
  color: var(--text);
}

.notif-text span {
  font-size: .65rem;
  color: var(--text-3);
}

@keyframes notifFloat {

  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  10% {
    transform: translateY(-5px);
    opacity: 1;
  }

  50% {
    transform: translateY(5px);
    opacity: .7;
  }
}

.stardent-visual {
  position: relative;
}

/* ============ TECH ORBIT ============ */
.tech-orbit-wrapper {
  position: relative;
  width: min(550px, 90vw);
  height: min(550px, 90vw);
  margin: 0 auto;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: var(--g);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px var(--glow);
  z-index: 2;
}

.orbit-center-text {
  font-size: .6rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  letter-spacing: .05em;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.ring-1 {
  width: 250px;
  height: 250px;
  margin-left: -125px;
  margin-top: -125px;
  animation: orbitSpin 30s linear infinite;
}

.ring-2 {
  width: 380px;
  height: 380px;
  margin-left: -190px;
  margin-top: -190px;
  animation: orbitSpin 45s linear infinite reverse;
}

.ring-3 {
  width: 510px;
  height: 510px;
  margin-left: -255px;
  margin-top: -255px;
  animation: orbitSpin 60s linear infinite;
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin: -30px;
  transform: rotate(var(--angle)) translateX(125px);
}

.ring-2 .orbit-item {
  transform: rotate(var(--angle)) translateX(190px);
}

.ring-3 .orbit-item {
  transform: rotate(var(--angle)) translateX(255px);
}

.orbit-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 700;
  color: var(--text-2);
  transition: all .3s var(--ease);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Counter-rotate text to keep it upright */
.ring-1 .orbit-item span {
  animation: orbitCounter 30s linear infinite;
}

.ring-2 .orbit-item span {
  animation: orbitCounter 45s linear infinite reverse;
}

.ring-3 .orbit-item span {
  animation: orbitCounter 60s linear infinite;
}

@keyframes orbitCounter {
  to {
    transform: rotate(-360deg);
  }
}

.orbit-item span:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.15);
  box-shadow: 0 0 30px var(--glow);
}

@media (max-width:580px) {
  .tech-orbit-wrapper {
    width: 340px;
    height: 340px;
  }

  .ring-1 {
    width: 160px;
    height: 160px;
    margin-left: -80px;
    margin-top: -80px;
  }

  .ring-2 {
    width: 240px;
    height: 240px;
    margin-left: -120px;
    margin-top: -120px;
  }

  .ring-3 {
    width: 320px;
    height: 320px;
    margin-left: -160px;
    margin-top: -160px;
  }

  .orbit-item {
    width: 42px;
    height: 42px;
    margin: -21px;
  }

  .orbit-item span {
    width: 42px;
    height: 42px;
    font-size: .5rem;
  }

  .orbit-item {
    transform: rotate(var(--angle)) translateX(80px);
  }

  .ring-2 .orbit-item {
    transform: rotate(var(--angle)) translateX(120px);
  }

  .ring-3 .orbit-item {
    transform: rotate(var(--angle)) translateX(160px);
  }

  .orbit-center {
    width: 60px;
    height: 60px;
  }

  .orbit-center-text {
    font-size: .45rem;
  }
}

/* ============ CONTACT ============ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 64px;
  align-items: start;
}

@media (max-width:768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

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

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

@media (max-width:480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px 20px 8px;
  font-size: .92rem;
  font-family: var(--font);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  color: var(--text);
  outline: none;
  transition: all .3s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.input-glow {
  position: absolute;
  inset: -1px;
  border-radius: var(--r-m);
  background: var(--g);
  opacity: 0;
  filter: blur(8px);
  transition: opacity .3s;
  pointer-events: none;
  z-index: -1;
}

.form-group input:focus~.input-glow,
.form-group textarea:focus~.input-glow {
  opacity: .15;
}

.form-group label {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: .88rem;
  color: var(--text-3);
  pointer-events: none;
  transition: all .3s var(--ease);
}

.form-group textarea~label {
  top: 20px;
  transform: none;
}

.form-group input:focus~label,
.form-group input:not(:placeholder-shown)~label {
  top: 10px;
  transform: none;
  font-size: .68rem;
  color: var(--accent);
}

.form-group textarea:focus~label,
.form-group textarea:not(:placeholder-shown)~label {
  top: 6px;
  font-size: .68rem;
  color: var(--accent);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.glass-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-m);
  backdrop-filter: blur(10px);
  transition: all .3s var(--ease);
}

.glass-card:hover {
  border-color: var(--glow);
  transform: translateX(6px);
  background: rgba(124, 108, 240, 0.04);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(124, 108, 240, 0.08);
  border-radius: var(--r-s);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.contact-card strong {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 1px;
}

.contact-card span,
.contact-card a {
  font-size: .85rem;
  color: var(--text-2);
}

/* ============ FOOTER ============ */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
}

.footer-brand p {
  font-size: .82rem;
  color: var(--text-3);
  font-weight: 400;
  margin-top: 4px;
}

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

.footer-links a {
  font-size: .85rem;
  color: var(--text-2);
  transition: color .3s;
}

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

.footer-copy {
  font-size: .8rem;
  color: var(--text-3);
}

@media (max-width:600px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
  }
}

/* ============ ANIMATIONS ============ */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s var(--ease), transform .8s var(--spring);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

.services-grid [data-animate]:nth-child(2) {
  transition-delay: .1s;
}

.services-grid [data-animate]:nth-child(3) {
  transition-delay: .2s;
}

.services-grid [data-animate]:nth-child(4) {
  transition-delay: .3s;
}

@media (max-width:480px) {
  .hero-content {
    padding: 120px 16px 60px;
  }

  .section {
    padding: 100px 0;
  }

  .service-card {
    padding: 28px;
  }
}

/* Toast notification */
.toast-notif {
  position: fixed;
  bottom: 30px;
  right: 30px;
  padding: 16px 28px;
  border-radius: 12px;
  font-size: .95rem;
  font-weight: 500;
  color: #fff;
  z-index: 10000;
  transform: translateY(20px);
  opacity: 0;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .3);
}

.toast-notif.toast-show {
  transform: translateY(0);
  opacity: 1;
}

.toast-success {
  background: linear-gradient(135deg, rgba(0, 229, 192, .9), rgba(124, 108, 240, .9));
}

.toast-error {
  background: linear-gradient(135deg, rgba(244, 114, 182, .9), rgba(239, 68, 68, .9));
}