/* ── ROOT ── */
:root {
  --primary:      #64004e;
  --primary-mid:  #8b0064;
  --primary-dark: #3e0030;
  --accent:       #ff8cfa;
  --accent-light: #ffe4fd;
  --accent-soft:  #faf5ff;
  --border:       #ece8f2;
  --gray:         #aaa;
  --black:        #1a1a1a;
  --white:        #fff;
  --heading:      'League Spartan', sans-serif;
  --body:         'IBM Plex Serif', serif;
  --mono:         'IBM Plex Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ───────────────────────────────────────────
   RESET
─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'IBM Plex Serif', serif; background: #fbf9f8; }

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
}

/* ───────────────────────────────────────────
   TOP NAV
─────────────────────────────────────────── */
.infosys-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1),
              background 0.3s ease,
              box-shadow 0.3s ease,
              backdrop-filter 0.3s ease;
}
.infosys-nav-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 92px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

/* Scrolled state */
.infosys-nav.scrolled {
  background: rgba(255,255,255,0.80);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Brand */
.infosys-brand { display: flex; align-items: center; gap: 12px; }

/* Logo */
.site-logo {
  display: block;
  width: 168px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.infosys-nav.scrolled .site-logo { filter: none; }

/* Hamburger button */
.nav-menu-button {
  width: 56px; height: 56px;
  border: 0; border-radius: 50%;
  background: #ffffff;
  color: #151841;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-menu-button:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(0,0,0,.20); }
/* Pure-CSS hamburger bars — no icon font dependency */
.hbg-bars { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 22px; height: 16px; }
.hbg-bar { display: block; width: 100%; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s ease; }
.nav-menu-button.is-open .hbg-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-menu-button.is-open .hbg-bar:nth-child(2) { opacity: 0; }
.nav-menu-button.is-open .hbg-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Centre pill links */
.nav-pill {
  justify-self: center;
  display: flex; align-items: center; gap: 4px;
  min-height: 46px; padding: 0 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15);
  transition: background 0.3s ease;
}
.infosys-nav.scrolled .nav-pill { background: rgba(0,0,0,0.06); }
.nav-pill a {
  display: inline-flex; align-items: center;
  min-height: 46px; padding: 0 24px;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 500;
  text-decoration: none; white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-pill a:hover { background: rgba(255,255,255,.15); color: #ffffff; }
.infosys-nav.scrolled .nav-pill a { color: #121644; }
.infosys-nav.scrolled .nav-pill a:hover { color: #64004e; background: rgba(100,0,78,.06); }

/* CTA action */
.nav-action {
  justify-self: end;
  display: inline-flex; align-items: center;
  min-height: 46px; padding: 0 24px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,0.18);
  font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nav-action:hover { background: rgba(255,255,255,.20); color: #ffffff; }
.infosys-nav.scrolled .nav-action { background: rgba(0,0,0,.06); color: #121644; border-color: rgba(0,0,0,.12); }
.infosys-nav.scrolled .nav-action:hover { color: #64004e; }

/* Mobile – hide pill & action */
@media(max-width: 980px) {
  .infosys-nav-inner { min-height: 82px; padding: 0 20px; grid-template-columns: auto 1fr; gap: 16px; }
  .nav-pill, .nav-action { display: none; }
  .site-logo { width: 154px; }
}

/* ───────────────────────────────────────────
   HAMBURGER OVERLAY MENU
─────────────────────────────────────────── */
.hanvix-menu-overlay {
  position: fixed; inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 320px 1fr;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.hanvix-menu-overlay.open { opacity: 1; visibility: visible; }

/* Sidebar */
.hanvix-menu-sidebar {
  position: relative;
  background: #f1f2f7;
  padding: 100px 32px 32px;
  display: flex; flex-direction: column;
  overflow-y: auto;
}

.hanvix-menu-close {
  position: absolute; top: 28px; left: 18px;
  cursor: pointer;
  background: #ffffff;
  border-radius: 50%;
  border: none;
  z-index: 20;
  width: 56px; height: 56px;
  overflow: hidden;
  transition-duration: 500ms;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
}

/* Animated close button inner elements */
.hanvix-menu-close .close-text {
  font-size: 1.875rem;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: #000; line-height: 1; padding-bottom: 7px;
  transition-duration: 500ms;
  position: relative; z-index: 10;
}
.hanvix-menu-close:hover .close-text { transform: scale(0); }
.hanvix-menu-close .close-span {
  position: absolute;
  width: 100%; height: 100%;
  transform: rotate(45deg);
  background-color: #64004e;
  transition-duration: 500ms;
}
.hanvix-menu-close .cs-t { top: 5rem; left: 0; }
.hanvix-menu-close:hover .cs-t { top: 2.25rem; }
.hanvix-menu-close .cs-l { top: 0; left: 5rem; }
.hanvix-menu-close:hover .cs-l { left: 2.25rem; }
.hanvix-menu-close .cs-r { top: 0; right: 5rem; }
.hanvix-menu-close:hover .cs-r { right: 2.25rem; }
.hanvix-menu-close .cs-b { bottom: 5rem; right: 0; }
.hanvix-menu-close:hover .cs-b { bottom: 2.25rem; }

/* Primary links */
.hanvix-menu-links { display: flex; flex-direction: column; gap: 4px; }
.hanvix-menu-links a {
  font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 500;
  color: #4a4a68; padding: 14px 16px; border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.hanvix-menu-links a:hover { background: rgba(0,0,0,.04); color: #121644; }
.hanvix-menu-link.active {
  background: #ffffff; color: #64004e;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.hanvix-menu-link.active::before {
  content: "";
  display: inline-block;
  width: 4px; height: 18px;
  background: #64004e;
  border-radius: 4px;
  margin-right: 12px;
  vertical-align: -3px;
}

/* Secondary links */
.hanvix-menu-links-simple {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.08);
  gap: 2px;
}
.hanvix-menu-links-simple a {
  font-size: 15px; font-weight: 400;
  color: #6a6a88; padding: 10px 16px;
}

/* Social row */
.hanvix-menu-social {
  margin-top: auto; padding-top: 24px;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex; gap: 14px;
}
.hanvix-menu-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0,0,0,.05); color: #4a4a68;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.hanvix-menu-social a:hover { background: #64004e; color: #ffffff; }

/* Right panel */
.hanvix-menu-panel {
  background: #ffffff;
  padding: 100px 56px 56px;
  overflow-y: auto;
}
.hanvix-card-section { display: none; }
.hanvix-card-section.active {
  display: block;
  animation: scaleIn 0.35s cubic-bezier(0.4,0,0.2,1);
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}
.hanvix-scale-out {
  display: block; position: absolute; inset: 0;
  animation: scaleOut 0.35s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes scaleOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.96); }
}

.hanvix-menu-heading {
  font-family: 'League Spartan', sans-serif;
  font-size: 38px; font-weight: 700; color: #121644;
  margin-bottom: 36px;
}

/* Card grid */
.hanvix-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hanvix-card {
  position: relative; display: block;
  height: 280px; border-radius: 20px;
  background-size: cover; background-position: center;
  background-color: #1a1a2e;
  overflow: hidden; text-decoration: none;
  transition: transform 0.3s ease;
}
.hanvix-card-tall { grid-row: span 2; height: 584px; }
.hanvix-card:hover { transform: translateY(-4px); }
.hanvix-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.75) 100%);
}
.hanvix-card-title {
  position: absolute; left: 24px; bottom: 56px; right: 24px; z-index: 2;
  color: #ffffff; font-family: 'Sora', sans-serif;
  font-size: 22px; font-weight: 600; line-height: 1.3;
}
.hanvix-card-link {
  position: absolute; left: 24px; bottom: 22px; z-index: 2;
  color: #ffffff; font-family: 'Sora', sans-serif;
  font-size: 14px; font-weight: 600; text-decoration: underline;
  display: inline-flex; align-items: center; gap: 4px;
}

/* Mobile overlay layout */
@media(max-width: 980px) {
  .hanvix-menu-overlay { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .hanvix-menu-sidebar { padding: 88px 24px 24px; }
  .hanvix-menu-panel { padding: 24px; }
  .hanvix-card-grid { grid-template-columns: 1fr; }
  .hanvix-card-tall { grid-row: span 1; height: 280px; }
}

/* ───────────────────────────────────────────
   HERO
─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: linear-gradient(135deg, #3e0030, #64004e);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.80), rgba(0,0,0,.55), rgba(0,0,0,.25));
  z-index: 2;
}
@media(max-width: 768px) {
  .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.78)); }
}

.hero-inner {
  position: relative; z-index: 3;
  min-height: 100vh;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 120px 24px 64px;
}
.hero-content {
  width: 96%; max-width: 1400px;
  text-align: center; color: #ffffff;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px 80px;
  animation: fadeUp 1.6s ease forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  display: block; margin-bottom: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: .10em; text-transform: uppercase;
  color: rgba(255,255,255,.78);
}
.hero h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 12px;
}
.hero p {
  font-family: 'IBM Plex Serif', serif;
  font-size: 16px; line-height: 1.55;
  max-width: 820px; margin: 0 auto; opacity: .95;
}

/* Buttons */
.hero-buttons {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 12px;
  margin-top: 16px;
}
.hero-buttons a {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 26px; border-radius: 8px;
  font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.hero-buttons a:hover { transform: translateY(-2px); }
.btn-primary { background: #64004e; color: #ffffff; }
.btn-primary:hover { background: #8b0064; }
.btn-secondary { border: 1px solid #ffffff; color: #ffffff; }
.btn-secondary:hover { background: rgba(255,255,255,.12); }

/* Stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 18px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.hero-stats h3 {
  font-family: 'League Spartan', sans-serif;
  font-size: 26px; font-weight: 700; text-align: center;
}
.hero-stats span {
  display: block; text-align: center;
  font-family: 'Sora', sans-serif; font-size: 12px; line-height: 1.4;
  color: rgba(255,255,255,.76);
}

/* Mobile tweaks */
@media(max-width: 768px) {
  .hero-content { padding: 32px 20px; border-radius: 18px; }
  .hero-buttons a { width: 100%; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; }
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 65%;
  height: 130%;
  background: radial-gradient(ellipse 55% 60% at 60% 40%,
    rgba(139,0,100,0.55) 0%,
    rgba(62,0,48,0) 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 3;
  min-height: 100vh;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 120px 24px 64px;
}
.hero-content {
  width: 96%; max-width: 1400px;
  text-align: center; color: #ffffff;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 28px 80px;
  animation: fadeUp 1.6s ease forwards;
}
@media(max-width:768px){
  .hero-content { padding: 32px 20px; border-radius: 18px; }
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-h1 {
  font-family: var(--heading);
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 760px;
  opacity: 0;
  animation: fadeUp 0.7s 0.35s ease forwards;
}
.hero-h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-family: var(--body);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.5s ease forwards;
}
/* ── BUTTONS ── */
.btn {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-dark {
  background: var(--primary-dark);
  color: var(--white);
}
.btn-dark:hover { background: var(--primary-mid); }

/* ── SECTION SHELL ── */
.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--border);
}

/* ── ECC TO S/4HANA BANNER ── */
.ecc-section {
  background: var(--primary-dark);
  padding: 80px 2.5rem;
}
.ecc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}
.ecc-title {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: var(--white);
}
.ecc-desc {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2rem;
}
.ecc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.ecc-stat h3 {
  font-family: var(--heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.ecc-stat span {
  font-family: var(--body);
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
}

/* ── INTRO ── */
.intro {
  padding: 80px 2.5rem 60px;
  border-bottom: 1px solid var(--border);
}
.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.intro-left h2 {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--primary-dark);
}
.intro-right p {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

/* ── SOLUTIONS STACK ── */
.sol-stack {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.sol-stack-wrap {
  padding: 0 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── SOLUTION CARD (horizontal) ── */
.sol-tag {
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: var(--primary-dark);
  padding: 0.3rem 0.65rem;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.sol-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.sol-title {
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.sol-desc {
  font-family: var(--body);
  font-size: 0.88rem;
  line-height: 1.8;
  color: #555;
}
.sol-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.sol-benefit {
  font-family: var(--body);
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--black);
  padding-left: 1rem;
  position: relative;
}
.sol-benefit::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  background: var(--accent);
  border-radius: 50%;
}

/* Horizontal card */
.sol-card {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.2s;
}
.sol-card:hover { background: var(--accent-soft); }
.sol-card-left {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sol-card-mid {
  padding: 2.5rem 2.5rem;
  border-right: 1px solid var(--border);
}
.sol-card-right {
  padding: 2.5rem 0 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── WHY CHOOSE PUBLIC CLOUD ── */
.pubcloud-section {
  background: var(--accent-soft);
  padding: 90px 2.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pubcloud-inner {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: end;
}
.pubcloud-h2 {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
  line-height: 1.1;
}
.pubcloud-sub {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: #555;
  max-width: 380px;
  align-self: end;
}
.pubcloud-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pubcloud-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pubcloud-item:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(100,0,78,0.08); }
.pubcloud-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.pubcloud-title {
  font-family: var(--heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.pubcloud-text {
  font-family: var(--body);
  font-size: 0.85rem;
  line-height: 1.7;
  color: #555;
}

/* ── WHY SECTION ── */
.why-section {
  background: var(--primary-dark);
  padding: 90px 2.5rem 90px;
}
.why-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: end;
}
.why-eyebrow {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.why-h2 {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
}
.why-sub {
  font-family: var(--body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 380px;
  align-self: end;
}
/* Card grid: 3 on top, 2 on bottom */
.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,140,250,0.1);
}
.why-item {
  background: var(--primary-dark);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background 0.2s;
}
.why-item:hover { background: rgba(255,255,255,0.03); }
/* Last 2 cards span to center them */
.why-item:nth-child(4) { grid-column: 1; }
.why-item:nth-child(5) { grid-column: 2; }
.why-num {
  font-family: var(--mono);
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgb(241, 236, 241);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}
.why-title {
  font-family: var(--heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.why-text {
  font-family: var(--body);
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}
/* Accent left bar on hover */
.why-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.why-item:hover::before { transform: scaleY(1); }

/* ── CTA BANNER ── */
.cta-section {
  padding: 80px 2.5rem;
  background: var(--accent-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--primary-dark);
  margin-bottom: 0.4rem;
}
.cta-text p {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--primary);
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}
@keyframes traceDraw {
  from { stroke-dashoffset: 1000; }
  to   { stroke-dashoffset: 0; }
}

/* ── CIRCUIT SVG ── */
.circuit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}
.circuit-trace {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: traceDraw 3s ease forwards;
}
.circuit-trace-2 { animation-delay: 0.3s; }
.circuit-trace-3 { animation-delay: 0.6s; }
.circuit-trace-4 { animation-delay: 0.9s; }
.circuit-dot { animation: pulseDot 2.5s ease-in-out infinite; }
.circuit-dot:nth-child(2) { animation-delay: 0.4s; }
.circuit-dot:nth-child(3) { animation-delay: 0.8s; }
.circuit-dot:nth-child(4) { animation-delay: 1.2s; }
.circuit-dot:nth-child(5) { animation-delay: 1.6s; }
.circuit-dot:nth-child(6) { animation-delay: 2s; }

/* ── SECTION SPACING ── */
.pt-80 { padding-top: 80px; }
.pb-60 { padding-bottom: 60px; }
.mt-0  { margin-top: 0; }

/* ═══════════════════════════════════════════
   FOOTER  ← fully corrected
═══════════════════════════════════════════ */
/* ── CANONICAL FOOTER (from aboutus.html, mono-white logo) ── */
/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
/* FIX: .container was never defined on this page — this is what broke footer/content spacing */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media(max-width:1024px){ .container { padding: 0 32px; } }
@media(max-width:640px){ .container { padding: 0 20px; } }

/* ── CANONICAL FOOTER (redesigned, no insights column) ── */
/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  position: relative;
  background: linear-gradient(160deg, #4a0040 0%, #3f0030 45%, #2a0021 100%);
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}
footer::before {
  content: '';
  position: absolute; top: -260px; right: -180px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,140,250,.20), transparent 70%);
  pointer-events: none; z-index: 0;
}
footer::after {
  content: '';
  position: absolute; bottom: -240px; left: -200px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,0,100,.30), transparent 70%);
  pointer-events: none; z-index: 0;
}
.footer-top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,140,250,.55) 50%, transparent);
}

/* CTA band */
.footer-cta {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 64px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  flex-wrap: wrap;
}
.footer-cta-text h3 {
  font-family: 'League Spartan', sans-serif; font-weight: 700;
  font-size: clamp(1.5rem, 2.3vw, 2.05rem); line-height: 1.2; margin-bottom: 10px;
}
.footer-cta-text p {
  font-family: 'IBM Plex Serif', serif; font-size: .95rem;
  color: rgba(255,255,255,.68); max-width: 480px; line-height: 1.6;
}
.footer-cta-btn {
  display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
  background: #ff8cfa; color: #3f0030;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: .92rem;
  padding: 17px 30px; border-radius: 999px; text-decoration: none; white-space: nowrap;
  box-shadow: 0 12px 30px rgba(255,140,250,.22);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.footer-cta-btn svg { transition: transform .25s ease; }
.footer-cta-btn:hover { background: #ffffff; transform: translateY(-2px); box-shadow: 0 16px 36px rgba(255,140,250,.32); }
.footer-cta-btn:hover svg { transform: translate(3px,-3px); }

/* Columns */
.footer-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand-logo {
  display: block; width: 190px; max-width: 100%; height: auto;
  object-fit: contain; margin-bottom: 18px;
  filter: brightness(0) invert(1); /* mono white brand logo */
}
.footer-col > p {
  opacity: .68; font-family: 'IBM Plex Serif', serif;
  font-size: .9rem; line-height: 1.78; color: #ffffff; max-width: 260px;
}
.footer-socials { display: flex; gap: 10px; margin-top: 24px; }
.footer-socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: #ffffff; text-decoration: none;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.footer-socials a:hover {
  background: #ff8cfa; border-color: #ff8cfa; color: #3f0030;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(255,140,250,.35);
}
.footer-col h4 {
  font-family: 'Sora', sans-serif; font-size: .74rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #ffffff;
  margin-bottom: 22px; position: relative; padding-bottom: 14px;
}
.footer-col h4::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 26px; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, #ff8cfa, rgba(255,140,250,0));
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-col ul li a {
  color: rgba(255,255,255,.66); font-family: 'IBM Plex Serif', serif; font-size: .92rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 0;
  transition: color .2s ease, gap .2s ease, padding-left .2s ease;
}
.footer-col ul li a::before {
  content: '→'; display: inline-block; opacity: 0; width: 0; overflow: hidden;
  color: #ff8cfa; transition: opacity .2s ease, width .2s ease, margin-right .2s ease;
}
.footer-col ul li a:hover { color: #ffffff; }
.footer-col ul li a:hover::before { opacity: 1; width: 14px; margin-right: 4px; }

/* Bottom bar */
.footer-bottom {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px;
}
.footer-bottom-inner p { font-family: 'Sora', sans-serif; font-size: .78rem; color: rgba(255,255,255,.42); }
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links a {
  font-family: 'Sora', sans-serif; font-size: .78rem; color: rgba(255,255,255,.42);
  text-decoration: none; transition: color .2s ease;
}
.footer-bottom-links a:hover { color: #ffffff; }

@media(max-width:1024px){
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-cta { padding: 52px 0; }
}
@media(max-width:640px){
  .footer-cta { flex-direction: column; align-items: flex-start; padding: 44px 0; }
  .footer-cta-btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 44px 0 36px; }
  .footer-col > p { max-width: 100%; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .intro-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .ecc-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .pubcloud-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .pubcloud-grid { grid-template-columns: 1fr 1fr; }
  .sol-card { grid-template-columns: 140px 1fr; }
  .sol-card-left { border-right: 1px solid var(--border); padding: 2rem 1.5rem 2rem 0; }
  .sol-card-mid { grid-column: 2; border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 0 2rem 0; }
  .sol-card-right { grid-column: 1 / -1; padding: 1.5rem 0; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item:nth-child(4),
  .why-item:nth-child(5) { grid-column: auto; }
  .why-header { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 600px) {
  .hero-inner { padding: 60px 1.5rem 60px; }
  .shell, .sol-stack-wrap,
  .intro, .why-section, .cta-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .intro { padding: 60px 1.5rem 40px; }
  .ecc-section, .pubcloud-section { padding: 56px 1.5rem; }
  .ecc-stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .pubcloud-grid { grid-template-columns: 1fr; }
  .sol-card { grid-template-columns: 1fr; }
  .sol-card-left { border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem 0; flex-direction: row; align-items: center; gap: 1.5rem; }
  .sol-card-mid { grid-column: 1; border-right: none; border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
  .sol-card-right { grid-column: 1; padding: 1.5rem 0; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .circuit-trace { animation: none; stroke-dashoffset: 0; }
  .circuit-dot { animation: none; }
  .hero-eyebrow, .hero-h1, .hero-sub { opacity: 1; animation: none; }
}