/* ═══════════════════════════════════════════════════════════
   DYNOWALL WEBSITE — style.css
   Domain: dynowall.jitendrapatra.com
═══════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg:         #0A0E1A;
  --bg2:        #0F1528;
  --bg3:        #141930;
  --surface:    #1A2035;
  --border:     rgba(255,255,255,0.07);
  --cyan:       #00BFFF;
  --violet:     #7C3AED;
  --purple:     #8B5CF6;
  --gradient:   linear-gradient(135deg, #00BFFF 0%, #7C3AED 100%);
  --gradient2:  linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
  --text:       #F0F4FF;
  --text-muted: rgba(240,244,255,0.55);
  --text-dim:   rgba(240,244,255,0.35);
  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --shadow:     0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:  0 24px 64px rgba(0,0,0,0.6);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:  'Outfit', system-ui, sans-serif;
  --font-body:  'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

/* ── Container ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section ───────────────────────────────────────────── */
.section { padding: 100px 0; }

/* ── Section Header ────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-top: 12px;
}

.section-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.35);
  color: var(--purple);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── Gradient Text ─────────────────────────────────────── */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.55);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  flex-shrink: 0;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links li a {
  display: block;
  padding: 8px 14px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.nav-cta { margin-left: 8px; }

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

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

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,191,255,0.18) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(236,72,153,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 60px 24px;
  position: relative;
  z-index: 1;
}

.hero-text { max-width: 560px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(0,191,255,0.1);
  border: 1px solid rgba(0,191,255,0.25);
  color: var(--cyan);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-dim);
  font-weight: 500;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Phone Mockup */
.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.phone-frame {
  width: 260px;
  height: 520px;
  border-radius: 44px;
  background: #111827;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow:
    0 40px 100px rgba(0,0,0,0.7),
    inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}

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

.phone-screen {
  position: absolute;
  inset: 8px;
  border-radius: 36px;
  overflow: hidden;
}

.phone-wallpaper {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0A0E1A 0%, #1a0535 50%, #001a35 100%);
}

.wallpaper-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(0,191,255,0.25) 0%, transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(124,58,237,0.2) 0%, transparent 50%);
  animation: wallanim 4s ease-in-out infinite alternate;
}

@keyframes wallanim {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

.phone-ui {
  position: absolute;
  inset: 0;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-time {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 300;
  color: white;
  letter-spacing: -2px;
  margin-bottom: 4px;
}

.phone-date {
  font-family: var(--font-head);
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: auto;
}

.phone-icons {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.phone-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
}

.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 28px;
  border-radius: 0 0 16px 16px;
  background: #111827;
  z-index: 10;
}

.phone-glow-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.2);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ringpulse 4s ease-in-out infinite;
}

@keyframes ringpulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.05); opacity: 1; }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.4;
  animation: scrollbob 2.5s ease-in-out infinite;
}

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

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ══════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════ */
.features { background: var(--bg2); }

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

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 25%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--c);
}

.feature-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  text-align: center;
  padding: 32px 24px;
}

.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(124,58,237,0.4), rgba(0,191,255,0.4));
  position: relative;
}

.step-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(0,191,255,0.4);
}

/* ══════════════════════════════════════════════════════════
   DOWNLOAD
══════════════════════════════════════════════════════════ */
.download { background: var(--bg2); }

.download-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(124,58,237,0.25);
  padding: 80px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.download-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.d-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.d-orb-1 {
  width: 400px;
  height: 400px;
  background: rgba(124,58,237,0.2);
  top: -100px;
  left: -100px;
}

.d-orb-2 {
  width: 300px;
  height: 300px;
  background: rgba(0,191,255,0.15);
  bottom: -80px;
  right: -80px;
}

.download-content { position: relative; z-index: 1; }

.download-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.download-card h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.download-card p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

.download-meta {
  font-size: 12px !important;
  color: var(--text-dim) !important;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  font-family: monospace;
}

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

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

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 14px;
  max-width: 260px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

.footer-bottom a:hover { color: var(--text); }

.footer-domain {
  font-family: monospace;
  font-size: 12px !important;
  color: rgba(0,191,255,0.4) !important;
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════════ */
.page-hero {
  min-height: 280px;
  padding-top: 72px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

.page-hero-content {
  padding: 48px 0 40px;
}

.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text);
  margin: 12px 0 8px;
}

.page-hero-content p {
  font-size: 15px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════════════════════ */
.legal-section { background: var(--bg); }

.legal-container {
  max-width: 780px;
}

.legal-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
  margin-bottom: 48px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

.legal-callout strong { color: var(--text); }

.callout-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.legal-block {
  margin-bottom: 48px;
}

.legal-block h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.legal-block p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-block ul {
  margin: 14px 0;
  padding-left: 0;
  list-style: none;
}

.legal-block ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.legal-block ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-size: 18px;
  line-height: 1.3;
}

.legal-block code {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2px 8px;
  font-size: 13px;
  color: var(--cyan);
}

.contact-card {
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 2;
}

.contact-card strong { color: var(--text); }
.contact-card a { color: var(--cyan); }
.contact-card a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════════════════ */
.about-section { background: var(--bg); }

.about-overview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 72px;
}

.about-logo-wrap {
  display: flex;
  justify-content: center;
}

.about-logo {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.about-overview-text h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
}

.about-overview-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.about-badge {
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.25);
  font-family: monospace;
  font-size: 12px;
  color: var(--purple);
}

/* Facts */
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 72px;
}

.fact-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.fact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.fact-icon { font-size: 32px; margin-bottom: 16px; }

.fact-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.fact-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Developer */
.developer-section { margin-bottom: 72px; }

.developer-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 48px;
}

.dev-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
  top: -150px;
  right: -100px;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.developer-info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
}

.dev-avatar {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.dev-details h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.dev-title {
  font-size: 14px;
  color: var(--purple);
  font-weight: 600;
  margin-bottom: 16px !important;
}

.dev-bio {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px !important;
}

.dev-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dev-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  font-family: var(--font-head);
  transition: var(--transition);
}

.dev-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.dev-link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.1);
  transform: translateY(-1px);
}

/* Tech Stack */
.tech-section { margin-bottom: 72px; }

.tech-section h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 28px;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.tech-item:hover {
  border-color: rgba(124,58,237,0.3);
  color: var(--text);
}

.tech-icon { font-size: 18px; }

/* About CTA */
.about-cta {
  text-align: center;
  padding: 64px 40px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(124,58,237,0.2);
}

.about-cta h2 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.about-cta p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 32px;
}

/* ══════════════════════════════════════════════════════════
   AOS-LIKE ANIMATIONS
══════════════════════════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="zoom-in"] {
  transform: scale(0.92);
}

[data-aos].aos-animate {
  opacity: 1 !important;
  transform: none !important;
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { gap: 48px; }
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(124,58,237,0.4), rgba(0,191,255,0.4));
  }
  .step-connector::after {
    right: auto;
    bottom: -6px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: rgba(0,191,255,0.4);
    border-left-color: transparent;
  }

  .about-facts { grid-template-columns: 1fr; }
  .developer-info { grid-template-columns: 1fr; }
  .dev-avatar { margin-bottom: 4px; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-text { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }

  .features-grid { grid-template-columns: 1fr; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10,14,26,0.98);
    backdrop-filter: blur(20px);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
  }

  .about-overview {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-logo-wrap { justify-content: center; }

  .about-badges { justify-content: center; }

  .footer-links { grid-template-columns: repeat(2, 1fr); }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .page-hero-content h1 { font-size: 2.2rem; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { gap: 16px; }
  .download-card { padding: 48px 24px; }
  .developer-card { padding: 28px 20px; }
  .footer-links { grid-template-columns: 1fr; }
}
