/*===================================================
  RESET & TOKENS
===================================================*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --or: #ff6b00;
  --or-a: rgba(255, 107, 0, 0.12);
  --or-b: rgba(255, 107, 0, 0.06);
  --bk: #090909;
  --dk: #101010;
  --dkr: #0c0c0c;
  --tx: #ddd;
  --txd: #666;
  --m1: "Courier Prime", monospace;
  --m2: "Share Tech Mono", monospace;
  --hh: 68px;
  --pad: clamp(16px, 5vw, 60px);
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bk);
  color: var(--tx);
  font-family: var(--m1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--or);
  outline-offset: 3px;
}

/* scanlines */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.02) 2px,
    rgba(0, 0, 0, 0.02) 4px
  );
}

/* grid bg */
.grid-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 107, 0, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* skip link */
.skip {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 9999;
  background: var(--or);
  color: #000;
  font-family: var(--m2);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 8px 20px;
  text-decoration: none;
  border-radius: 2px;
  transition: top 0.2s;
}
.skip:focus {
  top: 14px;
}

/*===================================================
  HEADER 
===================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--hh);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 clamp(12px, 3vw, 32px);
  gap: clamp(8px, 2vw, 18px);
  background: rgba(9, 9, 9, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 0, 0.18);
  transition: box-shadow 0.3s;
}

/* ── JU ── */
.hd-ju {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.ju-box {
  width: 44px;
  height: 44px;
  border: 2px solid var(--or);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.ju-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px; /* Prevents touching the border */
  display: block;
}
.hd-ju:hover .ju-box {
  background: transparent;
}

.ju-lbl {
  font-family: var(--m2);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--txd);
  text-transform: uppercase;
  line-height: 1.55;
}
.ju-lbl strong {
  display: block;
  color: var(--tx);
  font-size: 11px;
}

/* ── nav ── */
nav.desk {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
}
nav.desk a {
  font-family: var(--m2);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--txd);
  text-decoration: none;
  padding: 6px 11px;
  border-radius: 2px;
  transition:
    color 0.2s,
    background 0.2s;
  white-space: nowrap;
}
nav.desk a:hover {
  color: var(--or);
  background: var(--or-a);
}
nav.desk a.cur,
nav.mob a.cur {
  color: var(--or);
  animation: none;
  background: none;
  width: auto;
  height: auto;
  display: inline-block;
}

/* ── batch badge ── */
.hd-bt {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row-reverse;
  text-decoration: none;
  flex-shrink: 0;
}
.bt-box {
  width: 44px;
  height: 44px;
  border: 2px solid var(--or);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}
.bt-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px; /* Prevents touching the border */
  display: block;
}
.hd-bt:hover .bt-box {
  background: transparent;
}

.bt-lbl {
  font-family: var(--m2);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--txd);
  text-align: right;
  line-height: 1.55;
  text-transform: uppercase;
}
.bt-lbl strong {
  display: block;
  color: var(--or);
  font-size: 13px;
  letter-spacing: 3px;
}

/* ── Hamburger ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--or);
  border-radius: 1px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav ── */
nav.mob {
  display: none;
  position: fixed;
  top: var(--hh);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 490;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
nav.mob.open {
  display: flex;
}
nav.mob a {
  font-family: var(--m2);
  font-size: 20px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--txd);
  text-decoration: none;
  padding: 14px 32px;
  width: 100%;
  text-align: center;
  transition: color 0.2s;
}
nav.mob a:hover {
  color: var(--or);
}

/*===================================================
  HERO
===================================================*/
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--hh) + clamp(40px, 8vh, 80px)) clamp(16px, 5vw, 40px) 76px;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.o1 {
  width: min(580px, 90vw);
  height: min(580px, 90vw);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 107, 0, 0.1), transparent 70%);
  animation: pulse 5s ease-in-out infinite;
}
.o2 {
  width: 260px;
  height: 260px;
  top: 15%;
  right: 8%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.07), transparent 70%);
  animation: fly 7s ease-in-out infinite;
}
.o3 {
  width: 170px;
  height: 170px;
  bottom: 20%;
  left: 8%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05), transparent 70%);
  animation: fly 9s ease-in-out infinite reverse;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.08);
  }
}
@keyframes fly {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
.eyebrow {
  font-family: var(--m2);
  font-size: clamp(9px, 2vw, 11px);
  letter-spacing: clamp(3px, 0.8vw, 7px);
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: up 0.7s 0.15s forwards;
}
.eyebrow::before,
.eyebrow::after {
  content: "//";
  opacity: 0.4;
}

.htitle {
  font-family: var(--m2);
  font-size: clamp(52px, 13.5vw, 152px);
  line-height: 0.88;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 0 100px rgba(255, 107, 0, 0.2);
  position: relative;
  display: inline-block;
  opacity: 0;
  animation: up 0.8s 0.3s forwards;
}
.htitle::before,
.htitle::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.htitle::before {
  color: rgba(255, 107, 0, 0.5);
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  animation: g1 5s 2s infinite;
}
.htitle::after {
  color: rgba(160, 160, 255, 0.3);
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
  animation: g2 5s 2s infinite;
}
@keyframes g1 {
  0%,
  87%,
  100% {
    transform: translate(0);
  }
  88% {
    transform: translate(-4px, 1px);
  }
  90% {
    transform: translate(4px, -1px);
  }
  93% {
    transform: translate(0);
  }
}
@keyframes g2 {
  0%,
  87%,
  100% {
    transform: translate(0);
  }
  88% {
    transform: translate(4px, -1px);
  }
  90% {
    transform: translate(-4px, 1px);
  }
  93% {
    transform: translate(0);
  }
}

.hsub {
  font-family: var(--m1);
  font-size: clamp(11px, 2.2vw, 15px);
  color: var(--txd);
  letter-spacing: clamp(1px, 0.4vw, 3px);
  margin-bottom: 46px;
  opacity: 0;
  animation: up 0.8s 0.45s forwards;
}
.hcta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: up 0.8s 0.6s forwards;
}

@keyframes up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-p {
  font-family: var(--m2);
  font-size: clamp(10px, 1.8vw, 12px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #000;
  background: var(--or);
  padding: 15px clamp(22px, 5vw, 44px);
  text-decoration: none;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: color 0.25s;
}
.btn-p::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-101%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-p:hover::after {
  transform: translateX(0);
}
.btn-p span {
  position: relative;
  z-index: 1;
}

.btn-o {
  font-family: var(--m2);
  font-size: clamp(10px, 1.8vw, 12px);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--txd);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 15px clamp(22px, 5vw, 44px);
  text-decoration: none;
  border-radius: 2px;
  display: inline-block;
  transition:
    border-color 0.25s,
    color 0.25s;
}
.btn-o:hover {
  border-color: var(--or);
  color: var(--or);
}

/* ticker */
.tick-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 36px;
  background: var(--or);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.tick {
  display: flex;
  animation: tick 30s linear infinite;
  white-space: nowrap;
}
.ti {
  font-family: var(--m2);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.85);
  padding: 0 28px;
  font-weight: 700;
}
.sep {
  color: rgba(0, 0, 0, 0.3);
}
@keyframes tick {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*===================================================
  STATS
===================================================*/
.stats {
  position: relative;
  z-index: 1;
  background: var(--dkr);
  border-top: 1px solid rgba(255, 107, 0, 0.1);
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.si {
  padding: clamp(18px, 3.5vw, 42px) clamp(10px, 2.5vw, 40px);
  text-align: center;
  border-right: 1px solid rgba(255, 107, 0, 0.07);
}
.si:last-child {
  border-right: none;
}
.sn {
  font-family: var(--m2);
  font-size: clamp(28px, 5.5vw, 52px);
  color: var(--or);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.sl {
  font-size: clamp(7px, 1.3vw, 10px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--txd);
}

/*===================================================
  SECTION
===================================================*/
.w {
  position: relative;
  z-index: 1;
}
.w-dk {
  background: var(--dk);
}
.w-dkr {
  background: var(--dkr);
}
.w-bdt {
  border-top: 1px solid rgba(255, 107, 0, 0.07);
}

.sec {
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(44px, 7vw, 92px) var(--pad);
}
.sec-hd {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(28px, 5vw, 54px);
}
.sec-tag {
  font-family: var(--m2);
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--or);
  white-space: nowrap;
}
.sec-ln {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 107, 0, 0.25), transparent);
}

/*===================================================
  CARDS GRID  3 → 2 → 1
===================================================*/
.cgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 107, 0, 0.07);
  border: 1px solid rgba(255, 107, 0, 0.07);
}
.card {
  background: var(--dkr);
  padding: clamp(22px, 3.5vw, 36px);
  text-decoration: none;
  color: inherit;
  display: block;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
}
.c-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--or);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.card:hover {
  background: rgba(255, 107, 0, 0.04);
}
.card:hover .c-bar {
  transform: scaleX(1);
}
.c-ico {
  font-size: 22px;
  margin-bottom: 13px;
  display: block;
}
.c-tit {
  font-family: var(--m2);
  font-size: clamp(10px, 1.7vw, 13px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 9px;
}
.c-dsc {
  font-size: 12px;
  color: var(--txd);
  line-height: 1.8;
}
.c-arr {
  position: absolute;
  bottom: 18px;
  right: 18px;
  font-family: var(--m2);
  font-size: 16px;
  color: var(--or);
  opacity: 0;
  transform: translateX(-6px);
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.card:hover .c-arr {
  opacity: 1;
  transform: translateX(0);
}

/* drive badge inside resources card */
.drive-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 13px;
  padding: 7px 13px;
  background: rgba(66, 133, 244, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.25);
  border-radius: 2px;
  font-family: var(--m2);
  font-size: 9px;
  letter-spacing: 2px;
  color: #7ab4f5;
  text-transform: uppercase;
}
.drive-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* lock badge */
.lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 5px 10px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 2px;
  font-family: var(--m2);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--or);
  text-transform: uppercase;
}

/*===================================================
  MARQUEE
===================================================*/
.marq {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 107, 0, 0.06);
  border-bottom: 1px solid rgba(255, 107, 0, 0.06);
}
.mt {
  display: flex;
  animation: marq 22s linear infinite;
  white-space: nowrap;
}
.mi {
  font-family: var(--m2);
  font-size: clamp(32px, 7vw, 90px);
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 107, 0, 0.15);
  padding: 0 28px;
  text-transform: uppercase;
}
.mi.f {
  -webkit-text-stroke: none;
  color: rgba(255, 107, 0, 0.05);
}
@keyframes marq {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*===================================================
  RESOURCES: GOOGLE DRIVE SECTION
===================================================*/
.drive-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

/* terminal panel */
.terminal {
  background: #050505;
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--m2);
}
.t-bar {
  background: rgba(255, 255, 255, 0.03);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dr {
  background: #ff5f57;
}
.dy {
  background: #febc2e;
}
.dg {
  background: #28c840;
}
.t-lbl {
  font-family: var(--m2);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--txd);
  margin-left: 6px;
}
.t-body {
  padding: clamp(14px, 3vw, 26px);
  font-size: 12px;
  line-height: 2.1;
}
.tr {
  display: flex;
  gap: 10px;
}
.tp {
  color: var(--or);
}
.tc {
  color: #7ec8e3;
}
.to {
  color: var(--txd);
  padding-left: 22px;
}
.tcm {
  color: #333;
  padding-left: 22px;
}
.tok {
  color: #28c840;
  padding-left: 22px;
}
.terr {
  color: #ff5f57;
  padding-left: 22px;
}
.terminal .cur {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--or);
  vertical-align: middle;
  animation: blink 1s infinite;
}
@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* info panel */
.d-tag {
  font-family: var(--m2);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 16px;
}
.d-h {
  font-family: var(--m2);
  font-size: clamp(20px, 3.2vw, 34px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.d-h em {
  font-style: normal;
  color: var(--or);
}
.d-p {
  font-size: 13px;
  color: var(--txd);
  line-height: 1.9;
  margin-bottom: 14px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 22px 0;
}
.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255, 107, 0, 0.04);
  border: 1px solid rgba(255, 107, 0, 0.1);
  border-radius: 2px;
}
.s-n {
  font-family: var(--m2);
  font-size: 11px;
  color: var(--or);
  min-width: 20px;
  padding-top: 1px;
}
.s-t {
  font-family: var(--m2);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--tx);
  margin-bottom: 4px;
}
.s-d {
  font-size: 11px;
  color: var(--txd);
  line-height: 1.65;
}

.warn-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  margin-top: 20px;
  background: rgba(255, 107, 0, 0.06);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 2px;
}
.warn-ico {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.warn-txt {
  font-family: var(--m2);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--or);
  line-height: 1.7;
}
.warn-txt strong {
  display: block;
  font-size: 11px;
  margin-bottom: 4px;
  color: #fff;
}

/*===================================================
  SPLIT: ABOUT + FEATURES
===================================================*/
.split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 107, 0, 0.07);
}
.sc {
  padding: clamp(36px, 6vw, 90px) var(--pad);
}
.sc:first-child {
  border-right: 1px solid rgba(255, 107, 0, 0.07);
}
.sc-tag {
  font-family: var(--m2);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 16px;
}
.sc-h {
  font-family: var(--m2);
  font-size: clamp(20px, 3.2vw, 36px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.sc-h em {
  font-style: normal;
  color: var(--or);
}
.sc-p {
  font-size: 13px;
  color: var(--txd);
  line-height: 1.9;
  margin-bottom: 16px;
}

.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feat {
  background: rgba(255, 107, 0, 0.04);
  border: 1px solid rgba(255, 107, 0, 0.1);
  padding: 16px;
  border-radius: 2px;
  transition: border-color 0.25s;
}
.feat:hover {
  border-color: rgba(255, 107, 0, 0.3);
}
.f-lbl {
  font-family: var(--m2);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 6px;
}
.f-txt {
  font-size: 11.5px;
  color: var(--txd);
  line-height: 1.7;
}

/*===================================================
  SECURITY STRIP
===================================================*/
.sec-strip {
  position: relative;
  z-index: 1;
  background: rgba(255, 107, 0, 0.04);
  border-top: 1px solid rgba(255, 107, 0, 0.1);
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
  padding: 22px var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 4vw, 52px);
  flex-wrap: wrap;
}
.sb {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sb-ico {
  font-size: 18px;
}
.sb-txt {
  font-family: var(--m2);
  font-size: 9.5px;
  letter-spacing: 1.5px;
  color: var(--txd);
  text-transform: uppercase;
}
.sb-txt strong {
  display: block;
  color: var(--tx);
  font-size: 10.5px;
}

/*===================================================
  FOOTER
===================================================*/
footer {
  position: relative;
  z-index: 1;
  background: var(--dkr);
  border-top: 1px solid rgba(255, 107, 0, 0.15);
  padding: clamp(36px, 5.5vw, 70px) var(--pad) 28px;
}
.f-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.f-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--txd);
  transition: all 0.2s;
}

.f-icon svg {
  width: 18px;
  height: 18px;
}

.f-icon:hover {
  border-color: var(--or);
  color: var(--or);
  transform: translateY(-2px);
}
.fg {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(28px, 4.5vw, 64px);
  max-width: 1300px;
  margin: 0 auto 44px;
}
.fb-n {
  font-family: var(--m2);
  font-size: 22px;
  color: var(--or);
  letter-spacing: 5px;
  margin-bottom: 10px;
}
.fb-i {
  font-size: 11.5px;
  color: var(--txd);
  line-height: 1.9;
}
.fct {
  font-family: var(--m2);
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 16px;
}
.fl {
  list-style: none;
}
.fl li {
  margin-bottom: 9px;
}
.fl a {
  font-size: 12px;
  color: var(--txd);
  text-decoration: none;
  transition: color 0.2s;
}
.fl a:hover {
  color: var(--or);
}
.fbot {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 107, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.fcpy {
  font-family: var(--m2);
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--txd);
}
.fcpy span {
  color: var(--or);
}
.fsoc {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.fsoc a {
  font-family: var(--m2);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--txd);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 2px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.fsoc a:hover {
  border-color: var(--or);
  color: var(--or);
}

/*===================================================
  RESPONSIVE BREAKPOINTS
===================================================*/
/* hide labels at 1100px */
@media (max-width: 1100px) {
  nav.desk a {
    font-size: 9px;
    padding: 5px 8px;
    letter-spacing: 1px;
  }
  .ju-lbl,
  .bt-lbl {
    display: none;
  }
}
/* tablet: 860px */
@media (max-width: 860px) {
  nav.desk {
    display: none;
  }
  .burger {
    display: flex;
  }
  .cgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .drive-wrap {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .sc:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255, 107, 0, 0.07);
  }
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .si:nth-child(2) {
    border-right: none;
  }
  .si:nth-child(3) {
    border-right: 1px solid rgba(255, 107, 0, 0.07);
  }
  .fg {
    grid-template-columns: 1fr 1fr;
  }
}
/* mobile: 560px */
@media (max-width: 560px) {
  :root {
    --hh: 60px;
  }
  .ju-box,
  .bt-box {
    width: 38px;
    height: 38px;
  }
  .ju-t {
    font-size: 12px;
  }
  .cgrid {
    grid-template-columns: 1fr;
  }
  .feat-grid {
    grid-template-columns: 1fr;
  }
  .hcta {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-p,
  .btn-o {
    text-align: center;
    width: 100%;
  }
  .fg {
    grid-template-columns: 1fr;
  }
  .sec-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .fbot {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* tiny: 360px */
@media (max-width: 360px) {
  header {
    padding: 0 10px;
    gap: 6px;
  }
  nav.mob a {
    font-size: 16px;
    letter-spacing: 3px;
  }
}
