*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --bg: #040038; /*Backg button 2*/
  --bg1: #020023;
  --bg2: #459376;
  --surf: #05004f;
  --surf2: #792f2f;
  --bdr: #3d9eff; /*Border button 2*/
  --bdr2: #00d0ff;
  --bdr3: #1363b4; /*Border section/card 2*/
  --a: #ff9d00;
  --a2: #2800aa;
  --a3: #06b6d4;
  --tx: white;
  --tx2: #d1d0d0;
  --tx3: #d1d0d0;
  --r: 18px;
  --rs: 10px;
  --ease: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  background-color: #000;
}
body {
  font-family: "Raleway", system-ui, sans-serif;
  color: var(--tx);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* BACKGROUND ORBS (place directly inside a section; the section needs
   position:relative + overflow:hidden so the orb stays contained) */
.orb {
  position: absolute;
  width: 50vw;
  height: 50vw;
  max-width: 640px;
  max-height: 640px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
}
.orb-blue {
  background: var(--bdr);
}
.orb-violet {
  background: var(--a2);
}

/* ── LANGUAGE SYSTEM ─────────────────────────────────────────────────────── */
/*  data-t="de"  →  German text nodes (block or inline)                       */
/*  data-t="en"  →  English text nodes (block or inline)                      */
/*  display:revert restores each element's native display (block/inline/flex) */
[data-t] {
  display: none;
}
body.de [data-t="de"] {
  display: revert;
}
body.en [data-t="en"] {
  display: revert;
}
/* Inline overrides for spans that live INSIDE flex/grid parents */
body.de span[data-t="de"],
body.de a[data-t="de"] {
  display: inline;
}
body.en span[data-t="en"],
body.en a[data-t="en"] {
  display: inline;
}
/* ────────────────────────────────────────────────────────────────────────── */

/* NAV */
#nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  background: rgba(4, 8, 15, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--bdr3);
  transition: background var(--ease);
}
.nbrand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nmark {
  width: 150px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.nmark img {
  filter: brightness(0) invert(1);
}
.nmark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nright {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lpill {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 3px;
  border-radius: 99px;
  overflow: hidden;
  border: 1px solid var(--bdr2);
  background: var(--surf);
}
.lthumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: calc(100% - 6px);
  border-radius: 99px;
  background: var(--a);
  transition: transform var(--ease);
  z-index: 0;
}
body.en .lthumb {
  transform: translateX(100%);
}
.lb {
  position: relative;
  z-index: 1;
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: none;
  border: none;
  color: var(--tx2);
  cursor: pointer;
  transition: color var(--ease);
}
.lb.on {
  color: #000;
}
.ncta {
  height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border-radius: 99px;
  background: var(--bg);
  color: var(--tx);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  transition: all var(--ease);
  box-shadow: 0 0 18px var(--bdr);
  white-space: nowrap;
}
.ncta:hover {
  transform: translateY(2px);
  box-shadow: 0 0 8px var(--bdr2);
}
.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hbg span {
  width: 22px;
  height: 2px;
  background: var(--tx);
  border-radius: 2px;
  display: block;
  transition: all 0.3s;
}

/* DRAWER */
#drawer {
  display: none;
  position: fixed;
  inset: 66px 0 0;
  z-index: 899;
  background: rgba(4, 8, 15, 0.97);
  backdrop-filter: blur(20px);
  padding: 32px 24px;
  flex-direction: column;
  gap: 4px;
}
#drawer.open {
  display: flex;
}
#drawer a {
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--tx);
  text-decoration: none;
  border-bottom: 1px solid var(--bdr);
  transition: color var(--ease);
}
#drawer a:hover {
  color: var(--a);
}

/* UTILITY (extracted from inline styles) */
.ico-a {
  font-size: 2.2em;
  color: var(--a);
  font-variation-settings:
    "FILL" 0,
    "wght" 100,
    "GRAD" 0,
    "opsz" 24;
}
.ico-black {
  font-size: 1.3em;
  color: #000;
  font-variation-settings:
    "FILL" 0,
    "wght" 100,
    "GRAD" 0,
    "opsz" 24;
}
.sec-bg1 {
  background: var(--bg1);
}
.sec.sec-bg {
  background: var(--bg);
}
#why {
  position: relative;
  z-index: 0;
  overflow: visible;
}
.whygrad {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 33%;
  background: linear-gradient(to bottom, var(--bg1), transparent);
  pointer-events: none;
  z-index: 0;
}
#why .wrap {
  position: relative;
}
.blead-tight {
  margin-bottom: 40px;
}
.blead-wide {
  margin: 0 auto 40px;
  line-height: 1.5 !important;
}
.platform-logo {
  width: clamp(180px, 26vw, 260px);
  filter: brightness(0) invert(1) drop-shadow(0 0 32px rgba(0, 229, 255, 0.5));
  display: block;
  margin: 0 auto 16px;
}
.popup-panel {
  display: flex;
  min-height: 500px;
  position: relative;
}
.popup-left {
  background: #09009e;
  border-radius: 8px 0 0 8px;
  min-width: 320px;
  max-width: 360px;
  padding: 40px 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.popup-left img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.popup-title {
  font-size: 1.2em;
  font-weight: 800;
  margin-bottom: 24px;
}
.popup-right {
  color: #707070;
  font-weight: 600;
  font-size: 18px;
  border-radius: 0 16px 16px 0;
  padding: 40px 32px;
  flex: 1;
  position: relative;
}
.popup-tab-content {
  display: none;
}
.popup-tab-content.active {
  display: block;
}
.popup-features-wrap {
  margin-bottom: 64px;
}
.popup-features-title {
  font-weight: 800;
  margin-bottom: 16px;
}
.popup-tab-label {
  color: #707070;
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 16px;
}

/* HERO */
#hero {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
/* EXPERIMENT: background video in the hero */
.hvideo {
  position: absolute;
  inset: 2% 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  will-change: transform;
}
.hend {
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hend.vis-end {
  opacity: 1;
}
#hero .chip,
#hero h1,
#hero .hlead {
  position: relative;
  z-index: 2;
}
#hero .chip {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
#hero h1 {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
}

/* END EXPERIMENT */
.haura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(0, 229, 255, 0.11) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 90% 100%, rgba(109, 40, 217, 0.13) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(0, 229, 255, 0.06) 0%, transparent 55%);
}
.hdots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
}
.hgrad {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 33%;
  background: linear-gradient(to bottom, transparent, var(--bg1));
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.15s ease;
}
.hgrad.vis {
  opacity: 1;
}
.hinner {
  position: absolute;
  max-width: 1200px;
  margin: 0 auto;
  inset: 6% 10%;

  @media (min-width: 1200px) and (max-width: 1440px) {
    /* custom inset/margin for this range — fill in as needed */
  }

  @media (max-width: 600px) {
    position: relative;
    inset: auto;
    margin: 0 auto;
  }
}
.htop {
  position: absolute;
  top: 4%;
  left: 0;
  right: 0;

  @media (max-width: 600px) {
    position: static;
  }
}
.hbottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  @media (max-width: 600px) {
    position: static;
  }
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--a);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.chipdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--a);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.4);
  }
}
.gtext {
  color: var(--a);
}
h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.09;
  letter-spacing: -0.5px;
  margin-bottom: 0;
  color: #fff;
  text-wrap: balance;
}
.hlead {
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: var(--tx2);
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.3;
  font-weight: 500;
  text-wrap: balance;
}
.brow {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btnp,
.btng {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 99px;
  background: var(--bg);
  color: var(--tx);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--ease);
  box-shadow: 0 0 18px var(--bdr);
  border: none;
  cursor: pointer;
}
.btnp:hover,
.btng:hover {
  transform: translateY(2px);
  box-shadow: 0 0 8px var(--bdr2);
}
.btng {
  border: 1px solid var(--bdr);
  box-shadow: none;
  background: none;
}

/* METRICS */
.metrics {
  margin-top: 0%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--bdr3);
  border-bottom: 1px solid var(--bdr3);
  background: var(--bg1);
}
.metric {
  padding: clamp(24px, 4vw, 44px) 24px;
  text-align: center;
  border-right: 1px solid var(--bdr3);
}
.metric:last-child {
  border-right: none;
}
.mnum {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--a);
  line-height: 1;
  background-clip: text;
  margin-bottom: 8px;
}
.mlbl {
  font-size: 0.82rem;
  color: var(--tx2);
  line-height: 1.4;
  max-width: 160px;
  margin: 0 auto;
}

/* SECTIONS */
.sec {
  padding: clamp(60px, 10vw, 120px) clamp(16px, 4vw, 48px);
}
.wrap {
  max-width: 1120px;
  margin: 0 auto;
}
.tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--a);
  margin-bottom: 14px;
}
h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  text-wrap: balance;
}
.blead {
  font-size: 1rem;
  color: var(--tx2);
  line-height: 1.8;
  max-width: 680px;
  text-wrap: pretty;
}

/* WHY */
.wgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  margin-top: 60px;
}
.wstack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card {
  padding: 24px 24px;
  background: var(--bg1);
  border: 1px solid var(--bdr3);
  border-radius: var(--rs);
}
.cico {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.ctit {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}
.cbod {
  font-size: 0.83rem;
  color: var(--tx2);
  line-height: 1.6;
}

/* MODULES */
.mhead {
  text-align: center;
  margin-bottom: 56px;
}
.mhead .blead {
  margin: 0 auto;
}
.mmore {
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(109, 40, 217, 0.05));
  border: 1px solid rgba(0, 229, 255, 0.15);
  border-radius: var(--r);
  padding: 40px;
  text-align: center;
}
.mmore h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.mmore p {
  font-size: 0.88rem;
  color: var(--tx2);
  margin-bottom: 40px;
}

/* USE CASES + POPUP */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.usecase-btn {
  background: var(--bg);
  border: 1px solid var(--bdr3);
  border-radius: 16px;
  padding: 20px 24px;
  min-height: 220px;
  box-shadow: none;
  width: 100%;
  text-align: center;
  cursor: pointer;
  transition: all var(--ease);
}
.usecase-btn.fade {
  transition:
    opacity 0.65s ease,
    transform var(--ease),
    box-shadow var(--ease);
}
.usecase-btn:hover {
  transform: translateY(6px);
  box-shadow: 0 0 8px var(--bdr2);
}
.usecase-image {
  display: flex;
  justify-content: center;
  margin: 0 auto 14px;
  max-width: 72px;
  max-height: 72px;
}
.usecase-image img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}
.usecase-title {
  font-size: 1.02rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 10px;
}
.usecase-text {
  font-size: 0.84rem;
  color: var(--tx2);
  line-height: 1.5;
}

.deepoctoai-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.deepoctoai-popup-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 28px var(--bdr);
  max-width: 1100px;
  width: 95vw;
  max-height: 94vh;
  overflow-y: auto;
  position: relative;
  border: var(--bdr) 1px solid;
}
.deepoctoai-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 34px;
  color: #12009e;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
}
.deepoctoai-popup-image-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.deepoctoai-popup-tablist {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  width: 100%;
}
.deepoctoai-popup-tablist li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #9fc8ff;
  font-size: 18px;
  margin-bottom: 18px;
  cursor: pointer;
  transition: color 0.2s;
}
.deepoctoai-popup-tablist li .tab-title {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.deepoctoai-popup-tablist li .tab-arrow {
  margin-left: 12px;
  opacity: 0.7;
  transition: opacity 0.2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  stroke: #9fc8ff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.deepoctoai-popup-tablist li.active {
  color: #fff;
}
.deepoctoai-popup-tablist li.active .tab-arrow {
  opacity: 1;
  stroke: #fff;
}
.deepoctoai-dotlist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.deepoctoai-dotlist li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: #707070;
}
.deepoctoai-dotlist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  background: #404040;
  border-radius: 50%;
}
.deepoctoai-popup-dots-fixed {
  position: absolute;
  left: 360px;
  bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}
.deepoctoai-slides-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #346fd8;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  outline: none;
}
.deepoctoai-slides-dot.active {
  background: #fff;
  box-shadow: 0 0 0 2px #3d9dff;
}

@media (max-width: 1024px) {
  #deepoctoai-usecase-popup-content > div {
    flex-direction: column !important;
    min-height: unset !important;
  }
  #deepoctoai-usecase-popup-content > div > div:first-child {
    border-radius: 8px 8px 0 0 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  #deepoctoai-usecase-popup-content > div > div:last-child {
    border-radius: 0 0 8px 8px !important;
    width: 100% !important;
  }
  .deepoctoai-popup-dots-fixed {
    justify-content: center;
    left: 24px;
    right: 24px;
  }
  .deepoctoai-popup-close {
    color: #fff;
  }
}
@media (max-width: 600px) {
  .popup-left,
  .popup-right {
    padding: 24px 20px;
  }
  .popup-left {
    padding-bottom: 48px;
  }
  .deepoctoai-popup-tablist li {
    font-size: 16px;
  }
  .deepoctoai-dotlist li {
    font-size: 15px;
  }
}

/* PLATFORM */
.pgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 0px);
  align-items: center;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .pgrid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.pvis {
  border-radius: 24px;
  background: transparent;

  text-align: center;
  position: relative;
  overflow: visible;
}
.pvis::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.octo {
  font-size: clamp(64px, 10vw, 96px);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
  max-width: 100%;
  height: auto;
}
.pvt {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--a);
  letter-spacing: 0.5px;
}
.pvs {
  font-size: 0.78rem;
  color: var(--tx2);
  margin-top: 6px;
}
.rlist {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}
.ri {
  display: flex;
  gap: 14px;
  padding: 24px 24px;
  background: var(--bg1);
  border: 1px solid var(--bdr3);
  border-radius: var(--rs);
  align-items: center;
}
.rico {
  font-size: 2rem;
  flex-shrink: 0;
}
.rtxt {
  font-size: 1rem;
  color: var(--tx2);
  line-height: 1.55;
}
.rtxt strong {
  color: #fff;
}

/* FEATURES */
.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 56px;
}
.fhead {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--a);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--bdr);
  margin-bottom: 20px;
}
.flist {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fi2 {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.fbul {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-top: 3px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fbul::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--a);
}
.ftxt {
  font-size: 1rem;
  color: var(--tx2);
  line-height: 1.55;
}
.ftxt strong {
  color: #fff;
}

/* PHILOSOPHY */
.phgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  margin-top: 56px;
}
.phvis {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.07), rgba(0, 229, 255, 0.05));
  border: 1px solid var(--bdr);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
}
.phvis::before {
  content: "🏠";
  font-size: clamp(56px, 8vw, 80px);
  display: block;
  margin-bottom: 20px;
}
.phq {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--tx);
  font-weight: 500;
  line-height: 1.65;
  font-style: italic;
}
.phq em {
  color: var(--a);
  font-style: normal;
  font-weight: 700;
}

/* TESTIMONIAL */
#testi {
  padding: clamp(60px, 8vw, 100px) clamp(16px, 4vw, 48px);
}
.tinner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.qbox {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--bdr3);
  border-radius: 20px;
  position: relative;
  margin-bottom: 32px;
}
.qmark {
  position: absolute;
  top: -18px;
  left: 28px;
  font-size: 72px;
  font-family: Georgia, serif;
  line-height: 1;
  background: var(--a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.qtxt {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--tx);
  line-height: 1.7;
}
.tauth {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.tav {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: var(--bdr) 5px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #000;
  flex-shrink: 0;
  overflow: hidden;
}
.tav img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tname {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  text-align: left;
}
.trole {
  font-size: 0.75rem;
  color: var(--tx3);
  margin-top: 2px;
  text-align: left;
}

/* CTA */
#cta {
  padding: clamp(80px, 12vw, 140px) clamp(16px, 4vw, 48px);
  border-top: 1px solid var(--bdr3);
  text-align: center;
}

/* FOOTER */
footer {
  background: #04080fcc;
  border-top: 1px solid var(--bdr3);
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 48px) 28px;
}
.fwrap {
  max-width: 1120px;
  margin: 0 auto;
}
.ftop {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.flogo {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.flomark {
  width: 130px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.flomark img {
  filter: brightness(0) invert(1);
}
.flomark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fdesc {
  font-size: 0.8rem;
  color: var(--tx3);
  line-height: 1.65;
  max-width: 240px;
  margin-bottom: 16px;
}
.faddr {
  font-size: 0.75rem;
  color: var(--tx3);
  line-height: 1.8;
}
.fcol h4 {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--tx2);
  margin-bottom: 16px;
}
.fcol ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.fcol a {
  font-size: 0.82rem;
  color: var(--tx3);
  text-decoration: none;
  transition: color var(--ease);
}
.fcol a:hover {
  color: var(--a);
}
.fbot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--bdr);
  flex-wrap: wrap;
  gap: 14px;
}
.fcopy {
  font-size: 0.75rem;
  color: var(--tx3);
}
.socs {
  display: flex;
  gap: 8px;
}
.soc {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--surf);
  border: 1px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--tx2);
  transition: all var(--ease);
}
.soc:hover {
  background: var(--surf2);
  color: var(--a);
  border-color: rgba(0, 229, 255, 0.3);
}

/* ANIMATIONS */
.fade {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.fade.vis {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s;
}
.d2 {
  transition-delay: 0.2s;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .wgrid,
  .fgrid,
  .phgrid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ftop {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .metrics {
    grid-template-columns: 1fr;
  }
  .metric {
    border-right: none;
    border-bottom: 1px solid var(--bdr);
  }
  .metric:last-child {
    border-bottom: none;
  }
  .ftop {
    grid-template-columns: 1fr;
  }
  .fbot {
    flex-direction: column;
    align-items: flex-start;
  }
  .ncta {
    display: none;
  }
  .hbg {
    display: flex;
  }
  video.hvideo {
    display: none;
  }
  .hend {
    opacity: 1;
    transition: none;
  }
  h1 {
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }
  #nav {
    padding: 0 16px;
  }
  .nmark {
    width: 120px;
  }
  .nright {
    gap: 8px;
  }
  .lpill {
    height: 30px;
  }
  .lb {
    padding: 0 10px;
    font-size: 0.72rem;
  }
}
