:root {
  --primary: #92c83e;
  --primary-dark: #7fb62f;
  --secondary: #101010;
  --black: #101010;
  --tertiary: #326B48;
  --neutral: #ffffff;
  --surface: #f1f2f4;
  --surface-alt: #e7e9ed;
  --line: #d7dbe2;
  --on-surface: #24262b;
  --muted: #616878;
  --section-shadow: 0 1px 2px rgba(17,22,41,.025), 0 10px 24px rgba(17,22,41,.03);
  --container: min(1480px, calc(100vw - 52px));
  --ease: cubic-bezier(.2,.8,.2,1);
  --radius: 0px;
}

* { box-sizing: border-box; }
html { background: #fff; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--on-surface);
  background: #fff;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1,h2,h3,p { margin: 0; }

h1, h2, h3 {
  background: linear-gradient(180deg, #2c324a 0%, #111629 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}

.page-accent {
  position: fixed;
  top: 0;
  right: 0;
  width: 42vw;
  height: 42vw;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,.48), rgba(238,241,245,0) 72%);
  filter: blur(40px);
  z-index: 0;
}

.site-shell {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(249,250,251,.985), rgba(244,246,249,.97) 32%, rgba(239,242,246,.95) 100%);
}

main {
  position: relative;
  z-index: 2;
  background: transparent;
}

.nav {
  position: fixed;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: min(1480px, calc(100vw - 36px));
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 42px 12px 36px;
  border: 1px solid rgba(16,16,16,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(22px) saturate(170%);
  box-shadow: 0 18px 70px rgba(16,16,16,.08);
  z-index: 9999;
  pointer-events: auto;
  transition:
    background .46s var(--ease),
    box-shadow .46s var(--ease),
    border-color .46s var(--ease),
    min-height .46s var(--ease);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  line-height: 0;
  flex-shrink: 0;
}

.brand img {
  width: 158px;
  height: auto;
  max-height: 34px;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: clamp(14px, 1.7vw, 30px);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(17,22,41,.70);
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.nav-links a {
  transition: color .24s var(--ease);
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 10;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-toggle,
.mobile-nav-menu {
  display: none;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17,22,41,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  flex-shrink: 0;
}

.nav-toggle span {
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--secondary);
  transition: transform .24s var(--ease), opacity .24s var(--ease);
}

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

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

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

.mobile-nav-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  padding: 10px;
  border: 1px solid rgba(16,16,16,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 18px 50px rgba(16,16,16,.10);
}

.mobile-nav-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(17,22,41,.80);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.mobile-nav-menu a:hover {
  background: rgba(17,22,41,.05);
}

.btn,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: transform .28s var(--ease), background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
  cursor: pointer;
}

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

.btn-primary,
.nav-cta {
  background: var(--primary);
  color: var(--secondary);
}

.nav-cta {
  border-radius: 999px;
  padding-inline: 26px;
}

.btn-primary:hover,
.nav-cta:hover { background: var(--primary-dark); }

.btn-dark {
  background: var(--secondary);
  color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,.78);
  color: var(--secondary);
  border-color: rgba(17,22,41,.12);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 138px 0 108px;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 45%, rgba(255,255,255,.20) 100%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.20)),
    url("images/new/hero-main-hybrid-energy-park.png") center/cover no-repeat;
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17,22,41,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,22,41,.05) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: .45;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.45));
}

.hero-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 22px;
  color: rgba(17,22,41,.80);
}

.eyebrow::before,
.kicker::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--primary);
}

.hero h1 {
  max-width: 1220px;
  color: #a5dd4e;
  font-size: clamp(52px, 7.45vw, 110px);
  line-height: 1.03;
  letter-spacing: -.065em;
  font-weight: 700;
  text-wrap: balance;
  padding-top: .04em;
}

.hero h1 span {
  color: #a5dd4e;
  display: inline-block;
}

.hero-text {
  max-width: 1240px;
}

.hero-copy {
  max-width: 760px;
  margin-top: 30px;
  color: rgba(17,22,41,.78);
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: -.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-panel {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(17,22,41,.10);
  padding: 18px;
  display: grid;
  gap: 18px;
  box-shadow: var(--section-shadow);
}

.hero-panel-image {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(17,22,41,.08)),
    url("images/new/hero-main-hybrid-energy-park.png") center/cover no-repeat;
  border: 1px solid rgba(17,22,41,.08);
  position: relative;
  overflow: hidden;
}

.hero-panel-image::after {
  content: "Freiflächen · Speicher · PPA";
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  background: rgba(255,255,255,.88);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(17,22,41,.08);
}

.hero-panel-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.hero-stat {
  min-height: 108px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(17,22,41,.08);
}

.hero-stat strong {
  display: block;
  color: var(--secondary);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: .95;
  letter-spacing: -.05em;
}

.hero-stat span {
  display: block;
  margin-top: 10px;
  color: rgba(17,22,41,.64);
  font-size: 12px;
  line-height: 1.5;
}

.overview-section {
  width: var(--container);
  margin: 0 auto;
  padding: 86px 0 112px;
  position: relative;
  z-index: 2;
  clear: both;
}

.overview-panel {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(17,22,41,.10);
  padding: 28px;
  display: grid;
  gap: 22px;
  box-shadow: var(--section-shadow);
  margin-top: -48px;
}

.overview-image {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(17,22,41,.06)),
    url("images/new/hero-main-hybrid-energy-park.png") center/cover no-repeat;
  border: 1px solid rgba(17,22,41,.08);
  position: relative;
  overflow: hidden;
}

.overview-image::after {
  content: "Freiflächen · Speicher · PPA";
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,.92);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(17,22,41,.08);
}

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

.overview-stat {
  min-height: 190px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(17,22,41,.08);
}

.overview-stat strong {
  display: block;
  color: var(--secondary);
  font-size: clamp(34px, 4vw, 64px);
  line-height: .92;
  letter-spacing: -.06em;
  font-weight: 700;
}

.overview-stat span {
  display: block;
  margin-top: 16px;
  color: rgba(17,22,41,.68);
  font-size: clamp(14px, 1.15vw, 18px);
  line-height: 1.55;
  font-weight: 300;
}

section {
  width: var(--container);
  margin: 0 auto;
  padding: 160px 0;
}

.section-head {
  display: block;
  margin-bottom: 48px;
}

.kicker {
  color: var(--tertiary);
  margin-bottom: 18px;
}

h2 {
  max-width: 1080px;
  color: var(--secondary);
  font-size: clamp(42px, 6vw, 94px);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 700;
}

.lead {
  color: rgba(36,38,43,.72);
  font-size: clamp(16px, 1.35vw, 19px);
  line-height: 1.75;
  font-weight: 300;
}

.products-section {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-top: 140px;
  overflow-x: clip;
  background: transparent;
}

.products-section .section-head {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.product-slider {
  position: relative;
  width: var(--container);
  max-width: var(--container);
  margin: 0 auto;
  min-height: 60vh;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--section-shadow);
}

.product-slider-inner {
  display: flex;
  transition: transform 0.8s var(--ease);
}

.product-card {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  min-height: 60vh;
  display: flex;
  flex-direction: row;
  background: transparent;
  border: none;
  border-radius: 12px;
  overflow: visible;
  isolation: isolate;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), z-index 0s linear 0.3s;
  transform: scale(1);
}

.product-card.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
  transition: opacity 0.8s var(--ease), z-index 0s linear;
}

/* Rounded corners for inner card content */
.product-card:nth-child(odd) .card-image-box {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
.product-card:nth-child(odd) .card-text-box {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.product-card:nth-child(even) .card-image-box {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.product-card:nth-child(even) .card-text-box {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.card-image-box {
  flex: 1.25;
  position: relative;
  overflow: hidden;

}

.card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.15);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.8s ease;
}

.product-card.active .card-image {
  transform: scale(1);
  opacity: 1;
}

.card-text-box {
  flex: 1;
  background: #ffffff;
  padding: clamp(32px, 4vw, 56px) clamp(32px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  box-shadow: -1px 0 0 rgba(17,22,41,.03);
}

.product-card .card-header {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.product-card:nth-child(even) .card-header {
  transform: translateX(-40px);
}

.product-card.active .card-header {
  opacity: 1;
  transform: translateX(0);
}

.product-card .card-body {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s;
}

.product-card:nth-child(even) .card-body {
  transform: translateX(-40px);
}

.product-card.active .card-body {
  opacity: 1;
  transform: translateX(0);
}

.product-card .micro-list {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
}

.product-card:nth-child(even) .micro-list {
  transform: translateX(-40px);
}

.product-card.active .micro-list {
  opacity: 1;
  transform: translateX(0);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.slider-dot:hover {
  background: var(--primary);
}

.slider-dot.active {
  background: var(--primary);
}

.product-card:nth-child(even) {
  flex-direction: row-reverse;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 24px 0;
}

.tag,
.micro-list span,
.tile-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
}

.index {
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
}

.product-card h3 {
  width: 520px;
  max-width: 100%;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  letter-spacing: -.04em;
  font-weight: 700;
  color: var(--secondary);
}

.product-card p {
  margin-top: 16px;
  color: rgba(17,22,41,.72);
  font-size: 14.5px;
  line-height: 1.65;
  font-weight: 300;
  display: block;
}

.product-card .tag,
.product-card .micro-list span {
  border: none;
  background: rgba(17,22,41,.04);
  color: rgba(17,22,41,.72);
  backdrop-filter: none;
}

.product-card .index {
  color: rgba(17,22,41,.40);
}

@media (max-width: 960px) {
  .product-card, .product-card:nth-child(even) {
    flex-direction: column;
    min-height: auto;
  }
  .card-image-box {
    height: 280px;
    flex: none;
    border-radius: 12px 12px 0 0 !important;
  }
  .card-text-box {
    flex: none;
    padding: 32px 24px;
    border-radius: 0 0 12px 12px !important;
  }
}

.micro-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.split-showcase {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .88fr);
  gap: 18px;
  align-items: stretch;
}

.dark-panel {
  min-height: 720px;
  padding: clamp(32px, 5vw, 74px);
  background:
    radial-gradient(circle at 14% 16%, rgba(146,200,62,.16), transparent 22%),
    linear-gradient(135deg, #101010, #0e1322 70%);
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17,22,41,.06);
}

.dark-panel::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 240px;
  height: 240px;
  border-top: 1px solid rgba(146,200,62,.18);
  border-left: 1px solid rgba(146,200,62,.18);
  opacity: .8;
}

.dark-panel h2 { color: #fff; }
.dark-panel .lead { color: rgba(255,255,255,.76); max-width: 620px; }

.steps {
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.step b {
  color: var(--primary);
  font-size: 13px;
  letter-spacing: .1em;
}

.step span {
  color: rgba(255,255,255,.84);
  font-size: clamp(19px, 1.9vw, 30px);
  line-height: 1.24;
  letter-spacing: -.04em;
  font-weight: 500;
}

.image-stack {
  display: grid;
  gap: 18px;
}

.image-tile {
  min-height: 350px;
  position: relative;
  overflow: hidden;
  background: var(--image) center/cover no-repeat;
  border: 1px solid rgba(17,22,41,.10);
}

.image-tile::after {
  content: attr(data-label);
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 9px 12px;
  background: rgba(255,255,255,.88);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 1px solid rgba(17,22,41,.08);
}

.video-teaser-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 160px 0;
}

.video-teaser {
  width: var(--video-width, 100vw);
  max-width: 100vw;
  margin: 0 auto;
  min-height: clamp(380px, 45vw, 720px);
  display: block;
  border: 0;
  border-radius: var(--video-radius, 0px);
  overflow: hidden;
  background: #101010;
  color: #fff;
  box-shadow: none;
  position: relative;
  will-change: width, border-radius;
  transition: border-radius 0.1s ease;
}

.video-teaser-content {
  padding: clamp(30px, 4.4vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 46px;
  background:
    radial-gradient(circle at 8% 10%, rgba(146,200,62,.20), transparent 28%),
    linear-gradient(135deg, #101010, #151515 68%);
}

.video-teaser-content .kicker {
  color: rgba(146,200,62,.94);
  margin-bottom: 22px;
}

.video-teaser-content h2 {
  color: #fff;
  max-width: 620px;
  font-size: clamp(34px, 4.35vw, 70px);
  line-height: 1.02;
  letter-spacing: -.06em;
}

.video-teaser-content p {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255,255,255,.72);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.78;
  font-weight: 300;
}

.video-teaser-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.10);
}

.video-teaser-meta span {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 18px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.76);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.45;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: #101010;
  overflow: hidden;
  isolation: isolate;
}

.video-placeholder video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background:
    linear-gradient(180deg, rgba(16,16,16,.08), rgba(16,16,16,.28)),
    url("images/new/video-poster-floating-solar-park.png") center/cover no-repeat;
}

.video-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: flex-end;
  justify-content: flex-start;
  padding: clamp(20px, 3vw, 36px);
  background: linear-gradient(180deg, rgba(16,16,16,.06), rgba(16,16,16,.46));
  z-index: 2;
}

.video-fallback-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.video-fallback-copy {
  padding: 12px 16px;
  background: rgba(16,16,16,.72);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.video-placeholder.has-fallback .video-fallback {
  display: flex;
}

.video-placeholder.has-fallback video,
.video-placeholder.has-fallback .play-orb {
  display: none;
}

.video-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .34;
  z-index: -1;
}

.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,16,16,.02), rgba(16,16,16,.22));
  pointer-events: none;
}

.play-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(92px, 8vw, 132px);
  height: clamp(92px, 8vw, 132px);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(255,255,255,.58);
  box-shadow:
    0 30px 90px rgba(16,16,16,.24),
    0 0 0 18px rgba(255,255,255,.12);
  z-index: 3;
}

.play-orb::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 25px solid #101010;
}

.video-overlay-label {
  position: absolute;
  left: clamp(24px, 4vw, 64px);
  top: clamp(24px, 4vw, 64px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.video-overlay-label::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--primary);
}

.video-overlay-caption {
  position: absolute;
  left: clamp(24px, 4vw, 64px);
  bottom: clamp(24px, 4vw, 64px);
  z-index: 4;
  max-width: 640px;
  color: #fff;
  font-size: clamp(34px, 4.6vw, 78px);
  line-height: 1.02;
  letter-spacing: -.06em;
  font-weight: 700;
  text-shadow: 0 20px 80px rgba(16,16,16,.35);
}

.video-project-strip {
  display: none;
}

.video-project-strip span {
  display: none;
}

.audience-section {
  padding-top: 150px;
  width: 100%;
  max-width: none;
}

.audience-section .section-head {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.audience-marquee {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.audience-track {
  display: flex;
  gap: 22px;
  padding: 0 22px;
  width: max-content;
  will-change: transform;
}

.audience-card {
  flex: 0 0 clamp(320px, 30vw, 460px);
  min-height: 0;
  padding: 20px 0 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform .28s var(--ease), opacity .28s var(--ease);
}

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

.audience-card .num {
  display: block;
  margin-bottom: 20px;
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .08em;
}

.audience-card h3 {
  color: var(--secondary);
  font-size: clamp(34px, 2.8vw, 50px);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 800;
  max-width: none;
  overflow-wrap: anywhere;
}

.audience-card p {
  margin-top: 18px;
  color: rgba(36,38,43,.66);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  max-width: 28ch;
}

.capability-section {
  width: 100%;
  max-width: none;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(245,246,248,.95), rgba(240,242,245,.97));
  color: var(--secondary);
}

.capability-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 160px 0;
}

.capability-inner h2 { color: var(--secondary); }

.capability-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.capability {
  min-height: 248px;
  padding: 32px 26px;
  background: #ffffff;
  border: none;
  border-radius: 12px;
  position: relative;
  box-shadow: var(--section-shadow);
  transition: transform .28s var(--ease);
}

.capability:hover {
  transform: translateY(-4px);
}

.capability b {
  display: block;
  color: var(--primary);
  font-size: clamp(48px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 22px;
  letter-spacing: -.03em;
}

.capability h3 {
  color: var(--secondary);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.25;
  letter-spacing: -.04em;
  font-weight: 700;
}

.capability p {
  margin-top: 12px;
  color: rgba(17,22,41,.64);
  font-size: 13.5px;
  line-height: 1.6;
  font-weight: 300;
}

.project-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .82fr);
  gap: 18px;
}

.project-hero {
  min-height: 650px;
  display: flex;
  border-radius: 10px;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(17,22,41,.06), rgba(17,22,41,.84)),
    url("images/new/products-card-project-development-site.png") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  pointer-events: none;
}

.project-hero h2 {
  background: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.15));
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
  max-width: 860px;
  font-size: clamp(32px, 3.8vw, 56px);
  line-height: 1.05;
  letter-spacing: -.045em;
}
.project-hero p {
  max-width: 700px;
  margin-top: 20px;
  color: rgba(255,255,255,.80);
  line-height: 1.76;
  font-weight: 300;
}

.project-side {
  display: grid;
  gap: 18px;
}

.metric-card {
  min-height: 204px;
  padding: 28px;
  background: #fff;
  border: none;
  border-radius: 10px;
  box-shadow: var(--section-shadow);
}

.metric-card strong {
  display: block;
  color: var(--secondary);
  font-size: clamp(42px, 4.8vw, 74px);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 700;
}

.metric-card span {
  display: block;
  margin-top: 14px;
  color: rgba(36,38,43,.70);
  font-size: 14px;
  line-height: 1.68;
}

.cta {
  width: var(--cta-width, 100vw);
  max-width: 100vw;
  margin: 0 auto 120px;
  padding: 0;
  border: none;
  border-radius: 12px;
  display: block;
  background:
    radial-gradient(circle at 84% 14%, rgba(255,255,255,.52), transparent 26%),
    linear-gradient(135deg, rgba(255,255,255,.985), rgba(242,244,247,.95));
  overflow: hidden;
  position: relative;
  transition: box-shadow .35s var(--ease);
  will-change: width;
  box-shadow: var(--section-shadow);
}

.cta.is-contained {
  box-shadow: var(--section-shadow);
}

.cta-inner {
  width: var(--container);
  max-width: calc(100vw - 52px);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) clamp(52px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 52px;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .desktop-br { display: none; }
}

.cta h2 {
  max-width: 1120px;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.05;
  letter-spacing: -.050em;
  font-weight: 800;
  color: var(--secondary);
}

.cta-email {
  font-size: clamp(28px, 3.8vw, 54px);
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -.03em;
  transition: color .24s var(--ease), transform .24s var(--ease);
  display: inline-block;
}

.cta-email:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 28px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(36,38,43,.56);
  font-size: 12px;
  border-top: 1px solid rgba(17,22,41,.08);
  background: transparent;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

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

@media (max-width: 1240px) {
  .hero-inner,
  .section-head,
  .split-showcase,
  .project-strip,
  .cta,
  .overview-meta { grid-template-columns: 1fr; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --container: min(100vw - 28px, 1480px); }
  .nav {
    width: calc(100% - 20px);
    top: 10px;
    min-height: 60px;
    border-radius: 999px;
    padding: 8px 16px;
  }
  .brand img { width: 126px; max-height: 26px; }
  .hero { padding-top: 116px; }
  .hero h1 {
    font-size: clamp(42px, 11.8vw, 66px);
    line-height: 1.05;
    letter-spacing: -.055em;
  }
  .overview-meta { grid-template-columns: 1fr; }
  section { padding: 84px 0; }
  .audience-track {
    gap: 16px;
    padding: 0 16px;
  }
  .audience-card {
    flex-basis: min(340px, calc(100vw - 40px));
    padding: 18px 0 20px;
  }
  .audience-card .num {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .audience-card h3 {
    font-size: clamp(28px, 8vw, 40px);
  }
  .audience-card p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.5;
  }
  .capability-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 64px 1fr; }
  .overview-section { padding-top: 42px; }
  .overview-panel { margin-top: 0; padding: 18px; }
  .overview-image { min-height: 220px; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.mobile-open {
    border-radius: 24px;
    align-items: center;
  }
  .nav.mobile-open .mobile-nav-menu {
    display: block;
  }
  .footer { flex-direction: column; align-items: flex-start; }
}

.video-overlay-label,
.video-overlay-caption {
  display: none !important;
}

.video-placeholder {
  cursor: pointer;
}

.video-placeholder.is-playing .play-orb {
  display: none !important;
}

.video-placeholder video {
  cursor: pointer;
}
