/* ══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════ */
:root {
  --bg: #08080a;
  --bg2: #0e0e10;
  --bg3: #131316;
  --surface: #18181c;
  --surface2: #1e1e24;
  --border: rgba(255, 255, 255, 0.06);
  --border2: rgba(255, 255, 255, 0.11);
  --gold: #f5a623;
  --orange: #e8621a;
  --red: #c0392b;
  --grad: linear-gradient(135deg, #f5a623 0%, #e8621a 50%, #c0392b 100%);
  --grad-t: linear-gradient(90deg, #f5a623, #e8621a, #c0392b);
  --text: #f0efe8;
  --muted: #6a6860;
  --muted2: #9e9b92;
  --r: 14px;
  --rl: 22px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t: 0.5s var(--ease);
}

/* ══════════════════════════════════════════
   RESET
══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: auto;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
a {
  text-decoration: none !important;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
}
p {
  color: var(--muted2);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
  line-height: 1.1;
  font-weight: 700;
}
::selection {
  background: var(--orange);
  color: #fff;
}
::-webkit-scrollbar {
  width: 2px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 2px;
}

/* ══════════════════════════════════════════
   GRAIN OVERLAY
══════════════════════════════════════════ */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9000;
  opacity: 0.35;
  animation: grainAnim 0.15s steps(1) infinite;
}
@keyframes grainAnim {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-2px, 2px);
  }
  50% {
    transform: translate(2px, -2px);
  }
  75% {
    transform: translate(-1px, 3px);
  }
}

/* ══════════════════════════════════════════
   CURSOR
══════════════════════════════════════════ */
#cursor {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
  mix-blend-mode: difference;
}
#cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(232, 98, 26, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition:
    width 0.35s var(--ease),
    height 0.35s var(--ease);
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor {
  width: 20px;
  height: 20px;
  background: var(--gold);
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 58px;
  height: 58px;
}

/* ══════════════════════════════════════════
   SCROLL PROGRESS
══════════════════════════════════════════ */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--grad);
  z-index: 9999;
}

/* ══════════════════════════════════════════
   PRELOADER
══════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99000;
}
.loader-word {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 900;
  letter-spacing: -3px;
  display: block;
  overflow: hidden;
}
.loader-word span {
  display: block;
  background: var(--grad-t);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.loader-line {
  width: 200px;
  height: 1px;
  background: var(--border);
  margin-top: 32px;
  position: relative;
  overflow: hidden;
}
.loader-line-fill {
  position: absolute;
  inset: 0 100% 0 0;
  background: var(--grad);
}
.loader-count {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  letter-spacing: 2px;
}

/* ══════════════════════════════════════════
   LAYOUT UTILITIES
══════════════════════════════════════════ */
.section {
  padding: 120px 0;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
  .section {
    padding: 80px 0;
  }
}

/* ══════════════════════════════════════════
   TYPOGRAPHY UTILITIES
══════════════════════════════════════════ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.tag::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--orange);
}
.center .tag {
  justify-content: center;
}
.center .tag::before {
  display: none;
}
.center .tag::after {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--orange);
}

.s-title {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
  line-height: 1.08;
}
.s-title em {
  font-style: normal;
  background: var(--grad-t);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.s-sub {
  font-size: 16px;
  color: var(--muted2);
  max-width: 520px;
  line-height: 1.8;
  font-weight: 300;
}
.center {
  text-align: center;
}
.center .s-sub {
  margin: 0 auto;
}
.gt {
  background: var(--grad-t);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ══════════════════════════════════════════
   SCROLL ANIMATIONS (IntersectionObserver)
══════════════════════════════════════════ */
.sa {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}
.sa.fl {
  transform: translateX(-36px);
}
.sa.fr {
  transform: translateX(36px);
}
.sa.in {
  opacity: 1 !important;
  transform: none !important;
}
.sa.d1 {
  transition-delay: 0.08s;
}
.sa.d2 {
  transition-delay: 0.16s;
}
.sa.d3 {
  transition-delay: 0.24s;
}
.sa.d4 {
  transition-delay: 0.32s;
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn-grad {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--grad);
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  font-family: "Outfit", sans-serif;
  padding: 14px 28px;
  border-radius: 100px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: none;
}
.btn-grad::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(232, 98, 26, 0.45);
}
.btn-grad:hover::before {
  opacity: 1;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--grad);
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  font-family: "Outfit", sans-serif;
  padding: 15px 30px;
  border-radius: 100px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: none;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(232, 98, 26, 0.45);
}
.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 100px;
  cursor: none;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.25s;
}
.btn-secondary:hover {
  border-color: var(--orange);
  background: rgba(232, 98, 26, 0.06);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text) !important;
  font-weight: 500;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 100px;
  cursor: none;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.25s;
}
.btn-ghost:hover {
  border-color: var(--orange);
  background: rgba(232, 98, 26, 0.06);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    padding 0.4s var(--ease),
    background 0.4s,
    border-color 0.4s;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  padding: 14px 60px;
  background: rgba(8, 8, 10, 0.9);
  backdrop-filter: blur(22px) saturate(1.4);
  border-color: var(--border);
}
.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}
.nav-logo .logo-fallback {
  display: none;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 900;
  background: var(--grad-t);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
nav.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted2);
  padding: 8px 15px;
  border-radius: 8px;
  transition:
    color 0.25s,
    background 0.25s;
  letter-spacing: 0.2px;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--grad);
  color: #fff !important;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 100px;
  cursor: none;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.nav-cta a:hover {
  box-shadow: 0 8px 28px rgba(232, 98, 26, 0.4);
  transform: translateY(-1px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--t);
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  header {
    padding: 20px 24px;
  }
  header.scrolled {
    padding: 13px 24px;
  }
  .burger {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  nav.main-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 10, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 999;
  }
  nav.main-nav.open {
    display: flex;
  }
  nav.main-nav a {
    font-size: 22px;
    padding: 14px 40px;
  }
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 900px) {
  #hero {
    padding: 110px 24px 70px;
  }
}

.hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 52px 52px;
  mask-image: radial-gradient(
    ellipse 85% 90% at 50% 50%,
    #000 20%,
    transparent 100%
  );
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  pointer-events: none;
  animation: glowF 10s ease-in-out infinite;
}
.glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(232, 98, 26, 0.08);
  top: -150px;
  right: -80px;
}
.glow-2 {
  width: 400px;
  height: 400px;
  background: rgba(245, 166, 35, 0.05);
  bottom: -60px;
  left: -80px;
  animation-delay: -4s;
  animation-duration: 12s;
}
.glow-3 {
  width: 240px;
  height: 240px;
  background: rgba(192, 57, 43, 0.06);
  top: 40%;
  left: 38%;
  animation-delay: -7s;
}
@keyframes glowF {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
  }
  33% {
    transform: scale(1.15) translate(18px, -14px);
  }
  66% {
    transform: scale(0.9) translate(-10px, 18px);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-right {
    display: none;
  }
}

/* hero left */
.hero-left {
  max-width: 660px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(245, 166, 35, 0.07);
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 34px;
  opacity: 0;
  transform: translateY(20px); /* GSAP reveal */
}
.eyebrow-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: ePulse 2s ease-in-out infinite;
}
@keyframes ePulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.7);
  }
  50% {
    box-shadow: 0 0 0 5px rgba(245, 166, 35, 0);
  }
}

.hero-h1 {
  font-size: clamp(48px, 5.5vw, 90px);
  font-weight: 900;
  letter-spacing: -3.5px;
  line-height: 0.97;
  color: #fff;
  margin-bottom: 26px;
  /* start state for GSAP clip-reveal */
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}
.hero-h1 em {
  font-style: normal;
  background: var(--grad-t);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--muted2);
  line-height: 1.78;
  max-width: 480px;
  margin-bottom: 42px;
  opacity: 0;
  transform: translateY(22px);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 70px;
  opacity: 0;
  transform: translateY(22px);
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border2);
  padding-top: 36px;
  opacity: 0;
  transform: translateY(18px);
}
.hst {
  flex: 1;
  padding-right: 28px;
  border-right: 1px solid var(--border);
}
.hst:last-child {
  border: none;
  padding-right: 0;
  padding-left: 28px;
}
.hst:not(:first-child):not(:last-child) {
  padding: 0 28px;
}
.hst-n {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  background: var(--grad-t);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.hst-n-suf {
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
}
.hst-l {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* hero right — Three.js scene */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 580px;
  opacity: 0; /* GSAP reveal */
}
#three-canvas {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}
.float-chip {
  position: absolute;
  background: rgba(14, 14, 16, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  pointer-events: none;
  animation: chipF 4s ease-in-out infinite;
}
.float-chip .chip-val {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -1px;
  background: var(--grad-t);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.float-chip .chip-lbl {
  color: var(--muted);
  font-size: 11px;
  margin-top: 2px;
}
.chip-a {
  top: 14%;
  right: -10px;
  animation-delay: 0s;
}
.chip-b {
  bottom: 16%;
  left: -10px;
  animation-delay: -2.2s;
}
@keyframes chipF {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollD 1.8s ease-in-out infinite;
}
.scroll-text {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}
@keyframes scrollD {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ══════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════ */
.marq-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.018);
  padding: 20px 0;
  overflow: hidden;
}
.marq-track {
  display: flex;
  animation: marqRoll 40s linear infinite;
}
.marq-track:hover {
  animation-play-state: paused;
}
.marq-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 34px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.marq-sep {
  width: 3px;
  height: 3px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.6;
}
@keyframes marqRoll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════
   SERVICES — pinned horizontal scroll
══════════════════════════════════════════ */
#services {
  background: var(--bg2);
}

.svc-header {
  max-width: 1340px;
  margin: 0 auto;
  padding: 120px 60px 0;
}
@media (max-width: 768px) {
  .svc-header {
    padding: 80px 24px 0;
  }
}

.svc-track-outer {
  overflow: hidden;
  padding: 0 60px 80px;
}
@media (max-width: 768px) {
  .svc-track-outer {
    padding: 0 24px 60px;
  }
}

.svc-track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding: 56px 0;
}

.svc-slide {
  width: 340px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.4s,
    background 0.4s;
}
.svc-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.svc-slide:hover::before {
  transform: scaleX(1);
}
.svc-slide:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(232, 98, 26, 0.3);
}
.svc-slide-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.07);
  letter-spacing: 1px;
}
.svc-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: transform 0.35s var(--ease);
}
.svc-slide:hover .svc-icon-box {
  transform: scale(1.1) rotate(-5deg);
}
.si-a {
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold);
}
.si-b {
  background: rgba(232, 98, 26, 0.1);
  color: var(--orange);
}
.si-c {
  background: rgba(192, 57, 43, 0.1);
  color: var(--red);
}
.svc-slide h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 11px;
  letter-spacing: -0.4px;
}
.svc-slide p {
  font-size: 13.5px;
  color: var(--muted2);
  line-height: 1.75;
  font-weight: 300;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
#about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

.about-visual {
  position: relative;
}
.tilt-card {
  position: relative;
  border-radius: var(--rl);
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.55);
  transition: transform 0.15s linear;
}
.tilt-card img {
  width: 100%;
  border-radius: var(--rl);
  filter: brightness(0.85) contrast(1.05);
}
.tilt-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--rl);
  background: linear-gradient(
    135deg,
    rgba(245, 166, 35, 0.12),
    rgba(192, 57, 43, 0.1)
  );
  pointer-events: none;
}
.tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: var(--rl);
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.06),
    transparent 60%
  );
  pointer-events: none;
  transition: background 0.15s;
}
.afl {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 14px 18px;
}
.afl-1 {
  bottom: -16px;
  right: -16px;
}
.afl-2 {
  top: 20px;
  left: -18px;
  animation: aflF 4s ease-in-out infinite;
}
.afl-n {
  font-family: "Outfit", sans-serif;
  font-size: 26px;
  font-weight: 900;
  background: var(--grad-t);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.afl-l {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 1px;
}
@keyframes aflF {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.about-copy p {
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 18px;
  font-weight: 300;
}

.stat-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.stat-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 16px;
  text-align: center;
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.stat-chip:hover {
  border-color: rgba(232, 98, 26, 0.35);
  transform: translateY(-4px);
}
.chip-n {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  background: var(--grad-t);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.chip-l {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

/* ══════════════════════════════════════════
   PORTFOLIO — mosaic grid
══════════════════════════════════════════ */
#portfolio {
  background: var(--bg2);
}

.port-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
  margin-top: 56px;
}
.port-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: pointer;
}
.port-item.p1 {
  grid-column: span 8;
  grid-row: span 2;
}
.port-item.p2 {
  grid-column: span 4;
}
.port-item.p3 {
  grid-column: span 4;
}
.port-item.p4 {
  grid-column: span 4;
}
.port-item.p5 {
  grid-column: span 4;
}
.port-item.p6 {
  grid-column: span 4;
}

.pb1 {
  background: linear-gradient(140deg, #1c1108, #110a04);
}
.pb2 {
  background: linear-gradient(140deg, #080f18, #040810);
}
.pb3 {
  background: linear-gradient(140deg, #140608, #0c0304);
}
.pb4 {
  background: linear-gradient(140deg, #060e06, #030803);
}
.pb5 {
  background: linear-gradient(140deg, #080712, #040309);
}
.pb6 {
  background: linear-gradient(140deg, #131008, #0b0c04);
}

.port-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.65s var(--ease),
    filter 0.45s;
  filter: brightness(0.75) saturate(0.8);
  object-position: top;
}
.port-item:hover .port-img {
  transform: scale(1.07);
  filter: brightness(0.45) saturate(1.1);
}
.port-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 10, 0.96) 0%,
    rgba(8, 8, 10, 0.1) 55%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.38s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}
.port-item:hover .port-ov {
  opacity: 1;
}
.port-ov h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.port-ov span {
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.port-arr {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  opacity: 0;
  transform: translateY(-6px) scale(0.8);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.port-item:hover .port-arr {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.port-num {
  position: absolute;
  bottom: 14px;
  right: 18px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 1px;
  pointer-events: none;
}

@media (max-width: 900px) {
  .port-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 170px;
  }
  .port-item.p1 {
    grid-column: span 6;
    grid-row: span 1;
  }
  .port-item.p2,
  .port-item.p3 {
    grid-column: span 3;
  }
  .port-item.p4,
  .port-item.p5,
  .port-item.p6 {
    grid-column: span 2;
  }
}
@media (max-width: 560px) {
  .port-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .port-item.p1 {
    grid-column: span 2;
  }
  .port-item.p2,
  .port-item.p3,
  .port-item.p4,
  .port-item.p5,
  .port-item.p6 {
    grid-column: span 1;
  }
}

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
#process {
  background: var(--bg);
}

.proc-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 66px;
  position: relative;
}
.proc-row::before {
  content: "";
  position: absolute;
  top: 31px;
  left: calc(12.5% + 14px);
  right: calc(12.5% + 14px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange),
    var(--gold),
    var(--red),
    transparent
  );
  opacity: 0.22;
}
.proc-step {
  text-align: center;
  padding: 0 18px;
}
.proc-num {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid var(--border2);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-family: "JetBrains Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--orange);
  position: relative;
  z-index: 1;
  transition:
    background 0.35s,
    border-color 0.35s,
    transform 0.35s;
}
.proc-step:hover .proc-num {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1) translateY(-4px);
}
.proc-step h4 {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 9px;
  letter-spacing: -0.3px;
}
.proc-step p {
  font-size: 13.5px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .proc-row {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .proc-row::before {
    display: none;
  }
}

/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
#pricing {
  background: var(--bg2);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
  align-items: start;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 34px 28px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.4s,
    transform 0.4s;
}
.price-card:hover {
  border-color: rgba(232, 98, 26, 0.3);
  transform: translateY(-6px);
}
.price-card.featured {
  border-color: rgba(232, 98, 26, 0.3);
  background: linear-gradient(160deg, var(--surface), #1c1309);
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  transition: background 0.4s;
}
.price-card:hover::before,
.price-card.featured::before {
  background: var(--grad);
}
.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--grad);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.price-type {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.price-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}
.price-amount {
  font-size: 50px;
  font-weight: 900;
  background: var(--grad-t);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
  display: inline-block;
}
.price-cur {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  vertical-align: top;
  margin-top: 13px;
  display: inline-block;
}
.price-note {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 26px;
  margin-top: 5px;
}
.price-div {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--muted2);
  margin-bottom: 10px;
  font-weight: 300;
}
.price-list li .fa {
  color: var(--orange);
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}
.price-list li.off .fa {
  color: rgba(255, 255, 255, 0.13);
}
.price-list li.off {
  opacity: 0.38;
}
.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  font-family: "Outfit", sans-serif;
  margin-top: 22px;
  transition: var(--t);
  cursor: pointer;
  border: none;
}
.pbo {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text) !important;
}
.pbo:hover {
  border-color: var(--orange);
  color: var(--orange) !important;
}
.pbf {
  background: var(--grad);
  color: #fff !important;
}
.pbf:hover {
  box-shadow: 0 10px 30px rgba(232, 98, 26, 0.4);
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

/* ══════════════════════════════════════════
   HIRE (UPWORK)
══════════════════════════════════════════ */
#hire {
  background: var(--bg2);
  padding: 80px 0;
}
.hire-box {
  background: var(--surface);
  border: 1px solid rgba(232, 98, 26, 0.2);
  border-radius: var(--rl);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hire-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    rgba(232, 98, 26, 0.07),
    transparent 70%
  );
  pointer-events: none;
}
.hire-box h2 {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -1px;
  position: relative;
}
.hire-box > p {
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 34px;
  font-weight: 300;
  position: relative;
}
.hire-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  margin: 0 auto 13px;
  display: block;
  object-fit: cover;
  position: relative;
}
.hire-name {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  position: relative;
}
.hire-role {
  font-size: 13px;
  color: var(--muted2);
  margin-bottom: 26px;
  position: relative;
}
@media (max-width: 600px) {
  .hire-box {
    padding: 48px 26px;
  }
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
#contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-info > p {
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 34px;
  font-weight: 300;
}
.cmethod {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 17px 18px;
  margin-bottom: 12px;
  transition: border-color 0.3s;
}
.cmethod:hover {
  border-color: rgba(232, 98, 26, 0.3);
}
.cmethod-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.ci-a {
  background: rgba(245, 166, 35, 0.1);
  color: var(--gold);
}
.ci-b {
  background: rgba(232, 98, 26, 0.1);
  color: var(--orange);
}
.ci-c {
  background: rgba(192, 57, 43, 0.1);
  color: var(--red);
}
.cmethod-l {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cmethod-v {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  margin-top: 1px;
}
.cmap {
  margin-top: 22px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--border);
}
.cmap iframe {
  display: block;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.75);
}

.cform-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 42px 38px;
}
.cform-wrap h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}
.cform-wrap > p {
  margin-bottom: 28px;
}
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.fg {
  margin-bottom: 16px;
}
.flabel {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 7px;
}
.finput {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 15px;
  font-size: 14px;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s,
    box-shadow 0.25s;
}
.finput::placeholder {
  color: rgba(255, 255, 255, 0.16);
}
.finput:focus {
  border-color: rgba(232, 98, 26, 0.4);
  background: rgba(232, 98, 26, 0.03);
  box-shadow: 0 0 0 3px rgba(232, 98, 26, 0.1);
}
textarea.finput {
  resize: vertical;
  min-height: 110px;
}
.hp-field {
  display: none !important;
}
.fsubmit {
  width: 100%;
  padding: 14px;
  border-radius: 100px;
  background: var(--grad);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  margin-top: 4px;
}
.fsubmit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(232, 98, 26, 0.4);
}
@media (max-width: 600px) {
  .cform-wrap {
    padding: 26px 18px;
  }
  .frow {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 70px 0 34px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 52px;
}
@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

.foot-brand p {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.8;
  margin-top: 13px;
  max-width: 270px;
  font-weight: 300;
}
.foot-logo {
  height: 30px;
  width: auto;
}
.foot-social {
  display: flex;
  gap: 9px;
  margin-top: 20px;
}
.soc-link {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted2) !important;
  font-size: 13px;
  transition:
    border-color 0.25s,
    color 0.25s,
    background 0.25s;
}
.soc-link:hover {
  border-color: var(--orange);
  color: var(--orange) !important;
  background: rgba(232, 98, 26, 0.07);
}
.foot-col h5 {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.foot-col ul li {
  margin-bottom: 8px;
}
.foot-col ul li a {
  font-size: 13px;
  color: var(--muted2) !important;
  transition: color 0.2s;
  font-weight: 300;
}
.foot-col ul li a:hover {
  color: var(--text) !important;
}
.foot-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.foot-bottom p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  font-weight: 300;
}
.foot-bottom a {
  color: var(--orange) !important;
}

/* ══════════════════════════════════════════
   TOAST
══════════════════════════════════════════ */
.toast-msg {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 9001;
  padding: 15px 20px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 600;
  animation: toastIn 0.4s var(--ease) both;
  max-width: 300px;
}
.tok {
  background: linear-gradient(135deg, #f5a623, #e8621a);
  color: #fff;
  box-shadow: 0 10px 30px rgba(232, 98, 26, 0.4);
}
.terr {
  background: #c0392b;
  color: #fff;
  box-shadow: 0 10px 30px rgba(192, 57, 43, 0.4);
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ══════════════════════════════════════════
   Contract Card
══════════════════════════════════════════ */

.wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  z-index: 2;
}

.contract-card {
  width: 100%;
  max-width: 820px;
  background: rgba(24, 24, 28, 0.9);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 55px;
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.contract-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.18);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-val {
  margin-bottom: 0px !important;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
}

.title {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 14px;
}

.title span {
  background: var(--grad-t);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 42px;
  max-width: 580px;
}

.verify-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.verify-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.verify-head div {
  padding: 18px 24px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--orange);
}

.verify-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: 0.3s var(--ease);
}

.verify-row:last-child {
  border-bottom: none;
}

.verify-row:hover {
  background: rgba(255, 255, 255, 0.025);
}

.verify-label,
.verify-value {
  padding: 20px 24px;
}

.verify-label {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.verify-value {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.2);
  color: #2ecc71;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 35px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 12px #2ecc71;
}

.footer-note {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .contract-card {
    padding: 32px 22px;
  }

  .verify-head,
  .verify-row {
    grid-template-columns: 1fr;
  }

  .verify-label {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 10px;
  }

  .verify-value {
    padding-top: 12px;
  }
}
