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

:root {
  --bg:      #fafaf8;
  --bg2:     #f2f0ec;
  --bg3:     #ebebeb;
  --border:  rgba(0,0,0,0.1);
  --accent:  #1e3a5f;
  --accent2: #2563eb;
  --accent3: #0369a1;
  --neon:    #2563eb;
  --text:    #111111;
  --muted:   #6b7280;
  --card:    #ffffff;
  --shadow:  0 2px 24px rgba(0,0,0,0.07);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* Classic serif headings */
h1, h2, h3, .hero-title, .section-header h2, .about-text h2,
.contact-text h2, .founder-name {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.01em;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--accent), var(--accent3)); border-radius: 4px; }

/* ── LOADER ── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem; font-weight: 700;
  letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 32px;
  animation: loaderPulse 1s ease-in-out infinite alternate;
}
.loader-logo span { color: var(--accent); }
@keyframes loaderPulse { from { opacity: 0.6; } to { opacity: 1; } }
.loader-bar {
  width: 240px; height: 2px;
  background: rgba(0,0,0,0.08);
  border-radius: 2px; overflow: hidden; margin: 0 auto 16px;
}
.loader-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  border-radius: 2px;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px var(--accent);
}
.loader-pct { color: var(--muted); font-size: 0.75rem; letter-spacing: 0.1em; }

/* ── CUSTOM CURSOR ── */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, opacity 0.3s;
  box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(99,102,241,0.5);
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9997;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.5);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.2s, height 0.2s, border-color 0.2s, opacity 0.3s;
}
.cursor-ring.hover {
  width: 56px; height: 56px;
  border-color: var(--accent);
  background: rgba(99,102,241,0.06);
}
body:not(:hover) .cursor-dot,
body:not(:hover) .cursor-ring { opacity: 0; }

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent3), var(--accent2));
  transform-origin: left;
  transform: scaleX(0);
  z-index: 2000;
  box-shadow: 0 0 8px var(--accent);
}

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(99,102,241,0.3);
  border-radius: 100px;
  background: rgba(99,102,241,0.06);
}
.section-header { text-align: center; margin-bottom: 72px; }
.section-header h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 16px; }
.section-sub { color: var(--muted); max-width: 500px; margin: 0 auto; line-height: 1.8; }

/* ── REVEAL ANIMATIONS ── */
.reveal, .reveal-hero {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible, .reveal-hero.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; padding: 14px 28px; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: none; cursor: none; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn-primary:hover { box-shadow: 0 0 40px rgba(99,102,241,0.5), 0 8px 32px rgba(0,0,0,0.3); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary.full-width { width: 100%; justify-content: center; padding: 16px; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid var(--border); color: var(--text);
  padding: 14px 28px; border-radius: 12px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: all 0.3s; background: rgba(0,0,0,0.02); cursor: none;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); background: rgba(99,102,241,0.06); }

.btn-nav {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; padding: 10px 22px; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600; text-decoration: none;
  transition: all 0.3s; cursor: none; position: relative; overflow: hidden;
}
.btn-nav:hover { box-shadow: 0 0 24px rgba(99,102,241,0.4); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  padding: 12px 0;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.4rem; text-decoration: none;
  color: var(--text); letter-spacing: -0.02em; white-space: nowrap;
  position: relative; cursor: none;
}
.logo span { color: var(--accent); }
.logo-icon { width: 42px; height: 42px; margin-right: 10px; vertical-align: middle; display: inline-block; position: relative; top: -1px; }
.logo::after {
  content: attr(data-glitch);
  position: absolute; left: 0; top: 0;
  color: var(--accent3);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  opacity: 0;
  transform: translate(-2px, 0);
}
.logo:hover::after { animation: glitch 0.4s steps(1) forwards; }
@keyframes glitch {
  0%   { opacity: 0.8; transform: translate(-2px, 0); }
  20%  { opacity: 0.8; transform: translate(2px, 1px); }
  40%  { opacity: 0; }
  60%  { opacity: 0.6; transform: translate(-1px, -1px); }
  80%  { opacity: 0; }
  100% { opacity: 0; }
}
.nav-links { display: flex; list-style: none; gap: 32px; margin: 0 auto; }
.nav-link {
  color: var(--muted); text-decoration: none; font-size: 0.875rem;
  font-weight: 500; transition: color 0.2s; cursor: none; position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--accent); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: right;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; flex-direction: column; gap: 0; background: rgba(255,255,255,0.98); border-top: 1px solid var(--border); padding: 16px 24px; backdrop-filter: blur(20px); }
.mobile-menu a { color: var(--text); text-decoration: none; font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 140px 24px 100px;
}
#canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }

/* Aurora blobs */
.aurora { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.aurora-blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.28;
  animation: auroraMove 12s ease-in-out infinite alternate;
}
.a1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,0.35), transparent 70%);
  top: -200px; left: -150px;
  animation-duration: 14s;
}
.a2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(14,165,233,0.25), transparent 70%);
  bottom: -100px; right: -100px;
  animation-duration: 10s; animation-delay: -4s;
}
.a3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.2), transparent 70%);
  top: 30%; left: 60%;
  animation-duration: 16s; animation-delay: -8s;
}
@keyframes auroraMove {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.1); }
  66%  { transform: translate(-20px, 40px) scale(0.95); }
  100% { transform: translate(30px, 20px) scale(1.05); }
}

/* Two-column hero layout */
.hero-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  align-items: center;
  width: 100%;
}
.hero-photo-col { display: flex; align-items: center; justify-content: flex-start; }
.hero-img-wrap {
  position: relative;
  width: 100%; max-width: 540px;
  margin-left: -140px;
}
.hero-tech-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  position: relative; z-index: 1;
}
.hero-img-glow {
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse at center, rgba(30,58,95,0.12) 0%, transparent 70%);
  border-radius: 40px;
  filter: blur(20px);
  z-index: 0;
  pointer-events: none;
}
.hero-text-col { text-align: left; padding-left: 40px; }

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.2);
  color: var(--accent); padding: 8px 20px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

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

.hero-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 520px;
  margin: 0 0 48px; line-height: 1.85;
}
.hero-btns { display: flex; gap: 16px; justify-content: flex-start; flex-wrap: wrap; margin-bottom: 0; }

.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
  padding: 28px 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  backdrop-filter: blur(12px);
}
.stat { text-align: center; }
.stat-num { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-num .num { font-size: 2.2rem; font-weight: 800; color: #fff; font-family: 'Space Grotesk', sans-serif; }
.stat-num .plus { font-size: 1.5rem; font-weight: 700; color: var(--accent); }
.stat p { color: var(--muted); font-size: 0.75rem; margin-top: 4px; letter-spacing: 0.08em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 44px; background: var(--border); }

.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
}
.mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(0,0,0,0.15); border-radius: 11px;
  display: flex; justify-content: center; padding-top: 6px;
}
.mouse span {
  display: block; width: 3px; height: 7px;
  background: var(--accent); border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: 0.2; } }

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  padding: 20px 0;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.marquee-track {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
  transition: color 0.3s;
}
.marquee-track span:hover { color: var(--accent); }
.marquee-track .dot { color: var(--accent); font-size: 0.5rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SERVICES ── */
.services { padding: 130px 0; background: var(--bg2); position: relative; overflow: hidden; }
.services::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
}

/* ── FLIP CARD SYSTEM ── */
.flip-wrapper {
  perspective: 1200px;
  min-height: 480px;
}
.flip-card {
  position: relative;
  width: 100%; height: 100%; min-height: 480px;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.4, 0.2, 0.2, 1);
  cursor: none;
}
/* JS adds .is-flipped on mouseenter — wrapper never transforms so hover zone stays stable */
.flip-wrapper.is-flipped .flip-card {
  transform: rotateY(180deg);
}
.card-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 24px;
}

/* FRONT face */
.card-front {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 36px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}
.flip-wrapper:hover .card-front,
.flip-wrapper.is-flipped .card-front {
  border-color: rgba(99,102,241,0.3);
  box-shadow: 0 8px 40px rgba(99,102,241,0.12), 0 2px 12px rgba(0,0,0,0.06);
}
.flip-card.featured .card-front {
  border-color: rgba(99,102,241,0.25);
  background: linear-gradient(145deg, rgba(99,102,241,0.04) 0%, var(--card) 60%);
}

/* BACK face — scrollable so all content is visible */
.card-back {
  background: linear-gradient(145deg, #f8f8ff, #f0f0fa);
  border: 1px solid rgba(99,102,241,0.2);
  padding: 28px;
  transform: rotateY(180deg);
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 8px 40px rgba(99,102,241,0.1);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(99,102,241,0.3) transparent;
}
.card-back::-webkit-scrollbar { width: 4px; }
.card-back::-webkit-scrollbar-track { background: transparent; }
.card-back::-webkit-scrollbar-thumb { background: rgba(99,102,241,0.3); border-radius: 4px; }
.card-back::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
  border-radius: 24px 24px 0 0;
  z-index: 1;
}

/* close button — hidden, hover handles closing */
.flip-close { display: none; }

/* back content */
.back-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.25);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.back-icon svg { width: 18px; height: 18px; }
.card-back h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.back-desc { color: var(--muted); font-size: 0.82rem; line-height: 1.65; }
.back-details { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.back-item {
  display: flex; flex-direction: column; gap: 2px;
  padding: 7px 12px; border-radius: 9px;
  background: rgba(99,102,241,0.04); border: 1px solid rgba(99,102,241,0.1);
}
.back-label {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent);
}
.back-item span:last-child { font-size: 0.78rem; color: #3a3a4a; line-height: 1.4; }
.back-cta {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; padding: 11px 20px; border-radius: 10px;
  font-weight: 600; font-size: 0.85rem; text-decoration: none;
  transition: all 0.3s; flex-shrink: 0;
}
.back-cta:hover { box-shadow: 0 0 24px rgba(99,102,241,0.5); }

/* flip hint on front */
.flip-hint {
  position: absolute; bottom: 16px; right: 20px;
  font-size: 0.7rem; color: rgba(99,102,241,0.45);
  font-weight: 500; display: flex; align-items: center; gap: 4px;
  transition: color 0.3s; z-index: 3;
}
.flip-hint span { font-size: 0.8rem; }
.flip-wrapper:hover .flip-hint { color: var(--accent); }

/* shine overlay */
.card-shine {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  border-radius: 24px;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.04), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.flip-wrapper:not(.is-flipped):hover .card-shine { opacity: 1; }

/* animated border */
.card-border-glow {
  position: absolute; inset: -1px; z-index: 0; border-radius: 24px;
  background: linear-gradient(var(--angle, 0deg), var(--accent), transparent, var(--accent3), transparent);
  opacity: 0; transition: opacity 0.4s;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude; padding: 1px;
}
.flip-wrapper:not(.is-flipped):hover .card-border-glow { opacity: 1; animation: borderSpin 3s linear infinite; }
@keyframes borderSpin { to { --angle: 360deg; } }
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }

.featured-tag {
  display: inline-block; background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
  position: relative; z-index: 2;
}
.card-icon {
  width: 52px; height: 52px;
  background: rgba(99,102,241,0.1); border: 1px solid rgba(99,102,241,0.2);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--accent);
  position: relative; z-index: 2;
  transition: all 0.3s;
}
.flip-wrapper:not(.is-flipped):hover .card-icon {
  background: rgba(99,102,241,0.2);
  box-shadow: 0 0 20px rgba(99,102,241,0.3);
}
.card-icon svg { width: 22px; height: 22px; }
.card-front h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; position: relative; z-index: 2; }
.card-front > p { color: var(--muted); font-size: 0.875rem; line-height: 1.75; margin-bottom: 20px; position: relative; z-index: 2; }
.card-front ul { list-style: none; display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 2; }
.card-front ul li { color: var(--muted); font-size: 0.825rem; padding-left: 16px; position: relative; }
.card-front ul li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.card-number {
  position: absolute; bottom: 24px; right: 28px; z-index: 2;
  font-size: 3.5rem; font-weight: 900; letter-spacing: -0.06em;
  color: rgba(255,255,255,0.03); font-family: 'Space Grotesk', sans-serif;
  line-height: 1; user-select: none;
  transition: color 0.3s;
}
.flip-wrapper:not(.is-flipped):hover .card-number { color: rgba(99,102,241,0.07); }

/* ── ABOUT ── */
.about { padding: 130px 0; background: var(--bg); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }

/* Orb visual */
.about-visual {
  position: relative; min-height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.orb-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.15);
  animation: orbitSpin 20s linear infinite;
}
.r1 { width: 360px; height: 360px; animation-duration: 24s; }
.r2 { width: 260px; height: 260px; border-style: dashed; border-color: rgba(14,165,233,0.2); animation-duration: 16s; animation-direction: reverse; }
.r3 { width: 160px; height: 160px; border-color: rgba(139,92,246,0.2); animation-duration: 10s; }
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.orb-core {
  position: relative; z-index: 2;
  width: 160px; height: 160px;
  background: radial-gradient(circle at 35% 35%, rgba(139,92,246,0.6), rgba(99,102,241,0.3));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(99,102,241,0.4), 0 0 80px rgba(99,102,241,0.2), inset 0 0 30px rgba(255,255,255,0.05);
  animation: orbPulse 4s ease-in-out infinite;
}
.orb-core svg { position: absolute; width: 200px; height: 200px; }
.orb-logo {
  width: 100px; height: 100px;
  object-fit: contain;
  position: relative; z-index: 1;
  filter: brightness(0) invert(1);
  drop-shadow: 0 0 20px rgba(255,255,255,0.5);
}
.orb-core > span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem; font-weight: 700; color: #fff;
  position: relative; z-index: 1;
  text-shadow: 0 0 20px rgba(255,255,255,0.5);
}
@keyframes orbPulse {
  0%,100% { box-shadow: 0 0 40px rgba(99,102,241,0.4), 0 0 80px rgba(99,102,241,0.2); }
  50% { box-shadow: 0 0 60px rgba(99,102,241,0.6), 0 0 120px rgba(99,102,241,0.3); }
}

.orbit-dot {
  position: absolute; width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.od1 { animation: orbit1 6s linear infinite; }
.od2 { background: var(--accent3); box-shadow: 0 0 12px var(--accent3); animation: orbit2 10s linear infinite; }
.od3 { background: var(--accent2); box-shadow: 0 0 12px var(--accent2); animation: orbit3 8s linear infinite reverse; }
@keyframes orbit1 {
  from { transform: rotate(0deg) translateX(180px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}
@keyframes orbit2 {
  from { transform: rotate(45deg) translateX(130px) rotate(-45deg); }
  to   { transform: rotate(405deg) translateX(130px) rotate(-405deg); }
}
@keyframes orbit3 {
  from { transform: rotate(90deg) translateX(80px) rotate(-90deg); }
  to   { transform: rotate(450deg) translateX(80px) rotate(-450deg); }
}

.about-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; margin-bottom: 24px; }
.about-text p { color: var(--muted); line-height: 1.9; margin-bottom: 16px; font-size: 0.95rem; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 40px; }
.feat { display: flex; align-items: center; gap: 14px; font-size: 0.9rem; font-weight: 500; }
.feat-check {
  width: 24px; height: 24px; border-radius: 8px; flex-shrink: 0;
  background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: var(--accent); font-weight: 700;
}

/* ── APPLE GRID (Services & Products) ── */
.apple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 56px;
  justify-content: center;
}
.apple-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 24px 16px 20px;
  width: 148px;
  background: var(--card);
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}
.apple-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.apple-item span {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  line-height: 1.35;
}
.apple-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.apple-icon svg { width: 36px; height: 36px; }

/* per-icon color themes */
.ai-webdev    { background: #e8f0ff; } .ai-webdev    svg { stroke: #3b82f6; }
.ai-cloud     { background: #e0f7ff; } .ai-cloud     svg { stroke: #0ea5e9; }
.ai-aiml      { background: #f3e8ff; } .ai-aiml      svg { stroke: #8b5cf6; }
.ai-mobile    { background: #e8fff0; } .ai-mobile    svg { stroke: #10b981; }
.ai-cyber     { background: #fff0e8; } .ai-cyber     svg { stroke: #f97316; }
.ai-strategy  { background: #fffbe8; } .ai-strategy  svg { stroke: #d97706; }
.ai-uiux      { background: #ffe8f5; } .ai-uiux      svg { stroke: #ec4899; }
.ai-data      { background: #e8ecff; } .ai-data      svg { stroke: #6366f1; }
.ai-enterprise{ background: #f0f2f5; } .ai-enterprise svg { stroke: #64748b; }
.ai-panel     { background: #eeeeff; } .ai-panel     svg { stroke: #4f46e5; }
.ai-glucloud  { background: #dff6ff; } .ai-glucloud  svg { stroke: #0284c7; }
.ai-gluai     { background: #f5e8ff; } .ai-gluai     svg { stroke: #9333ea; }

@media (max-width: 600px) {
  .apple-item { width: 110px; padding: 18px 10px 14px; }
  .apple-icon { width: 60px; height: 60px; }
  .apple-icon svg { width: 28px; height: 28px; }
}

/* ── PRODUCTS ── */
.products-section {
  padding: 120px 0;
  background: var(--bg2);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.product-card--featured {
  border-color: var(--accent2);
  background: linear-gradient(145deg, #fff, #f0f4ff);
}
.product-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent2);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.product-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(3,105,161,0.1));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.product-icon svg { width: 26px; height: 26px; stroke: var(--accent2); }
.product-content { flex: 1; }
.product-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent2);
  background: rgba(37,99,235,0.08);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.product-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  color: var(--text);
  margin-bottom: 10px;
}
.product-content p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.product-features li {
  font-size: 0.88rem;
  color: var(--text);
  padding-left: 18px;
  position: relative;
}
.product-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--accent2);
  font-weight: 700;
}
.product-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent2);
  text-decoration: none;
  transition: gap 0.2s;
  gap: 4px;
  margin-top: auto;
}
.product-cta:hover { gap: 8px; }

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

/* ── DETAIL PAGES ── */
.detail-page { min-height: 100vh; }
.detail-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: var(--bg);
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--accent2); }
.detail-hero-icon {
  width: 96px; height: 96px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 28px;
}
.detail-hero-icon svg { width: 48px; height: 48px; }
.detail-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--text);
  margin-bottom: 18px;
}
.detail-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.detail-overview {
  padding: 80px 0;
  background: var(--bg2);
}
.detail-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.detail-feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 26px;
  box-shadow: var(--shadow);
}
.df-icon { font-size: 2rem; margin-bottom: 14px; }
.detail-feature h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 8px;
  font-family: 'Playfair Display', Georgia, serif;
}
.detail-feature p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }
.detail-specs { padding: 80px 0; background: var(--bg); }
.detail-specs h2 { font-size: 1.8rem; margin-bottom: 32px; color: var(--text); }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.spec-item {
  background: var(--card);
  padding: 22px 26px;
  display: flex; flex-direction: column; gap: 5px;
}
.spec-label {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent2);
}
.spec-value { font-size: 0.93rem; color: var(--text); }
.detail-cta-section {
  padding: 100px 0;
  text-align: center;
  background: var(--bg2);
}
.detail-cta-section h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--text); margin-bottom: 14px;
}
.detail-cta-section p { font-size: 1rem; color: var(--muted); margin-bottom: 34px; }
.detail-footer-simple {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.detail-footer-simple p { font-size: 0.85rem; color: var(--muted); }
@media (max-width: 768px) {
  .detail-features-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
}

/* ── FOUNDER ── */
.founder-section {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.founder-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.founder-card {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(99,102,241,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.founder-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
  border-radius: 32px 32px 0 0;
}

/* Photo side */
.founder-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.founder-photo-glow {
  position: absolute;
  width: 320px; height: 420px;
  background: radial-gradient(ellipse, rgba(99,102,241,0.25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  z-index: 0;
}
.founder-photo {
  width: 320px;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  border-radius: 24px;
  border: 1px solid rgba(99,102,241,0.3);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04);
  position: relative; z-index: 1;
}
.founder-badge {
  position: absolute;
  bottom: -14px; right: -14px;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(99,102,241,0.5);
  z-index: 2;
  border: 2px solid rgba(255,255,255,0.08);
}
.founder-badge-logo {
  width: 34px; height: 34px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Content side */
.founder-content { position: relative; z-index: 1; }
.founder-name {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 8px 0 6px;
  font-family: 'Space Grotesk', sans-serif;
}
.founder-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.founder-bio {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.founder-stats {
  display: flex;
  gap: 40px;
  margin: 32px 0 36px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.founder-stat { display: flex; flex-direction: column; gap: 4px; }
.founder-stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
}
.founder-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 960px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 40px 28px;
  }
  .founder-photo-wrap { justify-content: flex-start; }
  .founder-photo { width: 100%; height: 340px; }
  .founder-photo-glow { width: 100%; }
  .founder-stats { gap: 24px; }
}

/* ── WORK ── */
.work { padding: 130px 0; background: var(--bg2); position: relative; overflow: hidden; }
.work::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent3), transparent);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.project-card { border-radius: 24px; overflow: hidden; position: relative; cursor: none; }
.project-card.large { grid-row: span 2; }
.project-img {
  width: 100%; height: 100%; min-height: 220px;
  position: relative; overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-card.large .project-img { min-height: 480px; }
.project-card:hover .project-img { transform: scale(1.03); }
.project-glow {
  position: absolute; inset: 0;
  background: inherit;
  filter: blur(30px) brightness(1.5);
  opacity: 0; transform: scale(1.2);
  transition: opacity 0.4s;
}
.project-card:hover .project-glow { opacity: 0.15; }
.project-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
  transform: translateY(8px);
  transition: transform 0.3s;
}
.project-card:hover .project-overlay { transform: translateY(0); }
.project-cat {
  display: inline-block;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  color: #fff; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px; margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.1);
}
.project-overlay h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.project-overlay p { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-bottom: 12px; }
.project-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  color: #fff; font-size: 1.1rem;
  transform: translateX(-8px); opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.project-card:hover .project-arrow { transform: translateX(0); opacity: 1; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 130px 0; background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
}
.testi-card::before {
  content: '"';
  position: absolute; top: 16px; right: 24px;
  font-size: 6rem; line-height: 1; color: rgba(99,102,241,0.06);
  font-family: 'Space Grotesk', sans-serif; font-weight: 900;
  pointer-events: none;
}
.testi-card:hover {
  transform: translateY(-6px);
  border-color: rgba(99,102,241,0.25);
  box-shadow: 0 12px 40px rgba(99,102,241,0.1), 0 2px 12px rgba(0,0,0,0.05);
}
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; color: #fff; flex-shrink: 0;
}
.av1 { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.av2 { background: linear-gradient(135deg, #0ea5e9, #6366f1); }
.av3 { background: linear-gradient(135deg, #10b981, #0ea5e9); }
.testi-author strong { display: block; font-size: 0.875rem; font-weight: 600; }
.testi-author span { color: var(--muted); font-size: 0.775rem; }

/* ── CONTACT ── */
.contact { padding: 130px 0; background: var(--bg2); position: relative; overflow: hidden; }
.contact::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent2), transparent);
}
.contact-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.contact-text > p { color: var(--muted); line-height: 1.9; margin-bottom: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.info-item { display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: 0.9rem; }
.info-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.info-item:hover span { color: var(--text); }

.contact-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 28px; padding: 44px;
  position: relative; overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(99,102,241,0.12), transparent 70%);
  pointer-events: none;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 0.72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg2); border: 1.5px solid var(--border);
  color: var(--text); padding: 14px 16px; border-radius: 12px;
  font-size: 0.875rem; font-family: inherit; outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(99,102,241,0.04);
  box-shadow: 0 0 0 3px rgba(99,102,241,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none; text-align: center;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.25);
  color: #34d399; padding: 14px; border-radius: 12px;
  margin-top: 16px; font-size: 0.875rem; font-weight: 500;
}
.form-success.show { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* ── FOOTER ── */
.footer { background: var(--bg); padding: 72px 0 0; }
.footer-top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent3), transparent);
  margin-bottom: 72px;
}
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--border); }
.footer-brand p { color: var(--muted); font-size: 0.875rem; margin-top: 12px; max-width: 220px; line-height: 1.7; }
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(0,0,0,0.04); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); cursor: none;
  transition: all 0.3s;
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { background: rgba(99,102,241,0.12); border-color: rgba(99,102,241,0.3); color: var(--accent); box-shadow: 0 0 16px rgba(99,102,241,0.2); }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text); margin-bottom: 6px; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; cursor: none; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { padding: 24px; text-align: center; color: var(--muted); font-size: 0.78rem; }

/* ── MAGNETIC BUTTON EFFECT ── */
.magnetic { transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.large { grid-row: span 1; }
  .project-card.large .project-img { min-height: 320px; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo-col { order: -1; }
  .hero-img-wrap { max-width: 100%; }
  .hero-text-col { text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
}
@media (max-width: 700px) {
  .nav-links, .btn-nav { display: none; }
  .burger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 32px; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none; }
}
