:root {
  --bg: #05070b;
  --bg-elevated: #0b1018;
  --bg-soft: #0f1725;
  --accent: #4f46e5;
  --accent-soft: rgba(79, 70, 229, 0.3);
  --accent-strong: #7c3aed;
  --text: #f9fafb;
  --muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --danger: #f97373;
  --warn: #fbbf24;
  --ok: #22c55e;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 50px rgba(15, 23, 42, 0.7);
  --shadow-soft-light: 0 14px 35px rgba(15, 23, 42, 0.6);
  --section-padding: 96px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top left, #111827 0, var(--bg) 40%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

main {
  width: 100%;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

section {
  position: relative;
}

/* Scroll indicator (minimal navigation through scrolling) */
.scroll-indicator {
  position: fixed;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 190px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.scroll-indicator__line {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(148, 163, 184, 0.2),
    rgba(148, 163, 184, 0.4),
    rgba(148, 163, 184, 0.2)
  );
  border-radius: var(--radius-pill);
}

.scroll-indicator__dot {
  position: relative;
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(79, 70, 229, 0.8);
  transform: translateY(-70px);
  transition: transform 0.5s ease;
}

.scroll-indicator__dot--bottom {
  transform: translateY(70px);
}

/* Generic section wrapper */
.section {
  padding: var(--section-padding) 24px;
  position: relative;
  overflow: hidden;
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section__inner--status {
  max-width: 1200px;
}

.section__inner--split {
  max-width: 1240px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 64px;
  align-items: flex-start;
}

.section__header {
  max-width: 720px;
  margin-bottom: 40px;
}

.section__header--center {
  text-align: center;
  margin: 0 auto 40px;
}

.section__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 10px;
}

.section__title {
  font-size: clamp(26px, 3.2vw, 32px);
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}

.section__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* HERO */
.section--hero {
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: visible;
}

/* Make hero section visible immediately */
.section--hero.anim-zoom-in {
  opacity: 1;
  transform: scale(1);
}

.section--hero .anim-from-left,
.section--hero .anim-from-right {
  opacity: 1;
  transform: translateX(0);
}

.hero {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: stretch;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--muted);
}

.hero__title {
  font-size: clamp(32px, 4vw, 42px);
  letter-spacing: -0.05em;
  margin: 0;
}

.hero__title-accent {
  color: var(--accent-strong);
  text-shadow: 0 0 26px rgba(124, 58, 237, 0.5);
}

.hero__subtitle {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.hero__cta-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero__meta-item {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(
      circle at 0 0,
      rgba(79, 70, 229, 0.24),
      transparent 60%
    ),
    linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9));
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__meta-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.hero__meta-value {
  font-size: 13px;
}

/* Buttons */
.btn {
  border-radius: var(--radius-pill);
  padding: 10px 19px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease, color 0.16s ease, border-color 0.16s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  box-shadow: 0 14px 35px rgba(79, 70, 229, 0.45);
}

.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.65);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(15, 23, 42, 0.8);
  transform: translateY(-1px);
}

.btn--full {
  width: 100%;
}

/* HERO PANEL SWITCHER */
.hero-panel {
  position: relative;
  border-radius: 24px;
  background: radial-gradient(circle at top, #1f2937 0, #020617 55%);
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: var(--shadow-soft);
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.hero-panel__tabs {
  display: flex;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-panel__tab {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 7px 10px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.15s ease;
}

.hero-panel__tab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    circle at top left,
    rgba(79, 70, 229, 0.85),
    rgba(124, 58, 237, 0.6)
  );
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.16s ease;
}

.hero-panel__tab--active {
  color: #e5e7eb;
}

.hero-panel__tab--active::before {
  opacity: 1;
}

.hero-panel__tab-label {
  position: relative;
  z-index: 1;
}

.hero-panel__viewport {
  position: relative;
  flex: 1;
  border-radius: 18px;
  background: radial-gradient(circle at top, #111827 0, #020617 66%);
  overflow: hidden;
  padding: 14px 14px 4px;
}

.hero-panel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(12px) translateY(16px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  gap: 14px;
  align-items: stretch;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.hero-panel__slide--active {
  position: relative;
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.hero-panel__image {
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 190px;
}

/* Hero panel images - Add your images to the assets folder */
.hero-panel__image--ai {
  background-image: url('assets/ai-systems.jpg');
  background-color: #4f46e5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-panel__image--data {
  background-image: url('assets/data-platforms.jpg');
  background-color: #0ea5e9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-panel__image--engineering {
  background-image: url('assets/engineering-platforms.jpg');
  background-color: #f97316;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-panel__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 10% 10%,
    rgba(15, 23, 42, 0) 0,
    rgba(15, 23, 42, 0.2) 55%
  );
  mix-blend-mode: multiply;
  pointer-events: none;
  opacity: 0.6;
}

.hero-panel__badge {
  position: absolute;
  inset: 14px auto auto 14px;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  z-index: 2;
}

.hero-panel__text {
  padding: 10px 4px 6px;
  font-size: 14px;
}

.hero-panel__text h2 {
  margin: 0 0 8px;
  font-size: 17px;
}

.hero-panel__text p {
  margin: 0 0 8px;
  color: var(--muted);
}

.hero-panel__text ul {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  color: #e5e7eb;
  display: grid;
  gap: 2px;
}

/* Cards & grids shared */
.grid {
  display: grid;
  gap: 18px;
}

.grid--why {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--capabilities {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: radial-gradient(circle at top left, #1f2937 0, #020617 60%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.28);
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-soft-light);
  position: relative;
  overflow: hidden;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(
    circle at top left,
    rgba(79, 70, 229, 0.26),
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.2s ease;
}

.card--tilt:hover::before {
  opacity: 1;
}

.card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.card__header h3 {
  margin: 0;
  font-size: 16px;
}

.card__pill {
  font-size: 11px;
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--muted);
}

.card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: #e5e7eb;
  display: grid;
  gap: 4px;
}

/* Capabilities */
.capability {
  background: linear-gradient(145deg, #020617, #020617 36%, #111827 100%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-soft-light);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
}

.capability::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(
    from 210deg,
    rgba(79, 70, 229, 0.3),
    rgba(56, 189, 248, 0.1),
    transparent 40%,
    rgba(79, 70, 229, 0.35)
  );
  opacity: 0;
  transition: opacity 0.18s ease;
}

.capability:hover::after {
  opacity: 1;
}

.capability:hover {
  transform: translateY(-6px) scale(1.01) rotate(-0.3deg);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.9);
  border-color: rgba(129, 140, 248, 0.8);
}

.capability:hover .capability__icon {
  transform: translateY(-1px) rotate(-4deg);
}

.capability__icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  margin-bottom: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
}

.capability__icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: conic-gradient(
    from 140deg,
    rgba(79, 70, 229, 0.6),
    rgba(56, 189, 248, 0.4),
    rgba(34, 197, 94, 0.6),
    rgba(79, 70, 229, 0.6)
  );
  opacity: 0.75;
  mix-blend-mode: screen;
}

.capability__icon--data::after {
  background: conic-gradient(
    from 140deg,
    rgba(56, 189, 248, 0.7),
    rgba(59, 130, 246, 0.6),
    rgba(8, 145, 178, 0.8),
    rgba(56, 189, 248, 0.7)
  );
}

.capability__icon--platform::after {
  background: conic-gradient(
    from 140deg,
    rgba(248, 250, 252, 0.9),
    rgba(148, 163, 184, 0.8),
    rgba(148, 163, 184, 0.7),
    rgba(248, 250, 252, 0.9)
  );
}

.capability__icon--advisory::after {
  background: conic-gradient(
    from 140deg,
    rgba(244, 114, 182, 0.9),
    rgba(192, 132, 252, 0.8),
    rgba(244, 114, 182, 0.9)
  );
}

.capability h3 {
  margin: 0;
  font-size: 15px;
}

.capability p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.capability__tag {
  margin-top: auto;
  align-self: flex-start;
  padding: 4px 8px;
  font-size: 11px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--muted);
}


/* Approach / timeline */
.section--approach {
  padding-top: 80px;
  padding-bottom: 96px;
}

.approach {
  display: grid;
  gap: 16px;
  position: relative;
}

.approach::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(148, 163, 184, 0.3),
    rgba(148, 163, 184, 0.5),
    rgba(148, 163, 184, 0.3)
  );
}

.approach-step {
  position: relative;
  padding: 14px 18px 12px 38px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: radial-gradient(circle at top left, #111827 0, #020617 60%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: flex-start;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.approach-step::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.9);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease;
}

.approach-step {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              background 0.3s ease;
}

.approach-step__index {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  transition: color 0.3s ease;
}

.approach-step__body h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.approach-step__body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Contact & partners */
.section--contact {
  padding-top: 96px;
  padding-bottom: 80px;
  background: radial-gradient(circle at top, #020617 0, #020617 45%, #000 100%);
  border-top: 1px solid rgba(148, 163, 184, 0.3);
}

.contact__partners {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.partner-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: linear-gradient(135deg, #020617, #020617 48%, #111827 100%);
  padding: 12px 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease,
              background 0.3s ease;
}

.partner-card__pill {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.partner-card__name {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}


.contact__form-wrapper {
  max-width: 460px;
  margin-left: auto;
}

.contact__info {
  margin-bottom: 20px;
  padding: 14px 16px;
  background: radial-gradient(circle at top left, #020617 0, #020617 60%);
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.contact__info-item {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--muted);
}

.contact__info-item:last-child {
  margin-bottom: 0;
}

.contact__info-item strong {
  color: #e5e7eb;
  font-weight: 500;
  margin-right: 6px;
}

.contact__info-item a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

.contact__info-item a:hover {
  color: var(--accent-strong);
  text-decoration: underline;
}

.form-message {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.form-message:not(:empty) {
  display: block;
}

.form-message--success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #86efac;
}

.form-message--error {
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #fca5a5;
}

.contact-form {
  margin-top: 10px;
  background: radial-gradient(circle at top left, #020617 0, #020617 60%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 18px 18px 16px;
  display: grid;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  color: #e5e7eb;
}

.field input,
.field textarea,
.field select {
  padding: 7px 9px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.7);
  background: rgba(15, 23, 42, 1);
}

.field--inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-form__note {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
}

.btn-loading {
  display: none;
}

.footer {
  max-width: 1240px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__left strong {
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 600;
}

.footer__address {
  margin-top: 4px;
  line-height: 1.7;
}

.footer__right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
  align-items: flex-end;
}

.footer__contact {
  line-height: 1.7;
}

.footer__contact strong {
  color: #e5e7eb;
  font-weight: 500;
}

.footer__contact a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer__contact a:hover {
  color: var(--accent-strong);
  text-decoration: underline;
}

.footer__copyright {
  margin-top: auto;
  font-size: 12px;
}

/* Scroll / reveal animations */
.anim-fade-up,
.anim-from-left,
.anim-from-right,
.anim-zoom-in {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.anim-delay-1 {
  transition-delay: 0.05s;
}

.anim-delay-2 {
  transition-delay: 0.1s;
}

.anim-delay-3 {
  transition-delay: 0.15s;
}

/* Animation classes are now just for transition timing, elements are visible by default */

/* DISTINCT HOVER ANIMATIONS FOR EACH SECTION TYPE */

/* 1. Why Cards - Soft tilt with glow */
.card--tilt:hover {
  transform: translateY(-6px) rotate(1deg) translateZ(0);
  box-shadow: 0 24px 50px rgba(79, 70, 229, 0.4), 0 0 0 1px rgba(79, 70, 229, 0.3);
  border-color: rgba(79, 70, 229, 0.5);
}

.card--tilt:hover .card__pill {
  background: rgba(79, 70, 229, 0.2);
  border-color: rgba(79, 70, 229, 0.6);
  color: #e5e7eb;
}

/* 2. Capabilities - Aggressive lift with rotate and icon animation */
.capability:hover {
  transform: translateY(-8px) rotate(-1.5deg) scale(1.02) translateZ(0);
  box-shadow: 0 28px 60px rgba(56, 189, 248, 0.35), 0 0 0 2px rgba(56, 189, 248, 0.4);
  border-color: rgba(56, 189, 248, 0.6);
}

.capability:hover .capability__icon {
  transform: translateY(-2px) rotate(5deg) scale(1.1);
  box-shadow: 0 8px 20px rgba(56, 189, 248, 0.5);
}

.capability:hover .capability__tag {
  background: rgba(56, 189, 248, 0.2);
  border-color: rgba(56, 189, 248, 0.6);
  color: #e5e7eb;
}

/* 3. Approach Steps - Diagonal movement with bright border */
.approach-step:hover {
  transform: translateY(-5px) translateX(8px) translateZ(0);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.4), 0 0 0 2px rgba(124, 58, 237, 0.5);
  border-color: rgba(124, 58, 237, 0.6);
  background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.15) 0, #020617 60%);
}

.approach-step:hover::before {
  transform: scale(1.4);
  box-shadow: 0 0 20px rgba(124, 58, 237, 1);
}

.approach-step:hover .approach-step__index {
  color: rgba(124, 58, 237, 0.9);
}

/* 5. Partner Cards - Bright diagonal gradient sweep */
.partner-card:hover {
  transform: translateY(-7px) translateX(-3px) translateZ(0);
  box-shadow: 0 25px 55px rgba(244, 114, 182, 0.35), 0 0 0 2px rgba(244, 114, 182, 0.5);
  border-color: rgba(244, 114, 182, 0.6);
  background: linear-gradient(
    135deg,
    rgba(244, 114, 182, 0.15) 0%,
    #020617 30%,
    #111827 100%
  );
  position: relative;
  overflow: hidden;
}

.partner-card:hover::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(244, 114, 182, 0.2) 50%,
    transparent 70%
  );
  animation: sweep 0.6s ease;
  pointer-events: none;
}

@keyframes sweep {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.partner-card:hover .partner-card__pill {
  color: rgba(244, 114, 182, 0.9);
}

.partner-card:hover .partner-card__name {
  color: #e5e7eb;
}

/* Generic fallback for any other [data-tilt] elements */
[data-tilt]:not(.card--tilt):not(.capability):not(.approach-step):not(.partner-card):hover {
  transform: translateY(-4px) translateZ(0);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.8);
}

/* Layered / overlapping decorative backgrounds (Weldork-inspired) */
.section--why::before {
  content: "";
  position: absolute;
  inset: -120px -80px auto auto;
  background: radial-gradient(
    circle at 80% 0%,
    rgba(79, 70, 229, 0.25),
    transparent 60%
  );
  opacity: 0.75;
  pointer-events: none;
  z-index: 0;
}

.section--capabilities::before {
  content: "";
  position: absolute;
  inset: 10% -40px auto -40px;
  height: 160px;
  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.9),
    rgba(79, 70, 229, 0.32),
    rgba(15, 23, 42, 0.95)
  );
  opacity: 0.9;
  filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

.section--approach::before {
  content: "";
  position: absolute;
  inset: 40% auto auto -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle at 0 0,
    rgba(148, 163, 184, 0.3),
    transparent 60%
  );
  opacity: 0.65;
  pointer-events: none;
  z-index: 0;
}

.section--contact::before {
  content: "";
  position: absolute;
  inset: -160px -80px auto auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle at 100% 0%,
    rgba(79, 70, 229, 0.35),
    rgba(15, 23, 42, 0.95)
  );
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: minmax(0, 1.2fr);
  }

  .hero-panel {
    order: -1;
  }

  .section__inner--split {
    grid-template-columns: minmax(0, 1.1fr);
  }

  .grid--capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .section {
    padding-inline: 18px;
    padding-block: 72px;
  }

  .section--hero {
    padding-top: 32px;
  }

  .hero {
    gap: 26px;
  }

  .hero-panel__slide {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid--why {
    grid-template-columns: minmax(0, 1fr);
  }

  .scroll-indicator {
    right: 18px;
    height: 150px;
  }

  .scroll-indicator__dot {
    transform: translateY(-55px);
  }

  .scroll-indicator__dot--bottom {
    transform: translateY(55px);
  }

  .footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .footer__right {
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .grid--capabilities {
    grid-template-columns: minmax(0, 1fr);
  }

  .partner-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .field--inline {
    grid-template-columns: minmax(0, 1fr);
  }

  .section__inner--split {
    gap: 40px;
  }
}

