:root {
  --bg-main: #f8faf9;
  --bg-card: #ffffff;
  --text-main: #0a1018;
  --text-muted: #5a6a78;
  --jade: #00c868;
  --jade-glow: rgba(0, 200, 104, 0.15);
  --veridara-blue: #355fa8;
  --veridara-blue-glow: rgba(53, 95, 168, 0.22);
  --sun: #ffb000;
  --sun-glow: rgba(255, 176, 0, 0.2);
  --bg-glow: 0;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: auto;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  cursor: auto;
  -webkit-font-smoothing: antialiased;
}

#page-mood {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: var(--bg-main);
}

#story-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

#c-dot,
#c-ring {
  display: none !important;
}

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 60px;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

nav.lit {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.n-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.n-logo img {
  height: 32px;
  width: auto;
}

.n-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.n-menu {
  position: relative;
  margin-left: auto;
  margin-right: 18px;
}

.n-menu summary {
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.22s ease;
}

.n-menu summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-radius: 1.5px;
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}

.n-menu summary::-webkit-details-marker {
  display: none;
}

.n-menu summary:hover,
.n-menu[open] summary {
  color: var(--jade);
}

.n-menu[open] summary::after {
  transform: rotate(225deg);
}

.n-menu-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  min-width: 220px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(10, 16, 24, 0.06);
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(10, 16, 24, 0.08);
  backdrop-filter: blur(18px);
}

.n-menu-panel a,
.n-menu-panel li {
  list-style: none;
}

.n-menu-panel a,
.n-menu-panel li a {
  display: block;
  padding: 11px 12px;
  border-radius: 16px;
  color: var(--text-main);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.n-menu-panel a:hover,
.n-menu-panel li a:hover {
  background: rgba(0, 200, 104, 0.08);
  color: var(--jade);
  transform: translateX(2px);
}

.n-cta {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--jade);
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 15px var(--jade-glow);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.n-cta:hover {
  background: var(--veridara-blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px var(--veridara-blue-glow);
}

.spiel-img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 5;
}

#act1 {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 128px 60px 72px;
  text-align: center;
}

.hero-room-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.3;
}

.hero-room-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 250, 249, 0.34) 0%, rgba(248, 250, 249, 0.72) 56%, rgba(248, 250, 249, 0.94) 100%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.12) 0%, rgba(248, 250, 249, 0) 62%);
}

.hero-room-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92);
}

.a1-wrap {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-float-img {
  position: absolute;
  top: 50%;
  width: 280px;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(10, 16, 24, 0.1);
  z-index: 0;
  opacity: 0;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.hero-float-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(248, 250, 249, 0.08) 100%);
  pointer-events: none;
}

.hero-float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float-left {
  left: 12px;
  margin-top: -40px;
  transform: translateY(-50%) rotate(-4deg);
  width: 360px;
  height: auto;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.hero-float-left::after {
  display: none;
}

.hero-float-left img {
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 55px rgba(10, 16, 24, 0.12));
}

.hero-float-right {
  right: 12px;
  margin-top: -18px;
  transform: translateY(-50%) rotate(3deg);
}

.a1-eye {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.a1-eye::before,
.a1-eye::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--jade);
}

.a1-h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(68px, 10.2vw, 158px);
  line-height: 0.9;
  letter-spacing: 0.01em;
  color: var(--text-main);
  margin-bottom: 28px;
}

.a1-h1 em {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  color: var(--jade);
  position: relative;
  display: inline-block;
  font-weight: 400;
}

.a1-sub {
  font-size: clamp(16px, 1.32vw, 19px);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.a1-trustline {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(10, 16, 24, 0.42);
}

#wire-start {
  width: 2px;
  height: 2px;
  margin: 34px auto 0;
  position: relative;
  z-index: 2;
}

.a1-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.a1-scroll span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

#act2 {
  --act2-ink: var(--text-main);
  --act2-muted: var(--text-muted);
  --act2-line: rgba(90, 106, 120, 0.5);
  --act2-card-bg: rgba(255, 255, 255, 0.8);
  --act2-card-border: rgba(0, 0, 0, 0.03);
  --act2-card-title: var(--text-main);
  --act2-card-copy: var(--text-muted);
  --act2-card-num: rgba(0, 0, 0, 0.03);
  padding: 220px 60px 240px;
  position: relative;
  overflow: hidden;
}

.a2-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--act2-muted);
  margin-bottom: 44px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 2;
}

.a2-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--act2-line);
}

.a2-h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(60px, 8vw, 112px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: var(--act2-ink);
  max-width: 700px;
  margin-bottom: 88px;
  position: relative;
  z-index: 2;
}

.a2-h2 em {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  color: var(--act2-muted);
  font-weight: 400;
}

.a2-intro {
  max-width: 560px;
  margin: 0 0 64px;
  font-size: 19px;
  line-height: 1.75;
  color: var(--act2-muted);
  position: relative;
  z-index: 2;
}

.p-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 120px;
  max-width: 1220px;
  position: relative;
  z-index: 2;
  perspective: 1000px;
  transform-origin: left center;
  will-change: transform, max-width;
}

.p-card {
  background: var(--act2-card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--act2-card-border);
  border-radius: 16px;
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease, border-color 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.p-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 200, 104, 0.08);
  border-color: rgba(0, 200, 104, 0.2);
}

.c-num {
  font-family: "Bebas Neue", sans-serif;
  font-size: 90px;
  line-height: 1;
  color: var(--act2-card-num);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  transform: translateZ(20px);
}

.c-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--act2-card-title);
  margin-bottom: 15px;
  line-height: 1.35;
  transform: translateZ(28px);
}

.c-text {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.72;
  color: var(--act2-card-copy);
  transform: translateZ(24px);
}

.horizontal-section {
  position: relative;
  overflow-x: hidden;
  overflow-y: clip;
  background: var(--bg-main);
}

#act3 {
  padding: 0;
  min-height: 100vh;
}

.h-scroll-wrapper {
  display: flex;
  width: 200vw;
  height: 100vh;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform;
}

.h-slide {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 120px 60px 76px;
  flex-shrink: 0;
  backface-visibility: hidden;
}

.slide-content {
  width: 100%;
  max-width: 860px;
}

.h-slide-card {
  justify-content: center;
}

#act3-target {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.96);
  width: min(1180px, calc(100vw - 120px));
  padding: 100px 80px 120px 80px;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.03), 0 0 120px rgba(255, 176, 0, calc(var(--bg-glow) * 0.1));
  transition: box-shadow 0.3s;
  transform-origin: center center;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.h-slide-card > #act3-target > .a3-label,
.h-slide-card > #act3-target > .a3-h2,
.h-slide-card > #act3-target > .a3-intro {
  display: none;
}

.a3-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.a3-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--sun);
}

.a3-h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(60px, 8vw, 112px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: var(--text-main);
  max-width: 800px;
  margin-bottom: 88px;
  position: relative;
  z-index: 1;
}

.a3-h2 em {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  color: var(--sun);
}

.a3-intro {
  max-width: 640px;
  margin: -20px 0 64px;
  font-size: 19px;
  line-height: 1.75;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

.energy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 132px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.energy-copy {
  width: 560px;
  max-width: none;
  padding: 42px 42px 44px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  box-shadow:
    0 24px 60px rgba(10, 16, 24, 0.06),
    0 8px 20px rgba(10, 16, 24, 0.04);
  transform-origin: right center;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.energy-copy h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 50px;
  line-height: 1.05;
  color: var(--text-main);
  letter-spacing: 0.03em;
  margin-bottom: 38px;
}

.feat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feat-list li {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.74;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feat-list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: var(--sun);
  border-radius: 50%;
  margin-top: 12px;
  flex-shrink: 0;
}

.tech-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.tech-img {
  width: min(100%, 720px);
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
}

#act4-trust {
  padding: 180px 60px 240px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 100vh;
}

.trust-content {
  position: relative;
  z-index: 2;
  will-change: transform, opacity, filter;
}

.trust-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--jade);
}

.trust-h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(50px, 6vw, 100px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: var(--text-main);
  margin-bottom: 40px;
}

.trust-h2 em {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  color: var(--jade);
  font-weight: 400;
}

.trust-p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.72;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 600px;
}

.trust-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 200, 104, 0.1);
  transform-origin: center center;
  will-change: transform, opacity, background-color, border-color, box-shadow, filter;
}

#act4-faq {
  padding: 120px 60px 220px;
  position: relative;
  overflow: hidden;
}

.faq-bridge {
  position: relative;
  z-index: 3;
  max-width: 980px;
  margin: 0 auto 190px;
  padding: 0 24px;
}

#scroll-bridge {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 0 0;
}

.arrow-wrap {
  color: var(--jade);
}

.static-arrow {
  width: 32px;
  height: 48px;
}

.faq-quote {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}

.faq-quote-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(24px, 2.5vw, 40px);
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: rgba(10, 16, 24, 0.68);
  font-style: italic;
}

.faq-quote-text::before,
.faq-quote-text::after {
  display: inline-block;
  color: rgba(0, 200, 104, 0.5);
  font-family: "Libre Baskerville", serif;
  font-size: 1.1em;
  font-style: italic;
}

.faq-quote-text::before {
  content: '" ';
}

.faq-quote-text::after {
  content: ' "';
}

.faq-quote-text strong {
  color: var(--text-main);
  font-weight: 600;
  font-style: italic;
}

.faq-shell {
  position: relative;
  z-index: 2;
}

.faq-head {
  max-width: 780px;
  margin-bottom: 68px;
}

.faq-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--veridara-blue);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.faq-label::before {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--veridara-blue);
}

.faq-h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  color: var(--text-main);
  margin-bottom: 28px;
}

.faq-h2 em {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  color: var(--veridara-blue);
}

.a1-h1 em,
.a2-h2 em,
.a3-h2 em,
.trust-h2 em,
.faq-h2 em {
  position: relative;
  display: inline-block;
  padding: 0 0.08em 0.04em;
  isolation: isolate;
  z-index: 0;
}

.a1-h1 em::after,
.a2-h2 em::after,
.a3-h2 em::after,
.trust-h2 em::after,
.faq-h2 em::after {
  content: "";
  position: absolute;
  left: 0.02em;
  right: 0.02em;
  bottom: 0.12em;
  height: 0.22em;
  background: currentColor;
  opacity: 0.16;
  border-radius: 999px;
  transform: skewX(-14deg) rotate(-1.5deg);
  z-index: -1;
}

.a1-h1 em::before,
.a2-h2 em::before,
.a3-h2 em::before,
.trust-h2 em::before,
.faq-h2 em::before {
  content: "";
  position: absolute;
  left: 0.08em;
  right: 0.18em;
  bottom: 0.03em;
  height: 2px;
  background: currentColor;
  opacity: 0.7;
  border-radius: 999px;
  transform: rotate(-1deg);
  z-index: -1;
}

.faq-intro {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.75;
  color: var(--text-muted);
}

.faq-subpage-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--veridara-blue);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(53, 95, 168, 0.26);
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.faq-subpage-link:hover {
  color: var(--jade);
  border-color: rgba(0, 200, 104, 0.32);
  transform: translateY(-1px);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(53, 95, 168, 0.24);
  box-shadow: 0 28px 65px rgba(53, 95, 168, 0.1);
}

.faq-item.is-open {
  border-color: rgba(53, 95, 168, 0.28);
  box-shadow: 0 28px 65px rgba(53, 95, 168, 0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 30px;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
  color: var(--text-main);
  cursor: pointer;
}

.faq-question span:first-child {
  font-size: 21px;
  line-height: 1.45;
  font-weight: 700;
}

.faq-toggle {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--veridara-blue);
  transform: translate(-50%, -50%);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.78;
  transition: max-height 0.36s ease, padding 0.36s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
  padding: 0 30px 28px;
}

.t-val {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  transform-origin: left center;
  will-change: transform, opacity;
}

.t-icon {
  width: 24px;
  height: 24px;
  color: var(--jade);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.t-copy {
  display: block;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.trust-values.is-immersive {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 35px 120px rgba(10, 16, 24, 0.08);
  border-radius: 30px;
}

#act5-cta {
  background: var(--bg-card);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 60px 120px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 200, 104, 0.1);
}

.act5-stage {
  width: 100%;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.finale-panel-wrap {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center top;
  will-change: transform, opacity;
}

.finale-panel {
  width: 100%;
  height: auto;
  transform: none;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.15));
}

.act5-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.a5-eye {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.a5-eye::before,
.a5-eye::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: var(--jade);
}

.a5-h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(68px, 9.5vw, 130px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--text-main);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.a5-h2 em {
  display: block;
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  color: var(--jade);
  font-weight: 400;
}

.energy-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.06em 0.12em 0.16em;
  isolation: isolate;
  z-index: 0;
}

.energy-title::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  top: 56%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(53, 95, 168, 0.12) 18%,
    rgba(53, 95, 168, 0.2) 34%,
    rgba(0, 200, 104, 0.3) 50%,
    rgba(0, 200, 104, 0.36) 64%,
    rgba(53, 95, 168, 0.2) 82%,
    transparent 100%
  );
  transform: translateX(-130%);
  filter: blur(1.2px);
  opacity: 0.78;
  z-index: 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  box-shadow:
    0 0 10px rgba(53, 95, 168, 0.18),
    0 0 16px rgba(0, 200, 104, 0.18),
    0 0 22px rgba(0, 200, 104, 0.12);
  animation: energyBeamFlow 11.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.energy-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  top: 50%;
  height: 20px;
  border-radius: 50%;
  transform: translate(-180%, -52%);
  background:
    radial-gradient(circle, rgba(0, 200, 104, 0.9) 0%, rgba(0, 200, 104, 0.72) 34%, rgba(53, 95, 168, 0.28) 72%, transparent 100%);
  filter: blur(0.9px);
  opacity: 0.68;
  z-index: 0;
  box-shadow:
    0 0 12px rgba(0, 200, 104, 0.16),
    0 0 18px rgba(0, 200, 104, 0.14),
    0 0 24px rgba(53, 95, 168, 0.12);
  animation: energyOrbFlow 11.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.energy-title-text {
  position: relative;
  z-index: 2;
  display: inline-block;
  background: linear-gradient(
    90deg,
    #0d9f58 0%,
    #00c868 28%,
    #23ba86 48%,
    #355fa8 72%,
    #0d9f58 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 12px rgba(0, 200, 104, 0.16));
  animation: energyPulse 8.6s ease-in-out infinite;
}

.energy-title-text::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  top: 62%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(53, 95, 168, 0.08) 20%,
    rgba(0, 200, 104, 0.2) 52%,
    rgba(53, 95, 168, 0.14) 82%,
    transparent 100%
  );
  opacity: 0;
  transform: translateX(-140%);
  filter: blur(1px);
  z-index: 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
  animation: energyTrailFlow 11.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

@keyframes energyBeamFlow {
  0%,
  14% {
    transform: translateX(-130%);
    opacity: 0;
  }

  22% {
    opacity: 0.78;
  }

  66% {
    opacity: 0.78;
  }

  86%,
  100% {
    transform: translateX(130%);
    opacity: 0;
  }
}

@keyframes energyOrbFlow {
  0%,
  14% {
    transform: translate(-180%, -52%) scale(0.82);
    opacity: 0;
  }

  24% {
    opacity: 0.68;
  }

  66% {
    transform: translate(330%, -52%) scale(1);
    opacity: 0.68;
  }

  86%,
  100% {
    transform: translate(760%, -52%) scale(0.88);
    opacity: 0;
  }
}

@keyframes energyTrailFlow {
  0%,
  14% {
    transform: translateX(-140%);
    opacity: 0;
  }

  26% {
    opacity: 0.46;
  }

  68% {
    opacity: 0.38;
  }

  88%,
  100% {
    transform: translateX(136%);
    opacity: 0;
  }
}

@keyframes energyPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 12px rgba(0, 200, 104, 0.16));
  }

  50% {
    filter:
      drop-shadow(0 0 16px rgba(0, 200, 104, 0.16))
      drop-shadow(0 0 14px rgba(53, 95, 168, 0.14));
  }
}

.a5-sub {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.mag-wrap {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 40px;
}

.mag-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--jade);
  padding: 24px 64px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  will-change: transform;
  box-shadow: 0 10px 30px var(--jade-glow);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mag-btn:hover {
  background: var(--veridara-blue);
  box-shadow: 0 15px 40px rgba(53, 95, 168, 0.34);
  color: #fff;
}

.btn-arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

footer {
  background: #f0f4f2;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 44px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.f-logo {
  display: flex;
  align-items: center;
}

.f-logo img {
  height: 26px;
  width: auto;
  opacity: 0.9;
}

.f-txt {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

a:focus-visible {
  outline: 3px solid rgba(0, 200, 104, 0.45);
  outline-offset: 4px;
}

@media (hover: none) and (pointer: coarse) {
  #c-dot,
  #c-ring {
    display: none !important;
  }

  body,
  a,
  button,
  .mag-btn {
    cursor: auto !important;
  }
}

@media (max-width: 1100px) {
  #act1 {
    justify-content: center;
    text-align: center;
  }

  .hero-float-img {
    display: none;
  }

  .a1-eye {
    justify-content: center;
  }

  .a1-scroll {
    display: none;
  }

  #act4-trust {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }

  .trust-label {
    justify-content: center;
  }

  .trust-p {
    margin: 0 auto 32px;
  }

  .trust-values {
    align-items: center;
  }

  .t-val {
    justify-content: center;
    transform-origin: center center;
  }

  .faq-label {
    justify-content: center;
  }

  .faq-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-intro {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 22px 28px;
  }

  .n-links {
    display: none;
  }

  #act1,
  #act2,
  #act3,
  #act4-trust,
  #act4-faq,
  #act5-cta {
    padding-left: 28px;
    padding-right: 28px;
  }

  .act5-stage {
    padding: 0;
  }

  .finale-panel-wrap {
    max-width: 440px;
    margin-bottom: 48px;
  }

  .p-cards,
  .energy-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-bridge {
    margin-top: 0;
    margin-bottom: 72px;
    padding: 0;
  }

  .faq-quote-text::before,
  .faq-quote-text::after {
    font-size: 1em;
  }

  .energy-grid {
    gap: 48px;
  }

  .energy-copy {
    width: auto;
    max-width: 100%;
    padding: 30px 24px 32px;
    border-radius: 22px;
  }

  #act3-target {
    padding: 60px 30px;
  }

  #act3 {
    min-height: auto;
    padding: 180px 28px 220px;
  }

  .h-scroll-wrapper {
    display: block;
    width: 100%;
    height: auto;
  }

  .h-slide {
    width: 100%;
    height: auto;
    display: block;
    padding: 0;
  }

  .h-slide-intro {
    margin-bottom: 56px;
  }

  .slide-content {
    max-width: 100%;
  }

  .h-slide-card > #act3-target > .a3-label,
  .h-slide-card > #act3-target > .a3-h2,
  .h-slide-card > #act3-target > .a3-intro {
    display: none;
  }

  footer {
    padding: 36px 28px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .energy-title::before,
  .energy-title::after,
  .energy-title-text {
    animation: none !important;
  }

  .energy-title-text {
    background-position: 50% 50%;
  }
}
