:root {
  --primary: #008c4f;
  --primary-dark: #006d3d;
  --primary-soft: #e4f5ee;
  --ink: #07110d;
  --text: #26352f;
  --muted: #63736e;
  --line: #d9e5df;
  --page: #ffffff;
  --gold: #f3b544;
  --shadow: 0 18px 48px rgba(23, 33, 29, 0.14);
}

@font-face {
  font-family: "SVN-Gilroy";
  src:
    local("SVN-Gilroy"),
    local("SVN Gilroy"),
    local("SVN-Gilroy Regular"),
    local("SVN-Gilroy Medium");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: var(--text);
  background: var(--page);
  font-family: "SVN-Gilroy", "Gilroy", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px clamp(18px, 4.2vw, 56px) 8px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: 5px;
  background: rgba(0, 140, 79, 0.12);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transition: width 220ms ease;
}

main {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1480px, 100%);
  min-height: 56px;
  margin: 0 auto;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--primary);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  display: block;
  width: 112px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding-left: 18px;
  scrollbar-width: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  flex: 0 0 auto;
  padding: 12px 13px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.13);
}

.nav-links a:focus {
  outline: none;
}

.nav-links a:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.section {
  position: absolute;
  top: 0;
  left: 50%;
  display: none;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: clamp(30px, 4.2vw, 70px);
  align-items: center;
  width: min(1480px, calc(100% - 72px));
  height: 100vh;
  min-height: 0;
  margin: 0;
  padding: clamp(86px, 10.8vh, 112px) 0 clamp(48px, 6.4vh, 66px);
  transform: translateX(-50%) scale(var(--fit-scale, 1));
  transform-origin: center center;
  overflow: visible;
}

.section.active {
  display: grid;
  animation: slideIn 260ms ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translate(-50%, 10px) scale(var(--fit-scale, 1));
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(var(--fit-scale, 1));
  }
}

.copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.15;
  text-transform: uppercase;
}

h1,
h2,
p,
blockquote {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 24px;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(48px, 7.2vh, 78px);
  line-height: 1.02;
}

.nowrap {
     white-space: nowrap;
    font-size: 55px;
    color: #008c4f;
    z-index: 99;
    display: block;
    position: relative;
}

h2 {
  font-size: clamp(38px, 6.1vh, 58px);
  line-height: 1.08;
}

.lead {
  margin-bottom: 28px;
  color: #53615d;
  font-size: clamp(20px, 2.65vh, 25px);
  font-weight: 520;
  line-height: 1.42;
}

.copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
  font-size: 17px;
  font-weight: 520;
  line-height: 1.7;
}

.visual {
  display: grid;
  place-items: center;
  min-height: min(64vh, 560px);
  margin: 0;
}

.visual img {
  display: block;
  width: min(100%, 780px);
  max-height: min(70vh, 640px);
  object-fit: contain;
  filter: drop-shadow(0 30px 42px rgba(23, 33, 29, 0.12));
}

.architecture-slide {
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vh, 28px);
  align-content: center;
  justify-items: center;
  padding-top: clamp(86px, 10vh, 104px);
  padding-bottom: clamp(42px, 5.6vh, 58px);
  background:
    radial-gradient(circle at 84% 20%, rgba(0, 140, 79, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(240, 250, 246, 0.68), rgba(255, 255, 255, 0) 38%);
}

.architecture-header {
  width: min(100%, 1320px);
  text-align: center;
}

.architecture-header .eyebrow {
  margin-bottom: 8px;
}

.architecture-header h2 {
  margin-bottom: 0;
  color: var(--primary);
  font-size: clamp(34px, 5.6vh, 54px);
}

.architecture-visual {
  display: grid;
  place-items: center;
  width: min(100%, 1360px);
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(217, 229, 223, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 50px rgba(23, 33, 29, 0.1);
}

.architecture-visual img {
  display: block;
  width: 100%;
  max-height: min(68vh, 650px);
  border-radius: 8px;
  object-fit: contain;
}

.image-slide {
  grid-template-columns: 1fr;
  gap: 0;
  place-items: center;
  padding-top: clamp(86px, 10vh, 104px);
  padding-bottom: clamp(34px, 5vh, 52px);
}

.lumi-slide-frame {
  display: grid;
  place-items: center;
  width: 100%;
  margin: 0;
}

.lumi-slide-frame img {
  display: block;
  width: min(100%, 1360px);
  max-height: min(78vh, 765px);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 24px 54px rgba(23, 33, 29, 0.12);
}

.thank-you-slide {
  padding-top: clamp(74px, 9vh, 96px);
  padding-bottom: clamp(34px, 5vh, 52px);
}

.thank-you-frame {
  display: grid;
  place-items: center;
  width: min(100%, 1420px);
  margin: 0;
}

.thank-you-frame img {
  display: block;
  width: min(100%, 1420px);
  max-height: min(82vh, 800px);
  border-radius: 8px;
  object-fit: contain;
  
}

.lumi-text-slide {
  grid-template-columns: minmax(360px, 0.72fr) minmax(620px, 1.28fr);
  gap: clamp(28px, 4vw, 64px);
  
}

.lumi-copy {
  max-width: 540px;
}

.lumi-copy h2 {
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 45px;
}

.lumi-copy .lead {
  margin-bottom: 24px;
}

.lumi-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.lumi-stat-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lumi-stat-grid article,
.lumi-founder-list article,
.lumi-info-stack article,
.lumi-core-values article,
.lumi-factory-stats article,
.lumi-project-grid article {
  border: 1px solid rgba(217, 229, 223, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 34px rgba(23, 33, 29, 0.08);
}

.lumi-stat-grid article {
  min-height: 104px;
  padding: 18px;
}

.lumi-stat-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: clamp(32px, 5vh, 52px);
  font-weight: 850;
  line-height: 0.95;
}

.lumi-stat-grid span {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
}

.lumi-founder-list,
.lumi-info-stack,
.lumi-core-values,
.lumi-factory-stats,
.lumi-project-grid {
  display: grid;
  gap: 14px;
}

.lumi-founder-list article {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
}

.lumi-founder-list img {
  display: block;
  width: 86px;
  height: 86px;
  border: 3px solid rgba(104, 245, 166, 0.62);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(0, 140, 79, 0.18);
}

.lumi-founder-list strong,
.lumi-core-values h3,
.lumi-map-panel h3 {
  color: var(--primary);
  font-size: clamp(22px, 3vh, 30px);
  font-weight: 850;
  line-height: 1.12;
}

.lumi-founder-list span {
  display: block;
  margin: 5px 0 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
}

.lumi-founder-list p,
.lumi-info-stack p,
.lumi-core-values p,
.lumi-map-panel p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 550;
  line-height: 1.48;
}

.lumi-info-stack article {
  padding: 24px;
}

.lumi-info-stack strong,
.lumi-core-values strong {
  display: block;
  margin-bottom: 10px;
  color: var(--primary);
  font-size: clamp(22px, 3vh, 28px);
  font-weight: 850;
}

.lumi-core-values {
  align-self: center;
}

.lumi-core-values h3 {
  margin: 0 0 8px;
}

.lumi-core-values article {
  padding: 20px 22px;
}

.lumi-map-panel {
  align-self: center;
  padding: 34px;
  border: 1px solid rgba(217, 229, 223, 0.78);
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 22%, rgba(0, 140, 79, 0.16), transparent 18%),
    radial-gradient(circle at 28% 72%, rgba(0, 140, 79, 0.12), transparent 20%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(23, 33, 29, 0.08);
}

.lumi-region-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.lumi-region-grid span {
  display: grid;
  place-items: center;
  min-height: 56px;
  border-radius: 8px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 17px;
  font-weight: 850;
}

.lumi-npp-visual {
  display: grid;
  place-items: center;
  align-self: center;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(217, 229, 223, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(23, 33, 29, 0.08);
}

.lumi-npp-visual img {
  display: block;
  width: min(100%, 720px);
  max-height: min(68vh, 620px);
  border-radius: 8px;
  object-fit: contain;
}

.lumi-factory-showcase {
  display: grid;
  gap: 14px;
  align-self: center;
}

.lumi-factory-visual,
.lumi-project-visual {
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px solid rgba(217, 229, 223, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(23, 33, 29, 0.08);
}

.lumi-factory-visual {
  padding: 14px;
}

.lumi-factory-visual img {
  display: block;
  width: min(100%, 760px);
  max-height: min(42vh, 390px);
  border-radius: 8px;
  object-fit: contain;
}

.lumi-factory-showcase .lumi-factory-stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.lumi-factory-showcase .lumi-factory-stats article {
  min-height: 86px;
  padding: 14px 12px;
}

.lumi-factory-showcase .lumi-factory-stats article:first-child {
  grid-column: auto;
}

.lumi-factory-showcase .lumi-factory-stats span {
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.25;
}

.lumi-factory-showcase .lumi-factory-stats strong {
  display: block;
  font-size: clamp(20px, 3.2vh, 34px);
  line-height: 1;
}

.lumi-project-visual {
  align-self: center;
  padding: 22px;
}

.lumi-project-visual img {
  display: block;
  width: min(100%, 900px);
  max-height: min(70vh, 650px);
  border-radius: 8px;
  object-fit: contain;
}

.lumi-products-slide {
  grid-template-columns: minmax(300px, 0.42fr) minmax(780px, 1.58fr);
}

.lumi-product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-self: center;
}

.lumi-product-grid figure {
  display: grid;
  grid-column: span 2;
  place-items: center;
  min-height: min(28vh, 250px);
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(217, 229, 223, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(23, 33, 29, 0.08);
}

.lumi-product-grid img {
  display: block;
  width: min(100%, 300px);
  max-height: min(24vh, 215px);
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(23, 33, 29, 0.12));
}

.lumi-factory-stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: center;
}

.lumi-factory-stats article {
  min-height: 120px;
  padding: 24px;
}

.lumi-factory-stats article:first-child {
  grid-column: 1 / -1;
}

.lumi-factory-stats span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 650;
}

.lumi-factory-stats strong {
  color: var(--primary);
  font-size: clamp(34px, 5.5vh, 58px);
  font-weight: 850;
  line-height: 0.98;
}

.lumi-project-slide {
  grid-template-columns: minmax(300px, 0.42fr) minmax(760px, 1.58fr);
}

.lumi-project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lumi-project-grid article {
  padding: 18px 20px;
}

.lumi-project-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.25;
}

.lumi-project-grid span {
  color: var(--primary);
  font-size: 16px;
  font-weight: 760;
}

.philosophy-showcase {
  grid-template-columns: minmax(360px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(28px, 3.2vw, 54px);
  padding-top: clamp(80px, 9.8vh, 102px);
  padding-bottom: clamp(38px, 5.5vh, 48px);
 
}

.showcase-copy {
  max-width: 610px;
}

.philosophy-showcase .eyebrow {
  display: none;
}

.philosophy-showcase .lead {
  margin-bottom: 0;
  font-size: clamp(19px, 2.45vh, 25px);
}

.two-tone-title {
  margin-bottom: 18px;
  font-size: clamp(38px, 6.25vh, 60px);
  line-height: 1.08;
}

.two-tone-title span {
  display: block;
}

.two-tone-title span:nth-child(2) {
  color: var(--primary);
}

.benefit-cards {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.benefit-cards article {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  padding: 9px 16px;
  border: 1px solid rgba(217, 229, 223, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 36px rgba(23, 33, 29, 0.08);
}

.benefit-cards strong {
  color: var(--ink);
  font-size: clamp(17px, 2.35vh, 22px);
  font-weight: 850;
  line-height: 1.25;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--primary-soft);
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.showcase-quote {
  position: relative;
  margin-top: 24px;
  padding: 20px 38px;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-dark), #004a31);
  box-shadow: 0 22px 44px rgba(0, 109, 61, 0.22);
  font-size: clamp(18px, 2.55vh, 24px);
  font-weight: 500;
  line-height: 1.36;
}

.showcase-quote::before,
.showcase-quote::after {
  position: absolute;
  color: #ffffff;
  font-size: 54px;
  font-weight: 850;
  line-height: 1;
  opacity: 0.95;
}

.showcase-quote::before {
  content: "“";
  left: 22px;
  top: 14px;
}

.showcase-quote::after {
  content: "”";
  right: 22px;
  bottom: 6px;
}

.showcase-visual {
  min-height: min(74vh, 720px);
  justify-items: end;
}

.showcase-visual img {
  width: min(100%, 900px);
  max-height: min(82vh, 760px);
  filter: drop-shadow(0 30px 44px rgba(23, 33, 29, 0.12));
}

.ai-camera-slide {
  grid-template-columns: minmax(330px, 0.58fr) minmax(720px, 1.42fr);
  gap: clamp(24px, 3vw, 46px);
 
}

.ai-camera-hero {
  max-width: 460px;
}

.ai-camera-hero h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5.4vh, 54px);
}

.ai-camera-hero .lead {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(22px, 3vh, 28px);
  font-weight: 850;
}

.ai-camera-hero > p:not(.eyebrow):not(.lead) {
  color: #4f5e58;
  font-size: clamp(16px, 2.15vh, 19px);
  line-height: 1.55;
}

.ai-camera-visual {
  display: grid;
  place-items: center;
  margin: 28px 0 0;
}

.ai-camera-visual img {
  display: block;
  width: min(100%, 390px);
  max-height: min(34vh, 320px);
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(23, 33, 29, 0.12));
}

.ai-camera-overview {
  grid-template-columns: minmax(360px, 0.5fr) minmax(720px, 1.5fr);
  gap: clamp(34px, 4.6vw, 76px);
}

.ai-camera-overview .ai-camera-hero {
  max-width: 560px;
}

.ai-camera-overview .ai-camera-hero h2 {
  font-size: clamp(38px, 6vh, 62px);
}

.ai-camera-overview .ai-camera-hero > p:not(.eyebrow):not(.lead) {
  font-size: clamp(18px, 2.35vh, 22px);
}

.ai-camera-overview .ai-camera-visual {
  align-self: center;
  margin: 0;
}

.ai-camera-overview .ai-camera-visual img {
  width: min(100%, 900px);
  max-height: min(72vh, 680px);
}

.ai-camera-detail-slide {
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.8vh, 30px);
  align-content: center;
 
}

.ai-camera-detail-header {
  width: min(100%, 1320px);
}

.ai-camera-detail-header .eyebrow {
  margin-bottom: 8px;
}

.ai-camera-detail-header h2 {
  margin-bottom: 0;
  color: var(--primary);
  font-size: clamp(34px, 5.6vh, 54px);
}

.ai-camera-detail-slide .ai-camera-panels {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(100%, 1320px);
}

.ai-camera-detail-slide .ai-camera-panel {
  padding: 24px 26px;
}

.ai-camera-detail-slide .ai-camera-panel.value {
  grid-column: 1 / -1;
  padding-top: 20px;
  padding-bottom: 20px;
}

.ai-camera-detail-slide .ai-camera-panel.value h3 {
  margin-bottom: 12px;
}

.ai-camera-detail-slide .ai-camera-panel.value .ai-camera-checks {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
}

.ai-camera-detail-slide .ai-camera-panel h3 {
  margin-bottom: 16px;
  font-size: clamp(23px, 3vh, 31px);
}

.ai-camera-detail-slide .panel-note {
  margin: 14px 0 10px;
  font-size: clamp(17px, 2.1vh, 20px);
}

.ai-camera-detail-slide .ai-camera-list {
  gap: 12px;
}

.ai-camera-detail-slide .ai-camera-list.compact {
  gap: 10px;
}

.ai-camera-detail-slide .ai-camera-list p {
  grid-template-columns: 38px 1fr;
  gap: 12px;
  font-size: clamp(18px, 2.25vh, 22px);
}

.ai-camera-detail-slide .ai-camera-list span {
  width: 32px;
  height: 32px;
  font-size: 18px;
}

.ai-camera-detail-slide .ai-camera-checks {
  gap: 12px;
}

.ai-camera-detail-slide .ai-camera-checks span {
  min-height: 32px;
  padding-left: 34px;
  font-size: clamp(18px, 2.2vh, 21px);
}

.ai-camera-detail-slide .ai-camera-checks span::before {
  width: 22px;
  height: 22px;
}

.ai-camera-detail-slide .ai-camera-checks span::after {
  left: 7px;
  top: 6px;
  width: 6px;
  height: 11px;
}

.ai-camera-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.ai-camera-panel {
  padding: 18px 20px;
  border: 1px solid rgba(0, 140, 79, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(23, 33, 29, 0.08);
}

.ai-camera-panel.value {
  grid-column: 1 / -1;
}

.ai-camera-panel h3 {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: clamp(18px, 2.45vh, 23px);
  font-weight: 850;
  line-height: 1.18;
}

.panel-note {
  margin: 10px 0 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.ai-camera-list {
  display: grid;
  gap: 8px;
}

.ai-camera-list p {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 8px;
  align-items: start;
  margin: 0;
  color: var(--text);
  font-size: clamp(14px, 1.75vh, 16px);
  font-weight: 650;
  line-height: 1.35;
}

.ai-camera-list span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--primary-soft);
  font-size: 15px;
  line-height: 1;
}

.ai-camera-list.compact {
  gap: 6px;
}

.ai-camera-checks {
  display: grid;
  gap: 7px;
}

.ai-camera-panel.value .ai-camera-checks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ai-camera-checks span {
  position: relative;
  min-height: 26px;
  padding-left: 26px;
  color: var(--text);
  font-size: clamp(14px, 1.7vh, 16px);
  font-weight: 650;
  line-height: 1.35;
}

.ai-camera-checks span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
}

.ai-camera-checks span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.line-list,
.check-list {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.line-list p,
.check-list p {
  position: relative;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(20px, 3.1vh, 30px);
  font-weight: 850;
  line-height: 1.25;
}

.line-list p:nth-child(2),
.value-lines p:nth-child(2) {
  color: var(--primary);
}

.check-list p {
  padding-left: 42px;
  font-size: clamp(18px, 2.65vh, 24px);
}

.check-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-soft);
}

.check-list p::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 28px;
  width: 8px;
  height: 13px;
  border: solid var(--primary);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.check-list.warning p::before {
  background: #fff4d8;
}

.check-list.warning p::after {
  width: 12px;
  height: 3px;
  border: 0;
  background: var(--gold);
  transform: none;
}

blockquote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 5px solid var(--primary);
  border-radius: 8px;
  color: var(--ink);
  background: #f6fbf8;
  font-size: 19px;
  font-weight: 760;
  line-height: 1.45;
}

.hero-benefits {
  display: grid;
  gap: 12px;
  width: min(100%, 500px);
  margin: 24px 0 26px;
}

.hero-benefits article {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  padding: 11px 16px;
  border: 1px solid rgba(217, 229, 223, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(23, 33, 29, 0.08);
}

.hero-benefits strong {
  color: var(--ink);
  font-size: clamp(20px, 2.55vh, 26px);
  font-weight: 850;
  line-height: 1.22;
}

.hero-benefit-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--primary);
  background: var(--primary-soft);
}

.hero-benefit-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-points,
.value-strip,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span,
.value-strip span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 14px;
  font-weight: 850;
}

.compare-table {
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.compare-table div {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.compare-table strong {
  color: var(--primary);
  font-size: 18px;
  font-weight: 850;
}

.compare-table span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.35;
}

.flow-list,
.phase-grid {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.flow-list span,
.phase-grid article {
  padding: 17px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(23, 33, 29, 0.06);
}

.flow-list span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.phase-grid {
  grid-template-columns: 1fr;
}

.phase-grid strong,
.phase-grid span {
  display: block;
}

.phase-grid strong {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 20px;
  font-weight: 850;
}

.phase-grid span {
  color: var(--text);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
}

.closing {
  padding-bottom: 82px;
}

.deck-controls {
  position: fixed;
  right: 28px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px;
  border: 1px solid rgba(0, 140, 79, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(23, 33, 29, 0.14);
  backdrop-filter: blur(16px);
}

.deck-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: var(--primary);
  cursor: pointer;
}

.deck-controls button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.deck-controls svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.counter {
  min-width: 54px;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

@media (max-height: 820px) and (min-width: 981px) {
  .site-header {
    padding-top: 10px;
    padding-bottom: 6px;
  }

  .navbar {
    min-height: 50px;
    padding: 8px 14px;
  }

  .brand img {
    width: 102px;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 12px;
  }

  .section {
    gap: clamp(24px, 3.6vw, 58px);
    padding-top: 78px;
    padding-bottom: 42px;
  }

  h1,
  h2 {
    margin-bottom: 18px;
  }

  h1 {
    font-size: clamp(42px, 7vh, 64px);
  }

  h2,
  .two-tone-title {
    font-size: clamp(34px, 5.9vh, 52px);
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .lead {
    margin-bottom: 18px;
    font-size: clamp(18px, 2.45vh, 22px);
  }

  .copy > p:not(.eyebrow):not(.lead) {
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-benefits {
    gap: 9px;
    margin: 18px 0 20px;
  }

  .hero-benefits article {
    min-height: 56px;
    padding: 8px 14px;
  }

  .hero-benefits strong {
    font-size: clamp(18px, 2.4vh, 22px);
  }

  .hero-benefit-icon {
    width: 38px;
    height: 38px;
  }

  .visual {
    min-height: min(58vh, 500px);
  }

  .visual img {
    max-height: min(62vh, 560px);
  }

  .architecture-slide {
    gap: 14px;
    padding-top: 76px;
    padding-bottom: 38px;
  }

  .architecture-header h2 {
    font-size: clamp(30px, 5vh, 46px);
  }

  .architecture-visual {
    padding: 14px;
  }

  .architecture-visual img {
    max-height: min(62vh, 560px);
  }

  .image-slide {
    padding-top: 70px;
    padding-bottom: 34px;
  }

  .lumi-slide-frame img {
    max-height: min(78vh, 690px);
  }

  .lumi-text-slide {
    gap: clamp(20px, 3vw, 44px);
  }

  .lumi-copy h2 {
    margin-bottom: 14px;
    font-size: clamp(32px, 5.6vh, 50px);
  }

  .lumi-copy .lead {
    margin-bottom: 16px;
    font-size: clamp(17px, 2.35vh, 21px);
  }

  .lumi-stat-grid {
    gap: 9px;
    margin-top: 18px;
  }

  .lumi-stat-grid article,
  .lumi-founder-list article,
  .lumi-info-stack article,
  .lumi-core-values article,
  .lumi-factory-stats article,
  .lumi-project-grid article {
    padding: 13px 15px;
  }

  .lumi-stat-grid article {
    min-height: 82px;
  }

  .lumi-founder-list article {
    grid-template-columns: 78px 1fr;
  }

  .lumi-founder-list img {
    width: 70px;
    height: 70px;
  }

  .lumi-stat-grid strong,
  .lumi-factory-stats strong {
    font-size: clamp(28px, 4.8vh, 44px);
  }

  .lumi-founder-list,
  .lumi-info-stack,
  .lumi-core-values,
  .lumi-factory-stats,
  .lumi-project-grid {
    gap: 10px;
  }

  .lumi-founder-list p,
  .lumi-info-stack p,
  .lumi-core-values p {
    font-size: 14px;
    line-height: 1.38;
  }

  .lumi-founder-list span {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .lumi-map-panel {
    padding: 22px;
  }

  .lumi-region-grid {
    gap: 9px;
    margin-top: 18px;
  }

  .lumi-region-grid span {
    min-height: 44px;
    font-size: 15px;
  }

  .lumi-npp-visual {
    padding: 16px;
  }

  .lumi-npp-visual img {
    max-height: min(62vh, 540px);
  }

  .lumi-factory-showcase {
    gap: 10px;
  }

  .lumi-factory-visual {
    padding: 12px;
  }

  .lumi-factory-visual img {
    max-height: min(34vh, 310px);
  }

  .lumi-factory-showcase .lumi-factory-stats article {
    min-height: 70px;
    padding: 10px;
  }

  .lumi-factory-showcase .lumi-factory-stats strong {
    font-size: clamp(18px, 2.8vh, 28px);
  }

  .lumi-project-visual {
    padding: 16px;
  }

  .lumi-project-visual img {
    max-height: min(64vh, 560px);
  }

  .lumi-product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  .lumi-product-grid figure {
    min-height: min(27vh, 225px);
    padding: 12px;
  }

  .lumi-product-grid img {
    max-height: min(23vh, 195px);
  }

  .line-list,
  .check-list,
  .compare-table,
  .flow-list,
  .phase-grid,
  .hero-points,
  .value-strip,
  .tag-cloud {
    margin-top: 18px;
  }

  .line-list p,
  .check-list p {
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: clamp(17px, 2.65vh, 24px);
  }

  .check-list p {
    padding-left: 36px;
  }

  .check-list p::before {
    top: 15px;
    width: 22px;
    height: 22px;
  }

  .check-list p::after {
    left: 7px;
    top: 21px;
  }

  .compare-table div {
    padding: 12px 0;
  }

  .flow-list,
  .phase-grid {
    gap: 9px;
  }

  .flow-list span,
  .phase-grid article {
    padding: 13px 15px;
  }

  blockquote {
    margin-top: 18px;
    padding: 16px 20px;
    font-size: 17px;
    line-height: 1.35;
  }

  .benefit-cards {
    gap: 8px;
    margin-top: 18px;
  }

  .benefit-cards article {
    min-height: 54px;
    padding: 8px 14px;
  }

  .showcase-quote {
    margin-top: 18px;
    padding: 16px 36px;
    font-size: clamp(16px, 2.35vh, 21px);
  }

  .showcase-visual {
    min-height: min(66vh, 610px);
  }

  .showcase-visual img {
    max-height: min(76vh, 690px);
  }

  .ai-camera-slide {
    gap: clamp(18px, 2.4vw, 34px);
  }

  .ai-camera-hero h2 {
    margin-bottom: 12px;
    font-size: clamp(30px, 5vh, 46px);
  }

  .ai-camera-hero .lead {
    font-size: clamp(18px, 2.6vh, 23px);
  }

  .ai-camera-visual {
    margin-top: 18px;
  }

  .ai-camera-visual img {
    max-height: min(26vh, 230px);
  }

  .ai-camera-panels {
    gap: 10px;
  }

  .ai-camera-panel {
    padding: 13px 15px;
  }

  .ai-camera-panel h3 {
    margin-bottom: 8px;
    font-size: clamp(16px, 2.25vh, 20px);
  }

  .panel-note {
    margin: 8px 0 6px;
    font-size: 13px;
  }

  .ai-camera-list {
    gap: 6px;
  }

  .ai-camera-checks {
    gap: 5px;
  }

  .ai-camera-overview {
    gap: clamp(24px, 3.4vw, 48px);
  }

  .ai-camera-overview .ai-camera-hero h2 {
    font-size: clamp(32px, 5.3vh, 52px);
  }

  .ai-camera-overview .ai-camera-visual img {
    max-height: min(66vh, 600px);
  }

  .ai-camera-detail-slide {
    gap: 14px;
  }

  .ai-camera-detail-header h2 {
    font-size: clamp(28px, 4.5vh, 42px);
  }

  .ai-camera-detail-slide .ai-camera-panel {
    padding: 16px 18px;
  }

  .ai-camera-detail-slide .ai-camera-panel h3 {
    margin-bottom: 10px;
    font-size: clamp(18px, 2.5vh, 24px);
  }

  .ai-camera-detail-slide .panel-note {
    margin: 10px 0 7px;
    font-size: clamp(14px, 1.8vh, 17px);
  }

  .ai-camera-detail-slide .ai-camera-list p,
  .ai-camera-detail-slide .ai-camera-checks span {
    font-size: clamp(15px, 1.95vh, 18px);
  }
}

@media (max-height: 690px) and (min-width: 981px) {
  .site-header {
    padding-top: 7px;
  }

  .navbar {
    min-height: 44px;
  }

  .brand img {
    width: 92px;
  }

  .nav-links a {
    padding: 7px 9px;
    font-size: 11px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 32px;
  }

  h1 {
    font-size: clamp(38px, 6.7vh, 54px);
  }

  h2,
  .two-tone-title {
    font-size: clamp(31px, 5.6vh, 46px);
  }

  .lead {
    margin-bottom: 14px;
    font-size: clamp(16px, 2.35vh, 20px);
  }

  .hero-benefits {
    gap: 7px;
    margin: 14px 0 16px;
  }

  .hero-benefits article {
    grid-template-columns: 44px 1fr;
    min-height: 48px;
    padding: 7px 12px;
  }

  .hero-benefits strong {
    font-size: clamp(16px, 2.3vh, 20px);
  }

  .hero-benefit-icon {
    width: 34px;
    height: 34px;
  }

  .hero-benefit-icon svg {
    width: 21px;
    height: 21px;
  }

  .image-slide {
    padding-top: 58px;
    padding-bottom: 26px;
  }

  .architecture-slide {
    gap: 10px;
    padding-top: 60px;
    padding-bottom: 28px;
  }

  .architecture-header h2 {
    font-size: clamp(26px, 4.6vh, 38px);
  }

  .architecture-visual {
    padding: 10px;
  }

  .architecture-visual img {
    max-height: min(60vh, 500px);
  }

  .lumi-slide-frame img {
    max-height: min(76vh, 610px);
  }

  .lumi-text-slide {
    gap: 18px;
  }

  .lumi-copy h2 {
    font-size: clamp(28px, 5.2vh, 42px);
  }

  .lumi-copy .lead {
    font-size: 15px;
    line-height: 1.35;
  }

  .lumi-stat-grid article,
  .lumi-founder-list article,
  .lumi-info-stack article,
  .lumi-core-values article,
  .lumi-factory-stats article,
  .lumi-project-grid article {
    padding: 10px 12px;
  }

  .lumi-stat-grid article,
  .lumi-factory-stats article {
    min-height: 66px;
  }

  .lumi-founder-list article {
    grid-template-columns: 62px 1fr;
    gap: 10px;
  }

  .lumi-founder-list img {
    width: 54px;
    height: 54px;
    border-width: 2px;
  }

  .lumi-stat-grid strong,
  .lumi-factory-stats strong {
    font-size: clamp(24px, 4.5vh, 36px);
  }

  .lumi-stat-grid span,
  .lumi-project-grid span {
    font-size: 12px;
  }

  .lumi-founder-list p,
  .lumi-info-stack p,
  .lumi-core-values p,
  .lumi-project-grid strong {
    font-size: 13px;
  }

  .lumi-npp-visual {
    padding: 12px;
  }

  .lumi-npp-visual img {
    max-height: min(58vh, 470px);
  }

  .lumi-factory-visual img {
    max-height: min(28vh, 230px);
  }

  .lumi-factory-showcase .lumi-factory-stats {
    gap: 7px;
  }

  .lumi-factory-showcase .lumi-factory-stats article {
    min-height: 58px;
    padding: 8px;
  }

  .lumi-factory-showcase .lumi-factory-stats span {
    margin-bottom: 4px;
    font-size: 10px;
  }

  .lumi-factory-showcase .lumi-factory-stats strong {
    font-size: clamp(15px, 2.55vh, 23px);
  }

  .lumi-project-visual {
    padding: 12px;
  }

  .lumi-project-visual img {
    max-height: min(60vh, 500px);
  }

  .lumi-product-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 9px;
  }

  .lumi-product-grid figure {
    min-height: min(24vh, 180px);
    padding: 10px;
  }

  .lumi-product-grid img {
    max-height: min(20vh, 155px);
  }

  .line-list p,
  .check-list p {
    padding-top: 9px;
    padding-bottom: 9px;
    font-size: clamp(16px, 2.45vh, 21px);
  }

  .hero-points span,
  .value-strip span,
  .tag-cloud span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  .deck-controls {
    right: 18px;
    bottom: 14px;
    padding: 6px;
  }

  .deck-controls button {
    width: 36px;
    height: 36px;
  }

  .ai-camera-hero h2 {
    font-size: clamp(28px, 4.8vh, 40px);
  }

  .ai-camera-hero > p:not(.eyebrow):not(.lead) {
    font-size: 14px;
    line-height: 1.42;
  }

  .ai-camera-visual img {
    max-height: min(20vh, 180px);
  }

  .ai-camera-panel {
    padding: 10px 12px;
  }

  .ai-camera-list p,
  .ai-camera-checks span {
    font-size: 13px;
    line-height: 1.28;
  }

  .ai-camera-list span {
    width: 23px;
    height: 23px;
    font-size: 13px;
  }

  .ai-camera-overview {
    gap: 18px;
  }

  .ai-camera-overview .ai-camera-hero h2 {
    font-size: clamp(28px, 4.8vh, 42px);
  }

  .ai-camera-overview .ai-camera-hero > p:not(.eyebrow):not(.lead) {
    font-size: 14px;
    line-height: 1.42;
  }

  .ai-camera-overview .ai-camera-visual img {
    max-height: min(64vh, 520px);
  }

  .ai-camera-detail-slide {
    gap: 10px;
  }

  .ai-camera-detail-header h2 {
    font-size: clamp(24px, 4.1vh, 34px);
  }

  .ai-camera-detail-slide .ai-camera-panels {
    gap: 10px;
  }

  .ai-camera-detail-slide .ai-camera-panel {
    padding: 12px 14px;
  }

  .ai-camera-detail-slide .ai-camera-panel h3 {
    margin-bottom: 8px;
    font-size: clamp(16px, 2.35vh, 20px);
  }

  .ai-camera-detail-slide .panel-note {
    margin: 8px 0 6px;
    font-size: 13px;
  }

  .ai-camera-detail-slide .ai-camera-list {
    gap: 6px;
  }

  .ai-camera-detail-slide .ai-camera-list p,
  .ai-camera-detail-slide .ai-camera-checks span {
    font-size: 13px;
    line-height: 1.28;
  }
}

@media (max-width: 980px) {
  body {
    overflow: auto;
  }

  main {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .site-header {
    padding: 10px;
  }

  .navbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    width: 100%;
    padding-left: 0;
  }

  .section {
    position: relative;
    left: auto;
    grid-template-columns: 1fr;
    width: min(100% - 32px, 760px);
    height: auto;
    min-height: 100vh;
    margin: 0 auto;
    padding: 150px 0 110px;
    transform: none;
    overflow: visible;
  }

  .section.active {
    display: grid;
    animation: none;
  }

  .visual {
    min-height: 320px;
    order: -1;
  }

  .visual img {
    max-height: none;
  }

  .architecture-slide {
    gap: 18px;
    padding-top: 150px;
    padding-bottom: 110px;
  }

  .architecture-header {
    text-align: left;
  }

  .architecture-visual {
    padding: 10px;
  }

  .architecture-visual img {
    max-height: none;
  }

  .image-slide {
    width: min(100% - 32px, 760px);
  }

  .lumi-slide-frame img {
    max-height: none;
  }

  .lumi-text-slide,
  .lumi-project-slide,
  .lumi-products-slide {
    grid-template-columns: 1fr;
  }

  .lumi-stat-grid,
  .lumi-stat-grid.compact,
  .lumi-factory-stats,
  .lumi-project-grid,
  .lumi-region-grid {
    grid-template-columns: 1fr;
  }

  .lumi-founder-list article {
    grid-template-columns: 76px 1fr;
  }

  .lumi-founder-list img {
    width: 66px;
    height: 66px;
  }

  .lumi-npp-visual img {
    max-height: none;
  }

  .lumi-factory-showcase .lumi-factory-stats {
    grid-template-columns: 1fr;
  }

  .lumi-factory-visual,
  .lumi-project-visual {
    padding: 12px;
  }

  .lumi-factory-visual img,
  .lumi-project-visual img {
    max-height: none;
  }

  .lumi-product-grid {
    grid-template-columns: 1fr;
  }

  .lumi-product-grid figure,
  .lumi-product-grid figure:nth-child(4),
  .lumi-product-grid figure:nth-child(5),
  .lumi-product-grid figure:nth-child(6) {
    grid-column: auto;
  }

  .lumi-product-grid figure {
    min-height: 220px;
  }

  .lumi-product-grid img {
    max-height: none;
  }

  .copy {
    max-width: none;
  }

  .nowrap {
    white-space: normal;
  }

  .ai-camera-panels,
  .ai-camera-panel.value .ai-camera-checks {
    grid-template-columns: 1fr;
  }

  .ai-camera-visual img {
    max-height: none;
  }

  .deck-controls {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
