/* ============================================================
   MAYUR GITE — AI PORTFOLIO THEME
   style.css  |  Edit freely — one place controls everything
   ============================================================ */

/* ── 1. GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── 2. THEME VARIABLES ── Easy to customise colours here */
:root {
  /* Backgrounds */
  --bg:        #070a12;
  --bg2:       #0d1020;
  --bg3:       #111524;
  --surface:   #141828;
  --surface2:  #1a1f35;

  /* Borders */
  --border:    rgba(99, 120, 255, 0.15);
  --border2:   rgba(99, 120, 255, 0.28);

  /* Accent colours */
  --accent:    #5b6ef5;
  --accent2:   #8b5cf6;
  --accent3:   #06b6d4;

  /* Text colours */
  --text:      #e8ecff;
  --text2:     #9aa0c4;
  --text3:     #5d6389;

  /* Glow colours */
  --glow:      rgba(91, 110, 245, 0.40);
  --glow2:     rgba(139, 92, 246, 0.30);

  /* Layout */
  --nav-height: 65px;
  --container:  1200px;
  --radius:     16px;
  --radius-sm:  10px;
}

/* ── 3. RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  padding-top: var(--nav-height);
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0; opacity: .4;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── 4. STAR BACKGROUND ── */
.stars { position: fixed; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.star  {
  position: absolute; background: #fff; border-radius: 50%;
  animation: twinkle var(--d, 3s) var(--delay, 0s) infinite alternate;
}
@keyframes twinkle {
  0%   { opacity: .1; transform: scale(1); }
  100% { opacity: .7; transform: scale(1.4); }
}

/* ── 5. LAYOUT HELPERS ── */
.container     { max-width: var(--container); margin: 0 auto; padding: 0 5%; }
.section-pad   { padding: 90px 5%; position: relative; z-index: 1; }
.section-bg2   { background: var(--bg2); }

/* Section headers */
.section-eyebrow {
  font-size: .75rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent); font-weight: 600; margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; letter-spacing: -.03em; margin-bottom: 14px;
}
.section-sub {
  color: var(--text2); font-size: 1rem; font-weight: 300; line-height: 1.7;
  max-width: 560px;
}
.section-header-center { text-align: center; margin-bottom: 56px; }
.section-header-center .section-sub { margin: 0 auto; }

.divider {
  width: 56px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  margin: 12px 0 20px;
}
.divider-center { margin: 12px auto 20px; }

/* Grid utilities */
.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Ambient glow blobs */
.glow-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.glow-blob.g1 { width: 500px; height: 500px; background: rgba(91,110,245,.10); top: -100px; left: -100px; }
.glow-blob.g2 { width: 400px; height: 400px; background: rgba(139,92,246,.08); bottom: -80px; right: 8%; }
.glow-blob.g3 { width: 300px; height: 300px; background: rgba(6,182,212,.06);  top: 30%; right: -50px; }

/* ── 6. BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 9px;
  font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: .9rem;
  cursor: pointer; text-decoration: none; transition: all .25s; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; box-shadow: 0 0 22px var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 38px var(--glow); }

.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid var(--border2);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(91,110,245,.07); }

.btn-sm { padding: 8px 18px; font-size: .82rem; }

/* ── 7. NAVIGATION ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: var(--nav-height);
  background: rgba(7,10,18,.88); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.1rem;
  letter-spacing: -.02em; color: var(--text);
}
.nav-logo .accent { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: .88rem; font-weight: 500; color: var(--text2);
  text-decoration: none; transition: color .2s; letter-spacing: .02em;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--text2); border-radius: 2px; transition: .3s; }
@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; inset: 0; top: var(--nav-height);
    background: rgba(7,10,18,.97); flex-direction: column;
    align-items: center; justify-content: center; gap: 32px;
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}

/* ── 8. HERO v2 (reference-image style — dashboard mockup right) ── */
.hero-v2 {
  position: relative; min-height: calc(100vh - var(--nav-height));
  display: flex; align-items: center; overflow: hidden; padding: 80px 5%;
}
.hero-v2-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px;
  align-items: center; max-width: var(--container); margin: 0 auto; width: 100%;
  position: relative; z-index: 1;
}
@media (max-width: 900px) {
  .hero-v2-grid { grid-template-columns: 1fr; }
  .hero-v2-visual { display: none; }
}

/* Badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,110,245,.1); border: 1px solid rgba(91,110,245,.35);
  padding: 6px 16px; border-radius: 100px; font-size: .77rem;
  color: #a5b4fc; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 26px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #818cf8;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.3; } }

/* Hero headline */
.hero-v2 h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -.03em; margin-bottom: 20px;
}
.hero-v2 h1 .grad {
  background: linear-gradient(120deg, #818cf8, #38bdf8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-v2 p { color: var(--text2); font-size: 1rem; font-weight: 300; line-height: 1.75; max-width: 460px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

/* Trust strip */
.trust-strip { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.trust-chip  { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--text3); }
.trust-dot   { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.trust-dot.green  { background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,.5); }
.trust-dot.blue   { background: #38bdf8; box-shadow: 0 0 8px rgba(56,189,248,.5); }
.trust-dot.purple { background: #818cf8; box-shadow: 0 0 8px rgba(129,140,248,.5); }
.trust-sep { width: 1px; height: 16px; background: rgba(255,255,255,.08); }

/* Floating hero stats */
.hero-v2-visual { position: relative; display: flex; align-items: center; justify-content: flex-end; }
.hero-mock-wrap { width: 100%; max-width: 560px; position: relative; animation: floatY 7s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.float-card {
  position: absolute; background: rgba(10,13,28,.92);
  backdrop-filter: blur(16px); border: 1px solid rgba(91,110,245,.28);
  border-radius: 12px; padding: 11px 16px; box-shadow: 0 8px 32px rgba(0,0,0,.5);
  z-index: 10;
}
.float-card.fc1 { top: -24px; left: -44px; animation: floatY 5s ease-in-out infinite; }
.float-card.fc2 { bottom: -4px; left: -52px; animation: floatY 6.5s ease-in-out infinite 1.5s; }
.float-card.fc3 { top: 32%; right: -32px; animation: floatY 5.5s ease-in-out infinite .8s; }
.float-label { font-size: .61rem; color: #3d4670; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.float-val   { font-family: 'Syne', sans-serif; font-size: .88rem; font-weight: 700; color: #e8ecff; display: flex; align-items: center; gap: 6px; }
.live-dot    { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 8px rgba(34,197,94,.7); animation: pulse 2s infinite; }

/* Browser chrome mockup */
.mock-frame {
  border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(91,110,245,.35);
  box-shadow: 0 0 0 1px rgba(91,110,245,.1), 0 40px 90px rgba(0,0,0,.65), 0 0 80px rgba(91,110,245,.14);
  background: #0d1020;
}
.mock-topbar { background: #131726; padding: 12px 16px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid rgba(91,110,245,.1); }
.mock-dot    { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.r  { background: #ff5f57; } .mock-dot.y { background: #febc2e; } .mock-dot.g { background: #28c840; }
.mock-url    { flex: 1; background: #0d1020; border-radius: 5px; height: 20px; margin: 0 12px; display: flex; align-items: center; padding: 0 10px; }
.mock-url span { font-size: .62rem; color: #3d4670; font-family: monospace; }
.mock-body   { padding: 18px; }
.mock-kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.mock-kpi    { background: #1a1f35; border: 1px solid rgba(91,110,245,.12); border-radius: 10px; padding: 12px 14px; }
.mock-kpi-val   { font-family: 'Syne', sans-serif; font-size: 1.05rem; font-weight: 800; color: #e8ecff; margin-bottom: 2px; }
.mock-kpi-label { font-size: .57rem; color: #4a5180; text-transform: uppercase; letter-spacing: .06em; }
.mock-kpi-badge { display: inline-block; font-size: .55rem; padding: 1px 7px; border-radius: 100px; margin-top: 5px; font-weight: 600; }
.mock-kpi-badge.up  { background: rgba(34,197,94,.12); color: #22c55e; }
.mock-kpi-badge.neu { background: rgba(56,189,248,.12); color: #38bdf8; }
.mock-chart  { background: #1a1f35; border: 1px solid rgba(91,110,245,.1); border-radius: 10px; padding: 14px; margin-bottom: 14px; }
.mock-chart-title { font-size: .59rem; color: #4a5180; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 10px; }
.mock-bars   { display: flex; align-items: flex-end; gap: 5px; height: 58px; }
.mock-bar    { flex: 1; border-radius: 3px 3px 0 0; }
.mock-bar.b1 { height:45%; background: linear-gradient(0deg, rgba(91,110,245,.7), rgba(139,92,246,.5)); }
.mock-bar.b2 { height:65%; background: linear-gradient(0deg, rgba(91,110,245,.8), rgba(139,92,246,.6)); }
.mock-bar.b3 { height:35%; background: linear-gradient(0deg, rgba(91,110,245,.5), rgba(139,92,246,.3)); }
.mock-bar.b4 { height:80%; background: linear-gradient(0deg, rgba(91,110,245,.9), rgba(56,189,248,.7)); }
.mock-bar.b5 { height:55%; background: linear-gradient(0deg, rgba(91,110,245,.7), rgba(139,92,246,.5)); }
.mock-bar.b6 { height:90%; background: linear-gradient(0deg, rgba(56,189,248,.8), rgba(91,110,245,.9)); }
.mock-bar.b7 { height:70%; background: linear-gradient(0deg, rgba(91,110,245,.7), rgba(139,92,246,.5)); }
.mock-flow-row { display: flex; align-items: center; gap: 5px; }
.mock-node   { background: #1a1f35; border: 1px solid rgba(91,110,245,.18); border-radius: 7px; padding: 7px 9px; display: flex; align-items: center; gap: 5px; flex: 1; }
.mock-node-icon { width:18px; height:18px; border-radius:4px; background: linear-gradient(135deg,rgba(91,110,245,.45),rgba(139,92,246,.3)); display:flex; align-items:center; justify-content:center; font-size:.65rem; flex-shrink:0; }
.mock-node-text { font-size:.57rem; color:#5d6589; font-family:'Syne',sans-serif; font-weight:600; white-space:nowrap; }
.mock-flow-arrow { font-size:.75rem; color:rgba(91,110,245,.35); flex-shrink:0; }

/* Ambient glows in hero */
.hero-glow { position: absolute; border-radius: 50%; filter: blur(100px); pointer-events: none; z-index: 0; }
.hero-glow.ga { width:600px; height:600px; background:rgba(91,110,245,.08); top:-140px; right:-60px; }
.hero-glow.gb { width:380px; height:380px; background:rgba(56,189,248,.05); bottom:-60px; left:20%; }

/* V2 particle streaks */
.hero-particles { position:absolute; inset:0; pointer-events:none; overflow:hidden; z-index:0; }
.v2-particle {
  position:absolute; width:1px; border-radius:1px;
  background:linear-gradient(0deg,transparent,rgba(91,110,245,.5),transparent);
  animation: streakUp var(--pd,9s) var(--pdelay,0s) infinite linear; opacity:0;
}
@keyframes streakUp { 0%{transform:translateY(110%);opacity:0;} 10%{opacity:1;} 90%{opacity:.3;} 100%{transform:translateY(-10%);opacity:0;} }

/* ── 9. WHAT I BRING CARDS ── */
.bring-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.bring-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(91,110,245,.4), rgba(139,92,246,.2), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s;
}
.bring-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(91,110,245,.1); }
.bring-card:hover::after { opacity: 1; }
.bring-card:hover .card-icon { box-shadow: 0 0 30px var(--glow); }

.card-icon { width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:20px; transition:box-shadow .3s; }
.card-icon.purple { background:rgba(91,110,245,.15); border:1px solid rgba(91,110,245,.3); }
.card-icon.violet { background:rgba(139,92,246,.15); border:1px solid rgba(139,92,246,.3); }
.card-icon.cyan   { background:rgba(6,182,212,.15);  border:1px solid rgba(6,182,212,.3);  }
.card-icon.emerald{ background:rgba(16,185,129,.15); border:1px solid rgba(16,185,129,.3); }
.card-icon svg    { width:24px; height:24px; }
.bring-card h3  { font-family:'Syne',sans-serif; font-size:1.05rem; font-weight:700; margin-bottom:10px; }
.bring-card p   { font-size:.88rem; color:var(--text2); line-height:1.65; font-weight:300; }

/* Metrics strip */
.metrics-strip { display:grid; grid-template-columns:repeat(4,1fr); background:var(--surface2); border:1px solid var(--border); border-radius:var(--radius); overflow:hidden; }
@media (max-width:700px) { .metrics-strip { grid-template-columns:repeat(2,1fr); } }
.metric { padding:32px 24px; text-align:center; transition:background .3s; border-right:1px solid var(--border); }
.metric:last-child { border-right:none; }
@media (max-width:700px) { .metric:nth-child(2){border-right:none;} .metric:nth-child(1),.metric:nth-child(2){border-bottom:1px solid var(--border);} }
.metric:hover { background: rgba(91,110,245,.05); }
.metric-val   { font-family:'Syne',sans-serif; font-size:1.6rem; font-weight:800; background:linear-gradient(135deg,var(--accent),var(--accent2)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; display:block; margin-bottom:6px; }
.metric-label { font-size:.82rem; color:var(--text2); }

/* ── 10. FEATURED CARDS (v2 reference style) ── */
.feat-card {
  background: #0e1120; border: 1px solid rgba(91,110,245,.15);
  border-radius: 18px; overflow: hidden;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s, border-color .35s;
  cursor: pointer;
}
.feat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(0,0,0,.55), 0 0 0 1px rgba(91,110,245,.32), 0 0 50px rgba(91,110,245,.08);
  border-color: rgba(91,110,245,.32);
}
.feat-card-img { position:relative; height:196px; overflow:hidden; }
.fci-1 { background:linear-gradient(135deg,#07102a,#0d1c52); }
.fci-2 { background:linear-gradient(135deg,#08142a,#0d2845); }
.fci-3 { background:linear-gradient(135deg,#16082a,#2a1050); }
.fci-4 { background:linear-gradient(135deg,#082018,#0d4030); }
.fci-5 { background:linear-gradient(135deg,#201208,#402810); }
.fci-6 { background:linear-gradient(135deg,#0d0a1a,#1a0d28); }
.feat-card-img::after { content:''; position:absolute; bottom:0; left:0; right:0; height:70px; background:linear-gradient(0deg,#0e1120,transparent); pointer-events:none; }
.feat-screen { position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:24px; gap:8px; }
.feat-screen-avatar { width:52px; height:52px; border-radius:50%; background:linear-gradient(135deg,rgba(91,110,245,.55),rgba(139,92,246,.4)); display:flex; align-items:center; justify-content:center; font-size:1.5rem; margin-bottom:6px; box-shadow:0 0 24px rgba(91,110,245,.4); }
.feat-screen-line   { border-radius:3px; background:rgba(91,110,245,.18); }
.feat-screen-line.w80 { width:80%; height:6px; }
.feat-screen-line.w60 { width:60%; height:5px; }
.feat-screen-line.w70 { width:70%; height:5px; }
.feat-card-body { padding:20px 22px 26px; }
.feat-card-tag  { display:inline-block; font-size:.67rem; text-transform:uppercase; letter-spacing:.1em; color:#818cf8; background:rgba(91,110,245,.1); border:1px solid rgba(91,110,245,.22); padding:3px 10px; border-radius:100px; margin-bottom:10px; font-weight:700; }
.feat-card h3   { font-family:'Syne',sans-serif; font-size:1rem; font-weight:800; color:#e8ecff; margin-bottom:8px; line-height:1.3; }
.feat-card p    { font-size:.82rem; color:#4e5575; line-height:1.65; font-weight:300; margin-bottom:18px; }
.feat-card-btn  {
  display:inline-flex; align-items:center; gap:8px;
  background:linear-gradient(135deg,rgba(91,110,245,.85),rgba(124,58,237,.75));
  color:#fff; font-size:.8rem; font-weight:600; padding:9px 18px; border-radius:8px;
  cursor:pointer; transition:all .25s; box-shadow:0 0 18px rgba(91,110,245,.2); border:none;
  font-family:'DM Sans',sans-serif;
}
.feat-card-btn:hover { box-shadow:0 0 32px rgba(91,110,245,.45); transform:translateX(4px); }
.feat-card-btn-arrow { display:inline-block; transition:transform .2s; }
.feat-card-btn:hover .feat-card-btn-arrow { transform:translateX(4px); }

/* Featured section header */
.featured-sub { display:flex; align-items:center; justify-content:center; gap:14px; margin-top:8px; margin-bottom:56px; }
.featured-sub span { font-size:.8rem; color:#3d4670; }
.featured-sub-line { width:52px; height:1px; background:linear-gradient(90deg,transparent,rgba(91,110,245,.6),transparent); }

/* ── 11. VIDEO SECTION ── */
.video-player {
  position:relative; border-radius:20px; overflow:hidden;
  border:1px solid var(--border); background:var(--surface);
  aspect-ratio:16/9; max-width:900px; margin:0 auto;
  box-shadow:0 0 80px rgba(91,110,245,.1);
}
.video-inner {
  width:100%; height:100%; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:20px;
  background:linear-gradient(135deg,#0a0d1a,#141828);
}
.video-glow { position:absolute; width:300px; height:300px; border-radius:50%; background:radial-gradient(circle,rgba(91,110,245,.2),transparent 70%); pointer-events:none; }
.play-btn {
  width:72px; height:72px; border-radius:50%;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:transform .3s,box-shadow .3s;
  box-shadow:0 0 40px var(--glow); position:relative; z-index:1;
}
.play-btn:hover { transform:scale(1.1); box-shadow:0 0 60px var(--glow); }
.play-btn svg { width:28px; height:28px; margin-left:4px; }
.video-title { font-family:'Syne',sans-serif; font-size:1.15rem; font-weight:700; z-index:1; }
.video-desc  { font-size:.9rem; color:var(--text2); text-align:center; max-width:440px; z-index:1; }
.video-tabs  { display:flex; gap:12px; flex-wrap:wrap; justify-content:center; margin-top:28px; }
.vtab { padding:7px 18px; border-radius:100px; border:1px solid var(--border); font-size:.83rem; color:var(--text2); cursor:pointer; transition:all .2s; background:none; font-family:'DM Sans',sans-serif; }
.vtab.active,.vtab:hover { border-color:var(--accent); color:var(--accent); background:rgba(91,110,245,.08); }

/* ── 12. PROBLEM/SOLUTION ── */
.problem-item {
  display:flex; gap:16px; background:var(--surface);
  border:1px solid var(--border); border-radius:12px; padding:20px 22px; transition:all .3s;
}
.problem-item:hover { border-color:rgba(239,68,68,.3); background:rgba(239,68,68,.04); }
.problem-icon { flex-shrink:0; width:36px; height:36px; border-radius:8px; background:rgba(239,68,68,.12); border:1px solid rgba(239,68,68,.25); display:flex; align-items:center; justify-content:center; }
.solution-item {
  display:flex; gap:16px; background:var(--surface);
  border:1px solid var(--border); border-radius:12px; padding:20px 22px; transition:all .3s;
}
.solution-item:hover { border-color:rgba(34,197,94,.3); background:rgba(34,197,94,.04); }
.solution-icon { flex-shrink:0; width:36px; height:36px; border-radius:8px; background:rgba(34,197,94,.12); border:1px solid rgba(34,197,94,.25); display:flex; align-items:center; justify-content:center; }
.col-head { font-family:'Syne',sans-serif; font-size:1.05rem; font-weight:700; margin-bottom:22px; display:flex; align-items:center; gap:10px; }
.status-dot { width:10px; height:10px; border-radius:50%; }
.status-dot.red   { background:#ef4444; box-shadow:0 0 10px rgba(239,68,68,.5); }
.status-dot.green { background:#22c55e; box-shadow:0 0 10px rgba(34,197,94,.5); }
.problem-item h4, .solution-item h4 { font-family:'Syne',sans-serif; font-size:.9rem; font-weight:700; margin-bottom:4px; }
.problem-item p,  .solution-item p  { font-size:.82rem; color:var(--text2); line-height:1.5; font-weight:300; }

/* ── 13. HOW I WORK STEPS ── */
.how-steps { display:flex; align-items:flex-start; gap:0; position:relative; }
.how-steps::before { content:''; position:absolute; top:28px; left:28px; right:28px; height:1px; background:linear-gradient(90deg,var(--accent),var(--accent2),var(--accent3)); opacity:.3; }
@media (max-width:750px) { .how-steps { flex-direction:column; gap:24px; } .how-steps::before { display:none; } }
.how-step { flex:1; display:flex; flex-direction:column; align-items:center; text-align:center; padding:0 20px; }
.step-num { width:56px; height:56px; border-radius:50%; background:linear-gradient(135deg,var(--accent),var(--accent2)); display:flex; align-items:center; justify-content:center; font-family:'Syne',sans-serif; font-size:1.1rem; font-weight:800; color:#fff; margin-bottom:20px; box-shadow:0 0 30px var(--glow); position:relative; z-index:1; }
.how-step h4 { font-family:'Syne',sans-serif; font-size:.95rem; font-weight:700; margin-bottom:8px; }
.how-step p  { font-size:.82rem; color:var(--text2); line-height:1.55; font-weight:300; }

/* ── 14. CTA BANNER ── */
.cta-banner {
  text-align:center; padding:80px 5%;
  background:linear-gradient(135deg,rgba(91,110,245,.07),rgba(139,92,246,.05));
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  position:relative; z-index:1;
}
.cta-banner h2  { font-family:'Syne',sans-serif; font-size:clamp(1.6rem,2.5vw,2.2rem); font-weight:800; margin-bottom:14px; letter-spacing:-.02em; }
.cta-banner p   { color:var(--text2); max-width:480px; margin:0 auto 30px; font-weight:300; }

/* ── 15. FOOTER ── */
.site-footer { text-align:center; padding:36px 5%; border-top:1px solid var(--border); position:relative; z-index:1; }
.footer-social { display:flex; gap:14px; justify-content:center; margin-bottom:18px; }
.social-btn {
  width:40px; height:40px; border-radius:10px; background:var(--surface);
  border:1px solid var(--border); display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:all .2s; text-decoration:none;
}
.social-btn:hover { border-color:var(--accent); background:rgba(91,110,245,.1); }
.social-btn svg { width:18px; height:18px; stroke:var(--text2); }
.footer-copy { font-size:.82rem; color:var(--text3); }

/* ── 16. PAGE HERO BANNER (inner pages) ── */
.page-hero { padding:60px 5% 40px; border-bottom:1px solid var(--border); position:relative; z-index:1; }
.breadcrumb { display:flex; align-items:center; gap:8px; font-size:.8rem; color:var(--text3); margin-bottom:20px; }
.breadcrumb a { color:var(--accent); text-decoration:none; }
.breadcrumb .sep { opacity:.4; }
.back-link { display:inline-flex; align-items:center; gap:8px; color:var(--text2); font-size:.85rem; font-weight:500; margin-bottom:20px; transition:color .2s; }
.back-link:hover { color:var(--accent); }
.back-link svg { width:16px; height:16px; stroke:currentColor; }
.page-tag-row { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px; }
.tag { display:inline-block; padding:4px 12px; border-radius:100px; font-size:.7rem; text-transform:uppercase; letter-spacing:.08em; font-weight:600; }
.tag-accent  { background:rgba(91,110,245,.15); border:1px solid rgba(91,110,245,.3);  color:var(--accent); }
.tag-cyan    { background:rgba(6,182,212,.1);   border:1px solid rgba(6,182,212,.25);  color:var(--accent3); }
.tag-purple  { background:rgba(139,92,246,.1);  border:1px solid rgba(139,92,246,.25); color:#a78bfa; }

/* ── 17. PROJECT/CASE STUDY CARDS ── */
.project-card {
  background:var(--surface); border:1px solid var(--border);
  border-radius:var(--radius); overflow:hidden; transition:all .3s; cursor:pointer;
}
.project-card:hover { transform:translateY(-8px); box-shadow:0 24px 60px rgba(0,0,0,.4); border-color:var(--border2); }
.project-card-img { height:180px; display:flex; align-items:center; justify-content:center; font-size:2.8rem; position:relative; overflow:hidden; }
.project-card-img::after { content:''; position:absolute; inset:0; background:linear-gradient(0deg,var(--surface) 0%,transparent 60%); }
.project-card-body { padding:20px 22px 24px; }
.project-card h3 { font-family:'Syne',sans-serif; font-size:.98rem; font-weight:700; margin-bottom:8px; }
.project-card p  { font-size:.83rem; color:var(--text2); line-height:1.6; font-weight:300; margin-bottom:16px; }
.project-link    { font-size:.82rem; color:var(--accent); font-weight:600; display:inline-flex; align-items:center; gap:6px; transition:gap .2s; }
.project-link:hover { gap:10px; }
.filter-bar  { display:flex; gap:10px; flex-wrap:wrap; margin:28px 0; }
.filter-btn  { padding:7px 16px; border-radius:100px; border:1px solid var(--border); font-size:.82rem; color:var(--text2); cursor:pointer; background:none; font-family:'DM Sans',sans-serif; transition:all .2s; }
.filter-btn.active, .filter-btn:hover { border-color:var(--accent); color:var(--accent); background:rgba(91,110,245,.08); }

/* ── 18. ABOUT PAGE ── */
.about-avatar {
  width:260px; height:260px; border-radius:24px;
  background:linear-gradient(135deg,var(--surface),var(--surface2));
  border:1px solid var(--border); display:flex; align-items:center; justify-content:center;
  font-size:5rem; position:relative; overflow:hidden;
}
.about-avatar::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(91,110,245,.12),rgba(139,92,246,.08)); }
.skill-tags { display:flex; flex-wrap:wrap; gap:8px; margin:20px 0; }
.skill-tag   { padding:5px 12px; border-radius:100px; background:rgba(91,110,245,.1); border:1px solid rgba(91,110,245,.2); font-size:.78rem; color:var(--text2); }
.timeline    { margin-top:32px; display:flex; flex-direction:column; gap:0; }
.timeline-item { display:flex; gap:20px; padding-bottom:24px; }
.tl-dot { flex-shrink:0; width:12px; height:12px; border-radius:50%; background:var(--accent); margin-top:4px; position:relative; }
.tl-dot::before { content:''; position:absolute; left:5px; top:12px; bottom:-24px; width:1px; background:var(--border); }
.timeline-item:last-child .tl-dot::before { display:none; }
.tl-year  { font-size:.77rem; color:var(--text3); margin-bottom:2px; }
.tl-role  { font-family:'Syne',sans-serif; font-size:.9rem; font-weight:700; margin-bottom:2px; }
.tl-co    { font-size:.82rem; color:var(--text2); font-weight:300; }

/* ── 19. RESUME PAGE ── */
.resume-section-title { font-family:'Syne',sans-serif; font-size:.9rem; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--accent); margin:40px 0 18px; }
.resume-item { background:var(--surface); border:1px solid var(--border); border-radius:12px; padding:24px; margin-bottom:14px; }
.resume-item h3  { font-family:'Syne',sans-serif; font-size:.98rem; font-weight:700; margin-bottom:4px; }
.resume-meta     { font-size:.8rem; color:var(--text3); margin-bottom:10px; }
.resume-item p   { font-size:.85rem; color:var(--text2); line-height:1.65; font-weight:300; }
.skill-bar-wrap  { display:flex; flex-direction:column; gap:14px; }
.skill-bar       { display:flex; align-items:center; gap:16px; }
.skill-bar-name  { font-size:.85rem; color:var(--text2); width:150px; flex-shrink:0; }
.skill-bar-track { flex:1; height:4px; background:var(--surface2); border-radius:2px; overflow:hidden; }
.skill-bar-fill  { height:100%; border-radius:2px; background:linear-gradient(90deg,var(--accent),var(--accent2)); }

/* ── 20. CONTACT PAGE ── */
.contact-card { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:36px; }
.contact-item { display:flex; gap:14px; align-items:center; margin-bottom:18px; }
.contact-icon { width:40px; height:40px; border-radius:10px; background:rgba(91,110,245,.1); border:1px solid rgba(91,110,245,.2); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-icon svg { width:18px; height:18px; stroke:var(--accent); }
.contact-item p { font-size:.88rem; color:var(--text2); }
.form-group { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.form-group label { font-size:.8rem; color:var(--text2); font-weight:500; }
.form-group input, .form-group textarea, .form-group select {
  background:var(--surface2); border:1px solid var(--border);
  border-radius:10px; padding:12px 16px; color:var(--text);
  font-family:'DM Sans',sans-serif; font-size:.9rem; transition:border-color .2s; outline:none; resize:none;
}
.form-group input:focus, .form-group textarea:focus { border-color:var(--accent); }
.form-group textarea { min-height:120px; }

/* ── 21. CASE STUDY PAGE ── */
.cs-meta-grid { display:grid; grid-template-columns:1fr auto; gap:40px; align-items:start; margin-bottom:48px; }
@media (max-width:700px) { .cs-meta-grid { grid-template-columns:1fr; } }
.cs-pills { display:flex; flex-direction:column; gap:10px; min-width:200px; }
.cs-pill  { background:var(--surface); border:1px solid var(--border); border-radius:10px; padding:12px 16px; }
.cs-pill-label { font-size:.7rem; color:var(--text3); text-transform:uppercase; letter-spacing:.08em; margin-bottom:3px; }
.cs-pill-val   { font-family:'Syne',sans-serif; font-size:.9rem; font-weight:700; }
.cs-prob-card  { border-radius:14px; padding:24px; border:1px solid; }
.cs-prob-card.red   { background:rgba(239,68,68,.04); border-color:rgba(239,68,68,.2); }
.cs-prob-card.green { background:rgba(34,197,94,.04);  border-color:rgba(34,197,94,.2); }
.cs-prob-card h4 { font-family:'Syne',sans-serif; font-size:.9rem; font-weight:700; margin-bottom:10px; }
.cs-prob-card ul { list-style:none; display:flex; flex-direction:column; gap:8px; }
.cs-prob-card li { font-size:.85rem; color:var(--text2); display:flex; gap:8px; font-weight:300; }
.cs-prob-card li::before { content:'→'; opacity:.5; flex-shrink:0; }
.cs-arch { background:var(--surface); border:1px solid var(--border); border-radius:var(--radius); padding:36px; overflow-x:auto; }
.cs-flow { display:flex; align-items:center; flex-wrap:wrap; gap:0; }
.cs-flow-node { display:flex; flex-direction:column; align-items:center; gap:8px; flex:1; min-width:90px; }
.cs-flow-icon { width:52px; height:52px; border-radius:14px; background:var(--surface2); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:1.4rem; }
.cs-flow-label { font-size:.73rem; font-weight:600; color:var(--text2); text-align:center; font-family:'Syne',sans-serif; }
.cs-flow-arrow { color:var(--border2); font-size:1.4rem; padding:0 4px; flex-shrink:0; align-self:flex-start; margin-top:14px; }
.results-grid  { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
@media (max-width:700px) { .results-grid { grid-template-columns:1fr; } }
.result-card   { background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:24px; text-align:center; transition:all .3s; }
.result-card:hover { border-color:var(--border2); transform:translateY(-4px); }
.result-num    { font-family:'Syne',sans-serif; font-size:2rem; font-weight:800; background:linear-gradient(135deg,var(--accent),var(--accent2)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; display:block; margin-bottom:4px; }
.result-label  { font-size:.82rem; color:var(--text2); font-weight:300; }
.testimonial {
  background:linear-gradient(135deg,rgba(91,110,245,.07),rgba(139,92,246,.04));
  border:1px solid rgba(91,110,245,.2); border-radius:var(--radius);
  padding:36px 40px; position:relative;
}
.testimonial::before { content:'"'; position:absolute; top:12px; left:28px; font-size:5rem; color:var(--accent); opacity:.15; font-family:'Syne',sans-serif; line-height:1; }
.testimonial-text   { font-size:1rem; color:var(--text); line-height:1.75; font-weight:300; font-style:italic; margin-bottom:20px; }
.testimonial-author { display:flex; align-items:center; gap:14px; }
.testimonial-avatar { width:40px; height:40px; border-radius:50%; background:var(--surface2); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.testimonial-name   { font-family:'Syne',sans-serif; font-size:.9rem; font-weight:700; }
.testimonial-role   { font-size:.78rem; color:var(--text2); }
.live-link-box {
  display:flex; align-items:center; justify-content:space-between;
  background:linear-gradient(135deg,rgba(91,110,245,.1),rgba(6,182,212,.06));
  border:1px solid rgba(91,110,245,.25); border-radius:var(--radius);
  padding:28px 32px; gap:20px; flex-wrap:wrap;
}
.live-link-box h3 { font-family:'Syne',sans-serif; font-size:1.1rem; font-weight:700; margin-bottom:6px; }
.live-link-box p  { font-size:.85rem; color:var(--text2); font-weight:300; }
.live-url { font-size:.82rem; color:var(--accent); font-family:monospace; background:rgba(91,110,245,.1); padding:4px 10px; border-radius:6px; margin-top:6px; display:inline-block; }
.cs-nav-cards { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:600px) { .cs-nav-cards { grid-template-columns:1fr; } }
.cs-nav-card  { background:var(--surface); border:1px solid var(--border); border-radius:14px; padding:20px 22px; cursor:pointer; transition:all .3s; display:flex; justify-content:space-between; align-items:center; text-decoration:none; color:inherit; }
.cs-nav-card:hover { border-color:var(--border2); transform:translateY(-3px); }
.cs-nav-dir   { font-size:.7rem; text-transform:uppercase; letter-spacing:.08em; color:var(--text3); margin-bottom:4px; }
.cs-nav-name  { font-family:'Syne',sans-serif; font-size:.9rem; font-weight:700; }
.cs-nav-arrow { font-size:1.2rem; color:var(--accent); }

/* ── 22. UTILITIES ── */
.text-accent  { color:var(--accent); }
.text-muted   { color:var(--text2); }
.text-center  { text-align:center; }
.mt-8  { margin-top:8px; }
.mt-16 { margin-top:16px; }
.mt-24 { margin-top:24px; }
.mt-32 { margin-top:32px; }
.mt-48 { margin-top:48px; }
.mb-8  { margin-bottom:8px; }
.mb-16 { margin-bottom:16px; }
.mb-24 { margin-bottom:24px; }
.mb-32 { margin-bottom:32px; }
.mb-48 { margin-bottom:48px; }
.flex  { display:flex; }
.flex-center { display:flex; align-items:center; justify-content:center; }
.gap-8  { gap:8px; }
.gap-16 { gap:16px; }
.gap-24 { gap:24px; }
.fw-300 { font-weight:300; }
.fw-600 { font-weight:600; }
.fw-700 { font-weight:700; }
.font-syne { font-family:'Syne',sans-serif; }
.prose p   { font-size:.93rem; color:var(--text2); line-height:1.8; font-weight:300; margin-bottom:12px; }

/* ── 23. RESPONSIVE HELPERS ── */
@media (max-width:900px)  { .hide-md { display:none !important; } }
@media (max-width:600px)  { .hide-sm { display:none !important; } }
@media (min-width:900px)  { .show-sm { display:none !important; } }
