/* Zyphyr Capital — Accenture-inspired consulting design system */

:root {
  --purple: #A100FF;
  --purple-dark: #7500C0;
  --purple-deep: #460073;
  --purple-soft: #DCAFFF;
  --black: #000000;
  --ink: #101010;
  --surface: #1A1A1A;
  --surface-2: #2B2B2B;
  --white: #FFFFFF;
  --muted: #A2A2A0;
  --muted-2: #616160;
  --line: #333333;
  --soft: #F1F1EF;
  --soft-2: #E3E3DF;
  --font: "Graphik", "Helvetica Neue", Helvetica, Arial, "Segoe UI", sans-serif;
  --serif: "GT Sectra", "Georgia", "Times New Roman", serif;
  --wide: 1240px;
  --wide-lg: 1440px;
  --ease: cubic-bezier(0.85, 0, 0, 1);
  --ease-soft: cubic-bezier(0.25, 0.1, 0.25, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--white);
  background: var(--black);
}
body.mega-open,
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

.inner {
  width: min(100% - 48px, var(--wide));
  margin-inline: auto;
}
.inner-wide {
  width: min(100% - 48px, var(--wide-lg));
  margin-inline: auto;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: transform 0.35s var(--ease), border-color 0.25s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner {
  width: min(100% - 40px, var(--wide-lg));
  margin-inline: auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 5;
}
.logo img { width: 36px; height: 36px; }
.logo-text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
}
.nav-shell {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 24px;
  flex: 1;
}
.nav-item { position: static; }
.nav-trigger,
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-trigger:hover,
.nav-link:hover,
.nav-trigger[aria-expanded="true"] { color: var(--purple-soft); }
.nav-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.7;
}
.header-utils {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.cta-square {
  width: 28px;
  height: 28px;
  background: var(--purple);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 16px;
  line-height: 1;
  transition: background 0.25s var(--ease);
}
.header-cta:hover .cta-square,
.btn-purple:hover .cta-square,
.link-cta:hover .cta-square { background: var(--purple-dark); }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  margin-left: auto;
  position: relative;
  z-index: 5;
}
.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: 0.25s var(--ease);
}

/* Mega menu */
.mega-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 72px;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0 48px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
  z-index: 250;
  max-height: calc(100vh - 72px);
  overflow: auto;
}
.mega-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.mega-top h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr;
  gap: 40px;
}
.mega-col h3 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.mega-col a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.mega-col a:hover {
  color: var(--purple-soft);
  border-bottom-color: var(--purple);
}
.mega-col a span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 2px;
}
.mega-featured {
  display: grid;
  gap: 16px;
}
.mega-card {
  display: block;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.45s var(--ease), border-color 0.25s;
}
.mega-card:hover {
  transform: scale(1.02);
  border-color: var(--purple);
}
.mega-card .eyebrow {
  color: var(--purple-soft);
  margin-bottom: 8px;
}
.mega-card h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.mega-card p {
  font-size: 14px;
  color: var(--muted);
}

.mobile-acc { display: none; }

/* ── Buttons / CTAs ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  padding: 4px 4px 4px 0;
  transition: color 0.2s;
}
.btn-purple { color: var(--white); }
.btn-white { color: var(--white); }
.btn-outline {
  border: 1px solid var(--white);
  padding: 12px 22px;
  gap: 0;
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 16px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #000;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroZoom 18s var(--ease-soft) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 48%, rgba(0,0,0,0.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(10,0,20,0.35) 40%, rgba(0,0,0,0.85) 100%),
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(161,0,255,0.22), transparent 60%);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.18;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: min(100% - 48px, var(--wide-lg));
  margin: 80px auto 64px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
}
.hero-brand {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--purple-soft);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.75rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.hero h1 .gt {
  display: inline-block;
  color: var(--purple);
  transform: translateY(-0.05em);
}
.hero-copy {
  padding-bottom: 8px;
}
.hero-rule {
  width: 42px;
  height: 5px;
  background: var(--purple);
  margin-bottom: 22px;
}
.hero-copy h2 {
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.25;
}
.hero-copy p {
  color: var(--muted);
  font-size: 16px;
  max-width: 38ch;
  margin-bottom: 24px;
}

/* ── Sections ── */
.section {
  padding: 88px 0;
}
.section-tight { padding: 64px 0; }
.section-light {
  background: var(--soft);
  color: var(--ink);
}
.section-light .muted,
.section-light p.lead { color: var(--muted-2); }
.section-surface { background: var(--ink); }
.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-head h2,
.page-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 12px 0 18px;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 58ch;
}
.section-light .lead { color: #4a4a48; }

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
.zc-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), border-color 0.25s;
  overflow: hidden;
}
.zc-card:hover {
  transform: scale(1.02);
  border-color: var(--purple);
}
.zc-card.purple {
  background: linear-gradient(160deg, var(--purple-deep), #2a0048 55%, #120018);
  border-color: transparent;
}
.zc-card.soft {
  background: linear-gradient(160deg, #f7efff, #ebe0ff);
  color: var(--ink);
  border-color: transparent;
}
.zc-card.soft .eyebrow { color: var(--purple-dark); }
.zc-card.soft p { color: #4a4a48; }
.zc-card h3 {
  font-size: 1.45rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 10px 0 12px;
  line-height: 1.2;
}
.zc-card p {
  color: var(--muted);
  font-size: 15px;
  flex: 1;
}
.zc-card .link-cta { margin-top: 20px; }

/* Photo cards — Accenture insight style */
.zc-card.photo {
  padding: 0;
  min-height: 420px;
  border: 0;
  position: relative;
  color: var(--white);
  background: #111;
}
.zc-card.photo .zc-card-media {
  position: absolute;
  inset: 0;
}
.zc-card.photo .zc-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.zc-card.photo:hover .zc-card-media img { transform: scale(1.06); }
.zc-card.photo .zc-card-body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 28px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 28%, rgba(0,0,0,0.92) 100%);
  display: flex;
  flex-direction: column;
  min-height: 55%;
  justify-content: flex-end;
}
.zc-card.photo p { color: rgba(255,255,255,0.78); }
.zc-card.photo .eyebrow { color: var(--purple-soft); }

.zc-card.photo-top {
  padding: 0;
  min-height: 0;
  border: 0;
  background: var(--surface);
}
.zc-card.photo-top .zc-card-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.zc-card.photo-top .zc-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.zc-card.photo-top:hover .zc-card-media img { transform: scale(1.05); }
.zc-card.photo-top .zc-card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Quote band */
.quote-band {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(161,0,255,0.12), transparent 60%),
    var(--black);
}
.quote-band h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 0 auto 20px;
  line-height: 1.1;
}
.quote-band .serif {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--muted);
  max-width: 40ch;
  margin: 0 auto 28px;
  font-style: italic;
}

/* Split / capability rows */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split-media {
  min-height: 420px;
  background: #111;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}
.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(161,0,255,0.28), transparent 55%);
  pointer-events: none;
}
.split-media.framed::before {
  content: "";
  position: absolute;
  inset: 18% 18%;
  border: 1px solid rgba(220,175,255,0.45);
  z-index: 2;
  pointer-events: none;
}
.list-check {
  margin-top: 20px;
}
.list-check li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}
.list-check li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}
.section-light .list-check li {
  color: #3f3f3d;
  border-bottom-color: #d9d9d4;
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  padding: 96px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 90% 0%, rgba(161,0,255,0.2), transparent 50%),
    var(--black);
  border-bottom: 1px solid var(--line);
}
.page-hero.has-media { min-height: 420px; display: grid; align-items: end; }
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 10%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.4) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.82));
}
.page-hero .inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--purple-soft); }
.breadcrumb span { opacity: 0.5; }
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: 18px;
}
.page-hero .lead { max-width: 54ch; }

.prose {
  max-width: 720px;
}
.prose h2 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 36px 0 14px;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 28px 0 10px;
}
.prose p { color: var(--muted); margin-bottom: 14px; }
.prose ul {
  margin: 12px 0 20px;
  padding-left: 0;
}
.prose li {
  position: relative;
  padding: 8px 0 8px 22px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--purple);
}

.content-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.side-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  position: sticky;
  top: 96px;
}
.side-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.side-card p,
.side-card a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 8px;
}
.side-card a:hover { color: var(--purple-soft); }

/* Industries tiles */
.tile-list a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
.tile-list a:hover { color: var(--purple-soft); }
.tile-list h3 {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.tile-list p { color: var(--muted); font-size: 15px; max-width: 60ch; }
.tile-list .cta-square { flex-shrink: 0; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
}
.contact-details h2 {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 8px 0 16px;
}
.contact-details p { color: var(--muted); margin-bottom: 10px; }
.contact-details a { color: var(--purple-soft); }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--white);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--purple); }
.form-note {
  font-size: 14px;
  color: var(--purple-soft);
  margin-top: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* CTA band */
.cta-band {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(120deg, var(--purple-deep), #1a0028 45%, #000);
  border-top: 1px solid rgba(161,0,255,0.25);
}
.cta-band-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, rgba(70,0,115,0.88), rgba(0,0,0,0.75) 55%, rgba(0,0,0,0.9));
}
.cta-band .inner { position: relative; z-index: 2; }
.cta-band h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin-bottom: 16px;
}
.cta-band p {
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 28px;
}

/* Image tiles & featured bands */
.feature-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  min-height: 480px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.feature-band-media {
  min-height: 320px;
  position: relative;
}
.feature-band-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 480px;
}
.feature-band-copy {
  padding: 48px 40px;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tile-list a.has-thumb {
  grid-template-columns: 140px 1fr auto;
  align-items: center;
}
.tile-thumb {
  width: 140px;
  height: 90px;
  overflow: hidden;
  background: #111;
}
.tile-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.tile-list a:hover .tile-thumb img { transform: scale(1.06); }

.mega-card.with-image {
  padding: 0;
  overflow: hidden;
}
.mega-card.with-image .mega-card-media {
  height: 120px;
  overflow: hidden;
}
.mega-card.with-image .mega-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-card.with-image .mega-card-body { padding: 18px 20px 20px; }

.article-hero-img {
  margin: 0 0 32px;
  border: 1px solid var(--line);
  overflow: hidden;
  max-height: 420px;
}
.article-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .feature-band { grid-template-columns: 1fr; }
  .feature-band-media img { min-height: 280px; }
  .tile-list a.has-thumb { grid-template-columns: 100px 1fr; }
  .tile-list a.has-thumb .cta-square { display: none; }
}

/* Footer */
.site-footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--black);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.footer-brand .logo-text {
  display: inline-block;
  margin-bottom: 14px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  max-width: 42ch;
}
.footer-col h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--white);
  padding: 6px 0;
}
.footer-col a:hover { color: var(--purple-soft); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted-2);
}
.footer-bottom a { color: var(--muted); margin-left: 14px; }
.footer-bottom a:hover { color: var(--purple-soft); }
.footer-lockup {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: rgba(161,0,255,0.35);
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  margin-top: 24px;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Mobile */
@media (max-width: 1024px) {
  .hero-inner,
  .split,
  .content-grid,
  .contact-grid,
  .mega-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .card-grid,
  .card-grid-4 { grid-template-columns: 1fr 1fr; }
  .side-card { position: static; }
}

@media (max-width: 860px) {
  .menu-btn { display: block; }
  .nav-shell,
  .header-utils .header-cta { display: none; }
  body.nav-open .nav-shell {
    display: block;
    position: fixed;
    inset: 0;
    background: var(--black);
    padding: 96px 24px 40px;
    overflow: auto;
    margin: 0;
    z-index: 4;
  }
  body.nav-open .menu-btn span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.nav-open .menu-btn span:nth-child(2) { opacity: 0; }
  body.nav-open .menu-btn span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-item { display: block; border-bottom: 1px solid var(--line); }
  .nav-trigger,
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 18px;
  }
  .mega-panel {
    position: static;
    display: none;
    padding: 0 0 16px;
    border: 0;
    max-height: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .mega-panel.is-open { display: block; }
  .mega-top { margin-bottom: 16px; }
  .mega-top h2 { font-size: 1.25rem; }
  .mega-featured { display: none; }
  .mobile-acc { display: block; margin-top: 24px; }
  .mobile-acc a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    font-size: 16px;
  }
  .card-grid,
  .card-grid-2,
  .card-grid-4,
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-inner { margin: 48px auto 56px; gap: 28px; }
  .hero h1 { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .section { padding: 64px 0; }
  .footer-bottom a { margin-left: 0; margin-right: 14px; }
}
