/* ═══════════════════════════════════════════════════════════
   WEB BOOSTIFY — MASTER STYLESHEET  v2.0
   index.html + about.html  |  Single source of truth
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════
   WEB BOOSTIFY — MASTER STYLESHEET
   Covers: index.html + about.html
   ═══════════════════════════════════════ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #030305;
  --bg2: #07070c;
  --bg3: #0d0d14;
  --bg4: #121219;
  --green: #6ee530;
  --green2: #8ff54a;
  --green3: #50c018;
  --glow: rgba(110, 229, 48, 0.18);
  --glow-sm: rgba(110, 229, 48, 0.08);
  --glow-xs: rgba(110, 229, 48, 0.04);
  --white: #f0f0f4;
  --grey: #8a8a9a;
  --dim: #3a3a4a;
  --border: rgba(255, 255, 255, 0.06);
  --border-g: rgba(110, 229, 48, 0.22);
  --ff-d: "Bebas Neue", sans-serif;
  --ff-h: "Syne", sans-serif;
  --ff-b: "Inter", sans-serif;
  --ff-s: "Cormorant Garamond", serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--ff-b);
  overflow-x: hidden;
  cursor: none;
}
::-webkit-scrollbar {
  width: 3px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--green3);
}
#cur-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
#cur-ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(110, 229, 48, 0.45);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s,
    background 0.3s;
}
body.chov #cur-ring {
  width: 54px;
  height: 54px;
  border-color: var(--green);
  background: var(--glow-sm);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  opacity: 0.25;
  pointer-events: none;
  z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
}
#prog {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--green3),
    var(--green),
    var(--green2)
  );
  z-index: 9999;
  width: 0%;
}

/* ═══════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fu {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes su {
  from {
    transform: translateY(105%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}
@keyframes scan {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes mq {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes of1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, -40px);
  }
}
@keyframes of2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(25px, 35px);
  }
}
@keyframes ringPulse {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 20px rgba(110, 229, 48, 0.1);
  }
}
@keyframes ringExpand {
  0%,
  100% {
    opacity: 0.15;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.03);
  }
}
@keyframes orbit1 {
  0% {
    top: calc(50% - 130px);
    left: 50%;
    transform: translateX(-50%);
  }
  25% {
    top: 50%;
    left: calc(50% + 130px);
    transform: translateY(-50%);
  }
  50% {
    top: calc(50% + 130px);
    left: 50%;
    transform: translateX(-50%);
  }
  75% {
    top: 50%;
    left: calc(50% - 130px);
    transform: translateY(-50%);
  }
  100% {
    top: calc(50% - 130px);
    left: 50%;
    transform: translateX(-50%);
  }
}
@keyframes orbit2 {
  0% {
    top: 50%;
    left: calc(50% + 160px);
    transform: translateY(-50%);
  }
  25% {
    top: calc(50% + 160px);
    left: 50%;
    transform: translateX(-50%);
  }
  50% {
    top: 50%;
    left: calc(50% - 160px);
    transform: translateY(-50%);
  }
  75% {
    top: calc(50% - 160px);
    left: 50%;
    transform: translateX(-50%);
  }
  100% {
    top: 50%;
    left: calc(50% + 160px);
    transform: translateY(-50%);
  }
}
@keyframes orbit3 {
  0% {
    top: calc(50% + 175px);
    left: 50%;
    transform: translateX(-50%);
  }
  25% {
    top: 50%;
    left: calc(50% - 175px);
    transform: translateY(-50%);
  }
  50% {
    top: calc(50% - 175px);
    left: 50%;
    transform: translateX(-50%);
  }
  75% {
    top: 50%;
    left: calc(50% + 175px);
    transform: translateY(-50%);
  }
  100% {
    top: calc(50% + 175px);
    left: 50%;
    transform: translateX(-50%);
  }
}
@keyframes chipFloat1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes chipFloat2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}
@keyframes g1 {
  0%,
  100% {
    transform: translateX(-3px);
  }
  50% {
    transform: translateX(3px);
  }
}
@keyframes g2 {
  0%,
  100% {
    transform: translateX(3px);
  }
  50% {
    transform: translateX(-3px);
  }
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 76px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.5s,
    border-bottom 0.5s;
}
header.sc {
  background: rgba(3, 3, 5, 0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.logo-img {
  height: 42px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
nav a {
  font-family: var(--ff-h);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green);
  transition: width 0.4s;
}
nav a:hover {
  color: var(--white);
}
nav a:hover::after {
  width: 100%;
}
.ncta {
  padding: 11px 26px;
  border: 1.5px solid var(--green);
  background: transparent;
  color: var(--green) !important;
  position: relative;
  overflow: hidden;
}
.ncta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: translateX(-101%);
  transition: transform 0.35s;
}
.ncta:hover {
  color: var(--bg) !important;
}
.ncta:hover::before {
  transform: none;
}
.ncta span {
  position: relative;
  z-index: 1;
}

/* ── HAMBURGER BUTTON ── */
#menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: 1px solid rgba(110, 229, 48, 0.25);
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  gap: 5px;
  transition: border-color 0.3s;
}
#menu-btn:hover {
  border-color: var(--green);
}
.mb {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  transition:
    transform 0.35s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.3s,
    background 0.3s;
}
#menu-btn.open .mb {
  background: var(--green);
}
#menu-btn.open .mb:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
#menu-btn.open .mb:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}
#menu-btn.open .mb:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── SIDE DRAWER ── */
#drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 1000;
  pointer-events: none;
  transition: background 0.4s;
}
#drawer-overlay.open {
  background: rgba(0, 0, 0, 0.65);
  pointer-events: all;
}
#mob-nav {
  position: fixed;
  top: 0;
  right: -340px;
  width: 300px;
  height: 100vh;
  background: var(--bg2);
  z-index: 1001;
  display: flex !important;
  flex-direction: column;
  padding: 80px 36px 44px;
  transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid rgba(110, 229, 48, 0.15);
  overflow-y: auto;
}
#mob-nav.open {
  right: 0;
}
#mob-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--green), transparent);
}
.mn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(110, 229, 48, 0.2);
  color: var(--green);
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    border-color 0.3s;
  font-family: var(--ff-h);
}
.mn-close:hover {
  background: rgba(110, 229, 48, 0.1);
  border-color: var(--green);
}
.mn-eyebrow {
  font-family: var(--ff-h);
  font-size: 0.55rem;
  letter-spacing: 4px;
  color: var(--green);
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: 0.6;
}
.mn-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mn-link {
  font-family: var(--ff-d);
  font-size: 2.4rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    color 0.25s,
    padding-left 0.25s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1;
}
.mn-link:last-child {
  border-bottom: none;
}
.mn-link .mn-arr {
  font-size: 0.9rem;
  opacity: 0;
  transform: translate(-4px, 4px);
  transition:
    opacity 0.25s,
    transform 0.25s;
  color: var(--green);
}
.mn-link:hover {
  color: var(--green);
  padding-left: 6px;
}
.mn-link:hover .mn-arr {
  opacity: 1;
  transform: none;
}
.mn-cta-wrap {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(110, 229, 48, 0.15);
}
.mn-cta-wrap .ncta {
  display: flex !important;
  width: 100%;
  justify-content: center;
  padding: 15px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-align: center;
}
.mn-footer {
  margin-top: 16px;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}

/* BUTTONS */
.btn-g {
  display: inline-block;
  font-family: var(--ff-h);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 42px;
  background: var(--green);
  color: var(--bg);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.btn-g::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green2);
  transform: translateX(-101%);
  transition: transform 0.35s;
}
.btn-g:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(110, 229, 48, 0.25);
}
.btn-g:hover::before {
  transform: none;
}
.btn-g span {
  position: relative;
  z-index: 1;
}
.btn-o {
  display: inline-block;
  font-family: var(--ff-h);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 42px;
  border: 1.5px solid var(--border-g);
  color: var(--green);
  text-decoration: none;
  transition: all 0.3s;
}
.btn-o:hover {
  border-color: var(--green);
  background: var(--glow-sm);
  transform: translateY(-3px);
}

/* HERO */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 76px 60px 60px;
  position: relative;
  overflow: hidden;
}
.hgl {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 20%,
    transparent 100%
  );
}
.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.o1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(110, 229, 48, 0.1) 0%,
    transparent 65%
  );
  top: -200px;
  right: -200px;
  animation: of1 9s ease-in-out infinite;
}
.o2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 180, 100, 0.07) 0%,
    transparent 65%
  );
  bottom: -100px;
  left: -150px;
  animation: of2 11s ease-in-out infinite;
}
.o3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(110, 229, 48, 0.05) 0%,
    transparent 65%
  );
  top: 45%;
  left: 45%;
  animation: of1 7s ease-in-out infinite reverse;
}

.hcontent {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}
.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 10px;
  border: 1px solid var(--border-g);
  background: var(--glow-xs);
  margin-bottom: 32px;
  opacity: 0;
  animation: fu 0.7s 0.3s forwards;
}
.hbdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
.hbadge span {
  font-family: var(--ff-h);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
}

.hh1 {
  font-family: var(--ff-d);
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: 0.92;
  letter-spacing: 1px;
  margin-bottom: 26px;
}
.hh1 .hl {
  overflow: hidden;
  display: block;
}
.hh1 .hl span {
  display: block;
  transform: translateY(105%);
  animation: su 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hh1 .hl:nth-child(1) span {
  animation-delay: 0.45s;
}
.hh1 .hl:nth-child(2) span {
  animation-delay: 0.6s;
}
.hh1 .hl:nth-child(3) span {
  animation-delay: 0.75s;
}
.hh1 .g {
  color: var(--green);
  position: relative;
  display: inline-block;
}
.hh1 .g::after {
  content: attr(data-t);
  position: absolute;
  left: 0;
  top: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--green3);
  opacity: 0.3;
}
.hh1 .ol {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.14);
}
.hdesc {
  max-width: 500px;
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 44px;
  opacity: 0;
  animation: fu 0.8s 1s forwards;
}
.hacts {
  display: flex;
  align-items: center;
  gap: 22px;
  opacity: 0;
  animation: fu 0.8s 1.15s forwards;
}
.hstats {
  display: none;
}
.hst {
  text-align: right;
}
.hst-n {
  font-family: var(--ff-d);
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 1px;
}
.hst-n .n {
  color: var(--green);
}
.hst-l {
  font-family: var(--ff-h);
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 2px;
}
.hscroll {
  position: absolute;
  bottom: 46px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fu 0.8s 1.6s forwards;
}
.hscroll span {
  font-family: var(--ff-h);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
}
.sla {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--green), transparent);
  overflow: hidden;
  position: relative;
}
.sla::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scan 2.5s 2s infinite;
}

/* STATS STRIP */
.stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  max-width: 1600px;
  margin: 0 auto;
}
.stat-cell {
  padding: 44px 48px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.stat-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}
.stat-cell:hover .stat-num-val {
  color: var(--green);
}
.stat-num-val {
  font-family: var(--ff-d);
  font-size: clamp(3rem, 4vw, 4.8rem);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--white);
  transition: color 0.3s;
}
.stat-suffix {
  color: var(--green);
  display: inline;
}
.stat-label-txt {
  font-family: var(--ff-h);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 8px;
}
.stat-bar {
  width: 32px;
  height: 2px;
  background: var(--green);
  margin-top: 10px;
  transition: width 0.4s;
}
.stat-cell:hover .stat-bar {
  width: 56px;
}
@media (max-width: 900px) {
  .stats-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  #creative-showcase > div > div {
    grid-template-columns: 1fr !important;
  }
  nav a:not(.ncta) {
    display: none;
  }
  #menu-btn {
    display: flex !important;
  }
  .pgrid {
    grid-template-columns: 1fr 1fr;
  }
  .ainner {
    grid-template-columns: 1fr;
  }
  .al {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .procgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hh1 {
    font-size: clamp(3.5rem, 8vw, 6rem);
  }
  .hstats {
    display: none;
  }
  .ftop {
    grid-template-columns: 1fr 1fr;
  }
  /* process spacing fix */
  .pstep {
    padding: 0 10px;
  }
  nav .ncta {
    display: none !important;
  }
  /* timeline collapses to single column — dot left, content right */
  .tl-item {
    grid-template-columns: 48px 1fr;
    gap: 0;
  }
  /* hide empty placeholder divs */
  .tl-empty-left,
  .tl-empty-right {
    display: none !important;
  }
  /* show ALL content in right slot */
  .tl-left-content,
  .tl-right-content {
    display: block !important;
    padding-left: 20px !important;
    padding-right: 0 !important;
    text-align: left !important;
    grid-column: 2;
    grid-row: 1;
  }
  /* center spine sits in col 1 */
  .tl-center {
    grid-column: 1;
    grid-row: 1;
    align-items: flex-start;
    padding-top: 2px;
  }
  /* move the vertical line to left */
  .tl-line {
    left: 20px;
    transform: none;
  }
  .tl-year {
    font-size: 0.75rem;
  }
}

@media (max-width: 500px) {
  .stats-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stat-cell {
    padding: 32px 24px;
  }
}

/* MARQUEE */
.mstrip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 18px 0;
  overflow: hidden;
}
.minner {
  display: flex;
  animation: mq 20s linear infinite;
  white-space: nowrap;
}
.mi {
  font-family: var(--ff-h);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 36px;
}
.mi:hover {
  color: var(--green);
}
.md {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}

/* ABOUT STRIP */
#about {
  background: var(--bg3);
}
.ainner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1600px;
  margin: 0 auto;
}
.al {
  padding: 90px 70px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ar {
  padding: 90px 70px;
  position: relative;
  overflow: hidden;
}
.ar::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(110, 229, 48, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--ff-h);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--green);
}
.atitle {
  font-family: var(--ff-d);
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
  margin-bottom: 22px;
}
.ap {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 30px;
}
.atags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-family: var(--ff-h);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 15px;
  border: 1px solid var(--border-g);
  color: var(--green);
  background: var(--glow-xs);
}
.ametrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 44px;
  margin-bottom: 36px;
}
.metric {
  border-left: 2px solid var(--green);
  padding-left: 18px;
}
.mn {
  font-family: var(--ff-d);
  font-size: 3rem;
  line-height: 1;
}
.mn .plus {
  color: var(--green);
}
.ml {
  font-family: var(--ff-h);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 4px;
}

/* SERVICES */
#services {
  background: var(--bg);
}
.sp {
  padding: 110px 60px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}
.stop {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 28px;
}
.stitle {
  font-family: var(--ff-d);
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 1;
}
.stitle .g {
  color: var(--green);
}
.section-title {
  font-family: var(--ff-d);
  font-size: clamp(2.8rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: 1px;
}
.section-title .g {
  color: var(--green);
}
.ssub {
  max-width: 340px;
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.75;
  font-weight: 300;
}
.sgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  background: var(--border);
  max-width: 1600px;
  margin: 0 auto;
}
.svc {
  background: var(--bg);
  padding: 40px 30px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: none;
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--glow-sm) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.svc::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.svc:hover {
  background: var(--bg3);
}
.svc:hover::before {
  opacity: 1;
}
.svc:hover::after {
  width: 100%;
}
.sn {
  font-family: var(--ff-s);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--green);
  opacity: 0.5;
  margin-bottom: 26px;
  display: block;
}
.sico {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: var(--green);
  opacity: 0.75;
  transition:
    opacity 0.3s,
    transform 0.4s;
}
.svc:hover .sico {
  opacity: 1;
  transform: scale(1.08) rotate(-5deg);
}
.sname {
  font-family: var(--ff-h);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 9px;
}
.stext {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.7;
  font-weight: 300;
}
.sarr {
  position: absolute;
  bottom: 20px;
  right: 22px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  color: var(--grey);
  transition: all 0.35s;
}
.svc:hover .sarr {
  background: var(--green);
  border-color: var(--green);
  color: var(--bg);
  transform: rotate(-45deg);
}

/* PORTFOLIO */
#portfolio {
  background: var(--bg2);
}
.ptop {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 20px;
}
.pfilts {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filt {
  font-family: var(--ff-h);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--grey);
  cursor: none;
  transition: all 0.3s;
}
.filt.on,
.filt:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--glow-xs);
}
.pgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  max-width: 1600px;
  margin: 0 auto;
}
.pi {
  position: relative;
  overflow: hidden;
  cursor: none;
}
.pi.wide {
  grid-column: span 2;
}
.pi.tall {
  grid-row: span 2;
}
.pthumb {
  width: 100%;
  height: 260px;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pi.tall .pthumb {
  height: 100%;
}
.pi.wide .pthumb {
  height: 280px;
}
.ptbg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.pi:hover .ptbg {
  transform: scale(1.06);
}
.tb1 {
  background: linear-gradient(135deg, #0a1a08 0%, #070d05 60%, #030305 100%);
}
.tb2 {
  background: linear-gradient(135deg, #0a0a1a 0%, #06060e 60%, #030305 100%);
}
.tb3 {
  background: linear-gradient(135deg, #1a0a0a 0%, #0e0606 60%, #030305 100%);
}
.tb4 {
  background: linear-gradient(135deg, #0a141a 0%, #050c10 60%, #030305 100%);
}
.tb5 {
  background: linear-gradient(135deg, #131a0a 0%, #0b1005 60%, #030305 100%);
}
.ptsvg {
  position: absolute;
  inset: 0;
  opacity: 0.12;
}
.pcat {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--ff-h);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--glow-sm);
  border: 1px solid var(--border-g);
  color: var(--green);
  padding: 5px 12px;
}
.pov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(3, 3, 5, 0.97) 0%,
    rgba(3, 3, 5, 0.5) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.pi:hover .pov {
  opacity: 1;
  transform: none;
}
.ptag {
  font-family: var(--ff-h);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 4px;
}
.pname {
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 700;
}
.parr {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(110, 229, 48, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  color: var(--green);
  font-size: 0.65rem;
  transition: background 0.3s;
}
.pi:hover .parr {
  background: var(--green);
  border-color: var(--green);
  color: var(--bg);
}

/* PROCESS */
#process {
  background: var(--bg);
}
.procgrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.procgrid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--border-g),
    transparent
  );
}
.pstep {
  padding: 0 18px;
  text-align: center;
  position: relative;
}
.pstep:not(:last-child)::after {
  content: "›";
  position: absolute;
  right: -12px;
  top: 16px;
  color: var(--green);
  opacity: 0.4;
  font-size: 1.6rem;
}
.snum {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1.5px solid var(--border-g);
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: var(--ff-d);
  font-size: 1.5rem;
  color: var(--green);
  transition: all 0.4s;
}
.pstep:hover .snum {
  background: var(--green);
  color: var(--bg);
  border-color: var(--green);
  box-shadow: 0 0 28px rgba(110, 229, 48, 0.3);
}
.stit {
  font-family: var(--ff-h);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.sdesc {
  font-size: 0.77rem;
  color: var(--grey);
  line-height: 1.6;
  font-weight: 300;
}

/* TESTIMONIALS */
#testi {
  background: var(--bg2);
  overflow: hidden;
  position: relative;
}
#testi::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}
.tinner {
  padding: 110px 60px 0;
  position: relative;
  z-index: 1;
}
.tscroll {
  padding: 50px 0 110px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.tscroll::before,
.tscroll::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}
.tscroll::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2), transparent);
}
.tscroll::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2), transparent);
}
.ttrack {
  display: flex;
  gap: 24px;
  animation: mq 38s linear infinite;
}
.tc {
  flex-shrink: 0;
  width: 440px;
  background: linear-gradient(145deg, var(--bg3) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  padding: 44px 38px 36px;
  position: relative;
  transition:
    border-color 0.4s,
    transform 0.4s,
    box-shadow 0.4s;
}
.tc:hover {
  border-color: var(--border-g);
  transform: translateY(-4px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px var(--border-g);
}
.tc-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.tc:hover .tc-glow {
  opacity: 1;
}
.tc::before {
  content: "\201C";
  font-family: var(--ff-s);
  font-size: 8rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.07;
  position: absolute;
  top: 4px;
  left: 14px;
  pointer-events: none;
}
.tstars {
  position: absolute;
  top: 28px;
  right: 24px;
  color: var(--green);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-shadow: 0 0 8px rgba(110, 229, 48, 0.4);
}
.ttext {
  font-family: var(--ff-s);
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  color: var(--white);
}
.tauthor {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

/* avatar - letter based */
.tav {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border-g);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg3);
  transition: border-color 0.3s;
}
.tc:hover .tav {
  border-color: var(--green);
}
.tav svg {
  display: block;
}
.tav-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--green);
  opacity: 0;
  transition: opacity 0.4s;
}
.tc:hover .tav-ring {
  opacity: 0.5;
}
.tinfo {
  flex: 1;
}
.tname {
  font-family: var(--ff-h);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}
.trole {
  font-size: 0.72rem;
  color: var(--grey);
  margin-top: 3px;
}
.tverified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--ff-h);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 6px;
}
.tverified svg {
  flex-shrink: 0;
}

/* PRICING */
#pricing {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#pricing::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(110, 229, 48, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.pgrid2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
  align-items: start;
  max-width: 1400px;
}

/* BASE CARD */
.pc {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 48px 40px 44px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s,
    border-color 0.4s;
  border-radius: 2px;
}
.pc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(110, 229, 48, 0.04) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.pc:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  border-color: rgba(110, 229, 48, 0.2);
}
.pc:hover::before {
  opacity: 1;
}

/* LEFT ACCENT LINE */
.pc-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--green),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.pc:hover .pc-accent {
  opacity: 1;
}

/* FEATURED CARD */
.pc.star {
  background: linear-gradient(
    160deg,
    #0e1a0a 0%,
    var(--bg2) 50%,
    var(--bg) 100%
  );
  border-color: rgba(110, 229, 48, 0.35);
  transform: none;
  box-shadow:
    0 0 0 1px rgba(110, 229, 48, 0.15),
    0 40px 80px rgba(0, 0, 0, 0.4);
}
.pc.star:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(110, 229, 48, 0.4),
    0 48px 100px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(110, 229, 48, 0.08);
}
.pc.star .pc-accent {
  opacity: 1;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--green2),
    var(--green),
    transparent
  );
  width: 3px;
}

/* POPULAR BADGE */
.pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-h);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: var(--green);
  color: var(--bg);
  padding: 6px 14px;
  margin-bottom: 28px;
}
.pc-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bg);
  animation: pulse 2s infinite;
}

/* TIER */
.ptier {
  font-family: var(--ff-h);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 22px;
}
.pc.star .ptier {
  color: var(--green);
}

/* PRICE BLOCK */
.pc-price-wrap {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}
.pprice {
  font-family: var(--ff-d);
  font-size: 5.5rem;
  line-height: 1;
  letter-spacing: -1px;
  color: var(--white);
}
.pc-price-meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 10px;
}
.pprice-sym {
  font-family: var(--ff-d);
  font-size: 2rem;
  color: var(--green);
  line-height: 1;
}
.pper {
  font-size: 0.75rem;
  color: var(--grey);
  letter-spacing: 1px;
  font-weight: 300;
}

/* DIVIDER */
.pdiv {
  height: 1px;
  background: linear-gradient(to right, var(--border-g), transparent);
  margin: 28px 0 26px;
}

/* FEATURE LIST */
.plist {
  list-style: none;
  margin-bottom: 40px;
}
.plist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--grey);
  padding: 10px 0;
  font-weight: 300;
  position: relative;
}
.plist li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.plist li .pcheck {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--border-g);
  background: var(--glow-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.pc:hover .plist li .pcheck {
  border-color: rgba(110, 229, 48, 0.4);
  background: var(--glow-sm);
}
.plist li .pcheck svg {
  color: var(--green);
}
.plist li.off {
  opacity: 0.28;
}
.plist li.off .pcheck {
  border-color: var(--border);
}
.plist li.off .pcheck svg {
  color: var(--dim);
}

/* CTA BUTTONS */
.pbtng {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 24px;
  background: var(--green);
  color: var(--bg);
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.2s,
    box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.pbtng::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green2);
  transform: translateX(-101%);
  transition: transform 0.35s;
}
.pbtng:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(110, 229, 48, 0.3);
}
.pbtng:hover::before {
  transform: none;
}
.pbtng span {
  position: relative;
  z-index: 1;
}
.pbtno {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-h);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 24px;
  border: 1.5px solid var(--border-g);
  color: var(--green);
  text-decoration: none;
  transition: all 0.3s;
}
.pbtno:hover {
  background: var(--glow-sm);
  border-color: var(--green);
  transform: translateY(-2px);
}

/* GLOW RING on featured */
.pc-ring {
  position: absolute;
  inset: -1px;
  border-radius: 2px;
  border: 1px solid rgba(110, 229, 48, 0.2);
  pointer-events: none;
  animation: ringPulse 3s ease-in-out infinite;
}

/* CTA */
#cta,
#ab-cta {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 120px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#cta .oc,
#ab-cta .oc {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(110, 229, 48, 0.07) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
#cta h2,
#ab-cta h2 {
  position: relative;
  z-index: 1;
  font-family: var(--ff-d);
  font-size: clamp(3.5rem, 8vw, 8rem);
  line-height: 0.95;
  margin-bottom: 26px;
  position: relative;
}
#cta h2 .g,
#ab-cta h2 .g {
  color: var(--green);
}
#cta p,
#ab-cta p {
  font-size: 0.96rem;
  color: var(--grey);
  max-width: 420px;
  margin: 0 auto 50px;
  line-height: 1.75;
  font-weight: 300;
  position: relative;
}
#cta .cas,
#ab-cta .cas,
.ab-cta-acts {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-ey {
  justify-content: center;
  margin-bottom: 28px;
}
.ccrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  padding-top: 38px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  position: relative;
}
.cci {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cci svg {
  color: var(--green);
}
.cci span {
  font-size: 0.86rem;
  color: var(--grey);
}
.cci a {
  font-size: 0.86rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}
.cci a:hover {
  color: var(--green);
}

/* FOOTER */
footer {
  background: var(--bg3);
  border-top: 1px solid var(--border);
}
.ftop {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding: 80px 60px 60px;
  max-width: 1600px;
  margin: 0 auto;
}
.fb .logo-img {
  height: 36px;
  margin-bottom: 18px;
}
.fb p {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.8;
  font-weight: 300;
  max-width: 270px;
  margin-bottom: 26px;
}
.fsocs {
  display: flex;
  gap: 10px;
}
.fsoc {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  text-decoration: none;
  font-family: var(--ff-h);
  font-size: 0.62rem;
  font-weight: 700;
  transition: all 0.3s;
}
.fsoc:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--glow-xs);
}
.fc h5 {
  font-family: var(--ff-h);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.fc ul {
  list-style: none;
}
.fc li {
  margin-bottom: 9px;
}
.fc a {
  font-size: 0.84rem;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fc a::before {
  content: "";
  width: 0;
  height: 1px;
  background: var(--green);
  transition: width 0.3s;
  flex-shrink: 0;
}
.fc a:hover {
  color: var(--green);
}
.fc a:hover::before {
  width: 10px;
}
.fnl {
  margin-top: 26px;
}
.fnl h5 {
  margin-bottom: 12px;
}
.nlf {
  display: flex;
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.nlf:focus-within {
  border-color: var(--border-g);
}
.nlf input {
  flex: 1;
  padding: 12px 14px;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--ff-b);
  font-size: 0.8rem;
  outline: none;
}
.nlf input::placeholder {
  color: var(--dim);
}
.nlf button {
  padding: 12px 20px;
  background: var(--green);
  border: none;
  color: var(--bg);
  font-family: var(--ff-h);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  cursor: none;
  transition: background 0.3s;
}
.nlf button:hover {
  background: var(--green2);
}
.fbot {
  border-top: 1px solid var(--border);
  padding: 22px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.fbot span {
  font-size: 0.76rem;
  color: var(--grey);
}
.fbot strong {
  color: var(--green);
}

/* CREATIVE SHOWCASE */
.cs-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cs-feat-icon {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-g);
  background: var(--glow-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  transition: background 0.3s;
}
.cs-feat:hover .cs-feat-icon {
  background: var(--glow-sm);
}

/* GLOBE RINGS */
.globe-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(110, 229, 48, 0.12);
}
.globe-ring-1 {
  width: 360px;
  height: 360px;
  animation: ringExpand 4s ease-in-out infinite;
}
.globe-ring-2 {
  width: 300px;
  height: 300px;
  animation: ringExpand 4s 1s ease-in-out infinite;
}
.globe-ring-3 {
  width: 240px;
  height: 240px;
  animation: ringExpand 4s 2s ease-in-out infinite;
}

/* ORBIT DOTS */
.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(110, 229, 48, 0.8);
}
.od-1 {
  animation: orbit1 6s linear infinite;
}
.od-2 {
  animation: orbit2 9s linear infinite;
}
.od-3 {
  animation: orbit3 12s linear infinite;
}

/* FLOATING CHIPS */
.float-chip {
  position: absolute;
  font-family: var(--ff-h);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(7, 7, 12, 0.9);
  border: 1px solid rgba(110, 229, 48, 0.3);
  color: var(--green);
  padding: 6px 12px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}
.fc-1 {
  top: 6%;
  left: -8%;
  animation: chipFloat1 5s ease-in-out infinite;
}
.fc-2 {
  top: 20%;
  right: -12%;
  animation: chipFloat2 6s ease-in-out infinite;
}
.fc-3 {
  bottom: 20%;
  left: -14%;
  animation: chipFloat1 7s 1s ease-in-out infinite;
}
.fc-4 {
  bottom: 6%;
  right: -10%;
  animation: chipFloat2 5s 2s ease-in-out infinite;
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s,
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv.show {
  opacity: 1;
  transform: none;
}
.rv-d1 {
  transition-delay: 0.1s;
}
.rv-d2 {
  transition-delay: 0.2s;
}
.rv-d3 {
  transition-delay: 0.3s;
}
.rv-d4 {
  transition-delay: 0.4s;
}
.rv-d5 {
  transition-delay: 0.5s;
}
.rv-l {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.8s,
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv-l.show {
  opacity: 1;
  transform: none;
}
.rv-r {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.8s,
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.rv-r.show {
  opacity: 1;
  transform: none;
}

/* ═══ HERO ═══ */
#ab-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 76px 60px 60px;
  position: relative;
  overflow: hidden;
}
.ab-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(
    ellipse 70% 80% at 40% 50%,
    black 20%,
    transparent 100%
  );
}
#ab-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}
.ab-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.ab-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(110, 229, 48, 0.09) 0%,
    transparent 65%
  );
  top: -200px;
  right: -150px;
  animation: of1 10s ease-in-out infinite;
}
.ab-orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(0, 180, 100, 0.06) 0%,
    transparent 65%
  );
  bottom: -100px;
  left: -100px;
  animation: of2 13s ease-in-out infinite;
}
.ab-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(110, 229, 48, 0.05) 0%,
    transparent 65%
  );
  top: 40%;
  left: 55%;
  animation: of1 8s ease-in-out infinite reverse;
}
.ab-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.ab-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 10px;
  border: 1px solid var(--border-g);
  background: var(--glow-xs);
  margin-bottom: 32px;
  opacity: 0;
  animation: fu 0.7s 0.3s forwards;
}
.ab-bdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
.ab-badge span {
  font-family: var(--ff-h);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
}
.ab-h1 {
  font-family: var(--ff-d);
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: 0.9;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.ab-h1 .hl {
  overflow: hidden;
  display: block;
}
.ab-h1 .hl span {
  display: block;
  transform: translateY(105%);
  animation: su 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.ab-h1 .hl:nth-child(1) span {
  animation-delay: 0.4s;
}
.ab-h1 .hl:nth-child(2) span {
  animation-delay: 0.55s;
}
.ab-h1 .hl:nth-child(3) span {
  animation-delay: 0.7s;
}
.ab-h1 .g {
  color: var(--green);
  position: relative;
  display: inline-block;
}
.ab-h1 .g::after {
  content: attr(data-t);
  position: absolute;
  left: 0;
  top: 0;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--green3);
  opacity: 0.3;
}
.ab-h1 .ol {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.14);
}
.ab-desc {
  max-width: 520px;
  font-size: 1rem;
  color: var(--grey);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 44px;
  opacity: 0;
  animation: fu 0.8s 1s forwards;
}
.ab-acts {
  display: flex;
  align-items: center;
  gap: 22px;
  opacity: 0;
  animation: fu 0.8s 1.2s forwards;
}
.ab-scroll {
  position: absolute;
  bottom: 46px;
  left: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fu 0.8s 1.7s forwards;
}
.ab-scroll span {
  font-family: var(--ff-h);
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--grey);
}

/* hero right SVG panel */
.ab-hero-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.ab-hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 40%);
  z-index: 2;
}
.ab-hero-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.ab-hero-lines svg {
  width: 100%;
  height: 100%;
  opacity: 0.18;
}

/* glitch */
.glitch {
  position: relative;
}
.glitch.glitching::before,
.glitch.glitching::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-family: var(--ff-d);
}
.glitch.glitching::before {
  clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
  animation: g1 0.15s linear;
}
.glitch.glitching::after {
  clip-path: polygon(0 55%, 100% 55%, 100% 75%, 0 75%);
  animation: g2 0.15s linear;
}

/* ═══ STATS ═══ */
.ab-stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ab-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1600px;
  margin: 0 auto;
}
.ab-stat-cell {
  padding: 48px 52px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: background 0.3s;
}
.ab-stat-cell:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}
.ab-stat-cell:hover {
  background: var(--bg3);
}
.ab-stat-num {
  font-family: var(--ff-d);
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--white);
  transition: color 0.3s;
}
.ab-stat-cell:hover .ab-stat-num {
  color: var(--green);
}
.ab-stat-label {
  font-family: var(--ff-h);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 8px;
}
.ab-stat-bar {
  width: 32px;
  height: 2px;
  background: var(--green);
  margin-top: 10px;
  transition: width 0.4s;
}
.ab-stat-cell:hover .ab-stat-bar {
  width: 56px;
}

/* ═══ STORY / MISSION ═══ */
#story {
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}
#story::before {
  content: "";
  position: absolute;
  top: -300px;
  right: -200px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(110, 229, 48, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1600px;
  margin: 0 auto;
}
.story-left {
  padding: 100px 70px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.story-right {
  padding: 100px 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 28px;
}
.story-heading {
  font-family: var(--ff-d);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 28px;
}
.story-heading .g {
  color: var(--green);
}
.story-body {
  font-size: 0.93rem;
  color: var(--grey);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 18px;
}
.story-body strong {
  color: var(--white);
  font-weight: 500;
}
.story-body em {
  color: var(--green);
  font-style: normal;
}
.story-quote {
  border-left: 2px solid var(--green);
  padding: 20px 28px;
  background: var(--glow-xs);
  margin: 28px 0;
}
.story-quote p {
  font-family: var(--ff-s);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--white);
}
.story-quote cite {
  font-family: var(--ff-h);
  font-size: 0.58rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  margin-top: 10px;
  display: block;
}

/* chapter cards for right column */
.chapter-card {
  padding: 28px 32px;
  background: linear-gradient(145deg, var(--bg4) 0%, var(--bg2) 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s;
}
.chapter-card:hover {
  border-color: var(--border-g);
}
.chapter-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--green),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.chapter-card:hover::before {
  opacity: 1;
}
.chapter-card-num {
  font-family: var(--ff-s);
  font-size: 0.78rem;
  font-style: italic;
  color: var(--green);
  opacity: 0.5;
  display: block;
  margin-bottom: 8px;
}
.chapter-card-title {
  font-family: var(--ff-h);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.chapter-card p {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.75;
  font-weight: 300;
}
.chapter-card p strong {
  color: var(--white);
  font-weight: 500;
}

/* ═══ VALUES ═══ */
#values {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
#values::before {
  content: "";
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(110, 229, 48, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.values-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
  flex-wrap: wrap;
  gap: 24px;
}
.values-sub {
  max-width: 360px;
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.75;
  font-weight: 300;
}
.val-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.val-card {
  background: var(--bg);
  padding: 44px 36px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: none;
}
.val-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--glow-sm) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.val-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.val-card:hover {
  background: var(--bg3);
}
.val-card:hover::before {
  opacity: 1;
}
.val-card:hover::after {
  width: 100%;
}
.val-num {
  font-family: var(--ff-s);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--green);
  opacity: 0.45;
  display: block;
  margin-bottom: 28px;
}
.val-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--green);
  opacity: 0.7;
  transition:
    opacity 0.3s,
    transform 0.4s;
}
.val-card:hover .val-icon {
  opacity: 1;
  transform: scale(1.1) rotate(-6deg);
}
.val-name {
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.val-text {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.75;
  font-weight: 300;
}
.val-arr {
  position: absolute;
  bottom: 22px;
  right: 24px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--grey);
  transition: all 0.35s;
}
.val-card:hover .val-arr {
  background: var(--green);
  border-color: var(--green);
  color: var(--bg);
  transform: rotate(-45deg);
}

/* ═══ TEAM ═══ */
#team {
  background: var(--bg2);
  position: relative;
}
#team::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
  pointer-events: none;
}
.team-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.tm-card {
  background: linear-gradient(160deg, var(--bg3) 0%, var(--bg) 100%);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  transition:
    border-color 0.4s,
    transform 0.4s,
    box-shadow 0.4s;
  cursor: none;
}
.tm-card:hover {
  border-color: var(--border-g);
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--border-g);
}
.tm-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.tm-card:hover .tm-glow {
  opacity: 1;
}
.tm-avatar {
  width: 100%;
  height: 220px;
  background: var(--bg3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tm-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 80%,
    rgba(110, 229, 48, 0.08),
    transparent 70%
  );
}
.tm-monogram {
  font-family: var(--ff-d);
  font-size: 5rem;
  color: rgba(110, 229, 48, 0.2);
  line-height: 1;
  letter-spacing: 2px;
  transition: color 0.4s;
}
.tm-card:hover .tm-monogram {
  color: rgba(110, 229, 48, 0.35);
}
.tm-role-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--ff-h);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--glow-sm);
  border: 1px solid var(--border-g);
  color: var(--green);
  padding: 4px 10px;
}
.tm-body {
  padding: 28px 26px 24px;
}
.tm-name {
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.tm-role {
  font-size: 0.76rem;
  color: var(--grey);
  margin-bottom: 14px;
}
.tm-bio {
  font-size: 0.8rem;
  color: var(--dim);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 18px;
}
.tm-socials {
  display: flex;
  gap: 8px;
}
.tm-soc {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-family: var(--ff-h);
  font-size: 0.55rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}
.tm-soc:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--glow-xs);
}

/* ═══ TIMELINE — DESKTOP 2-COLUMN ═══ */
#timeline {
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}
#timeline::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(110, 229, 48, 0.04),
    transparent 65%
  );
  pointer-events: none;
}
.tl-top {
  text-align: center;
  margin-bottom: 80px;
}
.tl-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* the vertical spine */
.tl-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(110, 229, 48, 0.12);
}
.tl-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--green) 5%,
    var(--green) 95%,
    transparent 100%
  );
  transition: height 0.1s linear;
}

/* each row */
.tl-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: start;
  margin-bottom: 64px;
  position: relative;
}
.tl-item:last-child {
  margin-bottom: 0;
}

/* left-side content (odd items) */
.tl-left-content {
  padding-right: 44px;
  text-align: right;
}
.tl-right-content {
  padding-left: 44px;
  text-align: left;
}
.tl-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 6px;
}
.tl-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-g);
  background: var(--bg3);
  position: relative;
  z-index: 2;
  transition: all 0.4s;
  flex-shrink: 0;
}
.tl-item:hover .tl-dot {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(110, 229, 48, 0.5);
}
.tl-year {
  font-family: var(--ff-d);
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: var(--green);
  opacity: 0.65;
  white-space: nowrap;
}
.tl-tag {
  display: inline-block;
  font-family: var(--ff-h);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--glow-xs);
  border: 1px solid var(--border-g);
  color: var(--green);
  padding: 4px 10px;
  margin-bottom: 10px;
}
.tl-title {
  font-family: var(--ff-h);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--white);
}
.tl-desc {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.75;
  font-weight: 300;
}
.tl-desc strong {
  color: var(--white);
  font-weight: 500;
}

/* ═══ AWARDS ═══ */
#awards {
  background: var(--bg);
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 60px;
}
.award-card {
  background: var(--bg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: none;
}
.award-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.5s;
}
.award-card:hover {
  background: var(--bg3);
}
.award-card:hover::after {
  width: 100%;
}
.award-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-g);
  background: var(--glow-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: background 0.3s;
}
.award-card:hover .award-icon {
  background: var(--glow-sm);
}
.award-year {
  font-family: var(--ff-h);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.7;
}
.award-name {
  font-family: var(--ff-h);
  font-size: 0.88rem;
  font-weight: 700;
}
.award-org {
  font-size: 0.78rem;
  color: var(--grey);
  font-weight: 300;
}

/* ══ RESPONSIVE ══ */
@media (min-width: 1400px) {
  .pc {
    padding: 40px 32px 36px;
  }
  .pprice {
    font-size: 4.5rem;
  }
}

@media (max-width: 1380px) {
  header {
    padding: 0 36px;
  }
  #hero {
    padding: 76px 36px 60px;
  }
  .sp {
    padding: 90px 36px;
  }
  #cta,
  .ftop {
    padding: 70px 36px 50px;
  }
  .fbot {
    padding: 20px 36px;
  }
  .tinner {
    padding: 90px 36px 0;
  }
  .al {
    padding: 70px 44px;
  }
  .ar {
    padding: 70px 44px;
  }
  #creative-showcase {
    padding: 90px 36px !important;
  }
  #ab-hero {
    padding: 76px 36px 60px;
  }
  .story-left,
  .story-right {
    padding: 80px 50px;
  }
}

@media (max-width: 1200px) {
  .sgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ftop {
    grid-template-columns: 1fr 1fr;
  }
  .pgrid2 {
    grid-template-columns: 1fr 1fr;
  }
  .procgrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .globe-wrap {
    width: 320px !important;
    height: 320px !important;
  }
  #globe-canvas {
    width: 320px !important;
    height: 320px !important;
  }
  .globe-ring-1 {
    width: 320px;
    height: 320px;
  }
  .globe-ring-2 {
    width: 260px;
    height: 260px;
  }
  .globe-ring-3 {
    width: 200px;
    height: 200px;
  }
  .val-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-inner {
    grid-template-columns: 1fr;
  }
  .story-left {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .ab-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .tl-wrapper {
    max-width: 780px;
  }
}

@media (max-width: 1000px) {
  .hh1 {
    font-size: clamp(5rem, 8vw, 8rem);
  }
  .cs-inner {
    gap: 40px !important;
  }
}

@media (max-width: 768px) {
  .pgrid2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  header {
    padding: 0 20px;
  }
  #hero {
    padding: 80px 20px 60px;
    min-height: 100svh;
  }
  .hh1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }
  .hdesc {
    font-size: 0.88rem;
    max-width: 100%;
  }
  .hacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .btn-g,
  .btn-o {
    padding: 13px 28px;
    font-size: 0.72rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .hscroll {
    display: none;
  }
  .sp {
    padding: 70px 20px;
  }
  #cta,
  .sgrid {
    grid-template-columns: 1fr;
  }
  .pgrid {
    grid-template-columns: 1fr;
  }
  .pi.wide,
  .pi.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .pgrid2 {
    grid-template-columns: 1fr;
  }
  /* Process – 2 cols on mobile, with proper spacing */
  .procgrid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
  }
  .procgrid::before {
    display: none;
  }
  .pstep {
    padding: 0;
    text-align: center;
  }
  .pstep:not(:last-child)::after {
    display: none;
  }
  .snum {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .stit {
    font-size: 0.75rem;
    margin-bottom: 6px;
  }
  .sdesc {
    font-size: 0.72rem;
    line-height: 1.5;
  }
  /* Craftsmanship / Globe */
  .fc-1,
  .fc-2,
  .fc-3,
  .fc-4 {
    display: none !important;
  }
  .cs-section {
    padding: 70px 20px !important;
  }
  .cs-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .globe-wrap {
    width: 260px !important;
    height: 260px !important;
    margin: 0 auto;
  }
  #globe-canvas {
    width: 260px !important;
    height: 260px !important;
  }
  .globe-ring-1 {
    width: 260px;
    height: 260px;
  }
  .globe-ring-2 {
    width: 210px;
    height: 210px;
  }
  .globe-ring-3 {
    width: 160px;
    height: 160px;
  }
  .globe-ring,
  .orbit-dot {
    animation-play-state: paused;
  }
  .cs-feat {
    gap: 12px;
  }
  /* footer, layout */
  .ftop {
    grid-template-columns: 1fr;
    padding: 60px 20px 40px;
  }
  .fbot {
    flex-direction: column;
    text-align: center;
    padding: 18px 20px;
  }
  .al,
  .ar {
    padding: 56px 20px;
  }
  .stats-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stat-cell {
    padding: 28px 16px;
  }
  .stat-num-val {
    font-size: clamp(2rem, 7vw, 3rem);
  }
  .stat-label-txt {
    font-size: 0.58rem;
  }
  .tinner {
    padding: 70px 20px 0;
  }
  .tc {
    width: 300px;
    padding: 30px 22px 24px;
  }
  .ttext {
    font-size: 1rem;
  }
  .stitle {
    font-size: clamp(2rem, 9vw, 3.5rem);
  }
  .eyebrow {
    font-size: 0.6rem;
  }
  #cta h2,
  #ab-cta h2 {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }
  .ccrow {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-left: 0;
  }
  .pgrid2 .pc.star::before {
    font-size: 0.5rem;
    letter-spacing: 2px;
    padding: 7px 16px;
  }
  #ab-hero {
    padding: 80px 20px 60px;
  }
  .ab-h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }
  .ab-acts {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .ab-scroll {
    display: none;
  }
  .val-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .awards-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ab-stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .ab-stat-cell {
    padding: 30px 20px;
  }
  .ftop {
    grid-template-columns: 1fr;
    padding: 60px 20px 40px;
  }
  .story-left,
  .story-right {
    padding: 56px 20px;
  }
  .section-title {
    font-size: clamp(2.2rem, 9vw, 4rem);
  }
  #ab-cta h2 {
    font-size: clamp(2.2rem, 10vw, 4rem);
  }
  .ab-hero-right {
    display: none;
  }
}

@media (max-width: 480px) {
  /* Process – single column on very small screens */
  .procgrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pstep {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
  }
  .snum {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    margin: 0;
  }
  .stit {
    margin-bottom: 4px;
  }
  .globe-wrap {
    width: 220px !important;
    height: 220px !important;
  }
  #globe-canvas {
    width: 220px !important;
    height: 220px !important;
  }
  .awards-grid {
    grid-template-columns: 1fr;
  }
  .ab-stat-cell:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 420px) {
  .hh1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }
  .stats-strip-inner {
    grid-template-columns: 1fr 1fr;
  }
  .tc {
    width: 270px;
  }
  nav {
    gap: 12px;
  }
  .logo-img {
    height: 34px;
  }
  .fbot span {
    font-size: 0.7rem;
  }
}
