:root {
  --bg: #060814;
  --bg-soft: #0b1023;
  --panel: rgba(11, 16, 34, 0.72);
  --panel-strong: rgba(12, 18, 38, 0.9);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.12);
  --text: #eff4ff;
  --muted: #9eabc9;
  --blue: #2c62ce;
  --navy: #1c427e;
  --purple: #5f4dd8;
  --pink: #ff5aa9;
  --cyan: #9cf7e4;
  --orange: #ff9e41;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 18%, rgba(44, 98, 206, 0.18), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(255, 90, 169, 0.12), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(95, 77, 216, 0.16), transparent 26%),
    linear-gradient(180deg, #04060d 0%, #071022 52%, #060912 100%);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

.grid-overlay,
.lightbar-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.grid-overlay {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.88));
}

.hero-lightfield,
.bg-light-segment,
.hero-light-wash,
.bg-beam,
.bg-orb {
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-lightfield {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1600px, 140vw);
  height: 52vh;
  min-height: 360px;
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 0 4vw;
  opacity: 0.9;
}

.bg-light-segment {
  position: relative;
  flex: 1 1 0;
  min-width: 52px;
  max-width: 120px;
  height: 100%;
  border-radius: 0 0 999px 999px;
  opacity: 0.02;
  transform: scaleX(0.96);
  transition:
    opacity 70ms linear,
    transform 70ms linear,
    filter 70ms linear;
  filter: blur(18px);
}

.bg-light-segment::before,
.bg-light-segment::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 70ms linear;
}

.bg-light-segment::before {
  top: 0;
  width: 100%;
  height: 82%;
  border-radius: 0 0 999px 999px;
}

.bg-light-segment::after {
  top: 8%;
  width: 160%;
  height: 110%;
  border-radius: 50%;
  filter: blur(44px);
}

.bg-light-segment.red::before {
  background: linear-gradient(
    180deg,
    rgba(255, 70, 70, 0.95) 0%,
    rgba(255, 70, 70, 0.55) 32%,
    rgba(255, 70, 70, 0.12) 60%,
    rgba(255, 70, 70, 0) 100%
  );
}

.bg-light-segment.red::after {
  background: radial-gradient(circle, rgba(255, 70, 70, 0.22) 0%, rgba(255, 70, 70, 0) 72%);
}

.bg-light-segment.blue::before {
  background: linear-gradient(
    180deg,
    rgba(90, 170, 255, 0.95) 0%,
    rgba(45, 120, 255, 0.55) 32%,
    rgba(45, 120, 255, 0.12) 60%,
    rgba(45, 120, 255, 0) 100%
  );
}

.bg-light-segment.blue::after {
  background: radial-gradient(circle, rgba(45, 120, 255, 0.22) 0%, rgba(45, 120, 255, 0) 72%);
}

.bg-light-segment.white::before {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(220, 235, 255, 0.58) 32%,
    rgba(220, 235, 255, 0.12) 60%,
    rgba(220, 235, 255, 0) 100%
  );
}

.bg-light-segment.white::after {
  background: radial-gradient(circle, rgba(240, 245, 255, 0.20) 0%, rgba(240, 245, 255, 0) 72%);
}

.bg-light-segment.on {
  opacity: 0.9;
  transform: scaleX(1.01);
  filter: blur(12px);
}

.bg-light-segment.dim {
  opacity: 0.24;
  transform: scaleX(0.985);
  filter: blur(16px);
}

.bg-light-segment.on::before,
.bg-light-segment.on::after,
.bg-light-segment.dim::before,
.bg-light-segment.dim::after {
  opacity: 1;
}

.hero-light-wash {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: min(1600px, 150vw);
  height: 62vh;
  min-height: 480px;
  border-radius: 0 0 50% 50%;
  opacity: 0;
  filter: blur(110px);
  transition: opacity 120ms linear;
}

.hero-light-wash-red {
  background: radial-gradient(
    ellipse at 24% 8%,
    rgba(255, 50, 50, 0.28) 0%,
    rgba(255, 50, 50, 0.10) 30%,
    rgba(255, 50, 50, 0) 68%
  );
}

.hero-light-wash-blue {
  background: radial-gradient(
    ellipse at 76% 8%,
    rgba(45, 120, 255, 0.30) 0%,
    rgba(45, 120, 255, 0.10) 30%,
    rgba(45, 120, 255, 0) 68%
  );
}

.hero-light-wash-white {
  background: radial-gradient(
    ellipse at 50% 4%,
    rgba(240, 246, 255, 0.22) 0%,
    rgba(240, 246, 255, 0.08) 28%,
    rgba(240, 246, 255, 0) 66%
  );
}

.lightbar-bg[data-mode="redburst"] .hero-light-wash-red {
  opacity: 1;
}

.lightbar-bg[data-mode="blueburst"] .hero-light-wash-blue {
  opacity: 1;
}

.lightbar-bg[data-mode="whiteburst"] .hero-light-wash-white {
  opacity: 1;
}

.lightbar-bg[data-mode="fullburst"] .hero-light-wash-red,
.lightbar-bg[data-mode="fullburst"] .hero-light-wash-blue,
.lightbar-bg[data-mode="fullburst"] .hero-light-wash-white {
  opacity: 0.9;
}

.bg-beam {
  top: -8vh;
  width: 42vw;
  height: 120vh;
  filter: blur(90px);
  opacity: 0.10;
  transform: rotate(-18deg);
}

.bg-beam-red {
  left: -10vw;
  background: linear-gradient(
    180deg,
    rgba(255, 40, 40, 0.22) 0%,
    rgba(255, 40, 40, 0.08) 30%,
    rgba(255, 40, 40, 0.00) 70%
  );
  animation: beamFloatRed 10s ease-in-out infinite;
}

.bg-beam-blue {
  right: -10vw;
  background: linear-gradient(
    180deg,
    rgba(40, 120, 255, 0.24) 0%,
    rgba(40, 120, 255, 0.08) 30%,
    rgba(40, 120, 255, 0.00) 70%
  );
  transform: rotate(18deg);
  animation: beamFloatBlue 12s ease-in-out infinite;
}

.bg-orb {
  width: 28vw;
  height: 28vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.14;
}

.bg-orb-left {
  left: -8vw;
  top: 42vh;
  background: radial-gradient(circle, rgba(255, 70, 120, 0.22) 0%, rgba(255, 70, 120, 0) 70%);
  animation: orbFloatLeft 16s ease-in-out infinite;
}

.bg-orb-right {
  right: -8vw;
  top: 55vh;
  background: radial-gradient(circle, rgba(70, 130, 255, 0.24) 0%, rgba(70, 130, 255, 0) 70%);
  animation: orbFloatRight 18s ease-in-out infinite;
}

@keyframes beamFloatRed {
  0%, 100% { transform: rotate(-18deg) translateY(0); opacity: 0.09; }
  50% { transform: rotate(-15deg) translateY(20px); opacity: 0.16; }
}

@keyframes beamFloatBlue {
  0%, 100% { transform: rotate(18deg) translateY(0); opacity: 0.10; }
  50% { transform: rotate(15deg) translateY(-24px); opacity: 0.17; }
}

@keyframes orbFloatLeft {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(40px, -20px, 0); }
}

@keyframes orbFloatRight {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-36px, 24px, 0); }
}

.shell {
  width: min(var(--container), calc(100% - 28px));
  margin: 20px auto 54px;
  position: relative;
  z-index: 1;
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(10, 15, 35, 0.74), rgba(8, 11, 26, 0.9));
  backdrop-filter: blur(16px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(10, 14, 30, 0.88), rgba(6, 9, 20, 0.78)),
    rgba(7, 10, 22, 0.58);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
}

.brand-copy {
  min-width: 0;
}

.brand-copy h1 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--text);
}

.brand-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.2;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto 4px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.topbar.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.topbar.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.nav a,
.btn {
  padding: 12px 16px;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 700;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 8px 22px rgba(0, 0, 0, 0.16);
}

.nav a:hover,
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(156, 247, 228, 0.22);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(156, 247, 228, 0.04);
}

.nav a i,
.btn i {
  font-size: 0.95rem;
  opacity: 0.92;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  border-color: transparent;
  box-shadow:
    0 16px 34px rgba(44, 98, 206, 0.24),
    0 0 20px rgba(95, 77, 216, 0.12);
}

.btn-primary:hover {
  box-shadow:
    0 18px 40px rgba(44, 98, 206, 0.3),
    0 0 24px rgba(95, 77, 216, 0.16);
}

.btn-soft {
  background: rgba(255, 255, 255, 0.045);
}

.nav a:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible {
  outline: 2px solid rgba(156, 247, 228, 0.55);
  outline-offset: 3px;
}

.hero {
  padding: 90px 0 50px;
  text-align: center;
  position: relative;
}

.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(44, 98, 206, 0.22);
  background: rgba(44, 98, 206, 0.1);
  color: #dbe5ff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.hero-kicker::before,
.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--pink));
  box-shadow: 0 0 16px rgba(255, 158, 65, 0.78);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin-top: 22px;
  min-height: 720px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-slide-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
}

.hero-slide.active .hero-slide-media img {
  animation: kenBurns 7s ease-in-out forwards;
}

.hero-slide-overlay {
  position: relative;
  z-index: 2;
  min-height: 720px;
  padding: 58px 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(5, 8, 18, 0.18) 0%, rgba(5, 8, 18, 0.42) 42%, rgba(5, 8, 18, 0.86) 100%);
}

.headline {
  margin: 20px auto 18px;
  max-width: 940px;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
  text-wrap: balance;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.headline .gradient {
  background: linear-gradient(90deg, #ffffff 0%, #d7dfff 48%, #9cf7e4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 820px;
  margin: 0 auto;
  color: #d9e2ff;
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-links a {
  color: #dce6ff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 8, 18, 0.42);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: 0.2s ease;
}

.hero-slide-btn:hover {
  transform: translateY(-50%) translateY(-1px);
  border-color: rgba(156, 247, 228, 0.28);
}

.hero-slide-btn.prev {
  left: 18px;
}

.hero-slide-btn.next {
  right: 18px;
}

.hero-slide-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: 0.2s ease;
}

.hero-dot.active {
  width: 34px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

.mini-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
  text-align: left;
}

.mini-card,
.section-card,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 20px;
}

.mini-card small,
.section-card small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.mini-card strong,
.section-card strong {
  display: block;
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.mini-card p,
.section-card p,
.cta-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 0.95rem;
}

.section {
  padding-top: 26px;
}

.section-header {
  text-align: center;
  margin-bottom: 18px;
}

.section-header h2 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.section-header p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.section-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.02));
}

.accent-line {
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--blue), var(--cyan));
  margin-bottom: 16px;
}

.slideshow {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
}

.slideshow-track {
  position: relative;
  min-height: 650px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.985);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  position: relative;
}

.slide-media {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}

.slide-media img {
  display: block;
  width: 100%;
  height: 540px;
  object-fit: cover;
  transform: scale(1);
}

.slide.active .slide-media img {
  animation: kenBurns 7s ease-in-out forwards;
}

.slide-content {
  padding: 24px 24px 26px;
  text-align: left;
  background: linear-gradient(180deg, rgba(10, 15, 35, 0.2), rgba(8, 11, 26, 0.75));
}

.slide-kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: #d7e2ff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slide-content h3 {
  margin: 0 0 8px;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

.slide-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.slideshow-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.slide-arrow {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
}

.slide-arrow:hover {
  transform: translateY(-1px);
  border-color: rgba(156, 247, 228, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.slide-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.slide-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: 0.2s ease;
}

.slide-dot.active {
  width: 34px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

.split-feature {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 18px;
  align-items: stretch;
}

.feature-panel,
.feature-list {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(10, 15, 34, 0.92), rgba(8, 11, 26, 0.96));
  padding: 26px;
}

.feature-panel h3,
.feature-list h3,
.cta-panel h3 {
  margin: 0 0 12px;
  font-size: 1.65rem;
  letter-spacing: -0.03em;
}

.feature-panel p,
.feature-list p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.bullet-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.bullet-list strong {
  color: var(--text);
  display: block;
  margin-bottom: 4px;
}

.cta-wrap {
  padding-top: 28px;
}

.cta-panel {
  text-align: center;
  padding: 34px 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(44, 98, 206, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(10, 15, 34, 0.94), rgba(8, 11, 26, 0.98));
  border-radius: 28px;
}

.cta-panel p {
  max-width: 720px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer {
  margin-top: 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 8, 18, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  text-align: center;
  transition: 0.25s ease;
}

.footer-inner:hover {
  box-shadow: 0 14px 40px rgba(44, 98, 206, 0.18);
  border-color: rgba(156, 247, 228, 0.2);
}

.footer-text {
  margin: 0;
  font-size: 0.95rem;
  color: #c7d2ff;
  letter-spacing: 0.02em;
}

.footer-sub {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(199, 210, 255, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.divider {
  margin: 0 6px;
  opacity: 0.6;
}

.heart {
  display: inline-block;
  color: #ff5aa9;
  margin: 0 4px;
  animation: heartbeat 1.8s infinite ease-in-out;
  filter: drop-shadow(0 0 6px rgba(255, 90, 169, 0.6));
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 14, 0.88);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  z-index: 100;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 90vh;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  background: #0a0d18;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  10% { transform: scale(1.15); }
  20% { transform: scale(1); }
  30% { transform: scale(1.12); }
  40% { transform: scale(1); }
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.08) translate3d(1.5%, -1.5%, 0);
  }
}

@media (max-width: 980px) {
  .hero-lightfield {
    width: 150vw;
    height: 46vh;
    min-height: 300px;
    gap: 10px;
  }

  .hero-light-wash {
    width: 150vw;
    height: 56vh;
    min-height: 420px;
  }

  .mini-proof,
  .services-grid,
  .split-feature {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-lightfield {
    width: 170vw;
    height: 38vh;
    min-height: 240px;
    gap: 8px;
    padding: 0 3vw;
  }

  .bg-light-segment {
    min-width: 30px;
    filter: blur(14px);
  }

  .bg-light-segment.on {
    filter: blur(10px);
  }

  .bg-light-segment.dim {
    filter: blur(12px);
  }

  .hero-light-wash {
    width: 180vw;
    height: 48vh;
    min-height: 320px;
    filter: blur(90px);
  }

  .shell {
    width: min(calc(100% - 18px), var(--container));
    margin-top: 10px;
  }

  .topbar {
    align-items: center;
    gap: 14px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand-copy h1 {
    font-size: 1rem;
  }

  .brand-copy p {
    font-size: 0.84rem;
  }

  .nav-toggle {
    display: grid;
    place-content: center;
    flex: 0 0 auto;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .topbar.nav-open .nav {
    display: flex;
  }

  .nav a,
  .btn {
    width: 100%;
    flex: 1 1 100%;
    justify-content: flex-start;
    min-height: 50px;
  }

  .hero {
    padding-top: 44px;
  }

  .headline {
    font-size: clamp(2.3rem, 10vw, 4rem);
  }

  .hero-slider,
  .hero-slide-overlay {
    min-height: 520px;
  }

  .hero-slide-overlay {
    padding: 28px 18px 52px;
  }

  .slide-media img {
    height: 300px;
  }

  .slide-content {
    padding: 18px;
  }

  .slide-content h3 {
    font-size: 1.3rem;
  }

  .mini-card,
  .section-card,
  .feature-panel,
  .feature-list,
  .cta-panel {
    padding: 18px;
  }

  .hero-slide-btn {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 14px;
    border-radius: 18px;
  }

  .brand-copy p {
    margin-top: 3px;
    line-height: 1.25;
  }

  .nav a span,
  .btn span {
    font-size: 0.94rem;
  }
}

.bg-light-segment.amber::before {
  background: linear-gradient(
    180deg,
    rgba(255, 210, 120, 0.95) 0%,
    rgba(255, 170, 60, 0.55) 32%,
    rgba(255, 170, 60, 0.12) 60%,
    rgba(255, 170, 60, 0) 100%
  );
}

.bg-light-segment.amber::after {
  background: radial-gradient(circle, rgba(255, 170, 60, 0.22) 0%, rgba(255, 170, 60, 0) 72%);
}