:root {
  --brand-primary: #7c3aed;
  --brand-secondary: #c084fc;
  --brand-accent: #f59e0b;
  --brand-dark: #0b0616;
  --brand-surface: #120a23;
  --brand-text: #ede9fe;
  --brand-muted: #d0cbf0;
  --shadow: 0 24px 60px rgba(11, 6, 22, 0.35);
}

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

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, var(--brand-surface) 0%, var(--brand-dark) 60%);
  color: var(--brand-text);
  min-height: 100vh;
}

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

/* ── Skip link (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--brand-primary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 0 0 8px 8px;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Topbar ── */
.topbar {
  background: var(--brand-dark);
  color: var(--brand-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 6vw;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.topbar a {
  color: var(--brand-muted);
}

.topbar__left {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.topbar__right {
  display: flex;
  gap: 0.8rem;
  font-weight: 600;
}

/* ── Navigation ── */
.nav {
  background: var(--brand-surface);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 6vw;
  border-bottom: 1px solid rgba(124, 58, 237, 0.2);
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--brand-text);
}

.brand__icon {
  font-size: 1.8rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--brand-text);
}

.brand__sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brand-muted);
  font-weight: 500;
  margin-top: 0.15rem;
}

.nav__links {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  font-size: 0.95rem;
}

.nav__links a {
  position: relative;
}

.nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 100%;
  height: 2px;
  background: var(--brand-secondary);
}

/* ── Hamburger toggle ── */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 20;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-text);
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Button ── */
.button {
  background: var(--brand-primary);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 26px rgba(124, 58, 237, 0.45);
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(124, 58, 237, 0.5);
}

.button--accent {
  background: var(--brand-accent);
  color: #0b0616;
  box-shadow: 0 10px 26px rgba(245, 158, 11, 0.35);
}

.button--accent:hover {
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.45);
}

/* ── Hero ── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  min-height: 64vh;
  overflow: hidden;
}

.hero__media {
  grid-column: 1 / -1;
  background-image: linear-gradient(130deg, rgba(11, 6, 22, 0.72), rgba(124, 58, 237, 0.25)),
    url("assets/background2.webp");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.15);
  min-height: 64vh;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 6vw;
}

.hero__card {
  background: rgba(18, 10, 35, 0.92);
  border-left: 6px solid var(--brand-secondary);
  padding: 2.5rem;
  max-width: 460px;
  box-shadow: var(--shadow);
  animation: floatIn 0.8s ease-out both;
}

.hero__card h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero__card p {
  color: var(--brand-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.75rem;
  color: var(--brand-secondary);
  margin-bottom: 0.8rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* ── Section heading ── */
.section-heading {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.6rem;
}

.section-heading p {
  color: var(--brand-muted);
  line-height: 1.7;
}

/* ── Proof / social proof ── */
.proof {
  background: var(--brand-dark);
  padding: 2.5rem 6vw 1.5rem;
}

.proof__content {
  display: grid;
  gap: 1.2rem;
  justify-items: center;
  text-align: center;
  color: var(--brand-muted);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.logo-chip {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  background: rgba(18, 10, 35, 0.7);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: var(--brand-text);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Link style ── */
.link {
  color: var(--brand-secondary);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.link::after {
  content: "\2192";
  transition: transform 0.2s ease;
}

.link:hover {
  border-color: var(--brand-primary);
}

.link:hover::after {
  transform: translateX(4px);
}

/* ── Decorative orbs ── */
.has-orb {
  position: relative;
  overflow: hidden;
}

.has-orb::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.has-orb--right::before {
  top: -120px;
  right: -160px;
}

.has-orb--left::before {
  bottom: -120px;
  left: -160px;
}

.has-orb > * {
  position: relative;
  z-index: 1;
}

/* ── Dot-grid texture ── */
.has-dots {
  position: relative;
}

.has-dots::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(124, 58, 237, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 20%, transparent 100%);
}

/* ── Network constellation graphic ── */
.network-graphic {
  display: flex;
  justify-content: center;
  padding: 2rem 6vw 0;
  background: var(--brand-dark);
  overflow: hidden;
}

.network-graphic svg {
  width: 100%;
  max-width: 800px;
  height: auto;
  opacity: 0.6;
}

/* ── Features with illustration ── */
.features--illustrated {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.features--illustrated .features__list {
  margin: 0;
}

.features__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.features__visual svg {
  width: 100%;
  max-width: 360px;
  height: auto;
}

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

  .features__visual {
    order: -1;
  }

  .features__visual svg {
    max-width: 260px;
  }
}

/* ── Wave dividers ── */
.wave-divider {
  background: var(--brand-dark);
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 40px;
}

.wave-divider--flip {
  background: var(--brand-dark);
  transform: scaleY(-1);
  margin-bottom: -1px;
  margin-top: 0;
}

/* ── Stats strip ── */
.stats {
  background: var(--brand-surface);
  padding: 4rem 6vw;
  border-top: 1px solid rgba(124, 58, 237, 0.15);
  border-bottom: 1px solid rgba(124, 58, 237, 0.15);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.stat__value {
  display: block;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--brand-accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat__label {
  color: var(--brand-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ── Testimonial ── */
.testimonial {
  background: var(--brand-dark);
  padding: 5rem 6vw;
  text-align: center;
}

.testimonial__quote {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial__quote blockquote {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--brand-text);
  margin-bottom: 1.5rem;
}

.testimonial__quote blockquote::before {
  content: "\201C";
  display: block;
  font-size: 3rem;
  line-height: 1;
  color: var(--brand-accent);
  margin-bottom: 0.5rem;
}

.testimonial__attribution {
  color: var(--brand-muted);
  font-size: 0.95rem;
}

.testimonial__attribution strong {
  color: var(--brand-text);
}

/* ── Services grid ── */
.services {
  background: var(--brand-dark);
  padding: 4rem 6vw 5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
}

.service {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.25), var(--brand-surface));
  color: #fff;
  padding: 2rem;
  border-radius: 16px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 18px 40px rgba(11, 6, 22, 0.5);
  border-top: 3px solid var(--brand-primary);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(124, 58, 237, 0.35);
}

.service:nth-child(2) {
  background: linear-gradient(160deg, rgba(192, 132, 252, 0.3), var(--brand-surface));
  border-top-color: var(--brand-secondary);
}

.service:nth-child(3) {
  background: linear-gradient(160deg, rgba(124, 58, 237, 0.4), var(--brand-surface));
  border-top-color: #a855f7;
}

.service__icon {
  font-size: 1.8rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.service p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

/* ── Scroll-triggered animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Stagger children inside grids */
.reveal-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal-children.is-visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(3) { transition-delay: 0.24s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(4) { transition-delay: 0.36s; opacity: 1; transform: translateY(0); }
.reveal-children.is-visible > *:nth-child(5) { transition-delay: 0.48s; opacity: 1; transform: translateY(0); }

/* ── "How We Work" alternate layout: numbered steps ── */
.steps {
  background: var(--brand-dark);
  padding: 5rem 6vw 6rem;
  border-top: 1px solid rgba(124, 58, 237, 0.15);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  counter-reset: step;
}

.step {
  counter-increment: step;
  position: relative;
  padding: 3rem 2rem 2.5rem;
  background: var(--brand-surface);
  border-radius: 16px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-left: 3px solid rgba(124, 58, 237, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 12px 30px rgba(11, 6, 22, 0.4);
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(124, 58, 237, 0.15);
  position: absolute;
  top: 0.6rem;
  right: 1.2rem;
  line-height: 1;
}

.step h3 {
  margin-bottom: 0.6rem;
}

.step p {
  color: var(--brand-muted);
  line-height: 1.6;
}

/* ── "Why Starfire" alternate layout: horizontal feature rows ── */
.features {
  background: var(--brand-surface);
  padding: 4rem 6vw 5rem;
}

.features__list {
  display: grid;
  gap: 1.6rem;
  max-width: 720px;
  margin: 0 auto;
}

.feature {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(11, 6, 22, 0.4);
  border: 1px solid rgba(124, 58, 237, 0.15);
}

.feature__icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 58, 237, 0.2);
  border-radius: 10px;
  font-size: 1.4rem;
}

.feature h3 {
  margin-bottom: 0.3rem;
}

.feature p {
  color: var(--brand-muted);
  line-height: 1.6;
}

/* ── Industries section ── */
.industries {
  background: var(--brand-surface);
  padding: 5rem 6vw 6rem;
  border-top: 1px solid rgba(124, 58, 237, 0.15);
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}

.industry {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  background: rgba(11, 6, 22, 0.5);
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.industry:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.45);
  box-shadow: 0 12px 30px rgba(11, 6, 22, 0.4);
}

.industry__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  background: rgba(124, 58, 237, 0.2);
  border-radius: 10px;
}

.industry h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.industry p {
  color: var(--brand-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Social proof strip (legacy) ── */
.proof-strip {
  background: var(--brand-dark);
  padding: 3rem 6vw;
  text-align: center;
}

.proof-strip__heading {
  color: var(--brand-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.proof-strip__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.proof-strip__item {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  background: rgba(18, 10, 35, 0.7);
  border: 1px solid rgba(124, 58, 237, 0.25);
  color: var(--brand-text);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Team section ── */
.team {
  background: var(--brand-surface);
  padding: 4rem 6vw 5rem;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.team__card {
  background: rgba(11, 6, 22, 0.55);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(124, 58, 237, 0.2);
  text-align: center;
}

.team__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1rem;
}

.team__card h3 {
  margin-bottom: 0.2rem;
}

.team__card .team__role {
  color: var(--brand-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.team__card p:last-child {
  color: var(--brand-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ── Contact ── */
.contact {
  background: var(--brand-surface);
  padding: 4rem 6vw;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: center;
}

.contact__content h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.contact__content p {
  color: var(--brand-muted);
  line-height: 1.6;
}

.contact__form {
  display: grid;
  gap: 1rem;
}

.contact__form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.9rem;
  color: var(--brand-muted);
}

.contact__form input,
.contact__form textarea {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(124, 58, 237, 0.3);
  font-size: 1rem;
  background: rgba(11, 6, 22, 0.35);
  color: var(--brand-text);
  font-family: inherit;
  resize: vertical;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 1px;
  border-color: var(--brand-primary);
}

.contact__form .form-status {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  display: none;
}

.contact__form .form-status.is-success {
  display: block;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.contact__form .form-status.is-error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

/* ── Detail cards (services page) ── */
.detail {
  background: var(--brand-surface);
  padding: 4rem 6vw;
}

.detail__grid {
  display: grid;
  gap: 2rem;
}

.detail__card {
  background: rgba(11, 6, 22, 0.55);
  border-radius: 18px;
  padding: 2.5rem;
  border: 1px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 16px 40px rgba(11, 6, 22, 0.45);
}

.detail__card h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin-bottom: 0.8rem;
}

.detail__card p {
  color: var(--brand-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.detail__list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--brand-text);
}

.detail__list li::before {
  content: "\2022";
  color: var(--brand-secondary);
  font-weight: 700;
  margin-right: 0.6rem;
}

.detail__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin: 1.6rem 0 1.4rem;
}

.metric {
  background: rgba(18, 10, 35, 0.7);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.metric__value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-text);
}

.metric__label {
  display: block;
  color: var(--brand-muted);
  font-size: 0.9rem;
  margin-top: 0.2rem;
}

.detail__case {
  border-top: 1px solid rgba(124, 58, 237, 0.25);
  padding-top: 1.2rem;
  color: var(--brand-muted);
}

.detail__case strong {
  display: block;
  color: var(--brand-text);
  margin-bottom: 0.4rem;
}

/* ── Footer ── */
.footer {
  background: var(--brand-dark);
  padding: 4rem 6vw 2rem;
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  color: var(--brand-muted);
  font-size: 0.9rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  margin-top: 0.8rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer__col h4 {
  color: var(--brand-text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.footer__col ul {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer__col a {
  color: var(--brand-muted);
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--brand-text);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(124, 58, 237, 0.15);
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.footer__social a {
  color: var(--brand-muted);
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.footer__social a:hover {
  color: var(--brand-accent);
}

/* ── Keyframes ── */
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav__toggle {
    display: block;
  }

  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brand-surface);
    padding: 1.5rem 6vw;
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    gap: 1rem;
    align-items: flex-start;
    z-index: 10;
  }

  .nav__links.is-open {
    display: flex;
  }

  .hero__content {
    position: relative;
    padding: 3rem 6vw;
  }

  .hero__card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .topbar {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }

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

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

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
