:root {
  --bg: #f0f4fb;
  --bg-soft: #e8edf7;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.98);
  --text: #0d1b2e;
  --muted: #4d6880;
  --line: rgba(14, 40, 80, 0.1);
  --line-bright: rgba(14, 40, 80, 0.16);
  --accent: #0cbf94;
  --accent-strong: #d97706;
  --accent-alt: #2563eb;
  --accent-purple: #7c3aed;
  --shadow: 0 8px 40px rgba(14, 40, 80, 0.1);
  --shadow-sm: 0 4px 16px rgba(14, 40, 80, 0.07);
  --glow-teal: rgba(12, 191, 148, 0.14);
  --glow-gold: rgba(217, 119, 6, 0.12);
  --glow-blue: rgba(37, 99, 235, 0.12);
  --glow-purple: rgba(124, 58, 237, 0.1);
  --rim: inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse at 10% 5%, rgba(37, 99, 235, 0.12), transparent 35%),
    radial-gradient(ellipse at 90% 5%, rgba(124, 58, 237, 0.09), transparent 30%),
    radial-gradient(ellipse at 20% 90%, rgba(217, 119, 6, 0.08), transparent 28%),
    radial-gradient(ellipse at 80% 85%, rgba(12, 191, 148, 0.09), transparent 28%),
    linear-gradient(180deg, #eef3fc 0%, #f4f7fd 50%, #eef3fc 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 40, 80, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 40, 80, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
  z-index: 0;
}

/* ── Scroll progress bar ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt), var(--accent-strong));
  z-index: 1000;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 10px var(--glow-teal);
}

.page-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.hero {
  padding: 22px 0 34px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 20px;
  border: 1px solid var(--line-bright);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(14, 40, 80, 0.08), var(--rim);
  transition: border-color 300ms ease, box-shadow 300ms ease;
}

.topbar.scrolled {
  border-color: rgba(12, 191, 148, 0.3);
  box-shadow: 0 6px 32px rgba(14, 40, 80, 0.12), var(--rim);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  animation: pulseGlow 3s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(12, 191, 148, 0.35);
}

.brand-name,
.brand-subtitle,
.eyebrow,
.service-index {
  margin: 0;
}

.brand-name {
  font-weight: 700;
  color: var(--text);
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.contact-details a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: color 200ms ease;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--accent);
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding-bottom: 3px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
  transition: width 250ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 52px 0 20px;
}

/* ── Eyebrow pill ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(12, 191, 148, 0.1);
  border: 1px solid rgba(12, 191, 148, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.contact-copy h2 {
  margin: 14px 0 18px;
  font-family: "Space Grotesk", sans-serif;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  max-width: 10ch;
  background: linear-gradient(135deg, #0d1b2e 0%, #0a3356 45%, var(--accent) 80%, var(--accent-alt) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 6s ease infinite;
}

.hero-text,
.section-copy,
.feature-card p,
.service-card p,
.timeline-card p,
.contact-copy p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 8px 24px rgba(12, 191, 148, 0.3);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.3) 50%, transparent 60%);
  background-size: 200% 100%;
  background-position: 200% 0;
  transition: background-position 500ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  background-position: -200% 0;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(12, 191, 148, 0.38);
}

.button-ghost {
  background: transparent;
  border-color: var(--line-bright);
  color: var(--text);
  box-shadow: none;
}

.button-ghost::after {
  display: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(12, 191, 148, 0.4);
  box-shadow: 0 4px 16px rgba(14, 40, 80, 0.1);
  background: rgba(12, 191, 148, 0.05);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.stat,
.feature-card,
.timeline-card,
.contact-panel,
.contact-copy,
.service-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow), var(--rim);
}

.stat {
  padding: 18px;
  border-radius: 20px;
  transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.stat:hover {
  border-color: rgba(12, 191, 148, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(14, 40, 80, 0.12), var(--rim);
}

.stat strong,
.feature-card h3,
.service-card h3,
.timeline-card h3,
.contact-panel h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.stat span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 191, 148, 0.1), transparent 70%);
  pointer-events: none;
}

.floating-panel {
  position: absolute;
  border: 1px solid var(--line-bright);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(14, 40, 80, 0.14), var(--rim);
  backdrop-filter: blur(20px);
}

.panel-main {
  width: min(100%, 430px);
  padding: 30px;
  z-index: 2;
  animation: floatCard 4.8s ease-in-out infinite;
}

.panel-main h2 {
  margin: 12px 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  color: var(--text);
}

.panel-main p,
.panel-side p {
  color: var(--muted);
  margin: 0;
}

.panel-tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(12, 191, 148, 0.1);
  border: 1px solid rgba(12, 191, 148, 0.25);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.panel-side {
  right: 8%;
  bottom: 10%;
  width: min(280px, 75%);
  padding: 22px;
  z-index: 3;
  animation: floatCard 5.8s ease-in-out infinite reverse;
}

.mini-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 8px rgba(217, 119, 6, 0.12);
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
}

.orbit-one {
  width: 480px;
  height: 480px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  animation: rotateSlow 20s linear infinite;
}

.orbit-two {
  width: 360px;
  height: 360px;
  border: 1px dashed rgba(12, 191, 148, 0.18);
  animation: rotateSlow 14s linear infinite reverse;
}

.section {
  padding: 56px 0 0;
}

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

.section-heading h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  position: relative;
  display: inline-block;
  color: var(--text);
}

.feature-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.timeline-card {
  padding: 24px;
  border-radius: 24px;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(12, 191, 148, 0.3);
  box-shadow: 0 20px 48px rgba(14, 40, 80, 0.13), var(--rim);
}

.carousel-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 20px;
  width: 100%;
  overflow-x: auto;
  padding: 8px 4px 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.service-card {
  min-height: 360px;
  padding: 28px;
  border-radius: 28px;
  scroll-snap-align: start;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  border-top-width: 3px;
  border-top-style: solid;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(14, 40, 80, 0.14), var(--rim);
}

.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.9;
}

.service-index {
  color: rgba(14, 40, 80, 0.3);
  font-size: 0.88rem;
  letter-spacing: 0.2em;
}

.java {
  background: linear-gradient(155deg, rgba(37, 99, 235, 0.07) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-top-color: var(--accent-alt);
}

.java:hover {
  box-shadow: 0 24px 56px rgba(14, 40, 80, 0.12), var(--rim), 0 0 30px rgba(37, 99, 235, 0.1);
}

.advanced-java {
  background: linear-gradient(155deg, rgba(124, 58, 237, 0.07) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-top-color: var(--accent-purple);
}

.advanced-java:hover {
  box-shadow: 0 24px 56px rgba(14, 40, 80, 0.12), var(--rim), 0 0 30px rgba(124, 58, 237, 0.1);
}

.aws {
  background: linear-gradient(155deg, rgba(217, 119, 6, 0.07) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-top-color: var(--accent-strong);
}

.aws:hover {
  box-shadow: 0 24px 56px rgba(14, 40, 80, 0.12), var(--rim), 0 0 30px rgba(217, 119, 6, 0.12);
}

.python {
  background: linear-gradient(155deg, rgba(12, 191, 148, 0.07) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-top-color: var(--accent);
}

.python:hover {
  box-shadow: 0 24px 56px rgba(14, 40, 80, 0.12), var(--rim), 0 0 30px rgba(12, 191, 148, 0.12);
}

.frontend {
  background: linear-gradient(155deg, rgba(220, 38, 38, 0.07) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-top-color: #ef4444;
}

.frontend:hover {
  box-shadow: 0 24px 56px rgba(14, 40, 80, 0.12), var(--rim), 0 0 30px rgba(220, 38, 38, 0.1);
}

.git {
  background: linear-gradient(155deg, rgba(234, 88, 12, 0.07) 0%, rgba(255, 255, 255, 0.9) 100%);
  border-top-color: #f97316;
}

.git:hover {
  box-shadow: 0 24px 56px rgba(14, 40, 80, 0.12), var(--rim), 0 0 30px rgba(234, 88, 12, 0.1);
}

.carousel-button {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-bright);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  box-shadow: var(--shadow-sm);
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: scale(1.08);
  border-color: rgba(12, 191, 148, 0.4);
  background: #fff;
  box-shadow: 0 8px 24px rgba(14, 40, 80, 0.14);
}

/* ── Timeline ── */
.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 56px;
  left: calc(16.67% + 12px);
  right: calc(16.67% + 12px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-alt), transparent);
  opacity: 0.25;
  pointer-events: none;
}

.timeline-card {
  position: relative;
  border-left: 3px solid rgba(12, 191, 148, 0.4);
}

.timeline-card:nth-child(2) {
  border-left-color: rgba(37, 99, 235, 0.4);
}

.timeline-card:nth-child(3) {
  border-left-color: rgba(217, 119, 6, 0.4);
}

.timeline-card span {
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.timeline-card:nth-child(2) span { color: var(--accent-alt); }
.timeline-card:nth-child(3) span { color: var(--accent-strong); }

.timeline-card:hover {
  transform: translateY(-5px);
  border-color: rgba(12, 191, 148, 0.35);
  box-shadow: 0 16px 40px rgba(14, 40, 80, 0.12), var(--rim);
}

/* ── Feature card icon ── */
.card-icon {
  font-size: 1.9rem;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(12, 191, 148, 0.08);
  border: 1px solid rgba(12, 191, 148, 0.2);
  transition: background 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.feature-card:hover .card-icon {
  background: rgba(12, 191, 148, 0.14);
  border-color: rgba(12, 191, 148, 0.4);
  box-shadow: 0 0 20px rgba(12, 191, 148, 0.15);
}

/* ── Section subtext ── */
.section-subtext {
  color: var(--muted);
  margin-top: -10px;
  margin-bottom: 28px;
  max-width: 60ch;
  line-height: 1.7;
}

/* ── Contact ── */
.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.contact-copy,
.contact-panel {
  padding: 28px;
  border-radius: 28px;
}

/* ── Trust badges ── */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(12, 191, 148, 0.25);
  background: rgba(12, 191, 148, 0.07);
  color: #0a9a78;
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 200ms ease, border-color 200ms ease;
}

.badge:hover {
  background: rgba(12, 191, 148, 0.13);
  border-color: rgba(12, 191, 148, 0.4);
}

/* ── WhatsApp button (inside contact panel) ── */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.97rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover,
.whatsapp-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  color: #fff;
}

/* ── Floating WhatsApp button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}

/* ── FAQ Section ── */
.faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.faq-item[open] {
  border-color: rgba(12, 191, 148, 0.35);
  box-shadow: 0 6px 24px rgba(14, 40, 80, 0.1), var(--rim);
}

.faq-item summary {
  list-style: none;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  color: var(--text);
  transition: color 200ms ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  color: var(--accent);
}

.faq-item summary::after {
  content: "+";
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item > p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Who We Help ── */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.audience-card {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow), var(--rim);
  border-radius: 28px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

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

.audience-students {
  background: linear-gradient(150deg, rgba(12, 191, 148, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(12, 191, 148, 0.2);
}

.audience-students:hover {
  border-color: rgba(12, 191, 148, 0.45);
  box-shadow: var(--shadow), var(--rim), 0 0 40px rgba(12, 191, 148, 0.08);
}

.audience-startups {
  background: linear-gradient(150deg, rgba(217, 119, 6, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: rgba(217, 119, 6, 0.2);
}

.audience-startups:hover {
  border-color: rgba(217, 119, 6, 0.45);
  box-shadow: var(--shadow), var(--rim), 0 0 40px rgba(217, 119, 6, 0.08);
}

.audience-icon {
  font-size: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(14, 40, 80, 0.04);
  border: 1px solid rgba(14, 40, 80, 0.08);
}

.audience-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  margin: 0;
  color: var(--text);
}

.audience-card > p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.audience-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.audience-students .audience-btn {
  background: linear-gradient(135deg, var(--accent), #3ae8bc);
  color: #fff;
  margin-top: auto;
  align-self: flex-start;
  box-shadow: 0 6px 20px rgba(12, 191, 148, 0.28);
}

.audience-startups .audience-btn {
  background: linear-gradient(135deg, var(--accent-strong), #f5c84a);
  color: #fff;
  margin-top: auto;
  align-self: flex-start;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.28);
}

.audience-startups .audience-btn:hover {
  box-shadow: 0 14px 32px rgba(217, 119, 6, 0.36);
}

/* ── Startup services grid ── */
.startup-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ── Scroll reveal ── */
.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.will-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Site Footer ── */
.site-footer {
  margin-top: 64px;
  padding: 32px 0 14px;
  border-top: 1px solid var(--line-bright);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.6;
}

.site-footer p {
  margin: 6px 0;
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-note {
  font-size: 0.82rem;
  opacity: 0.7;
}

/* ── Keyframes ── */
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes gradientText {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(12, 191, 148, 0.35); }
  50% { box-shadow: 0 4px 28px rgba(12, 191, 148, 0.6), 0 0 0 8px rgba(12, 191, 148, 0.08); }
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .hero-grid,
  .contact-card,
  .feature-grid,
  .timeline,
  .audience-grid,
  .startup-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1200px);
  }

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

  .nav-actions {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .carousel-shell {
    display: block;
  }

  .carousel-button {
    display: none;
  }

  .carousel-track {
    grid-auto-columns: 84%;
  }

  .panel-side {
    right: 2%;
    bottom: 4%;
  }
}
