/* ============================================
   HOME PAGE — Complete Styles
   ============================================ */

/* ── Hero ── */
.home-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.home-hero .scroll-indicator {
  position: static;
  transform: none;
  margin: 6px 0 44px;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero Text */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  width: fit-content;
  flex-wrap: wrap;
}

.badge-sep { color: var(--border-color); }

.badge-highlight {
  color: var(--accent-cyan);
  font-weight: 700;
}

/* Headline */
.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
}

.headline-line { display: inline; }

/* Guarantees a gap before the next line/word even if an editor or
   formatter strips the whitespace between the <span> tags in the HTML. */
.headline-line + .headline-line {
  margin-left: 0.28em;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 480px;
}

/* Typed */
.hero-typed {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.typed-prefix { color: var(--text-secondary); }
.typed-text   { color: var(--accent-purple); font-weight: 700; min-width: 200px; }
.typed-cursor {
  color: var(--accent-cyan);
  animation: cursorBlink 0.8s step-end infinite;
}
@keyframes cursorBlink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* CTA */
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Trust badges */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.trust-item i { color: #22c55e; font-size: 0.8rem; }

.trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-color);
}

/* ── Centered hero layout (Aeline-style) ── */
.hero-container--centered {
  grid-template-columns: 1fr;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap:20px;
    padding-top:40px;
  padding-bottom: 0;
}

.hero-text--centered {
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 760px;
}

.hero-headline--centered { text-align: center; }

/* One-line, slightly larger headline (desktop). Wraps normally on mobile
   via the max-width:768px override in mobile-fixes-v2.css. */
.hero-headline--oneline {
  font-size: clamp(2.8rem, 5vw, 4rem);
}

@media (min-width: 640px) {
  .hero-headline--oneline {
    white-space: nowrap;
  }
}

.hero-subtitle--oneline {
  white-space: nowrap;
  max-width: none;
}

@media (max-width: 640px) {
  .hero-subtitle--oneline { white-space: normal; }
}

.hero-subtitle--centered { max-width: 560px; margin: 0 auto; }

.hero-typed--centered,
.hero-cta--centered,
.hero-trust--centered {
  justify-content: center;
}

/* ── Pill Buttons (hero) ── */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 26px;
  border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-pill-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding-right: 8px;
}

.btn-pill-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139,92,246,0.35);
}

.btn-pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  color: #fff;
  font-size: 0.8rem;
  transition: transform 0.35s ease;
}

.btn-pill-primary:hover .btn-pill-icon { transform: rotate(45deg); }

.btn-pill-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  padding: 15px 30px;
}

.btn-pill-secondary:hover {
  background: rgba(139,92,246,0.12);
  border-color: var(--accent-purple);
  transform: translateY(-3px);
}

.hero-marquee {
  position: relative;
  z-index: 2;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 0 24px;
  Margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Extra vertical padding on each row so the hover lift/scale/glow has
   room to breathe before hitting the row's own overflow:hidden edge —
   this is what was clipping the top/bottom of hovered cards before. */
.marquee-row {
  overflow: hidden;
  width: 100%;
  padding: 12px 0;
}

.marquee-track {
  display: flex;
  gap: 18px;
  padding: 0 18px;
  width: max-content;
  animation: marqueeLeft 40s linear infinite;
  will-change: transform;
}

.marquee-row--right .marquee-track {
  animation-name: marqueeRight;
  animation-duration: 44s;
}



@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

.marquee-card {
  position: relative;
  flex: 0 0 auto;
  width: 450px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.marquee-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--accent-purple);
  box-shadow: 0 4px 12px rgba(139,92,246,0.28);
  z-index: 3;
}

.marquee-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.marquee-card-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 1.6rem;
  background:
    linear-gradient(135deg, rgba(139,92,246,0.1), rgba(6,182,212,0.08));
}

.marquee-card-fallback span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.marquee-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.marquee-card:hover .marquee-card-overlay { opacity: 1; }

.marquee-card-overlay span {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.marquee-card-overlay .marquee-visit {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent-cyan);
  color: #06121a;
  font-size: 0.65rem;
}

@media (max-width: 768px) {
  .marquee-card { width: 160px; height: 110px; }
  .marquee-row { padding: 18px 0; }
  .hero-marquee { padding-bottom: 24px; }
}

/* ── Smoother, more dramatic hero entrance ── */
.home-hero .anim-fade-up {
  opacity: 0;
  transform: translateY(46px) scale(0.96);
  filter: blur(8px);
  transition:
    opacity 1s cubic-bezier(0.16,1,0.3,1),
    transform 1s cubic-bezier(0.16,1,0.3,1),
    filter 1s cubic-bezier(0.16,1,0.3,1);
}

.home-hero .anim-fade-up.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Slight bouncy overshoot just for the CTA row — a little extra "pop" */
.home-hero .hero-cta.anim-fade-up {
  transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Liquid hover effect on the headline ──
   Each letter becomes its own span (via JS) that lifts, scales and
   skews toward the cursor as it passes nearby, then eases back. */
.hero-headline .liquid-char {
  display: inline-block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* ── Hero Visual (SVG) ── */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(139,92,246,0.15));
}

/* Floating badges around SVG */
.svg-badge {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent-purple);
}

.sb-1 { top: 5%;  left: 0%;   animation: sbFloat 5s ease-in-out infinite 0s; color: #61dafb; }
.sb-2 { top: 40%; left: -5%;  animation: sbFloat 6s ease-in-out infinite 1s; color: #68a063; }
.sb-3 { top: 5%;  right: 0%;  animation: sbFloat 4.5s ease-in-out infinite 0.5s; color: #f43f5e; }
.sb-4 { top: 40%; right: -5%; animation: sbFloat 5.5s ease-in-out infinite 1.5s; color: #f7df1e; }

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


/* ============================================
   ZIENOX WORD — grows as you scroll toward it, vanishes with a
   fade/blur/zoom as it scrolls out of view. Pure transform/opacity/
   filter driven by JS every frame — no layout writes, stays smooth.
============================================ */
.brand-band-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transition: none;
  will-change: transform, opacity, filter;
  transform-origin: center center;
}

.brand-word {
  font-family: 'Orbitron', monospace;
  font-weight: 800;
  font-size: clamp(2.6rem, 13vw, 12rem);
  letter-spacing: 4px;
  line-height: 1;
  margin: 0 0 18px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-tagline {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--text-secondary);
  margin: 0 0 64px;
}


@media (max-width: 900px) {
  .brand-band-inner { padding: 0 8px; }
}

/* ============================================
   SERVICES SHOWCASE — cinematic horizontal tab timeline
   Tabs across the top (numbered, with an auto-playing progress bar on
   the active one); below, a two-column panel — image slot on the
   left (left empty for the user's own images), copy + feature list
   on the right — crossfading in on tab change.
============================================ */
.ss-scroll-track {
  position: relative;
  height: 300vh; /* fallback before JS measures precisely — see initServicesShowcase */
}

.services-showcase {
  position: sticky;
  top: -100px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 28px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  overflow: hidden;
}

.ss-header {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.ss-headline {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin: 14px 0 0;
}

.ss-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto 48px;
  border-bottom: 1px solid var(--border-color);
}

/* Entrance animation — replays every time the section re-enters view */
.ss-header,
.ss-tabs {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.services-showcase.ss-in-view .ss-header {
  opacity: 1;
  transform: translateY(0);
}

.services-showcase.ss-in-view .ss-tabs {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.15s;
}

.ss-tab {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 20px;
  background: none;
  border: none;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
  opacity: 0.45;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.ss-tab:hover { opacity: 0.75; }

.ss-tab.active {
  opacity: 1;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.1), transparent);
}

.ss-tab-num {
  font-family: 'Orbitron', monospace;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-purple);
  transition: all 0.3s ease;
}

.ss-tab.active .ss-tab-num {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  padding: 3px 8px;
  border-radius: 6px;
}

.ss-tab-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.ss-tab.active .ss-tab-title { color: var(--text-primary); }

/* ── Panels ── */
.ss-panels {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.ss-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.ss-panel.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.45s ease 0.08s;
}

/* Image placeholder — intentionally empty; drop project imagery here */
.ss-panel-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 22px;
  border: 2px dashed var(--border-color);
  background: linear-gradient(135deg, rgba(139,92,246,0.07), rgba(6,182,212,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ss-image-hint {
  text-align: center;
  color: var(--text-secondary);
  padding: 20px;
}

.ss-image-hint i {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 14px;
  opacity: 0.35;
}

.ss-image-hint span {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  opacity: 0.55;
}

.ss-panel-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-cyan);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ss-panel-content h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0 0 18px;
}

.ss-panel-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0 0 26px;
}

.ss-panel-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ss-panel-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-primary);
}

.ss-panel-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.75rem;
  color: var(--accent-purple);
}

@media (max-width: 860px) {
  .services-showcase { padding: 90px 20px; }
  .ss-tabs { justify-content: flex-start; }
  .ss-tab { padding: 0 16px 16px; }
  .ss-panel { grid-template-columns: 1fr; gap: 32px; }
  .ss-panel-image { aspect-ratio: 16 / 10; }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.home-about {
  padding: 80px 28px;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);

}

.home-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

/* Image Frame */
.about-img-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
}

.about-img-inner {
  width: 260px;
  height: 340px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(15,15,26,0.8);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 60px rgba(139,92,246,0.15),
    0 30px 80px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

[data-theme="light"] .about-img-inner {
  background: rgba(240,235,255,0.9);
}

.about-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 1 !important;
}

.about-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(139,92,246,0.3);
}

.about-img-placeholder i { font-size: 3.5rem; }
.about-img-placeholder span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* Spinning rings */
.about-img-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(139,92,246,0.2);
}

.ring-spin {
  width: 340px;
  height: 340px;
  animation: aboutRingSpin 12s linear infinite;
}

.ring-spin-rev {
  width: 400px;
  height: 400px;
  border-color: rgba(6,182,212,0.12);
  animation: aboutRingSpin 18s linear infinite reverse;
}

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

/* Floating mini icons */
.about-float {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15,15,26,0.85);
  border: 1px solid rgba(139,92,246,0.25);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent-purple);
  z-index: 3;
}

.af-1 { top: 15%;  left: 5%;   animation: afFloat 5s ease-in-out infinite 0s;   color: #61dafb; }
.af-2 { top: 15%;  right: 5%;  animation: afFloat 6s ease-in-out infinite 0.8s; color: #68a063; }
.af-3 { bottom: 20%; left: 8%; animation: afFloat 4.5s ease-in-out infinite 1.5s; color: #06b6d4; }
.af-4 { bottom: 20%; right: 8%; animation: afFloat 5.5s ease-in-out infinite 0.4s; color: #f7df1e; }

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

/* About Content */
.home-about-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 12px 0 16px;
}

.home-about-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* Key Points */
.home-about-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  transition: all 0.3s ease;
}

.about-point:hover {
  border-color: var(--accent-purple);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(139,92,246,0.08);
}

.point-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.15);
  color: var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.point-text h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.point-text p {
  font-size: 0.78rem;
  color: rgba(192, 156, 255, 0.39);
  line-height: 1.4;
}

/* Stats */
.home-about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  padding: 20px 24px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
}

.has-item {
  flex: 1;
  text-align: center;
  padding: 4px 0;
}

.has-num {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-purple);
  text-shadow: 0 0 20px rgba(139,92,246,0.4);
  margin-bottom: 3px;
  line-height: 1;
}

.has-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.has-div {
  width: 1px;
  height: 32px;
  background: var(--border-color);
  flex-shrink: 0;
}

/* ============================================
   TECH SECTION
   ============================================ */
.home-tech {
  padding: 80px 28px;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.home-tech-container {
  max-width: 1200px;
  margin: 0 auto;
}

.home-tech-sub {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.home-tech-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.home-orbit-wrap {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Tech Pills */
.home-tech-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tech-pill-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tech-pill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 14px 10px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s ease;
  cursor: default;
}

.tech-pill-item i { font-size: 1.3rem; }

.tech-pill-item:hover {
  border-color: rgba(139,92,246,0.3);
  transform: translateY(-4px);
  color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(139,92,246,0.1);
}

/* Force center on tech section header */
.home-tech .section-label,
.home-tech .section-title {
  text-align: center;
  justify-content: center;
}

/* ============================================
   FEATURED PROJECTS
   ============================================ */
.home-projects {
  padding: 80px 28px;
  background: rgba(255, 0, 0, 0);
  justify-content: center;
}

.home-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.home-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Skeleton */
.home-project-skeleton {
  height: 320px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  background: linear-gradient(
    105deg,
    rgba(139,92,246,0.04) 40%,
    rgba(139,92,246,0.08) 50%,
    rgba(139,92,246,0.04) 60%
  );
  background-size: 200% 100%;
  animation: shimmer 1.8s infinite;
}

/* Project Cards */
.home-proj-card {
  border-radius: 18px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: all 0.4s ease;
  position: relative;
}

.home-proj-card:hover {
  border-color: rgba(139,92,246,0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(139,92,246,0.15);
}

.home-proj-img {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(139,92,246,0.15), rgba(6,182,212,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(139,92,246,0.3);
  position: relative;
}

.home-proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1 !important;
  transition: transform 0.5s ease;
}

.home-proj-card:hover .home-proj-img img {
  transform: scale(1.05);
}

/* Overlay on hover */
.home-proj-img::after {
  content: 'View Project →';
  position: absolute;
  inset: 0;
  background: rgba(10,10,15,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

.home-proj-card:hover .home-proj-img::after { opacity: 1; }

/* Featured badge */
.home-proj-card.featured .home-proj-img::before {
  content: '⭐ Featured';
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(234,179,8,0.15);
  border: 1px solid rgba(234,179,8,0.3);
  font-size: 0.7rem;
  font-weight: 700;
  color: #eab308;
  backdrop-filter: blur(10px);
}

.home-proj-body { padding: 20px; }

.home-proj-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 8px;
  display: block;
}

.home-proj-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.home-proj-card:hover .home-proj-title {
  color: var(--accent-purple);
}

.home-proj-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-proj-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.home-proj-tag {
  padding: 3px 9px;
  border-radius: 50px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.15);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent-purple);
}

/* Projects CTA */
.projects-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.projects-cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}




/* ============================================
   WHY WORK WITH ME
============================================ */
.home-why {
  padding: 80px 28px;
  border-top: 1px solid var(--border-color);
  overflow: hidden;
}

.home-why-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================
   REVEAL ANIMATIONS FIX
============================================ */

/* Initial hidden state */
.anim-fade-up,
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}

/* Visible state */
.anim-fade-up.in-view,
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* ============================================
   LAYOUT
============================================ */

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

/* ============================================
   SVG VISUAL
============================================ */

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

.why-svg-wrap {
  position: relative;
  width: 320px;
  height: 320px;
}

.why-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px rgba(139,92,246,0.18));
}

/* Ring animation */
.why-ring {
  transition:
    stroke-dashoffset 2.2s cubic-bezier(0.22,1,0.36,1);
}

/* ============================================
   BADGES
============================================ */

.why-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10,10,18,0.8);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);

  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-primary);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.3),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

.why-badge i {
  color: var(--accent-purple);
}

.wb-1 {
  top: -10px;
  left: -20px;
  animation: floatBadge 4s ease-in-out infinite;
}

.wb-2 {
  top: 42%;
  right: -35px;
  animation: floatBadge 5s ease-in-out infinite 1s;
}

.wb-3 {
  bottom: -10px;
  left: -20px;
  animation: floatBadge 4.5s ease-in-out infinite 0.5s;
}

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

/* ============================================
   WHY CARDS
============================================ */

.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-card {
  position: relative;

  display: flex;
  align-items: flex-start;
  gap: 16px;

  padding: 22px;

  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.01)
    );

  border: 1px solid rgba(255,255,255,0.08);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;

  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(139,92,246,0.06),
      transparent 40%
    );

  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover {
  transform: translateY(-6px);

  border-color: rgba(139,92,246,0.3);

  box-shadow:
    0 10px 40px rgba(139,92,246,0.12);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: rgba(139,92,246,0.35);
  min-width: 28px;
}

.why-card-icon {
  width: 46px;
  height: 46px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.15);

  transition: transform 0.3s ease;
}

.why-card:hover .why-card-icon {
  transform: scale(1.08) rotate(-6deg);
}

.why-card-content {
  flex: 1;
}

.why-card-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.why-card-content p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

/* ============================================
   PROGRESS BAR
============================================ */

.why-bar {
  height: 5px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
}

.why-bar-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;

  transition:
    width 1.8s cubic-bezier(0.22,1,0.36,1);
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 900px) {

  .why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-svg-wrap {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 600px) {

  .home-why {
    padding: 70px 18px;
  }

  .why-card {
    padding: 18px;
  }

  .why-svg-wrap {
    width: 240px;
    height: 240px;
  }

  .wb-2 {
    right: -10px;
  }
}

/* ============================================
   INTERACTIVE WHY VISUAL
============================================ */

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

.why-interactive {
  position: relative;
  width: 420px;
  height: 420px;
}

/* ============================================
   CENTER CORE
============================================ */

.why-core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background:
    radial-gradient(circle at top,
      rgba(139,92,246,0.25),
      rgba(6,182,212,0.08)
    );

  border: 1px solid rgba(139,92,246,0.2);

  backdrop-filter: blur(20px);

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  box-shadow:
    0 0 80px rgba(139,92,246,0.15);

  animation: coreFloat 5s ease-in-out infinite;
}

.why-core-glow {
  position: absolute;
  inset: -40%;

  background:
    conic-gradient(
      from 0deg,
      transparent,
      rgba(139,92,246,0.25),
      transparent,
      rgba(6,182,212,0.2),
      transparent
    );

  animation: spinGlow 8s linear infinite;
}

.why-core::before {
  content: '';

  position: absolute;
  inset: 8px;

  border-radius: inherit;

  background:
    rgba(10,10,18,0.9);

  z-index: 1;
}

.why-core-content {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-core-number {
  font-size: 2.6rem;
  font-weight: 800;

  background:
    linear-gradient(135deg,
      #8b5cf6,
      #06b6d4);

  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-core-label {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ============================================
   FLOATING CARDS
============================================ */

.float-card {
  position: absolute;

  display: flex;
  align-items: center;
  gap: 14px;

  width: 180px;

  padding: 16px;

  border-radius: 18px;

  background:
    rgba(15,15,25,0.72);

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(16px);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.float-card:hover {
  transform: translateY(-8px) scale(1.03);

  border-color:
    rgba(139,92,246,0.35);

  box-shadow:
    0 12px 40px rgba(139,92,246,0.15);
}

.float-card i {
  width: 42px;
  height: 42px;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    rgba(139,92,246,0.12);

  color: var(--accent-purple);

  flex-shrink: 0;
}

.float-card h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}

.float-card p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
}

/* Positions */

.fc-1 {
  top: 20px;
  left: 10px;
  animation: floatCard 5s ease-in-out infinite;
}

.fc-2 {
  top: 40px;
  right: 0;
  animation: floatCard 6s ease-in-out infinite 1s;
}

.fc-3 {
  bottom: 30px;
  left: 0;
  animation: floatCard 6s ease-in-out infinite 0.5s;
}

.fc-4 {
  bottom: 10px;
  right: 10px;
  animation: floatCard 5s ease-in-out infinite 1.5s;
}

/* ============================================
   ORBITS
============================================ */

.orbit {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);

  border-radius: 50%;
  border:
    1px dashed rgba(139,92,246,0.12);
}

.orbit-1 {
  width: 280px;
  height: 280px;

  animation: spinOrbit 20s linear infinite;
}

.orbit-2 {
  width: 360px;
  height: 360px;

  animation: spinOrbitReverse 26s linear infinite;
}

/* ============================================
   ANIMATIONS
============================================ */

@keyframes spinGlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes spinOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes spinOrbitReverse {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes floatCard {
  0%,100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes coreFloat {
  0%,100% {
    transform: translate(-50%, -50%);
  }

  50% {
    transform: translate(-50%, -56%);
  }
}

/* ============================================
   RESPONSIVE
============================================ */

@media (max-width: 900px) {

  .why-interactive {
    width: 340px;
    height: 340px;
  }

  .float-card {
    width: 150px;
    padding: 14px;
  }

  .orbit-1 {
    width: 240px;
    height: 240px;
  }

  .orbit-2 {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 600px) {

  .why-interactive {
    width: 100%;
    max-width: 320px;
    height: 320px;
  }

  .float-card {
    width: 140px;
    gap: 10px;
  }

  .float-card h5 {
    font-size: 0.72rem;
  }

  .float-card p {
    font-size: 0.65rem;
  }

  .why-core {
    width: 140px;
    height: 140px;
  }

  .why-core-number {
    font-size: 2rem;
  }
}

/* Force center on why section header */
.home-why .section-label,
.home-why .section-title,
.home-why .home-tech-sub {
  text-align: center;
  justify-content: center;
}

/* ============================================
   CTA SECTION
   ============================================ */
.home-cta {
  position: relative;
  padding: 80px 28px;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.home-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 460px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cta-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.cta-note i { color: var(--accent-purple); }

/* CTA Visual */
.cta-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-visual-wrap {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Pulsing rings */
.cta-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.2);
  animation: ctaRingPulse 3s ease-in-out infinite;
}

.cta-ring-1 { width: 100px; height: 100px; animation-delay: 0s; }
.cta-ring-2 { width: 180px; height: 180px; animation-delay: 0.5s; border-color: rgba(6,182,212,0.15); }
.cta-ring-3 { width: 260px; height: 260px; animation-delay: 1s; border-color: rgba(139,92,246,0.08); }

@keyframes ctaRingPulse {
  0%,100% { transform: scale(1);    opacity: 0.8; }
  50%      { transform: scale(1.05); opacity: 0.3; }
}

/* Center */
.cta-center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.cta-center-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 0 40px rgba(139,92,246,0.4);
  animation: ctaIconFloat 3s ease-in-out infinite;
}

@keyframes ctaIconFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.cta-center span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Orbit items */
.cta-orbit {
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  animation: ctaOrbitSpin linear infinite;
}

.co-1 { animation-duration: 8s;  animation-delay: 0s; }
.co-2 { animation-duration: 8s;  animation-delay: -2s; }
.co-3 { animation-duration: 8s;  animation-delay: -4s; }
.co-4 { animation-duration: 8s;  animation-delay: -6s; }

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

.cta-orbit-item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid rgba(139,92,246,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--accent-purple);
  position: absolute;
  transform: translateX(120px);
  animation: ctaCounterSpin linear infinite;
}

.co-1 .cta-orbit-item { animation-duration: 8s; }
.co-2 .cta-orbit-item { animation-duration: 8s; }
.co-3 .cta-orbit-item { animation-duration: 8s; }
.co-4 .cta-orbit-item { animation-duration: 8s; }

@keyframes ctaCounterSpin {
  to { transform: translateX(120px) rotate(-360deg); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .why-layout { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .home-tech-visual { grid-template-columns: 1fr; }
  .home-orbit-wrap { display: none; }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle  { margin: 0 auto; }
  .hero-cta       { justify-content: center; }
  .hero-trust     { justify-content: center; }
  .hero-typed     { justify-content: center; }
  .hero-visual    { display: flex; }
  .home-about-container { grid-template-columns: 1fr; }
  .home-cta-container   { grid-template-columns: 1fr; text-align: center; }
  .cta-desc { margin: 0 auto 28px; }
  .cta-buttons { justify-content: center; }
  .home-projects-grid { grid-template-columns: 1fr 1fr; }
  .tech-pill-row { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .home-projects-grid { grid-template-columns: 1fr; }
  .hero-container { padding: 40px 20px; }
  .tech-pill-row  { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================
   ORBIT SYSTEM — copied for homepage use
   ============================================ */
.home-orbit-wrap {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skills-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.hub-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(139,92,246,0.3),
    rgba(6,182,212,0.2));
  border: 2px solid rgba(139,92,246,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-purple);
  box-shadow: 0 0 40px rgba(139,92,246,0.4),
              0 0 80px rgba(139,92,246,0.15);
  animation: hubPulse 3s ease-in-out infinite;
}

@keyframes hubPulse {
  0%,100% { box-shadow: 0 0 40px rgba(139,92,246,0.4),
                        0 0 80px rgba(139,92,246,0.1); }
  50%      { box-shadow: 0 0 60px rgba(139,92,246,0.6),
                        0 0 120px rgba(139,92,246,0.2); }
}

.hub-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ring-a {
  width: 170px;
  height: 170px;
  border: 1px dashed rgba(139,92,246,0.3);
}

.ring-b {
  width: 280px;
  height: 280px;
  border: 1px dashed rgba(6,182,212,0.2);
}

.ring-c {
  width: 390px;
  height: 390px;
  border: 1px dashed rgba(139,92,246,0.12);
}

.skill-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  animation: orbitSpin linear infinite;
  transform-origin: 0 0;
}

.s-orbit-1 { animation-duration: 9s;  animation-delay: 0s; }
.s-orbit-2 { animation-duration: 9s;  animation-delay: -4.5s; }
.s-orbit-3 { animation-duration: 15s; animation-delay: 0s; }
.s-orbit-4 { animation-duration: 15s; animation-delay: -5s; }
.s-orbit-5 { animation-duration: 15s; animation-delay: -10s; }
.s-orbit-6 { animation-duration: 22s; animation-delay: 0s; }
.s-orbit-7 { animation-duration: 22s; animation-delay: -7.3s; }
.s-orbit-8 { animation-duration: 22s; animation-delay: -14.6s; }

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

.skill-orb {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(15,15,26,0.85);
  border: 1px solid rgba(139,92,246,0.25);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  animation: counterSpin linear infinite;
  position: absolute;
}

.s-orbit-1 .skill-orb,
.s-orbit-2 .skill-orb {
  animation-duration: 9s;
  top: -21px;
  left: -21px;
  --r: 85px;
}

.s-orbit-3 .skill-orb,
.s-orbit-4 .skill-orb,
.s-orbit-5 .skill-orb {
  animation-duration: 15s;
  top: -21px;
  left: -21px;
  --r: 140px;
}

.s-orbit-6 .skill-orb,
.s-orbit-7 .skill-orb,
.s-orbit-8 .skill-orb {
  animation-duration: 22s;
  top: -21px;
  left: -21px;
  --r: 195px;
}

@keyframes counterSpin {
  from { transform: translateX(var(--r, 85px)) rotate(0deg); }
  to   { transform: translateX(var(--r, 85px)) rotate(-360deg); }
}

[data-theme="light"] .skill-orb {
  background: rgba(255,255,255,0.92);
  border-color: rgba(124,58,237,0.2);
}

.orb-html  i { color: #e44d26; }
.orb-css   i { color: #264de4; }
.orb-js    i { color: #f7df1e; }
.orb-react i { color: #61dafb; }
.orb-node  i { color: #68a063; }
.orb-mongo i { color: #47a248; }
.orb-python i { color: #3776ab; }
.orb-wp    i { color: #21759b; }

.section-title {
  font-size: 3rem;
  padding:10px 0px;
}

/* ============================================
   WHY VISUAL — Redesigned
   ============================================ */
.why-left-visual {
  position: relative;
  width: 100%;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-illustration {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background glow */
.why-glow-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(139,92,246,0.08) 0%,
    transparent 70%);
  animation: whyGlowPulse 4s ease-in-out infinite;
}

@keyframes whyGlowPulse {
  0%,100% { transform: scale(1);   opacity: 0.8; }
  50%      { transform: scale(1.1); opacity: 0.4; }
}

/* Center stat rings */
.why-center-stat {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.why-center-ring {
  position: absolute;
  border-radius: 50%;
  animation: wcrPulse 3s ease-in-out infinite;
}

.wring-1 {
  width: 140px; height: 140px;
  border: 2px solid rgba(139,92,246,0.3);
  animation-delay: 0s;
}
.wring-2 {
  width: 190px; height: 190px;
  border: 1px solid rgba(6,182,212,0.2);
  animation-delay: 0.5s;
}
.wring-3 {
  width: 240px; height: 240px;
  border: 1px solid rgba(139,92,246,0.1);
  animation-delay: 1s;
}

@keyframes wcrPulse {
  0%,100% { transform: scale(1);    opacity: 0.8; }
  50%      { transform: scale(1.04); opacity: 0.3; }
}

.why-center-content {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(139,92,246,0.2),
    rgba(6,182,212,0.15));
  border: 2px solid rgba(139,92,246,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow:
    0 0 40px rgba(139,92,246,0.25),
    inset 0 0 30px rgba(139,92,246,0.1);
  z-index: 3;
  position: relative;
  animation: centerFloat 4s ease-in-out infinite;
}

@keyframes centerFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.why-big-num {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg,
    var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.why-big-label {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 1.2;
}

/* Floating feature cards */
.why-feat-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 4;
}

[data-theme="light"] .why-feat-card {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 8px 30px rgba(139,92,246,0.1);
}

.why-feat-card:hover {
  border-color: rgba(139,92,246,0.3);
  transform: scale(1.05) !important;
  box-shadow: 0 12px 40px rgba(139,92,246,0.15);
}

.wfc-1 {
  top: 20px; left: 0px;
  animation: wfcFloat1 5s ease-in-out infinite 0s;
}
.wfc-2 {
  top: 20px; right: 0px;
  animation: wfcFloat2 6s ease-in-out infinite 0.8s;
}
.wfc-3 {
  bottom: 40px; left: 0px;
  animation: wfcFloat1 5.5s ease-in-out infinite 1.5s;
}
.wfc-4 {
  bottom: 40px; right: 0px;
  animation: wfcFloat2 4.8s ease-in-out infinite 0.4s;
}

@keyframes wfcFloat1 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes wfcFloat2 {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.wfc-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(234,179,8,0.12);
  color: #eab308;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.wfc-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.wfc-text span {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-primary);
}

.wfc-text small {
  font-size: 0.68rem;
  color: var(--text-secondary);
}

/* Fix why-bar visibility — override animations.js conflict */
.why-bar {
  height: 4px;
  background: rgba(139,92,246,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 10px;
}

.why-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: width 1.6s cubic-bezier(0.4,0,0.2,1) !important;
}

/* ============================================
   LIGHT MODE FIXES
   ============================================ */

/* Hero SVG text fix in light mode */
[data-theme="light"] .hero-svg text {
  fill: rgba(30,30,60,0.7) !important;
}

[data-theme="light"] .hero-svg .t-bracket {
  fill: #1a1a2e;
}

/* SVG node text in light mode */
[data-theme="light"] .hero-svg circle {
  opacity: 0.9;
}

/* Fix white icons showing in light mode */
[data-theme="light"] .svg-badge {
  background: rgba(139,92,246,0.1);
  border-color: rgba(139,92,246,0.2);
}

/* About floating icons in light mode */
[data-theme="light"] .about-float {
  background: rgba(255,255,255,0.92);
  border-color: rgba(124,58,237,0.2);
}

/* CTA orbit items light mode */
[data-theme="light"] .cta-orbit-item {
  background: rgba(255,255,255,0.9);
  border-color: rgba(124,58,237,0.2);
}

/* Hero visual light mode */
[data-theme="light"] .hero-visual-wrap {
  filter: drop-shadow(0 0 20px rgba(124,58,237,0.1));
}

/* Why feat cards light mode already handled above */

/* Skill orb light mode */
[data-theme="light"] .skill-orb {
  background: rgba(255,255,255,0.95);
}

/* Fix any white text on light mode SVG */
[data-theme="light"] .hero-svg text[fill="white"],
[data-theme="light"] .hero-svg text[fill="#ffffff"],
[data-theme="light"] .hero-svg text[fill="rgba(255,255,255,0.8)"] {
  fill: rgba(30,30,60,0.8) !important;
}

[data-theme="light"] .hero-svg text[fill="rgba(255,255,255,0.6)"] {
  fill: rgba(30,30,60,0.5) !important;
}

/* Why center content light mode */
[data-theme="light"] .why-center-content {
  background: linear-gradient(135deg,
    rgba(139,92,246,0.12),
    rgba(6,182,212,0.08));
}

/* ── CRITICAL FIX: Why cards visibility ── */
.why-card {
  opacity: 1 !important;
  transform: none !important;
}

.why-card:hover {
  border-color: rgba(139,92,246,0.3);
  transform: translateX(6px) !important;
  box-shadow: 0 8px 30px rgba(139,92,246,0.1);
}

/* ==========================================================
   ZOOM SCENE
========================================================== */

.zoom-scene{
    position:relative;
    height:180vh;
    background:var(--color-bg);
}

.zoom-pin{

    position:sticky;
    top:0;

    width:100%;
    height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;

}

.zoom-logo{

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    gap:.06em;

    z-index:10;

}

.letter{

    display:block;

    font-size:clamp(6rem,18vw,18rem);

    font-weight:900;

    line-height:.8;

    color:white;

    will-change:transform,opacity;

    transform-origin:center center;

}

.letter-o{

    position:relative;

    z-index:20;

}

.about-stage{

    position:absolute;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    pointer-events:none;

    opacity:0;

    z-index:5;

}

.about-stage-inner{

    width:min(1200px,90vw);

    transform:scale(.75);

    opacity:0;

    transform-origin:center center;

    will-change:transform,opacity;

}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.home-testimonials {
  position: relative;
  padding: 120px 28px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  overflow: hidden;
}

.home-testimonials .dot-grid {
  position: absolute;
  top: 36px;
  right: 40px;
  width: 220px;
  height: 150px;
  background-image: radial-gradient(var(--border-color) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.6;
  pointer-events: none;
}

.home-testimonials .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.home-testimonials .label-line {
  width: 28px;
  height: 2px;
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
}

.testi-header {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.testi-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
  margin: 14px 0 0;
  max-width: 480px;
}

.testi-nav {
  display: flex;
  gap: 12px;
}

.testi-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.95rem;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.testi-arrow:hover {
  transform: translateY(-2px);
}

.testi-arrow-active {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  border: none;
  color: #fff;
  box-shadow: 0 8px 24px var(--accent-glow);
}

/* Stage */
.testi-stage {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.testi-photo-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.testi-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.testi-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.testi-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 18px 0 4px;
}

.testi-role {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Quote */
.testi-quote-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 24px;
}

.testi-quote-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px 40px;
  backdrop-filter: blur(10px);
}

.testi-quote-icon {
  display: block;
  color: var(--accent-purple);
  font-size: 1.4rem;
  opacity: 0.6;
  margin-bottom: 14px;
}

.testi-quote-text {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.7;
  color: var(--text-primary);
  font-weight: 500;
}

.testi-quote-text strong {
  color: var(--accent-purple);
}

.testi-counter {
  align-self: flex-start;
  font-family: 'Orbitron', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--accent-cyan);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 8px 20px;
}

/* Thumbnails */
.testi-thumbs {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 40px auto 0;
  display: flex;
  gap: 16px;
  padding-left: 368px;
}

.testi-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  background: var(--bg-card);
  cursor: pointer;
  padding: 0;
  opacity: 0.55;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.testi-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testi-thumb:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.testi-thumb.active {
  opacity: 1;
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Responsive */
@media (max-width: 900px) {
  .testi-stage { grid-template-columns: 260px 1fr; gap: 32px; }
  .testi-thumbs { padding-left: 292px; }
}

@media (max-width: 768px) {
  .home-testimonials { padding: 90px 20px; }
  .home-testimonials .dot-grid { display: none; }
  .testi-header { justify-content: center; text-align: center; }
  .testi-header > div { max-width: 100%; }
  .testi-headline { max-width: 100%; }
  .testi-stage { grid-template-columns: 1fr; }
  .testi-photo-card { max-width: 220px; margin: 0 auto; }
  .testi-quote-block { padding-top: 8px; align-items: center; text-align: center; }
  .testi-quote-card { padding: 28px 24px; }
  .testi-counter { align-self: center; }
  .testi-thumbs { padding-left: 0; justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .testi-photo-card { max-width: 180px; padding: 14px; }
  .testi-thumb { width: 52px; height: 52px; border-radius: 12px; }
  .testi-arrow { width: 42px; height: 42px; }
  .testi-quote-card { padding: 24px 18px; }
}

/* ============================================
   OUR PHILOSOPHY SECTION
   ============================================ */
.philosophy {
  position: relative;
  padding: 120px 28px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.philosophy .section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.philosophy .label-line {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-cyan));
}

.philo-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  max-width: 880px;
  margin: 18px auto 80px;
  color: var(--text-primary);
}

/* Layout: badge | orbit | badge */
.philo-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  gap: 24px;
}

/* Badges */
.philo-badge {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  padding: 6px;
  background: conic-gradient(var(--accent-purple), var(--accent-cyan) 100%, var(--border-color) 100% 100%);
}

.philo-badge-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.philo-badge-num {
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.philo-badge-caption {
  font-size: 0.68rem;
  text-align: center;
  max-width: 96px;
  line-height: 1.3;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Orbit */
.philo-orbit {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.philo-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 39.58%;
  height: 1px;
  background: linear-gradient(90deg, var(--border-color), transparent);
  transform-origin: left center;
}

.philo-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(139,92,246,0.25), rgba(6,182,212,0.08));
  border: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 60px var(--accent-glow);
  font-size: 1.6rem;
  color: var(--accent-purple);
}

.philo-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.philo-node-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  color: var(--accent-purple);
  font-size: 1.1rem;
}

.philo-node-icon.philo-cyan { color: var(--accent-cyan); }

.philo-node-label {
  font-family: 'Orbitron', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Taglines row */
.philo-taglines {
  max-width: 1100px;
  margin: 96px auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.philo-tag {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 26px 20px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.philo-tag:hover {
  transform: translateY(-6px);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow);
}

.philo-tag.philo-cyan:hover {
  border-color: var(--accent-cyan);
}

/* connecting stem + dot, rising toward the diagram above */
.philo-tag::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--accent-purple), transparent);
}

.philo-tag::after {
  content: '';
  position: absolute;
  bottom: calc(100% + 28px);
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-purple);
  box-shadow: 0 0 8px var(--accent-glow);
}

.philo-tag.philo-cyan::before {
  background: linear-gradient(180deg, var(--accent-cyan), transparent);
}

.philo-tag.philo-cyan::after {
  background: var(--accent-cyan);
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.4);
}

.philo-tag h5 {
  font-family: 'Orbitron', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 10px;
}

.philo-tag.philo-cyan h5 {
  color: var(--accent-cyan);
}

.philo-tag p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-secondary);
}


/* Closer */
.philo-rule {
  max-width: 200px;
  margin: 64px auto 24px;
  border: none;
  border-top: 1px solid var(--border-color);
}

.philo-closer {
  text-align: center;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
  .philo-layout { grid-template-columns: 1fr; gap: 40px; }
  .philo-taglines { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .philosophy { padding: 90px 20px; }
  .philo-headline { margin-bottom: 56px; }
  .philo-taglines { grid-template-columns: 1fr; text-align: center; }
  .philo-node-icon { width: 46px; height: 46px; font-size: 0.95rem; }
  .philo-node-label { font-size: 0.6rem; }
  .philo-core { width: 76px; height: 76px; font-size: 1.3rem; }
  .philo-badge { width: 110px; height: 110px; }
}

.tech-why-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
  margin-top: 48px;
}

.tw-col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.tw-col-title i { color: var(--accent-purple); font-size: 0.95rem; }
.tw-why .tw-col-title i { color: var(--accent-cyan); }
.tw-tools .home-tech-pills { margin-top: 28px; }

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

.large-az-text{
  font-family: 'Orbitron', monospace;
  font-size:120px;
  color:var(--accent-purple);
  margin-bottom:50px;
  opacity:0.1;
  font-weight:900;

}