:root {
  --void: #010104;
  --night: #05070f;
  --nebula: #0c1831;
  --midnight: #141b33;
  --emerald: #2ef2c2;
  --teal: #3cd8ff;
  --amber: #fbd38d;
  --rose: #ff7aa8;
  --frost: #e7f9ff;
  --muted: rgba(231, 249, 255, 0.6);
  --panel: rgba(14, 18, 32, 0.82);
  --gridline: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.18);
}

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

/* Custom Cursor System */
.custom-cursor {
  width: 12px;
  height: 12px;
  border: 2px solid var(--emerald);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  mix-blend-mode: difference;
}

.custom-cursor.cursor-hover {
  width: 40px;
  height: 40px;
  border-color: var(--amber);
  background: rgba(251, 211, 141, 0.1);
}

.cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(46, 242, 194, 0.3);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-follower.cursor-follower-hover {
  width: 80px;
  height: 80px;
  border-color: var(--emerald);
  background: rgba(46, 242, 194, 0.05);
}

@media (max-width: 768px) {
  .custom-cursor,
  .cursor-follower {
    display: none;
  }
  * {
    cursor: auto;
  }
}

body {
  font-family: "Space Grotesk", "Manrope", "Inter", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 15% 15%, rgba(46, 242, 194, 0.25), transparent 55%),
    radial-gradient(circle at 85% 10%, rgba(255, 122, 168, 0.25), transparent 40%),
    linear-gradient(135deg, var(--void), var(--nebula));
  color: var(--frost);
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.35;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 60%);
  mix-blend-mode: soft-light;
  z-index: -3;
}

/* Animated gradient orbs */
.animated-bg {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.animated-bg.one {
  background: radial-gradient(circle, var(--emerald), transparent);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.animated-bg.two {
  background: radial-gradient(circle, var(--rose), transparent);
  bottom: -200px;
  right: -200px;
  animation-delay: 5s;
}

.animated-bg.three {
  background: radial-gradient(circle, var(--amber), transparent);
  top: 50%;
  right: -300px;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* Decorative graphics elements */
.panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 1.5rem 1.5rem 0 0;
}

.panel:hover::before {
  opacity: 0.6;
}

/* Glow effect on panels */
.panel::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--emerald), var(--rose), var(--amber));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.panel:hover::after {
  opacity: 0.2;
}

/* Decorative corner accents - using different approach */
.panel {
  position: relative;
}

.panel .corner-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-top: 2px solid var(--emerald);
  border-left: 2px solid var(--emerald);
  border-radius: 1.5rem 0 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.panel:hover .corner-accent {
  opacity: 0.4;
}

.alt-page {
  background: linear-gradient(180deg, rgba(5, 7, 17, 0.92), rgba(3, 5, 15, 0.98));
}

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem clamp(1rem, 5vw, 5rem);
  position: sticky;
  top: 0;
  background: rgba(1, 1, 3, 0.98);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--gridline);
  z-index: 20;
}

.logo {
  display: flex;
  align-items: center;
  height: 60px;
}

.logo-image {
  height: 100%;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.main-nav a {
  padding-bottom: 0.35rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  border-bottom-color: var(--emerald);
}

.cta-pill {
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--void);
  background: linear-gradient(120deg, var(--emerald), var(--amber));
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

main {
  padding: clamp(2rem, 5vw, 6rem) clamp(1rem, 6vw, 6.5rem);
}

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gridline), transparent);
}

.eyebrow,
.section-label {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

h1,
h2,
h3 {
  font-weight: 500;
  color: var(--frost);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 1rem;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

p {
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.lead {
  font-size: 1.2rem;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0.75rem;
}

section header {
  margin-bottom: 3rem;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

section header .eyebrow {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(46, 242, 194, 0.1);
  border: 1px solid rgba(46, 242, 194, 0.2);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--emerald);
}

section header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
  color: var(--frost);
}

section header .lead {
  font-size: 1.05rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  line-height: 1.8;
}

section header .lead {
  margin-top: 1rem;
}

.tagline {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.hero {
  position: relative;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  border-bottom: 1px solid var(--gridline);
  padding-bottom: clamp(2rem, 8vw, 4rem);
}

.hero-media {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  min-height: 340px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 9, 0.2), rgba(6, 10, 9, 0.6));
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.btn {
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--emerald), var(--rose));
  color: var(--void);
  position: relative;
  overflow: hidden;
}

.btn.primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn.primary:hover::before {
  left: 100%;
}

.btn.ghost {
  background: transparent;
  color: var(--frost);
}

.btn:hover {
  transform: translateY(-2px);
}

.orb {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 168, 0.4), rgba(5, 6, 15, 0));
  position: absolute;
  z-index: -1;
  filter: blur(20px);
  animation: drift 14s ease-in-out infinite alternate;
}

.orb.one {
  top: 20%;
  right: 10%;
}

.orb.two {
  bottom: 10%;
  left: 5%;
  animation-delay: 4s;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.pill {
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.panel,
.three-col article,
.pillars > div,
.form-grid form,
.category-card,
.solutions-card,
.division-stack {
  border: 1px solid var(--gridline);
  border-radius: 1.5rem;
  padding: 2rem;
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
  position: relative;
}

.panel:hover,
.category-card:hover,
.solutions-card:hover {
  border-color: rgba(46, 242, 194, 0.3);
  box-shadow: 0 25px 70px rgba(46, 242, 194, 0.1);
}

.panel.alt {
  background: rgba(46, 242, 194, 0.08);
}

.mission-grid,
.division-grid,
.tech-grid,
.category-grid,
.three-col,
.story,
.leadership,
.pillars,
.form-grid,
.gallery-grid,
.experience-grid,
.solutions-grid,
.architecture-grid,
.innovation-split {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-grid .panel {
  transition: all 0.3s ease;
  border: 1px solid rgba(46, 242, 194, 0.15);
  position: relative;
  overflow: hidden;
}

.category-grid .panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--rose), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-grid .panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(46, 242, 194, 0.15);
  border-color: rgba(46, 242, 194, 0.3);
}

.category-grid .panel:hover::before {
  opacity: 1;
}

.category-grid h3 {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

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

.img-frame {
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 1.5rem;
}

.img-frame.compact {
  min-height: 180px;
  max-height: 240px;
  margin-bottom: 1.25rem;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 8, 6, 0), rgba(5, 8, 6, 0.7));
}

.img-frame:hover img {
  transform: scale(1.05);
}

.gallery-grid figure {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.gallery-grid figure:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 90px rgba(46, 242, 194, 0.25);
  border-color: rgba(46, 242, 194, 0.3);
}

.gallery-grid img {
  width: 100%;
  display: block;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.1);
  filter: brightness(1.15) contrast(1.1) saturate(1.1);
}

.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 242, 194, 0.15), rgba(255, 122, 168, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: inherit;
  pointer-events: none;
}

.gallery-grid figure:hover::after {
  opacity: 1;
}

.gallery-grid figcaption {
  padding: 1.5rem;
  text-align: center;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--emerald);
  border-top: 1px solid rgba(46, 242, 194, 0.1);
  transition: color 0.3s ease;
}

.gallery-grid figure:hover figcaption {
  color: var(--teal);
}

.cta-slab {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(46, 242, 194, 0.08), rgba(255, 122, 168, 0.05));
  border: 1px solid rgba(46, 242, 194, 0.2);
  border-radius: 2rem;
  margin: 2rem 0 0 0;
  padding: clamp(3rem, 8vw, 5rem);
}

.cta-slab::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(46, 242, 194, 0.1), transparent 40%),
              radial-gradient(circle at 80% 50%, rgba(255, 122, 168, 0.1), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

.cta-slab .panel {
  position: relative;
  z-index: 1;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.cta-slab h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
}

.cta-slab .eyebrow {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(46, 242, 194, 0.15);
  border: 1px solid rgba(46, 242, 194, 0.3);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.page-hero {
  border-bottom: 1px solid var(--gridline);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(46, 242, 194, 0.1), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

.story,
.differentiators,
.leadership,
.media-press,
.contact-section,
.division-detail,
.unified,
.location,
.solutions-intro,
.ecosystem-architecture,
.innovation-split {
  border-top: 1px solid var(--gridline);
}

.division-panel {
  display: flex;
  flex-direction: column;
}

.division-panel header {
  margin-bottom: 1.25rem;
}

.tech-showcase {
  border-top: 1px solid var(--gridline);
}

.showcase-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 3rem;
}

.showcase-card {
  text-align: center;
  transition: all 0.3s ease;
  padding: 2.5rem 2rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(46, 242, 194, 0.06), rgba(255, 122, 168, 0.06));
  border: 1px solid rgba(46, 242, 194, 0.15);
  position: relative;
  overflow: hidden;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 242, 194, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.showcase-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--emerald), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-12px);
  border-color: rgba(46, 242, 194, 0.4);
  box-shadow: 0 25px 70px rgba(46, 242, 194, 0.2);
  background: linear-gradient(135deg, rgba(46, 242, 194, 0.08), rgba(255, 122, 168, 0.08));
}

.showcase-card:hover::before {
  opacity: 1;
}

.showcase-card:hover::after {
  opacity: 1;
}

.showcase-card h3 {
  margin: 1.25rem 0 0.75rem;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--frost);
}

.showcase-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

.icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(46, 242, 194, 0.2), rgba(255, 122, 168, 0.15));
  border: 1px solid rgba(46, 242, 194, 0.3);
  color: var(--emerald);
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(46, 242, 194, 0.1);
  position: relative;
  overflow: hidden;
}

.icon-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(46, 242, 194, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.showcase-card:hover .icon-wrapper {
  background: linear-gradient(135deg, rgba(46, 242, 194, 0.3), rgba(255, 122, 168, 0.2));
  border-color: rgba(46, 242, 194, 0.5);
  box-shadow: 0 12px 32px rgba(46, 242, 194, 0.2);
}

.showcase-card:hover .icon-wrapper::before {
  opacity: 1;
}

.icon-wrapper svg {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.showcase-card:hover .icon-wrapper svg {
  transform: scale(1.1);
}

.icon-wrapper.small {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.icon-wrapper.small svg {
  width: 24px;
  height: 24px;
}

.story-panel {
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  margin-top: 1.5rem;
}

.feature-card,
.media-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.media-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(46, 242, 194, 0.15);
}

.feature-card .icon-wrapper,
.media-card .icon-wrapper {
  margin: 0 auto 1.25rem;
}

.solutions-card .img-frame,
.category-card .img-frame {
  margin-bottom: 1.25rem;
}

.category-card h3,
.solutions-card h3 {
  margin-top: 1rem;
}

.feature-list,
.industries {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.feature-list li::before {
  content: "•";
  margin-right: 0.5rem;
  color: var(--emerald);
}

.industries {
  font-size: 0.83rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.stat-blocks {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin-top: 1.5rem;
}

.stat-block {
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 10, 20, 0.8);
  text-align: center;
}

.stat-block span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--amber);
}

.location {
  text-align: center;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin-top: 1rem;
}

.chip-list li {
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.85rem;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
}

input,
textarea {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(241, 235, 226, 0.25);
  background: rgba(5, 8, 6, 0.75);
  color: var(--frost);
  font-family: inherit;
}

.site-footer {
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(231, 249, 255, 0.65);
  border-top: 1px solid var(--gridline);
  background: rgba(3, 5, 12, 0.9);
  margin-top: 2rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(20px, -30px, 0);
  }
}

.architecture-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 2rem;
}

/* Division Showcase - New Design */
.division-showcase {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

.division-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 2rem;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--gridline);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-height: 400px;
}

.division-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 90px rgba(46, 242, 194, 0.2);
}

.division-card.hypx {
  border-left: 4px solid var(--emerald);
}

.division-card.vybx {
  border-left: 4px solid var(--rose);
}

.division-card.astx {
  border-left: 4px solid var(--amber);
}

.division-image {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.division-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.division-card:hover .division-image img {
  transform: scale(1.1);
}

.division-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(1, 1, 4, 0.7), rgba(12, 24, 49, 0.5));
  z-index: 1;
}

.division-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.division-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 1.5rem 0;
  color: var(--muted);
}

.deep-dive-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: 2.5rem;
}

.deep-dive-card {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.deep-dive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 70px rgba(46, 242, 194, 0.15);
}

.deep-dive-card .icon-wrapper {
  margin: 0 auto 1.5rem;
}

.icon-wrapper.large {
  width: 80px;
  height: 80px;
}

.icon-wrapper.large svg {
  width: 48px;
  height: 48px;
}

.img-frame.balanced {
  min-height: 240px;
  max-height: 280px;
  margin: 1.5rem 0;
}

@media (max-width: 968px) {
  .division-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  
  .division-image {
    min-height: 300px;
  }
  
  .division-content {
    padding: 2rem;
  }
}

.split-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    position: static;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .img-frame.compact {
    min-height: 200px;
    max-height: 220px;
  }

  section {
    padding: clamp(2rem, 5vw, 3.5rem) 0;
  }
}

