/* 247 Virtual Solution LLC — Carbon & Copper */
:root {
  --ink: #0C1017;
  --ink-soft: #151B26;
  --pearl: #F5F6F8;
  --paper: #FFFFFF;
  --mute: #6B7280;
  --line: #E2E5EA;
  --line-dark: #2A3140;
  --copper: #C4784A;
  --copper-bright: #E8A87C;
  --copper-soft: #F3E6DC;
  --text: #1A1F2A;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--pearl);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--copper);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(12, 16, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s, backdrop-filter 0.3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line-dark);
  background: rgba(12, 16, 23, 0.97);
}
body.is-eco-live .site-header {
  background: #0C1017;
  backdrop-filter: none;
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.logo-img {
  display: block;
  height: 2.5rem;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
}
@media (min-width: 960px) {
  .logo-img { height: 2.75rem; max-width: 12.5rem; }
}
.logo-img--mono { /* white mark for dark chrome */ }
.logo-img--color { /* full navy/red mark for light surfaces */ }
.footer-logo {
  margin-bottom: 1rem;
}
.footer-logo .logo-img {
  height: 2.75rem;
  max-width: 13rem;
}
.page-logo-color {
  margin: 0 auto 1.5rem;
  height: 4.5rem;
  width: auto;
  max-width: 16rem;
  display: block;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 960px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
  position: relative;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link:focus-visible {
  color: #fff;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.2rem;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.85rem;
}
.nav-dropdown-btn:hover,
.nav-dropdown.is-open .nav-dropdown-btn,
.nav-dropdown:focus-within .nav-dropdown-btn {
  color: #fff;
}
.nav-dropdown-btn svg {
  width: 0.7rem;
  height: 0.7rem;
  transition: transform 0.25s;
}
.nav-dropdown.is-open .nav-dropdown-btn svg,
.nav-dropdown:hover .nav-dropdown-btn svg,
.nav-dropdown:focus-within .nav-dropdown-btn svg {
  transform: rotate(180deg);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 11rem;
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.4rem);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 120;
}
.dropdown-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.75rem;
  height: 0.75rem;
}

.dropdown-panel.mega-menu {
  width: min(92vw, 68rem);
  padding: 1.25rem 1.35rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 1.5rem;
}
@media (min-width: 1100px) {
  .dropdown-panel.mega-menu {
    grid-template-columns: repeat(6, 1fr);
  }
}

.mega-all {
  grid-column: 1 / -1;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0.75rem !important;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--line-dark);
  color: var(--copper-bright) !important;
  font-weight: 600;
  font-size: 0.88rem;
}
.mega-all:hover {
  background: rgba(196, 120, 74, 0.08) !important;
}

.mega-col h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: 0.55rem;
  padding: 0 0.35rem;
}
.mega-col h3 a {
  color: inherit;
  padding: 0 !important;
  display: inline !important;
  background: none !important;
}
.mega-col h3 a:hover {
  color: #fff !important;
  background: none !important;
}
.mega-col a {
  display: block;
  padding: 0.35rem 0.35rem;
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s, background 0.15s;
}
.mega-col a:hover {
  color: var(--copper-bright);
  background: rgba(196, 120, 74, 0.08);
}

.nav-dropdown.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 960px) {
  .nav-dropdown:hover .dropdown-panel,
  .nav-dropdown:focus-within .dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-panel a {
  display: block;
  padding: 0.55rem 0.75rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s, background 0.15s;
}
.dropdown-panel a:hover {
  color: var(--copper-bright);
  background: rgba(196, 120, 74, 0.08);
}

.mobile-pillar {
  border-bottom: 1px solid var(--line-dark);
}
.mobile-pillar-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
}
.mobile-pillar-btn svg {
  width: 0.7rem;
  height: 0.7rem;
  transition: transform 0.25s;
}
.mobile-pillar.is-open .mobile-pillar-btn svg {
  transform: rotate(180deg);
}
.mobile-subs {
  display: none;
  padding: 0 0 0.65rem 0.85rem;
}
.mobile-pillar.is-open .mobile-subs {
  display: block;
}
.mobile-subs a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: none !important;
}
.mobile-subs a:hover {
  color: var(--copper-bright);
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.faq-item {
  border: 1px solid var(--line);
  padding: 1.15rem 1.25rem;
  background: var(--paper);
}
.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.faq-item p {
  font-size: 0.92rem;
  color: var(--mute);
  margin: 0;
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.related-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--copper);
  border: 1px solid rgba(196, 120, 74, 0.35);
  padding: 0.45rem 0.75rem;
  transition: background 0.2s, color 0.2s;
}
.related-links a:hover {
  background: var(--copper);
  color: #fff;
}
.industry-card-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
  width: 100%;
}
.industries-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 720px) {
  .industries-hub-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.header-cta {
  display: none;
}
@media (min-width: 960px) {
  .header-cta { display: inline-flex; }
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.4rem;
}
@media (min-width: 960px) {
  .menu-toggle { display: none; }
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: #fff;
  transition: transform 0.25s, opacity 0.25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
  padding: 1rem 1.25rem 1.5rem;
}
.nav-mobile.is-open { display: block; }
@media (min-width: 960px) {
  .nav-mobile { display: none !important; }
}
.nav-mobile a,
.nav-mobile .mobile-label {
  display: block;
  padding: 0.7rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  border-bottom: 1px solid var(--line-dark);
}
.nav-mobile .mobile-sub {
  padding-left: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: none;
}
.nav-mobile .btn {
  margin-top: 1.25rem;
  width: 100%;
  justify-content: center;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--copper);
  color: #fff;
}
.btn-primary:hover {
  background: var(--copper-bright);
  color: var(--ink);
}
.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--copper-bright);
  color: var(--copper-bright);
}
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover {
  background: var(--copper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--copper);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.25s var(--ease), color 0.2s;
}
.text-link:hover {
  gap: 0.65rem;
  color: var(--copper-bright);
}
.text-link svg {
  width: 1rem;
  height: 1rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  display: flex;
  align-items: center;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  animation: meshIn 1.4s var(--ease) 0.2s forwards;
}
@keyframes meshIn {
  to { opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5.5rem;
  max-width: 42rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.15s forwards;
}
.hero-brand em {
  font-style: italic;
  color: var(--copper-bright);
  font-weight: 400;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.35s forwards;
}

.hero-support {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.58);
  max-width: 32rem;
  margin-bottom: 2.25rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(1.25rem); }
  to { opacity: 1; transform: translateY(0); }
}

/* —— Sections shared —— */
.section {
  padding: 5.5rem 0;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.85rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.section-lead {
  color: var(--mute);
  max-width: 34rem;
  font-size: 1.05rem;
}

.section-ink {
  background: var(--ink);
  color: #fff;
}
.section-ink .section-lead { color: rgba(255, 255, 255, 0.55); }
.section-pearl { background: var(--pearl); }
.section-paper { background: var(--paper); }

/* —— Ecosystem / Solar-system cosmos graph —— */
.ecosystem-section {
  position: relative;
  overflow: hidden;
  --eco-orbit: 0rad;
}

.ecosystem-section--cosmos {
  background:
    radial-gradient(ellipse 70% 55% at 50% 48%, rgba(196, 120, 74, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 18% 70%, rgba(107, 163, 160, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 45% 38% at 82% 28%, rgba(122, 158, 191, 0.14) 0%, transparent 58%),
    radial-gradient(ellipse 80% 70% at 50% 50%, #121822 0%, #070A10 72%, #05070C 100%);
  color: #fff;
}

.ecosystem-section--cosmos .section-label {
  color: var(--copper-bright);
}

.ecosystem-section--cosmos .section-title {
  color: #F2F4F7;
}

.ecosystem-section--cosmos .section-lead {
  color: rgba(255, 255, 255, 0.58);
}

.eco-motion {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  transform-origin: 50% 48%;
  transition: opacity 0.45s ease;
}

.ecosystem-section > .container {
  position: relative;
  z-index: 1;
}

/* Aurora / nebula mesh — soft gradients only (no live CSS blur) */
.eco-aurora {
  position: absolute;
  inset: -15%;
  overflow: hidden;
}

.eco-aurora-field {
  position: absolute;
  border-radius: 50%;
  opacity: 0.65;
  animation: ecoAuroraDrift 40s ease-in-out infinite;
}

.eco-aurora-field--a {
  width: min(78vw, 40rem);
  height: min(78vw, 40rem);
  left: 42%;
  top: 4%;
  translate: -50% 0;
  background: radial-gradient(circle, rgba(232, 160, 122, 0.55) 0%, rgba(232, 160, 122, 0.18) 42%, transparent 72%);
  animation-duration: 44s;
}

.eco-aurora-field--b {
  width: min(64vw, 34rem);
  height: min(64vw, 34rem);
  right: -6%;
  top: 18%;
  background: radial-gradient(circle, rgba(107, 163, 160, 0.5) 0%, rgba(107, 163, 160, 0.16) 42%, transparent 72%);
  animation-duration: 50s;
  animation-delay: -10s;
}

.eco-aurora-field--c {
  width: min(60vw, 32rem);
  height: min(60vw, 32rem);
  right: 0%;
  bottom: 4%;
  background: radial-gradient(circle, rgba(122, 158, 191, 0.48) 0%, rgba(122, 158, 191, 0.14) 42%, transparent 72%);
  animation-duration: 42s;
  animation-delay: -18s;
}

.eco-aurora-field--d,
.eco-aurora-field--e {
  display: none;
}

.ecosystem-section.is-focused .eco-aurora-field {
  opacity: 0.28;
}

.ecosystem-section.is-focused[data-active-pillar="marketing"] .eco-aurora-field--a,
.ecosystem-section.is-focused[data-active-pillar="billing"] .eco-aurora-field--a,
.ecosystem-section.is-focused[data-active-pillar="leads"] .eco-aurora-field--b,
.ecosystem-section.is-focused[data-active-pillar="dev"] .eco-aurora-field--c,
.ecosystem-section.is-focused[data-active-pillar="support"] .eco-aurora-field--b,
.ecosystem-section.is-focused[data-active-pillar="assist"] .eco-aurora-field--a {
  opacity: 0.85;
}

@keyframes ecoAuroraDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(3.5%, -3%) scale(1.08); }
  66% { transform: translate(-3%, 3.5%) scale(0.94); }
}

/* Orbital solar-system rings */
.eco-orbits {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(96vw, 48rem);
  height: min(96vw, 48rem);
  margin-left: calc(min(96vw, 48rem) / -2);
  margin-top: calc(min(96vw, 48rem) / -2);
  transform: rotate(var(--eco-orbit));
  transform-origin: 50% 50%;
  overflow: visible;
  opacity: 1;
}

.eco-orbit {
  fill: none;
  stroke-linecap: round;
}

.eco-orbit--core {
  stroke: rgba(232, 160, 122, 0.38);
  stroke-width: 1.4;
  stroke-dasharray: 2 8;
}

.eco-orbit--primary {
  stroke: rgba(196, 120, 74, 0.4);
  stroke-width: 1.5;
  stroke-dasharray: 4 9;
}

.eco-orbit--secondary {
  stroke: rgba(107, 163, 160, 0.32);
  stroke-width: 1.25;
  stroke-dasharray: 3 12;
  animation: ecoRingSpin 140s linear infinite reverse;
  transform-origin: 500px 480px;
}

.eco-orbit--tertiary {
  stroke: rgba(196, 120, 74, 0.26);
  stroke-width: 1.1;
  stroke-dasharray: 2 16;
  animation: ecoRingSpin 170s linear infinite;
  transform-origin: 500px 480px;
}

.eco-orbit--outer {
  stroke: rgba(122, 158, 191, 0.22);
  stroke-width: 1;
  stroke-dasharray: 1 20;
  animation: ecoRingSpin 200s linear infinite reverse;
  transform-origin: 500px 480px;
}

@keyframes ecoRingSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.eco-atmosphere {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
}

.eco-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.55;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.eco-blob--hub {
  width: min(56vw, 30rem);
  height: min(56vw, 30rem);
  left: 50%;
  top: 48%;
  margin-left: calc(min(56vw, 30rem) / -2);
  margin-top: calc(min(56vw, 30rem) / -2);
  background: radial-gradient(circle, rgba(232, 160, 122, 0.4) 0%, rgba(196, 120, 74, 0.16) 42%, transparent 72%);
  animation: ecoHubBreathe 10s ease-in-out infinite;
  opacity: 0.7;
}

.eco-blob--marketing {
  width: 18rem;
  height: 18rem;
  left: 50%;
  top: 12%;
  translate: -50% 0;
  background: radial-gradient(circle, rgba(232, 160, 122, 0.32) 0%, transparent 72%);
}
.eco-blob--leads {
  width: 16rem;
  height: 16rem;
  right: 8%;
  top: 28%;
  background: radial-gradient(circle, rgba(107, 163, 160, 0.3) 0%, transparent 72%);
}
.eco-blob--dev {
  width: 16rem;
  height: 16rem;
  right: 10%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(122, 158, 191, 0.3) 0%, transparent 72%);
}
.eco-blob--billing {
  width: 18rem;
  height: 18rem;
  left: 50%;
  bottom: 6%;
  translate: -50% 0;
  background: radial-gradient(circle, rgba(196, 120, 74, 0.28) 0%, transparent 72%);
}
.eco-blob--support {
  width: 16rem;
  height: 16rem;
  left: 8%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(143, 174, 139, 0.28) 0%, transparent 72%);
}
.eco-blob--assist {
  width: 16rem;
  height: 16rem;
  left: 8%;
  top: 28%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.28) 0%, transparent 72%);
}

.ecosystem-section.is-focused .eco-blob:not(.eco-blob--hub) {
  opacity: 0.14;
}
.ecosystem-section.is-focused[data-active-pillar="marketing"] .eco-blob--marketing,
.ecosystem-section.is-focused[data-active-pillar="leads"] .eco-blob--leads,
.ecosystem-section.is-focused[data-active-pillar="dev"] .eco-blob--dev,
.ecosystem-section.is-focused[data-active-pillar="billing"] .eco-blob--billing,
.ecosystem-section.is-focused[data-active-pillar="support"] .eco-blob--support,
.ecosystem-section.is-focused[data-active-pillar="assist"] .eco-blob--assist {
  opacity: 0.9;
  transform: scale(1.14);
}
.ecosystem-section.is-focused .eco-blob--hub {
  opacity: 0.75;
}

.ecosystem-section.is-focused .eco-orbits {
  opacity: 0.7;
}

@keyframes ecoHubBreathe {
  0%, 100% { transform: scale(1); opacity: 0.65; }
  50% { transform: scale(1.1); opacity: 0.9; }
}

.ecosystem-head {
  text-align: center;
  margin-bottom: 2rem;
}
.ecosystem-head .section-lead {
  margin-inline: auto;
}

.hub {
  width: min(100%, 52rem);
  margin: 0 auto;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.hub.is-visible {
  opacity: 1;
  transform: none;
}

.eco-graph {
  position: relative;
  width: 100%;
  min-height: 400px;
  background: transparent;
}
.eco-graph canvas {
  display: block;
  width: 100%;
  height: auto;
  touch-action: manipulation;
}

@media (prefers-reduced-motion: reduce) {
  .hub {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .eco-aurora-field {
    animation: none;
  }
  .eco-orbit--secondary,
  .eco-orbit--tertiary,
  .eco-orbit--outer {
    animation: none;
  }
  .eco-blob--hub {
    animation: none;
  }
  .eco-blob {
    transition: none;
  }
  .eco-atmosphere {
    opacity: 0.7;
  }
}

/* —— Process —— */
.process-head {
  margin-bottom: 3.5rem;
}

.process-track {
  display: grid;
  gap: 2rem;
  position: relative;
}
@media (min-width: 800px) {
  .process-track {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .process-track::before {
    content: "";
    position: absolute;
    top: 1.15rem;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--copper), transparent);
    opacity: 0.45;
  }
}

.process-step {
  position: relative;
}
.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid var(--copper);
  color: var(--copper-bright);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1.15rem;
  background: var(--ink);
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.process-step p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* —— Capabilities —— */
.capability {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--line);
}
.capability:last-child { border-bottom: none; }
.capability:nth-child(even) {
  direction: rtl;
}
.capability:nth-child(even) > * {
  direction: ltr;
}
@media (min-width: 800px) {
  .capability {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.capability-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.65rem;
}
.capability h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}
.capability p {
  color: var(--mute);
  margin-bottom: 1rem;
  max-width: 28rem;
}
.capability-list {
  margin-bottom: 1.5rem;
}
.capability-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.capability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--copper);
}

.capability-visual {
  aspect-ratio: 4 / 3;
  background: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.capability-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(196, 120, 74, 0.08) 100%),
    repeating-linear-gradient(
      -25deg,
      transparent,
      transparent 18px,
      rgba(42, 49, 64, 0.45) 18px,
      rgba(42, 49, 64, 0.45) 19px
    );
}
.capability-visual svg {
  position: relative;
  z-index: 1;
  width: 5.5rem;
  height: 5.5rem;
  color: var(--copper);
}

/* —— Industries —— */
.industries-head {
  text-align: center;
  margin-bottom: 3rem;
}
.industries-head .section-lead {
  margin-inline: auto;
}
.industries-badge {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--copper-soft);
  color: var(--copper);
  border-radius: 999px;
  margin-bottom: 1.1rem;
  letter-spacing: 0.12em;
}
.accent-text {
  color: var(--copper);
  font-style: italic;
  font-weight: 500;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  list-style: none;
}
@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  padding: 1.75rem 1rem;
  background: var(--paper);
  border: 1px solid var(--line);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    transform 0.25s var(--ease);
}
@media (min-width: 640px) {
  .industry-card {
    padding: 2rem 1.15rem;
  }
}
.industry-card:hover,
.industry-card:focus-within {
  border-color: rgba(196, 120, 74, 0.45);
  box-shadow: 0 12px 32px rgba(12, 16, 23, 0.07);
  transform: translateY(-3px);
}

.industry-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--copper-soft);
  color: var(--copper);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.industry-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}
.industry-card:hover .industry-icon,
.industry-card:focus-within .industry-icon {
  background: var(--copper);
  color: #fff;
}

.industry-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  max-width: 10rem;
}

/* —— CTA band —— */
.cta-band {
  background: var(--ink);
  color: #fff;
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196, 120, 74, 0.18), transparent 55%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.55);
  max-width: 28rem;
  margin: 0 auto 2rem;
}

/* —— Footer —— */
.site-footer {
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1.2fr;
  }
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-brand span {
  color: var(--copper-bright);
}
.footer-blurb {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 22rem;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-muted {
  display: block;
  font-size: 0.9rem;
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.8rem;
}

.about-home {
  max-width: 40rem;
  text-align: center;
}
.about-home .section-lead {
  margin-inline: auto;
}
.about-home .text-link {
  justify-content: center;
}

/* —— Inner pages —— */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 85% 20%, rgba(196, 120, 74, 0.16), transparent 45%),
    repeating-linear-gradient(-25deg, transparent, transparent 24px, rgba(42, 49, 64, 0.5) 24px, rgba(42, 49, 64, 0.5) 25px);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--copper-bright); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
  max-width: 20ch;
}
.page-hero .lead {
  color: rgba(255, 255, 255, 0.58);
  max-width: 36rem;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.65); }
.breadcrumb a:hover { color: var(--copper-bright); }
.breadcrumb span { opacity: 0.5; }

.subservice-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 2.5rem;
}
.subservice-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
.subservice-item:first-child { border-top: 1px solid var(--line); }
.subservice-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--copper);
  font-weight: 500;
}
.subservice-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.subservice-item p {
  font-size: 0.92rem;
  color: var(--mute);
  margin: 0;
}

.why-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}
.why-list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text);
}
.why-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--copper);
}

.services-overview {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .services-overview {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1000px) {
  .services-overview {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-tile {
  display: block;
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.service-tile:hover {
  border-color: rgba(196, 120, 74, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(12, 16, 23, 0.07);
}
.service-tile .tile-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 0.5rem;
}
.service-tile h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}
.service-tile p {
  color: var(--mute);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.service-tile ul {
  margin-bottom: 1rem;
}
.service-tile li {
  font-size: 0.88rem;
  padding: 0.2rem 0;
  padding-left: 0.9rem;
  position: relative;
}
.service-tile li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.3rem;
  height: 0.3rem;
  background: var(--copper);
}

.contact-layout {
  display: grid;
  gap: 3rem;
}
@media (min-width: 880px) {
  .contact-layout {
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: start;
  }
}
.contact-aside .page-logo-color {
  margin: 0 0 1.5rem;
  height: 3.75rem;
}
.contact-meta {
  margin-top: 1.5rem;
}
.contact-meta dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 1rem;
}
.contact-meta dd {
  color: var(--mute);
  margin: 0.25rem 0 0;
}

.form-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 12px 40px rgba(21, 27, 38, 0.06);
}
@media (min-width: 640px) {
  .form-card { padding: 2.5rem; }
}
.form-card-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid var(--line);
}
.form-card-header .section-label {
  margin-bottom: 0.5rem;
}
.form-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
  color: var(--text);
}
.form-card-lead {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 36rem;
}
.form-grid {
  display: grid;
  gap: 0;
}
@media (min-width: 640px) {
  .form-grid--2 {
    grid-template-columns: 1fr 1fr;
    gap: 0 1.15rem;
  }
}
.form-row {
  margin-bottom: 1.2rem;
}
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.45rem;
  color: var(--text);
}
.label-optional {
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  background: var(--pearl);
  font: inherit;
  color: var(--text);
  border-radius: 2px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--mute);
  opacity: 0.75;
}
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-row select:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--copper);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(196, 120, 74, 0.15);
}
.form-row textarea { min-height: 9rem; resize: vertical; }
.form-submit {
  width: 100%;
  margin-top: 0.35rem;
  justify-content: center;
  border-radius: 10px;
}
.form-submit.is-loading,
.form-submit:disabled {
  opacity: 0.72;
  cursor: wait;
  pointer-events: none;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  min-height: 1.35rem;
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--mute);
  text-align: center;
}
.form-status--pending {
  color: var(--mute);
}
.form-status--success {
  color: #2f6b4f;
}
.form-status--error {
  color: #a33b2c;
}
.form-note {
  font-size: 0.8rem;
  color: var(--mute);
  margin-top: 0.85rem;
}

.prose-block {
  max-width: 40rem;
}
.prose-block p {
  color: var(--mute);
  margin-bottom: 1rem;
}
.two-col {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 800px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* —— Reveal on scroll —— */
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Focus */
:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 3px;
}
