:root {
  --bg: #f5f6fb;
  --bg-soft: #ffffff;
  --bg-muted: #eef2ff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-dark: #0d1117;
  --surface-dark-soft: #141925;
  --text: #10131a;
  --text-soft: #3d4557;
  --text-muted: #657087;
  --text-on-dark: #f5f7fb;
  --line: rgba(16, 19, 26, 0.08);
  --line-strong: rgba(16, 19, 26, 0.12);
  --accent: #1e6cff;
  --accent-soft: #6b7cff;
  --success: #0bb07b;
  --shadow-lg: 0 28px 80px rgba(28, 37, 56, 0.12);
  --shadow-md: 0 18px 48px rgba(28, 37, 56, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --max-width: 1220px;
}

body[data-theme="dark"] {
  --bg: #090d14;
  --bg-soft: #0f141d;
  --bg-muted: #121926;
  --surface: rgba(18, 24, 36, 0.78);
  --surface-strong: rgba(20, 27, 40, 0.92);
  --surface-dark: #07090d;
  --surface-dark-soft: #10151f;
  --text: #f4f7fc;
  --text-soft: #ccd5e4;
  --text-muted: #94a0b5;
  --text-on-dark: #f5f7fb;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --accent: #6d90ff;
  --accent-soft: #8a7cff;
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 18px 48px rgba(0, 0, 0, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(107, 124, 255, 0.22), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 28%, var(--bg) 100%);
  transition: background 220ms ease, color 220ms ease;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 18px 0;
}

.site-header.scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 44px rgba(28, 37, 56, 0.12);
}

body[data-theme="dark"] .site-header.scrolled .nav-shell {
  background: rgba(15, 20, 29, 0.78);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 60px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(24px);
  box-shadow: 0 8px 24px rgba(28, 37, 56, 0.06);
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body[data-theme="dark"] .nav-shell {
  background: rgba(15, 20, 29, 0.62);
}

.brand,
.site-nav a,
.nav-cta,
.button,
.theme-toggle,
.contact-links a {
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

.brand-icon {
  width: 38px;
  height: 38px;
}

.brand-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 16px rgba(28, 37, 56, 0.12));
}

.site-nav,
.nav-actions,
.hero-actions,
.hero-trust,
.contact-links,
.contact-ctas,
.footer-links,
.footer-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav {
  gap: 28px;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.site-nav a:hover,
.contact-links a:hover,
.footer-links a:hover {
  color: var(--text);
}

.nav-actions {
  align-items: center;
}

.theme-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.theme-toggle-track {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 54px;
  height: 32px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
}

body[data-theme="dark"] .theme-toggle-track {
  background: rgba(255, 255, 255, 0.06);
}

.theme-toggle-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffffff 0%, #dbe3ff 100%);
  box-shadow: 0 6px 12px rgba(28, 37, 56, 0.12);
  transition: transform 180ms ease;
}

body[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(22px);
  background: linear-gradient(180deg, #8aa2ff 0%, #6077ff 100%);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta,
.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  box-shadow: 0 18px 30px rgba(30, 108, 255, 0.22);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.66);
  color: var(--text);
}

body[data-theme="dark"] .button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.nav-cta:hover,
.button:hover,
.contact-links a:hover,
.theme-toggle:hover {
  transform: translateY(-2px);
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-soft {
  background:
    radial-gradient(circle at right top, rgba(30, 108, 255, 0.12), transparent 24%),
    var(--bg-muted);
}

.section-dark {
  background:
    radial-gradient(circle at top, rgba(109, 124, 255, 0.24), transparent 20%),
    linear-gradient(180deg, #131826 0%, #090d14 100%);
  color: var(--text-on-dark);
}

.hero {
  overflow: hidden;
  padding-top: 36px;
}

.hero-layout,
.about-layout,
.contact-shell {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-a {
  top: 60px;
  left: 8%;
  width: 16rem;
  height: 16rem;
  background: rgba(30, 108, 255, 0.16);
}

.hero-orb-b {
  right: 6%;
  top: 28%;
  width: 18rem;
  height: 18rem;
  background: rgba(107, 124, 255, 0.14);
}

.eyebrow,
.card-kicker {
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.hero-summary {
  max-width: 58ch;
  margin-top: 22px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text-soft);
}

.hero-actions {
  margin-top: 34px;
}

.hero-badges,
.stats-grid,
.services-grid,
.skills-grid,
.value-grid,
.process-grid,
.pricing-grid,
.authority-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

.hero-badges {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.hero-badge,
.panel,
.device-stage,
.founder-card,
.case-study,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-lg);
}

.hero-badge {
  padding: 24px;
}

.hero-badge strong,
.stat-card strong,
.process-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  letter-spacing: -0.05em;
}

.hero-badge span,
.stat-card span,
.quote-card span,
.pricing-note,
.footer-copy p:last-child {
  color: var(--text-muted);
}

.hero-trust {
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.hero-trust span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

body[data-theme="dark"] .hero-trust span {
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  display: grid;
  gap: 20px;
}

.device-stage {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 242, 255, 0.94)),
    radial-gradient(circle at right top, rgba(107, 124, 255, 0.16), transparent 32%);
}

body[data-theme="dark"] .device-stage {
  background:
    linear-gradient(180deg, rgba(18, 24, 36, 0.96), rgba(14, 18, 28, 0.96)),
    radial-gradient(circle at right top, rgba(107, 124, 255, 0.18), transparent 32%);
}

.device-shell {
  padding: 18px;
  border-radius: 36px;
  background: linear-gradient(180deg, #11141a, #03060c);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.device-screen {
  display: grid;
  gap: 22px;
  min-height: 430px;
  padding: 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(116, 138, 255, 0.26), transparent 26%),
    linear-gradient(180deg, #101725 0%, #131d30 100%);
  color: var(--text-on-dark);
}

.device-copy h2,
.section-heading h2,
.contact-copy h2 {
  letter-spacing: -0.05em;
}

.device-copy h2 {
  max-width: 10ch;
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.02;
}

.device-copy p,
.story-card p,
.service-card p,
.skill-card p,
.value-card p,
.process-card p,
.pricing-card p,
.authority-card p,
.contact-copy p,
.case-study-copy p,
.case-study-copy li {
  color: var(--text-soft);
  line-height: 1.78;
}

.device-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.device-mini-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
}

.device-mini-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 247, 251, 0.66);
  font-size: 0.84rem;
}

.founder-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
}

.founder-card img {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  object-fit: cover;
  object-position: top;
}

.founder-card h3,
.service-card h3,
.skill-card h3,
.value-card h3,
.process-card h3,
.pricing-card h3,
.authority-card h3,
.case-study-copy h3 {
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  letter-spacing: -0.04em;
}

.founder-card p,
.service-card span {
  color: var(--text-muted);
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2,
.contact-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.02;
}

.section-heading.center h2 {
  margin: 0 auto;
}

.on-dark .eyebrow {
  color: #89a1ff;
}

.on-dark h2,
.section-dark .case-study-copy h3,
.section-dark .case-study-copy p,
.section-dark .case-study-copy li {
  color: var(--text-on-dark);
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.panel,
.case-study,
.contact-form {
  padding: 28px;
}

.stat-card {
  text-align: center;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.logo-strip span {
  display: grid;
  place-items: center;
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--text-soft);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

body[data-theme="dark"] .logo-strip span {
  background: rgba(255, 255, 255, 0.04);
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-card p {
  margin-bottom: 16px;
  font-size: 1.08rem;
  line-height: 1.7;
}

.story-card {
  display: grid;
  gap: 18px;
}

.lead {
  font-size: 1.55rem;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.timeline-highlights {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.timeline-highlights div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.44);
}

body[data-theme="dark"] .timeline-highlights div {
  background: rgba(255, 255, 255, 0.04);
}

.timeline-highlights strong {
  font-size: 0.95rem;
}

.timeline-highlights span {
  color: var(--text-muted);
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.skill-card,
.value-card,
.process-card,
.pricing-card,
.authority-card {
  min-height: 100%;
}

.card-kicker {
  margin-bottom: 14px;
}

.service-card span {
  display: block;
  margin-top: 14px;
}

.case-study-grid {
  display: grid;
  gap: 24px;
}

.case-study {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  background: linear-gradient(180deg, rgba(19, 24, 38, 0.92), rgba(10, 13, 20, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
}

.case-study-visual {
  min-height: 280px;
  border-radius: 26px;
  overflow: hidden;
  display: grid;
  place-items: end start;
  padding: 24px;
}

.visual-fintech {
  background:
    radial-gradient(circle at top right, rgba(137, 161, 255, 0.34), transparent 34%),
    linear-gradient(160deg, #1b2740 0%, #101828 100%);
}

.visual-banking {
  background:
    radial-gradient(circle at top right, rgba(45, 214, 176, 0.3), transparent 30%),
    linear-gradient(160deg, #11272d 0%, #0d171d 100%);
}

.visual-media {
  background:
    radial-gradient(circle at top right, rgba(255, 154, 107, 0.26), transparent 32%),
    linear-gradient(160deg, #2c1f1a 0%, #151012 100%);
}

.mockup-card {
  min-width: min(100%, 240px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

.mockup-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 247, 251, 0.68);
}

.mockup-card strong {
  color: var(--text-on-dark);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.case-study-copy ul {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.skills-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pricing-grid,
.authority-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-note {
  margin-top: 24px;
  text-align: center;
}

.contact-section {
  background:
    radial-gradient(circle at top, rgba(107, 124, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 246, 253, 0.96));
}

body[data-theme="dark"] .contact-section {
  background:
    radial-gradient(circle at top, rgba(107, 124, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(10, 13, 20, 0.98), rgba(10, 13, 20, 0.98));
}

.contact-copy p:last-of-type {
  max-width: 56ch;
  margin-top: 18px;
}

.contact-links {
  margin: 26px 0;
}

.contact-links a {
  color: var(--text-soft);
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--surface-strong);
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form span {
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  outline: none;
}

body[data-theme="dark"] .contact-form input,
body[data-theme="dark"] .contact-form textarea {
  background: rgba(255, 255, 255, 0.04);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(30, 108, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(30, 108, 255, 0.08);
}

.site-footer {
  padding: 28px 0 40px;
}

.footer-shell {
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  display: grid;
  gap: 4px;
}

.footer-copy p:last-child {
  max-width: 42ch;
}

.footer-links a {
  color: var(--text-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-layout,
  .about-layout,
  .contact-shell,
  .case-study {
    grid-template-columns: 1fr;
  }

  .hero-badges,
  .stats-grid,
  .services-grid,
  .skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid,
  .process-grid,
  .pricing-grid,
  .authority-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

  .section {
    padding: 88px 0;
  }

  .logo-strip,
  .hero-badges,
  .stats-grid,
  .services-grid,
  .skills-grid,
  .value-grid,
  .process-grid,
  .pricing-grid,
  .authority-grid,
  .testimonial-grid,
  .device-stack {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 24px));
  }

  .nav-shell {
    padding: 0 12px;
  }

  .nav-cta {
    display: none;
  }

  .brand {
    width: 48px;
    height: 48px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 15vw, 4.3rem);
  }

  .hero-actions,
  .hero-trust,
  .contact-links,
  .contact-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .panel,
  .case-study,
  .device-stage,
  .contact-form,
  .founder-card,
  .hero-badge {
    padding: 22px;
    border-radius: 28px;
  }

  .device-screen {
    min-height: 340px;
    padding: 24px;
  }

  .button,
  .contact-form button {
    width: 100%;
  }
}

/* ═══════════════════════════════════════
   TYPEWRITER
═══════════════════════════════════════ */
.typewriter { color: var(--accent); }
.typewriter-cursor {
  color: var(--accent);
  animation: cursorBlink .75s step-end infinite;
  margin-left: 1px;
}
@keyframes cursorBlink { from,to{opacity:1} 50%{opacity:0} }

/* ═══════════════════════════════════════
   iPHONE FRAME SYSTEM
═══════════════════════════════════════ */
.iphone-frame {
  position: relative;
  border-radius: 44px;
  background: linear-gradient(160deg,#1c1c1e,#0d0d10);
  box-shadow: 0 0 0 2px #3a3a3c, 0 40px 120px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.05);
  padding: 14px 12px;
  width: 260px;
  flex-shrink: 0;
}
.iphone-frame.iphone-lg { width: 300px; }
.iphone-frame.iphone-sm { width: 190px; border-radius: 36px; }
.iphone-notch {
  width: 100px; height: 28px;
  background: #0d0d10;
  border-radius: 0 0 22px 22px;
  margin: 0 auto 8px;
}
.iphone-frame.iphone-sm .iphone-notch { width: 70px; height: 20px; border-radius: 0 0 14px 14px; }
.iphone-screen {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  background: #000;
  font-family: "Manrope",sans-serif;
}
.iphone-frame.iphone-sm .iphone-screen { border-radius: 24px; }

/* ═══════════════════════════════════════
   HERO PHONES
═══════════════════════════════════════ */
.hero-phone-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.hero-phone-float { animation: phoneFloat 5s ease-in-out infinite; }
@keyframes phoneFloat {
  0%,100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-16px) rotate(.5deg); }
}
.hero-phone-secondary {
  position: absolute;
  right: -60px; top: 70px;
  opacity: .85; z-index: 0;
  animation: phoneFloat 5s ease-in-out infinite reverse;
  animation-delay: .6s;
}
.hero-phone-float { position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   APP SHARED STYLES
═══════════════════════════════════════ */
.app-status-bar {
  display: flex;
  justify-content: space-between;
  font-size: 10px; font-weight: 600;
  opacity: .65;
}
.app-label { font-size: 11px; opacity: .55; margin: 0 0 3px; font-weight: 600; letter-spacing: .04em; }
.pos { color: #34d399; }
.neg { color: #f87171; }
.app-tab-bar { display: flex; justify-content: center; gap: 8px; padding: 6px 0 2px; }
.tab { font-size: 7px; opacity: .3; color: white; }
.tab.active { opacity: 1; color: #34d399; }

/* ── FinanceKit ── */
.app-screen-finance {
  background: linear-gradient(180deg,#0a1628,#0d1f3c);
  padding: 14px 14px 10px;
  display: flex; flex-direction: column; gap: 10px;
  color: white; height: 100%; box-sizing: border-box; overflow: hidden;
}
.app-balance { font-size: clamp(20px,5vw,28px); font-weight: 800; letter-spacing: -.05em; margin: 0; line-height: 1.1; }
.app-gain { font-size: 11px; color: #34d399; font-weight: 700; }
.app-chart-wrap { flex-shrink: 0; }
.chart-svg { width: 100%; height: 70px; display: block; }
.chart-line {
  stroke-dasharray: 520; stroke-dashoffset: 520;
  animation: drawLine 1.8s cubic-bezier(.4,0,.2,1) forwards .4s;
}
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.app-holdings { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.holding-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 10px; border-radius: 10px;
  background: rgba(255,255,255,.05); font-size: 12px; font-weight: 600;
}
.holding-left { display: flex; align-items: center; gap: 8px; }
.hold-icon { width: 24px; height: 24px; border-radius: 8px; flex-shrink: 0; }

/* ── SwiftHealth small (hero) ── */
.app-screen-health {
  background: #f2f2f7;
  padding: 12px; display: flex; flex-direction: column; gap: 10px;
  color: #1c1c1e; height: 100%; box-sizing: border-box; overflow: hidden;
}
.health-greeting-sm { font-size: 13px; font-weight: 800; color: #1c1c1e; margin: 0; letter-spacing: -.03em; }
.rings-sm-wrap { position: relative; width: 100%; max-width: 120px; margin: 0 auto; }
.rings-sm-svg { width: 100%; height: auto; display: block; }
.rings-sm-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.rings-sm-center strong { font-size: 18px; font-weight: 800; color: #ff3c3c; letter-spacing: -.04em; }
.ring-fill { animation: ringIn 1.6s cubic-bezier(.4,0,.2,1) backwards; }
.ring-move { animation-delay: .3s; }
.ring-exercise { animation-delay: .5s; }
.ring-stand { animation-delay: .7s; }
@keyframes ringIn { from { stroke-dashoffset: 700; } }
.health-stats-sm { display: flex; justify-content: space-around; gap: 6px; }
.health-stats-sm div {
  text-align: center; background: white; border-radius: 10px;
  padding: 8px 6px; flex: 1; box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.health-stats-sm strong { display: block; font-size: 15px; font-weight: 800; color: #1c1c1e; letter-spacing: -.03em; }
.health-stats-sm span { font-size: 9px; color: #8e8e93; font-weight: 600; }

/* ── SwiftHealth full (app demo) ── */
.app-screen-health-full {
  background: #f2f2f7;
  padding: 14px; display: flex; flex-direction: column; gap: 12px;
  color: #1c1c1e; height: 100%; box-sizing: border-box; overflow: hidden;
}
.health-full-greeting p { font-size: 12px; color: #8e8e93; margin: 0; }
.health-full-greeting h3 { font-size: 22px; font-weight: 800; letter-spacing: -.04em; margin: 2px 0 0; color: #1c1c1e; }
.activity-rings-full { position: relative; width: 180px; height: 180px; margin: 0 auto; }
.activity-rings-full svg { width: 100%; height: 100%; }
.rings-center-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.rings-pct { font-size: 28px; font-weight: 800; color: #ff3c3c; letter-spacing: -.04em; line-height: 1; }
.rings-sub { font-size: 11px; color: #8e8e93; font-weight: 600; }
.health-stats-full { display: flex; gap: 8px; }
.health-stat-item { flex: 1; text-align: center; padding: 10px 8px; background: white; border-radius: 12px; box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.health-stat-item strong { display: block; font-size: 18px; font-weight: 800; letter-spacing: -.03em; color: #1c1c1e; }
.health-stat-item span { font-size: 10px; color: #8e8e93; font-weight: 600; }
.streak-card-full {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; background: white; border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.streak-card-full > span { font-size: 24px; }
.streak-card-full strong { display: block; font-weight: 800; font-size: 13px; color: #1c1c1e; }
.streak-card-full p { font-size: 11px; color: #8e8e93; margin: 2px 0 0; }

/* ── StreamWave ── */
.app-screen-stream {
  background: #000; display: flex; flex-direction: column;
  color: white; height: 100%; box-sizing: border-box; overflow: hidden;
}
.stream-banner {
  position: relative;
  background: linear-gradient(160deg,#1a0a2e,#0f0720);
  flex-shrink: 0; height: 45%;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 12px;
}
.stream-banner::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,transparent 40%,rgba(0,0,0,.7));
}
.stream-banner-content { position: relative; z-index: 1; }
.stream-badge {
  display: inline-block; padding: 2px 8px; border-radius: 4px;
  background: #e50914; font-size: 9px; font-weight: 800;
  letter-spacing: .08em; margin-bottom: 4px;
}
.stream-show-name { font-size: 16px; font-weight: 800; letter-spacing: -.03em; margin: 0 0 8px; }
.stream-controls { display: flex; gap: 6px; }
.stream-play,.stream-more {
  padding: 6px 12px; border-radius: 6px; font-size: 10px;
  font-weight: 700; border: none; cursor: pointer; font-family: inherit;
}
.stream-play { background: white; color: #000; }
.stream-more { background: rgba(255,255,255,.2); color: white; }
.stream-content { padding: 10px; display: flex; flex-direction: column; gap: 8px; flex: 1; overflow: hidden; }
.stream-section-title { font-size: 11px; font-weight: 800; margin: 0 0 6px; letter-spacing: -.01em; }
.content-row { display: flex; gap: 6px; }
.content-thumb { flex: 1; aspect-ratio: 16/9; border-radius: 6px; }
.stream-status { color: white; }

/* ── BankPro ── */
.app-screen-bank {
  background: linear-gradient(180deg,#08080f,#10101a);
  padding: 14px 14px 10px; display: flex; flex-direction: column;
  gap: 8px; color: white; height: 100%; box-sizing: border-box; overflow: hidden;
}
.bank-name { font-size: 14px; font-weight: 800; letter-spacing: -.03em; margin: 2px 0 0; }
.bank-card {
  border-radius: 16px;
  background: linear-gradient(135deg,#1a1f35,#0d1428);
  border: 1px solid rgba(255,255,255,.08); padding: 14px; flex-shrink: 0;
}
.bank-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.bank-card-brand { font-size: 11px; font-weight: 800; letter-spacing: .06em; color: rgba(255,255,255,.85); }
.bank-chip { width: 24px; height: 18px; border-radius: 4px; background: linear-gradient(135deg,#c8a84b,#f0d060); }
.bank-balance-label { font-size: 10px; opacity: .55; margin: 0; }
.bank-balance-amount { font-size: 20px; font-weight: 800; letter-spacing: -.05em; margin: 2px 0 8px; }
.bank-card-bottom { display: flex; justify-content: space-between; font-size: 10px; opacity: .7; }
.bank-card-num { letter-spacing: .08em; }
.txn-list { display: flex; flex-direction: column; gap: 6px; flex: 1; overflow: hidden; }
.txn-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 10px; border-radius: 10px;
  background: rgba(255,255,255,.05); font-size: 11px;
}
.txn-icon { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; }
.txn-name { font-size: 11px; font-weight: 700; margin: 0; color: white; }
.txn-date { font-size: 9px; color: rgba(255,255,255,.45); margin: 2px 0 0; }

/* ═══════════════════════════════════════
   METRICS SECTION
═══════════════════════════════════════ */
.metrics-section {
  background: linear-gradient(180deg,#080d1c,#050810);
  color: white; padding: 72px 0;
}
.metrics-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.metric-card { padding: 40px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.06); }
.metric-card:last-child { border-right: none; }
.metric-num { font-size: clamp(2.8rem,6vw,5rem); font-weight: 800; letter-spacing: -.07em; color: var(--accent); display: block; }
.metric-label { font-size: .88rem; color: rgba(245,247,251,.5); margin-top: 8px; line-height: 1.4; }

/* ═══════════════════════════════════════
   FEATURED APPS SECTION
═══════════════════════════════════════ */
.apps-section {
  background: radial-gradient(circle at left top,rgba(30,108,255,.1),transparent 30%),var(--bg-muted);
}
.app-tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.app-tab {
  padding: 10px 26px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.6);
  cursor: pointer; font-weight: 700; font-family: inherit;
  font-size: .92rem; color: var(--text-soft);
  transition: all 180ms ease;
}
body[data-theme="dark"] .app-tab { background: rgba(255,255,255,.05); }
.app-tab:hover { border-color: var(--accent); color: var(--accent); }
.app-tab.active {
  background: var(--accent); color: white;
  border-color: transparent; box-shadow: 0 8px 24px rgba(30,108,255,.3);
}
.app-demo-grid { position: relative; min-height: 520px; }
.app-demo { display: none; grid-template-columns: auto 1fr; gap: 64px; align-items: center; }
.app-demo.active { display: grid; animation: fadeSlide 380ms cubic-bezier(.4,0,.2,1); }
@keyframes fadeSlide { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.app-demo-phone .iphone-frame { animation: phoneBob 6s ease-in-out infinite; }
@keyframes phoneBob { 0%,100%{transform:translateY(0) rotate(-.5deg)} 50%{transform:translateY(-10px) rotate(.5deg)} }
.app-demo-info h3 { font-size: clamp(1.8rem,4vw,3rem); font-weight: 800; letter-spacing: -.05em; margin: 8px 0 16px; }
.app-demo-info > p { font-size: 1.05rem; line-height: 1.7; color: var(--text-soft); max-width: 50ch; }
.app-features { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 10px; }
.app-features li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--text-soft); }
.app-features li::before {
  content: "✓"; display: inline-flex; width: 20px; height: 20px;
  border-radius: 50%; background: rgba(30,108,255,.12);
  color: var(--accent); font-size: 11px; font-weight: 800;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.app-tech { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.app-tech span {
  padding: 6px 14px; border-radius: 999px; border: 1px solid var(--line);
  font-size: .8rem; font-weight: 700;
  background: rgba(255,255,255,.6); color: var(--text-soft);
}
body[data-theme="dark"] .app-tech span { background: rgba(255,255,255,.04); }

/* ═══════════════════════════════════════
   PRICING V2
═══════════════════════════════════════ */
.pricing-grid-v2 { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; align-items: stretch; margin-bottom: 24px; }
.pricing-card-v2 { position: relative; display: flex; flex-direction: column; gap: 16px; padding-top: 36px; transition: transform 220ms ease; }
.pricing-card-v2:hover { transform: translateY(-4px); }
.pricing-featured { border-color: var(--accent); box-shadow: 0 0 0 2px rgba(30,108,255,.2),var(--shadow-lg); }
.pricing-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  white-space: nowrap; padding: 5px 18px; border-radius: 999px;
  background: linear-gradient(135deg,var(--accent),var(--accent-soft));
  color: white; font-size: .76rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(30,108,255,.3);
}
.pricing-tier { font-weight: 800; color: var(--text-muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.pricing-amount { display: flex; align-items: baseline; gap: 4px; }
.price-num { font-size: clamp(2.2rem,4vw,3rem); font-weight: 800; letter-spacing: -.06em; }
.price-unit { color: var(--text-muted); font-size: 1rem; font-weight: 600; }
.pricing-desc { color: var(--text-soft); line-height: 1.65; }
.pricing-features { list-style: none; padding: 0; margin: 4px 0; display: grid; gap: 10px; flex: 1; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: var(--text-soft); }
.pricing-features li::before {
  content: "✓"; display: inline-flex; width: 18px; height: 18px;
  border-radius: 50%; background: rgba(30,108,255,.1);
  color: var(--accent); font-size: 10px; font-weight: 800;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.pricing-card-v2 .button { margin-top: auto; width: 100%; justify-content: center; }
.section-sub { color: var(--text-muted); margin-top: 12px; font-size: 1.05rem; }

/* ═══════════════════════════════════════
   BOOKING SECTION
═══════════════════════════════════════ */
.booking-section {
  background: radial-gradient(circle at top left,rgba(30,108,255,.12),transparent 28%),radial-gradient(circle at bottom right,rgba(107,124,255,.08),transparent 28%),var(--bg-soft);
}
.booking-shell { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.booking-copy h2 { font-size: clamp(2rem,4vw,3.2rem); letter-spacing: -.05em; margin: 8px 0 16px; }
.booking-copy > p { color: var(--text-soft); line-height: 1.72; max-width: 48ch; }
.booking-perks { list-style: none; padding: 0; margin: 24px 0; display: grid; gap: 12px; }
.booking-perks li { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: var(--text-soft); }
.booking-perks li::before {
  content: "✓"; display: inline-flex; width: 20px; height: 20px;
  border-radius: 50%; background: rgba(30,108,255,.12);
  color: var(--accent); font-size: 11px; font-weight: 800;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.payment-logos { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.payment-badge {
  padding: 7px 16px; border-radius: 999px; border: 1px solid var(--line);
  font-size: .82rem; font-weight: 700;
  background: rgba(255,255,255,.7); color: var(--text-soft);
}
body[data-theme="dark"] .payment-badge { background: rgba(255,255,255,.05); }
.booking-widget { display: flex; flex-direction: column; gap: 18px; }
.booking-widget-title { font-size: 1.1rem; font-weight: 800; letter-spacing: -.03em; margin: 0; }
.cal-preview { border: 1px solid var(--line); border-radius: 18px; padding: 18px; background: rgba(255,255,255,.5); }
body[data-theme="dark"] .cal-preview { background: rgba(255,255,255,.03); }
.cal-month { font-weight: 800; text-align: center; margin-bottom: 14px; font-size: .95rem; }
.cal-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 6px; text-align: center; margin-bottom: 14px; }
.cal-day-label { font-size: .72rem; color: var(--text-muted); font-weight: 700; padding-bottom: 8px; letter-spacing: .04em; }
.cal-day { padding: 9px 4px; border-radius: 10px; font-size: .85rem; font-weight: 600; cursor: pointer; color: var(--text-muted); transition: all 160ms ease; }
.cal-empty { opacity: .35; cursor: default; }
.cal-available { background: rgba(30,108,255,.1); color: var(--accent); font-weight: 800; }
.cal-available:hover,.cal-selected { background: var(--accent); color: white; }
.cal-time-slots { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.time-slot {
  padding: 10px 6px; border: 1px solid var(--line); border-radius: 10px;
  text-align: center; font-size: .8rem; font-weight: 700; cursor: pointer;
  color: var(--text-soft); transition: all 160ms ease;
}
.time-slot:hover,.slot-selected { border-color: var(--accent); background: rgba(30,108,255,.08); color: var(--accent); }
.booking-widget .button { width: 100%; justify-content: center; min-height: 52px; font-size: 1rem; }

/* ═══════════════════════════════════════
   NEW RESPONSIVE OVERRIDES
═══════════════════════════════════════ */
@media (max-width: 1120px) {
  .app-demo { grid-template-columns: 1fr; justify-items: center; }
  .app-demo-info { text-align: center; }
  .app-demo-info > p,.app-features,.app-tech { margin-left: auto; margin-right: auto; }
  .app-tech { justify-content: center; }
  .pricing-grid-v2 { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 24px; }
  .booking-shell { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 860px) {
  .hero-phone-secondary { display: none; }
  .app-tab { padding: 8px 18px; font-size: .88rem; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .metric-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .metric-card:last-child { border-bottom: none; }
  .cal-time-slots { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .iphone-frame { width: 220px; }
  .iphone-frame.iphone-lg { width: 240px; }
  .metrics-section { padding: 48px 0; }
  .metric-card { padding: 28px 16px; }
}

/* ══ COLLAPSIBLE SECTIONS ══════════════════════════════════════ */
.collapsible-section { padding: 0; border-bottom: 1px solid var(--border); }
.collapsible-section:last-of-type { border-bottom: none; }

.collapse-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
  gap: 20px;
}
.collapse-header:hover .collapse-chevron { color: var(--accent); }
.collapse-header:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 8px; }

.collapse-teaser { display: flex; flex-direction: column; gap: 4px; }
.collapse-teaser .eyebrow { margin-bottom: 0; font-size: .75rem; }
.collapse-summary {
  margin: 0;
  font-size: .9rem;
  color: var(--text-soft);
  line-height: 1.4;
}

.collapse-chevron {
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: transform .3s ease, color .2s;
  flex-shrink: 0;
  line-height: 1;
}
.collapsible-section:not(.collapsed) .collapse-chevron { transform: rotate(90deg); color: var(--accent); }

.collapse-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.4,0,.2,1);
}
.collapsible-section:not(.collapsed) .collapse-body {
  max-height: 4000px;
}
.collapse-body > * { padding-top: 8px; }
.collapse-body .section-heading { padding-top: 0; }

/* Dark collapsible variant */
.collapsible-dark .collapse-header { border-color: rgba(255,255,255,.08); }
.collapsible-dark .collapse-summary { color: rgba(255,255,255,.55); }
.collapsible-dark .collapse-chevron { color: rgba(255,255,255,.4); }
.collapsible-dark .collapse-header:hover .collapse-chevron { color: var(--accent); }

/* ══ APP SCARA / METRICS / LINKS ═══════════════════════════════ */
.app-scara {
  margin: 10px 0 14px;
  padding: 14px 16px;
  background: var(--surface);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
}
.app-scara p { margin: 0 0 6px; font-size: .88rem; color: var(--text-soft); line-height: 1.5; }
.app-scara p:last-child { margin-bottom: 0; }
.app-scara strong { color: var(--text); }

.app-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}
.app-metrics span {
  background: rgba(var(--accent-rgb, 30,108,255), .1);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb, 30,108,255), .2);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .02em;
}
[data-theme="dark"] .app-metrics span { background: rgba(109,144,255,.12); color: #6d90ff; border-color: rgba(109,144,255,.25); }

.app-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.app-link-github {
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: opacity .2s;
}
.app-link-github:hover { opacity: .7; }
.app-link-badge {
  font-size: .78rem;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 12px;
}

/* ══ EXPERTISE GRID ════════════════════════════════════════════ */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.expertise-card { padding: 28px 24px; }
.expertise-years {
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.expertise-card h3 { font-size: 1.05rem; margin: 0 0 10px; }
.expertise-card p { font-size: .88rem; color: var(--text-soft); margin: 0; line-height: 1.55; }
.expertise-primary { border: 1.5px solid var(--accent) !important; }

/* ══ CASE STUDY SCARA ══════════════════════════════════════════ */
.case-situation {
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  font-style: italic;
  margin: 0 0 12px;
  line-height: 1.5;
}
.case-result {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(11,176,123,.1);
  border-left: 3px solid #0bb07b;
  border-radius: 0 8px 8px 0;
  font-size: .84rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}

/* ══ PROOF OF WORK ══════════════════════════════════════════════ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.proof-card { padding: 28px 24px; }
.proof-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.proof-card h3 { margin: 0 0 10px; font-size: 1.05rem; }
.proof-card p { font-size: .88rem; color: var(--text-soft); margin: 0 0 14px; line-height: 1.55; }
.proof-badge {
  display: inline-block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 12px;
}

/* ══ GITHUB SHOWCASE ════════════════════════════════════════════ */
.github-section { background: var(--bg); }
.github-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.github-repo-card { padding: 26px 24px; display: flex; flex-direction: column; gap: 16px; }
.repo-header { display: flex; align-items: flex-start; gap: 14px; }
.repo-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.repo-header h3 { font-size: .95rem; margin: 0 0 6px; font-family: 'SF Mono', 'Menlo', monospace; }
.repo-header p { font-size: .84rem; color: var(--text-soft); margin: 0; line-height: 1.5; }
.repo-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.repo-lang {
  background: rgba(var(--accent-rgb,30,108,255),.1);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb,30,108,255),.2);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: .75rem;
  font-weight: 600;
}
.repo-meta span:last-child { font-size: .8rem; color: var(--text-muted); }
.github-repo-card .button { margin-top: auto; }

.github-activity-card {
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  background: linear-gradient(135deg, var(--surface), var(--bg));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
}
.github-activity-card .eyebrow { margin-bottom: 4px; }
.github-activity-card p { font-size: .9rem; color: var(--text-soft); margin: 0; }
.github-profile-link {
  display: inline-block;
  margin-top: 8px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  transition: opacity .2s;
}
.github-profile-link:hover { opacity: .7; }

/* ══ RESPONSIVE ADDITIONS ══════════════════════════════════════ */
@media (max-width: 1120px) {
  .expertise-grid { grid-template-columns: repeat(2, 1fr); }
  .github-grid { grid-template-columns: 1fr 1fr; }
  .github-activity-card { grid-column: 1 / -1; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .expertise-grid { grid-template-columns: 1fr; }
  .github-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .app-metrics { gap: 6px; }
  .app-links { gap: 8px; }
}
