/* ═══════════════════════════════════════════════
   DYNO THEME — MAIN STYLESHEET
   BEM architecture
   ═══════════════════════════════════════════════ */

/* ── RESET ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── CSS VARIABLES ───────────────────────────────────────────────────────── */
:root {
  --brand:        #00a86b;
  --brand-accent: #22b67e;
  --bg:           #080808;
  --text:         #ffffff;
  --text-sec:     rgba(255,255,255,0.60);
  --text-ter:     rgba(255,255,255,0.30);
  --border:       rgba(255,255,255,0.09);
  --border-brand: rgba(0,168,107,0.22);
}

/* ── BASE ────────────────────────────────────────────────────────────────── */
html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

/* ── OVERLAYS ────────────────────────────────────────────────────────────── */
.dyno-overlay--scan {
  position: fixed; inset: 0; z-index: 50; pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0, transparent 2px,
    rgba(0,0,0,0.12) 2px, rgba(0,0,0,0.12) 4px
  );
}
.dyno-overlay--vig {
  position: fixed; inset: 0; z-index: 51; pointer-events: none;
  background: radial-gradient(ellipse 90% 80% at 50% 50%, transparent 30%, rgba(0,0,0,0.80) 100%);
}
.dyno-overlay--noise {
  position: fixed; inset: 0; z-index: 52; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

/* ── HUD ─────────────────────────────────────────────────────────────────── */
.dyno-hud {
  position: fixed; inset: 1.6rem; z-index: 60; pointer-events: none;
  display: flex; flex-direction: column; justify-content: space-between;
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.10em;
  color: var(--text-ter); text-transform: uppercase;
}
.dyno-hud__row {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.dyno-hud__line {
  flex: 1; height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,168,107,0.22), transparent);
}
.dyno-hud__dot { width: 5px; height: 5px; background: var(--brand); flex-shrink: 0; }
.dyno-hud strong { color: var(--brand-accent); font-weight: 500; }

/* ── PROGRESS BAR ────────────────────────────────────────────────────────── */
.dyno-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%; z-index: 200;
  background: linear-gradient(to right, var(--brand), var(--brand-accent));
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.85s cubic-bezier(0.16,1,0.3,1);
}

/* ── NAV ─────────────────────────────────────────────────────────────────── */
.dyno-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 70; height: 64px;
  padding: 0 clamp(20px,4vw,60px);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,8,8,0.75);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,168,107,0.08);
}
.dyno-nav__logo {
  display: flex; align-items: center; gap: 10px;
  background: none; border: none; cursor: pointer;
}
.dyno-nav__logo-icon {
  width: 30px; height: 30px; background: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dyno-nav__logo-name {
  font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff; line-height: 1.2;
}
.dyno-nav__logo-sub {
  font-family: 'DM Mono', monospace; font-size: 8px;
  color: var(--text-ter); letter-spacing: 0.10em; text-transform: uppercase;
}
.dyno-nav__links { display: flex; gap: 6px; }
.dyno-nav__link {
  font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--text-ter); background: none; border: none; cursor: pointer;
  font-family: 'DM Mono', monospace; padding: 6px 12px;
  transition: color 200ms; position: relative;
}
.dyno-nav__link::after {
  content: ''; position: absolute; bottom: 2px; left: 12px; right: 12px;
  height: 1px; background: var(--brand-accent); transform: scaleX(0);
  transition: transform 200ms cubic-bezier(0.16,1,0.3,1);
}
.dyno-nav__link:hover { color: rgba(255,255,255,0.70); }
.dyno-nav__link--active { color: var(--brand-accent); }
.dyno-nav__link--active::after { transform: scaleX(1); }
.dyno-nav__cta {
  display: inline-flex; align-items: center;
  background: var(--brand); color: #fff; border: none;
  padding: 10px 20px; font-family: 'DM Sans', sans-serif;
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; cursor: pointer; transition: background 200ms;
}
.dyno-nav__cta:hover { background: #008f59; }
.dyno-nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 38px; height: 38px; align-items: center; justify-content: center;
  background: none; border: 1px solid rgba(255,255,255,0.10); cursor: pointer;
  padding: 0; transition: border-color 220ms; flex-shrink: 0;
}
.dyno-nav__hamburger:hover { border-color: rgba(0,168,107,0.50); }
.dyno-nav__hamburger span {
  display: block; width: 18px; height: 1.5px;
  background: rgba(255,255,255,0.65); border-radius: 1px;
  transition: transform 260ms cubic-bezier(0.16,1,0.3,1), opacity 200ms;
}
.dyno-nav__hamburger--open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.dyno-nav__hamburger--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.dyno-nav__hamburger--open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── MOBILE MENU ─────────────────────────────────────────────────────────── */
.dyno-mobile-menu {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(6,6,6,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 280ms ease;
}
.dyno-mobile-menu--open { opacity: 1; pointer-events: all; }
.dyno-mobile-menu__close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.45); width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 16px; transition: all 200ms;
}
.dyno-mobile-menu__close:hover { border-color: var(--brand-accent); color: #fff; }
.dyno-mobile-menu__link {
  display: block; width: 100%;
  font-family: 'Syncopate', sans-serif; font-size: clamp(20px,5vw,30px);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.25); background: none; border: none; cursor: pointer;
  padding: 14px 40px; text-align: center; transition: color 200ms;
}
.dyno-mobile-menu__link:hover { color: #fff; }
.dyno-mobile-menu__divider {
  width: 48px; height: 1px; background: rgba(0,168,107,0.20); margin: 4px auto;
}
.dyno-mobile-menu__cta { margin-top: 30px; padding: 14px 44px !important; font-size: 11px !important; }

/* ── SIDE ARROWS ─────────────────────────────────────────────────────────── */
.dyno-side-arrow {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 60;
  background: rgba(8,8,8,0.60); border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.35); width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; transition: all 200ms;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.dyno-side-arrow:hover {
  border-color: var(--brand); color: #fff; background: rgba(0,168,107,0.12);
}
.dyno-side-arrow--hidden { opacity: 0; pointer-events: none; }
#sa-prev { left: 1.2rem; }
#sa-next { right: 1.2rem; }

/* ── SCROLL WRAPPER ──────────────────────────────────────────────────────── */
.dyno-scroll-wrapper { position: fixed; inset: 0; overflow: hidden; }
.dyno-sections {
  display: flex; height: 100vh;
  transition: transform 0.85s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}

/* ── SCREEN BASE ─────────────────────────────────────────────────────────── */
.dyno-screen {
  width: 100vw; height: 100vh; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.dyno-screen::before, .dyno-screen::after {
  content: ''; position: absolute; width: 16px; height: 16px;
  border: 1px solid rgba(0,168,107,0.35);
}
.dyno-screen::before { top: 2.4rem; left: 2.4rem; border-bottom: none; border-right: none; }
.dyno-screen::after  { bottom: 2.4rem; right: 2.4rem; border-top: none; border-left: none; }

.dyno-screen__tag {
  position: absolute; top: 2.3rem; left: calc(2.4rem + 24px);
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-accent);
  padding: 3px 10px;
  background: rgba(0,168,107,0.10); border: 1px solid rgba(0,168,107,0.22);
}
.dyno-screen__idx {
  position: absolute; bottom: 2.3rem; left: 2.4rem;
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.12em;
  color: var(--text-ter); text-transform: uppercase;
}
.dyno-screen__hint {
  position: absolute; bottom: 2.3rem; right: calc(2.4rem + 18px);
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.12em;
  color: var(--text-ter); display: flex; align-items: center; gap: 8px;
}
.dyno-screen__watermark {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(90px,14vw,190px); font-weight: 700;
  background: linear-gradient(90deg,
    rgba(0,168,107,0.02) 0%,
    rgba(0,168,107,0.08) 20%,
    rgba(34,182,126,0.22) 50%,
    rgba(0,168,107,0.08) 80%,
    rgba(0,168,107,0.02) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-transform: uppercase; white-space: nowrap; pointer-events: none;
  letter-spacing: -0.04em; mix-blend-mode: screen; user-select: none;
  animation: shimmerText 12s linear infinite;
}
.dyno-screen__content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1240px;
  padding: 64px clamp(40px,6vw,100px) 48px;
  display: flex; flex-direction: column;
}

/* ── SECTION DOTS ────────────────────────────────────────────────────────── */
.dyno-dots {
  position: fixed; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  z-index: 60; display: flex; gap: 10px; align-items: center;
}
.dyno-dots__dot {
  width: 6px; height: 6px;
  border: 1px solid rgba(255,255,255,0.20);
  cursor: pointer; transition: all 250ms;
}
.dyno-dots__dot:hover { border-color: rgba(255,255,255,0.50); }
.dyno-dots__dot--active { background: var(--brand-accent); border-color: var(--brand-accent); }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
.dyno-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--brand-accent); margin-bottom: 10px;
}
.dyno-heading--1 {
  font-size: clamp(38px,5vw,72px); font-weight: 600;
  line-height: 1.04; letter-spacing: -0.03em; margin-bottom: 20px;
}
.dyno-heading--2 {
  font-size: clamp(26px,3.2vw,46px); font-weight: 600;
  line-height: 1.10; letter-spacing: -0.025em; margin-bottom: 10px;
}
.dyno-heading--3 {
  font-size: clamp(13px,1.2vw,16px); font-weight: 600;
  line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 6px;
}
.dyno-body {
  font-size: clamp(13px,1.1vw,15px); color: var(--text-sec); line-height: 1.72;
}

/* ── CARDS ───────────────────────────────────────────────────────────────── */
.dyno-card {
  background: rgba(0,168,107,0.04); border: 1px solid rgba(0,168,107,0.15);
  padding: clamp(18px,2vw,28px) clamp(16px,2vw,24px);
  transition: background 280ms, border-color 280ms, box-shadow 280ms;
  cursor: default;
}
.dyno-card:hover {
  background: rgba(0,168,107,0.10); border-color: rgba(0,168,107,0.40);
  box-shadow: 0 0 24px rgba(0,168,107,0.08), inset 0 0 20px rgba(0,168,107,0.03);
}
.dyno-card__num {
  font-family: 'DM Mono', monospace; font-size: 10px;
  color: var(--text-ter); letter-spacing: 0.10em; margin-bottom: 12px;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.dyno-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  transition: background 200ms, color 200ms; white-space: nowrap;
}
.dyno-btn--primary { background: #fff; color: #080808; padding: 13px 26px; }
.dyno-btn--primary:hover { background: rgba(255,255,255,0.86); }
.dyno-btn--ghost {
  background: transparent; color: #fff; padding: 13px 26px;
  border: 1px solid rgba(255,255,255,0.14);
}
.dyno-btn--ghost:hover {
  background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.28);
}
.dyno-btn--arrow {
  background: none; border: none; color: #fff; padding: 0;
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.12em;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
  transition: color 200ms;
}
.dyno-btn--arrow__icon {
  display: inline-block;
  transition: transform 200ms cubic-bezier(0.16,1,0.3,1);
}
.dyno-btn--arrow:hover { color: var(--text-sec); }
.dyno-btn--arrow:hover .dyno-btn--arrow__icon { transform: translate(3px,-3px); }

/* ── BADGE ───────────────────────────────────────────────────────────────── */
.dyno-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,168,107,0.10); border: 1px solid rgba(0,168,107,0.25);
  color: var(--brand-accent); font-family: 'DM Mono', monospace;
  font-size: 10px; font-weight: 500; letter-spacing: 0.09em;
  text-transform: uppercase; padding: 4px 12px;
  border-radius: 9999px; margin-bottom: 20px;
}
.dyno-badge__pulse {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--brand-accent); animation: blink 2s infinite;
}

/* ── INPUTS ──────────────────────────────────────────────────────────────── */
.dyno-input {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); padding: 12px 15px;
  font-size: 14px; color: #fff; font-family: 'DM Sans', sans-serif;
  outline: none; transition: border-color 200ms, box-shadow 200ms;
}
.dyno-input::placeholder { color: var(--text-ter); }
.dyno-input:hover { border-color: rgba(255,255,255,0.18); }
.dyno-input:focus { border-color: var(--brand); box-shadow: 0 0 0 2px rgba(0,168,107,0.16); }

/* ── MODAL ───────────────────────────────────────────────────────────────── */
.dyno-modal {
  position: fixed; inset: 0; z-index: 80;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,8,8,0); pointer-events: none;
  transition: background 500ms;
}
.dyno-modal--open { background: rgba(8,8,8,0.92); pointer-events: all; }
.dyno-modal__box {
  width: min(540px,90vw); background: #0d0d0d;
  border: 1px solid var(--border-brand); padding: 44px;
  opacity: 0; transform: translateY(28px) scale(0.97);
  transition: opacity 450ms cubic-bezier(0.16,1,0.3,1),
              transform 450ms cubic-bezier(0.16,1,0.3,1);
}
.dyno-modal--open .dyno-modal__box { opacity: 1; transform: none; }
.dyno-modal__ok {
  display: none; text-align: center; padding: 24px;
  color: var(--brand-accent); font-family: 'DM Mono', monospace;
  font-size: 13px; letter-spacing: 0.05em;
}
.dyno-modal__header { margin-bottom: 28px; }

/* ── LEGAL POPUP ─────────────────────────────────────────────────────────── */
.dyno-legal-popup {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center;
  background: rgba(8,8,8,0); pointer-events: none;
  transition: background 400ms;
}
.dyno-legal-popup--open { background: rgba(8,8,8,0.94); pointer-events: all; }
.dyno-legal-popup__box {
  width: min(860px,92vw); max-height: 82vh; background: #0a0a0a;
  border: 1px solid var(--border-brand); display: flex; flex-direction: column;
  opacity: 0; transform: translateY(28px) scale(0.98);
  transition: opacity 380ms cubic-bezier(0.16,1,0.3,1),
              transform 380ms cubic-bezier(0.16,1,0.3,1);
  position: relative; box-shadow: 0 0 120px rgba(0,0,0,0.9);
}
.dyno-legal-popup__box::before,
.dyno-legal-popup__box::after {
  content: ''; position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--brand);
}
.dyno-legal-popup__box::before { top: -1px; left: -1px; border-bottom: none; border-right: none; }
.dyno-legal-popup__box::after  { bottom: -1px; right: -1px; border-top: none; border-left: none; }
.dyno-legal-popup--open .dyno-legal-popup__box { opacity: 1; transform: none; }
.dyno-legal-popup__header {
  padding: 24px 32px 20px; border-bottom: 1px solid var(--border-brand);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; flex-shrink: 0;
}
.dyno-legal-popup__tag {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-accent);
  padding: 3px 10px; background: rgba(0,168,107,0.10);
  border: 1px solid rgba(0,168,107,0.22); display: inline-block; margin-bottom: 8px;
}
.dyno-legal-popup__title {
  font-size: clamp(18px,2.2vw,26px); font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.1;
}
.dyno-legal-popup__subtitle {
  font-family: 'DM Mono', monospace; font-size: 9px;
  color: var(--text-ter); letter-spacing: 0.10em;
  text-transform: uppercase; margin-top: 6px;
}
.dyno-legal-popup__close {
  background: none; border: 1px solid var(--border); color: var(--text-sec);
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; flex-shrink: 0;
  transition: border-color 200ms, color 200ms, background 200ms;
}
.dyno-legal-popup__close:hover {
  border-color: var(--brand-accent); color: #fff;
  background: rgba(0,168,107,0.10);
}
.dyno-legal-popup__body {
  overflow-y: auto; padding: 28px 32px 32px;
  scrollbar-width: thin; scrollbar-color: rgba(0,168,107,0.30) transparent;
}
.dyno-legal-popup__body::-webkit-scrollbar { width: 4px; }
.dyno-legal-popup__body::-webkit-scrollbar-thumb { background: rgba(0,168,107,0.30); }
.dyno-legal-popup__section-title {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-accent);
  margin-top: 28px; margin-bottom: 8px;
  padding-bottom: 6px; border-bottom: 1px solid rgba(0,168,107,0.15);
}
.dyno-legal-popup__section-title:first-child { margin-top: 0; }
.dyno-legal-popup__text {
  font-size: 13px; color: var(--text-sec); line-height: 1.75; margin-bottom: 10px;
}
.dyno-legal-popup__text strong { color: #fff; font-weight: 600; }
.dyno-legal-popup__warning {
  color: rgba(255,255,255,0.45); font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.05em;
  border: 1px solid rgba(0,168,107,0.20); padding: 12px 16px;
  background: rgba(0,168,107,0.04); margin-bottom: 20px;
}
.dyno-legal-popup__footer {
  padding: 16px 32px; border-top: 1px solid var(--border-brand);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0; flex-wrap: wrap; gap: 10px;
}
.dyno-legal-popup__eff {
  font-family: 'DM Mono', monospace; font-size: 9px;
  color: var(--text-ter); letter-spacing: 0.10em; text-transform: uppercase;
}

/* ── SHIMMER ANIMATION ───────────────────────────────────────────────────── */
@keyframes shimmerText {
  0%   { background-position: -300% center; }
  100% { background-position:  300% center; }
}

/* ── ICON ANIMATIONS ─────────────────────────────────────────────────────── */
@keyframes iconPing {
  0%   { transform: scale(0.8); opacity: 0.9; }
  100% { transform: scale(2.8); opacity: 0; }
}
@keyframes iconSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes iconDraw {
  0%   { stroke-dashoffset: 200; opacity: 0; }
  8%   { opacity: 1; }
  65%  { stroke-dashoffset: 0; opacity: 1; }
  82%  { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: 200; opacity: 0; }
}
@keyframes iconScan {
  0%   { transform: translateY(-9px); opacity: 0; }
  12%  { opacity: 1; }
  85%  { transform: translateY(9px); opacity: 1; }
  100% { transform: translateY(9px); opacity: 0; }
}
@keyframes iconFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-4px); }
}
@keyframes iconPulse {
  0%,100% { opacity: 0.18; }
  50%     { opacity: 0.85; }
}
@keyframes iconBarA {
  0%,100% { transform: scaleY(0.45); }
  50%     { transform: scaleY(1); }
}
@keyframes iconBarB {
  0%,100% { transform: scaleY(0.75); }
  50%     { transform: scaleY(0.40); }
}
@keyframes iconBarC {
  0%,100% { transform: scaleY(1); }
  50%     { transform: scaleY(0.55); }
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.icon-spin    { animation: iconSpin 5s linear infinite; transform-box: fill-box; transform-origin: center; }
.icon-spin-r  { animation: iconSpin 3.5s linear infinite reverse; transform-box: fill-box; transform-origin: center; }
.icon-ping    { animation: iconPing 2s ease-out infinite; transform-box: fill-box; transform-origin: center; }
.icon-float   { animation: iconFloat 3s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.icon-float-d { animation: iconFloat 3.2s ease-in-out 0.45s infinite; transform-box: fill-box; transform-origin: center; }
.icon-pulse   { animation: iconPulse 2.5s ease-in-out infinite; }
.icon-scan    { animation: iconScan 2.5s ease-in-out infinite; }
.icon-draw    { stroke-dasharray: 200; animation: iconDraw 3.5s ease-in-out infinite; }
.icon-bar-a   { animation: iconBarA 2s ease-in-out infinite;       transform-box: fill-box; transform-origin: bottom center; }
.icon-bar-b   { animation: iconBarB 2s ease-in-out 0.30s infinite; transform-box: fill-box; transform-origin: bottom center; }
.icon-bar-c   { animation: iconBarC 2s ease-in-out 0.60s infinite; transform-box: fill-box; transform-origin: bottom center; }
.icon-orbit   { animation: iconSpin 5s linear infinite; transform-box: view-box; transform-origin: 50% 50%; }

/* ── STAT BAR (INTRO SCREEN) ─────────────────────────────────────────────── */
.dyno-stat-bar {
  display: flex; width: 100%;
  border-top: 1px solid var(--border-brand); padding-top: 32px;
}
.dyno-stat-bar__item { flex: 1; text-align: center; padding: 16px 8px; }
.dyno-stat-bar__item--bordered {
  border-left: 1px solid var(--border-brand);
  border-right: 1px solid var(--border-brand);
}
.dyno-stat-bar__value {
  font-size: clamp(28px,3.5vw,46px); font-weight: 700;
  letter-spacing: -0.04em; line-height: 1; color: #fff;
}
.dyno-stat-bar__value--accent { color: var(--brand-accent); }
.dyno-stat-bar__label {
  font-family: 'DM Mono', monospace; font-size: 9px;
  color: var(--text-ter); letter-spacing: 0.10em;
  text-transform: uppercase; margin-top: 7px;
}

/* ── SERVICES GRID ───────────────────────────────────────────────────────── */
#svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }

/* ── PROCESS GRID ────────────────────────────────────────────────────────── */
#proc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.dyno-proc-divider { display: flex; align-items: center; margin-top: 24px; padding: 0 1px; }
.dyno-proc-divider__line-l {
  flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(0,168,107,0.15), rgba(0,168,107,0.40));
}
.dyno-proc-divider__arrow {
  font-family: 'DM Mono', monospace; font-size: 9px;
  color: var(--brand-accent); letter-spacing: 0.12em; padding: 0 14px;
}
.dyno-proc-divider__line-r {
  flex: 1; height: 1px;
  background: linear-gradient(to right, rgba(0,168,107,0.40), rgba(0,168,107,0.15));
}

/* ── ABOUT FLEX ──────────────────────────────────────────────────────────── */
#about-flex { flex-direction: row; gap: clamp(40px,6vw,100px); align-items: center; }
#about-stats { flex: 0.9; min-width: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.dyno-about-stat { text-align: center; padding: clamp(20px,2.5vw,36px); }
.dyno-about-stat__value {
  font-size: clamp(32px,3.5vw,46px); font-weight: 700;
  color: #fff; letter-spacing: -0.04em; line-height: 1;
}
.dyno-about-stat__value--accent { color: var(--brand-accent); }
.dyno-about-stat__label {
  font-size: 11px; color: var(--text-sec); margin-top: 8px; line-height: 1.4;
}

/* ── CONTACT FORM GRID ───────────────────────────────────────────────────── */
#cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* ── CONTACT FOOTER LINKS ────────────────────────────────────────────────── */
.dyno-contact-footer {
  display: flex; gap: 24px; justify-content: center; align-items: center;
  flex-wrap: wrap; margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border); width: 100%;
}
.dyno-contact-footer__link {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-ter);
  text-decoration: none; transition: color 200ms;
}
.dyno-contact-footer__link:hover { color: var(--brand-accent); }
.dyno-contact-footer__copy {
  font-family: 'DM Mono', monospace; font-size: 9px;
  color: var(--text-ter); letter-spacing: 0.10em; text-transform: uppercase;
}

/* ── LEGAL NAV ───────────────────────────────────────────────────────────── */
.dyno-lnav {
  position: sticky; top: 0; z-index: 70; height: 64px;
  padding: 0 clamp(24px,5vw,80px);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: rgba(8,8,8,0.88); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-brand);
}
.dyno-lnav__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-ter); text-decoration: none;
  transition: color 220ms; padding: 6px 0;
}
.dyno-lnav__back:hover { color: var(--brand-accent); }
.dyno-lnav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.dyno-lnav__icon {
  width: 28px; height: 28px; background: var(--brand);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dyno-lnav__name {
  font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
}
.dyno-lnav__date {
  font-family: 'DM Mono', monospace; font-size: 9px;
  color: var(--text-ter); letter-spacing: 0.10em; text-transform: uppercase;
}

/* ── LEGAL STANDALONE PAGE ───────────────────────────────────────────────── */
.dyno-legal-page {
  min-height: 100vh; background: var(--bg); color: var(--text);
  font-family: 'DM Sans', sans-serif;
}
.dyno-legal-page__hero {
  position: relative; overflow: hidden;
  padding: 96px clamp(40px,6vw,100px) 60px;
  max-width: 1240px; margin: 0 auto;
}
.dyno-legal-page__watermark {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: 'Syncopate', sans-serif;
  font-size: clamp(60px,10vw,140px); font-weight: 700;
  background: linear-gradient(90deg,
    rgba(0,168,107,0.02) 0%,
    rgba(0,168,107,0.08) 20%,
    rgba(34,182,126,0.22) 50%,
    rgba(0,168,107,0.08) 80%,
    rgba(0,168,107,0.02) 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-transform: uppercase; white-space: nowrap; pointer-events: none;
  letter-spacing: -0.04em; mix-blend-mode: screen; user-select: none;
  animation: shimmerText 18s linear infinite;
}
.dyno-legal-page__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-ter);
  text-decoration: none; transition: color 200ms; margin-bottom: 36px;
}
.dyno-legal-page__back:hover { color: var(--brand-accent); }
.dyno-legal-page__tag {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-accent);
  padding: 3px 10px; background: rgba(0,168,107,0.10);
  border: 1px solid rgba(0,168,107,0.22);
  display: inline-block; margin-bottom: 16px;
}
.dyno-legal-page__title {
  font-size: clamp(26px,3.5vw,48px); font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 8px;
}
.dyno-legal-page__subtitle {
  font-family: 'DM Mono', monospace; font-size: 9px;
  color: var(--text-ter); letter-spacing: 0.10em; text-transform: uppercase;
}
.dyno-legal-page__body {
  max-width: 1240px; margin: 0 auto;
  padding: 40px clamp(40px,6vw,100px) 80px;
  border-top: 1px solid var(--border-brand);
}
.dyno-legal-page__section-title {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-accent);
  margin-top: 32px; margin-bottom: 10px;
  padding-bottom: 6px; border-bottom: 1px solid rgba(0,168,107,0.15);
}
.dyno-legal-page__section-title:first-child { margin-top: 0; }
.dyno-legal-page__text {
  font-size: 14px; color: var(--text-sec); line-height: 1.75; margin-bottom: 12px;
}
.dyno-legal-page__text strong { color: #fff; font-weight: 600; }
.dyno-legal-page__warning {
  color: rgba(255,255,255,0.45); font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: 0.05em;
  border: 1px solid rgba(0,168,107,0.20); padding: 12px 16px;
  background: rgba(0,168,107,0.04); margin-bottom: 28px;
}
.dyno-legal-page__footer {
  max-width: 1240px; margin: 0 auto;
  padding: 20px clamp(40px,6vw,100px);
  border-top: 1px solid var(--border-brand);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.dyno-legal-page__footer-eff {
  font-family: 'DM Mono', monospace; font-size: 9px;
  color: var(--text-ter); letter-spacing: 0.10em; text-transform: uppercase;
}

/* ── 404 PAGE ────────────────────────────────────────────────────────────── */
.dyno-404 {
  min-height: calc(100vh - 64px);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: clamp(48px,8vw,100px) clamp(24px,6vw,100px);
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,168,107,0.05) 0%, transparent 70%);
}
.dyno-404__watermark {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: 'Syncopate', sans-serif; font-size: clamp(120px,22vw,320px); font-weight: 700;
  background: linear-gradient(90deg, rgba(0,168,107,0.02) 0%, rgba(0,168,107,0.08) 20%, rgba(34,182,126,0.18) 50%, rgba(0,168,107,0.08) 80%, rgba(0,168,107,0.02) 100%);
  background-size: 300% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  text-transform: uppercase; white-space: nowrap; pointer-events: none;
  letter-spacing: -0.04em; user-select: none; animation: shimmerText 14s linear infinite;
}
.dyno-404__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px;
}
.dyno-404__tag {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-accent); padding: 3px 10px;
  background: rgba(0,168,107,0.10); border: 1px solid rgba(0,168,107,0.22);
  display: inline-block;
}
.dyno-404__heading {
  font-size: clamp(32px,5vw,64px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05;
}
.dyno-404__body {
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--text-ter);
  letter-spacing: 0.08em; text-transform: uppercase; max-width: 380px;
}
.dyno-404__cta { margin-top: 8px; text-decoration: none; }

/* ── THANK-YOU PAGE ──────────────────────────────────────────────────────── */
.dyno-thankyou {
  min-height: calc(100vh - 64px);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: clamp(48px,8vw,100px) clamp(24px,6vw,100px);
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,168,107,0.07) 0%, transparent 70%);
}
.dyno-thankyou__watermark {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: 'Syncopate', sans-serif; font-size: clamp(40px,10vw,130px); font-weight: 700;
  background: linear-gradient(90deg, rgba(0,168,107,0.02) 0%, rgba(0,168,107,0.08) 20%, rgba(34,182,126,0.20) 50%, rgba(0,168,107,0.08) 80%, rgba(0,168,107,0.02) 100%);
  background-size: 300% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
  text-transform: uppercase; white-space: nowrap; pointer-events: none;
  letter-spacing: -0.04em; user-select: none; animation: shimmerText 12s linear infinite;
}
.dyno-thankyou__content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px;
}
.dyno-thankyou__tag {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-accent); padding: 3px 10px;
  background: rgba(0,168,107,0.10); border: 1px solid rgba(0,168,107,0.22);
  display: inline-block;
}
.dyno-thankyou__heading {
  font-size: clamp(28px,4.5vw,56px); font-weight: 600; letter-spacing: -0.03em; line-height: 1.05;
}
.dyno-thankyou__body {
  font-family: 'DM Mono', monospace; font-size: 11px; color: var(--text-ter);
  letter-spacing: 0.08em; text-transform: uppercase; max-width: 420px;
}
.dyno-thankyou__cta { margin-top: 8px; text-decoration: none; }

/* ── LEGAL PAGES — override global overflow lock ─────────────────────────── */
/* Both html AND body need the reset — html is the scroll container. */
body.page-privacy,
body.page-terms,
body.page-template-page-privacy,
body.page-template-page-privacy-php,
body.page-template-page-terms,
body.page-template-page-terms-php,
body.error404,
body.page-thank-you,
html:has(body.page-privacy),
html:has(body.page-thank-you),
html:has(body.page-terms),
html:has(body.page-template-page-privacy),
html:has(body.page-template-page-privacy-php),
html:has(body.page-template-page-terms),
html:has(body.page-template-page-terms-php),
html:has(body.error404) {
  overflow: auto !important;
  height: auto !important;
  width: auto !important;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  html, body { overflow: auto; height: auto; }
  .dyno-scroll-wrapper { position: static; overflow: visible; }
  .dyno-sections {
    flex-direction: column;
    transform: none !important;
    transition: none !important;
    height: auto;
  }
  .dyno-screen { width: 100%; height: auto; min-height: 100svh; }
  .dyno-dots,
  .dyno-side-arrow,
  .dyno-hud { display: none !important; }
  .dyno-nav__hamburger { display: flex; }
  .dyno-nav__cta,
  .dyno-nav__links { display: none !important; }
  .dyno-screen__content {
    padding-left: clamp(20px,5vw,36px) !important;
    padding-right: clamp(20px,5vw,36px) !important;
  }
  #svc-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  #proc-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  #proc-grid .dyno-card { border-left: 1px solid rgba(0,168,107,0.15) !important; }
  #about-flex { flex-direction: column !important; gap: 28px !important; }
  #about-flex > div { width: 100% !important; flex: none !important; min-width: 0 !important; }
  #cf-grid { grid-template-columns: 1fr !important; }
  .dyno-stat-bar { flex-wrap: wrap !important; }
  .dyno-stat-bar__item {
    min-width: 30% !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border-brand) !important;
  }
}
@media (max-width: 440px) {
  #svc-grid, #proc-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 560px) {
  .dyno-legal-popup__header,
  .dyno-legal-popup__body,
  .dyno-legal-popup__footer { padding-left: 20px; padding-right: 20px; }
}
