@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ══════ TOKENS ══════ */
:root {
  /* Brand */
  --brand: #2DB3FE;
  --brand-mid: #1D9BF0;
  --brand-light: #71C9FF;
  --brand-alt: #F8BB1B;
  --brand-glow: rgba(45, 179, 254, 0.3);
  --brand-alt-glow: rgba(248, 187, 27, 0.3);
  --brand-sub: rgba(45, 179, 254, 0.08);

  /* Premium light palette */
  --bg: #F5F5F0;
  --bg-2: #EEEEE8;
  --surface: #FFFFFF;
  --surface-2: #FAFAF8;
  --nav-bg: rgba(255, 255, 255, 0.82);
  --text: #111110;
  --text-2: #44443E;
  --text-3: #888880;
  --border: rgba(17, 17, 16, 0.08);
  --border-soft: rgba(17, 17, 16, 0.04);

  /* Steel dark sections */
  --steel: #0E0E0C;
  --steel-2: #161614;
  --steel-3: #1E1E1A;
  --steel-4: #262622;

  /* Shadows */
  --sh-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --sh-sm: 0 4px 12px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  --sh-md: 0 12px 32px rgba(0, 0, 0, 0.09), 0 4px 8px rgba(0, 0, 0, 0.04);
  --sh-lg: 0 24px 64px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.05);
  --sh-xl: 0 40px 100px rgba(0, 0, 0, 0.15);
  --sh-brand: 0 8px 28px rgba(45, 179, 254, 0.32), 0 2px 8px rgba(45, 179, 254, 0.2);

  /* Type */
  --f-head: 'Plus Jakarta Sans', sans-serif;
  --f-body: 'DM Sans', sans-serif;

  /* Radius */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-2xl: 48px;
  --r-full: 9999px;

  /* Easing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --py: 104px;
}

/* ══════ DARK MODE ══════ */
[data-theme="dark"] {
  --bg: #0E0E0C;
  --bg-2: #131311;
  --surface: #161614;
  --surface-2: #1A1A18;
  --nav-bg: rgba(14, 14, 12, 0.88);
  --text: #F0EFE8;
  --text-2: #A09E96;
  --text-3: #5A5850;
  --border: rgba(240, 239, 232, 0.08);
  --border-soft: rgba(240, 239, 232, 0.04);
  --sh-xs: 0 1px 2px rgba(0, 0, 0, 0.4);
  --sh-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --sh-md: 0 12px 32px rgba(0, 0, 0, 0.6);
  --sh-lg: 0 24px 64px rgba(0, 0, 0, 0.7);
  --sh-xl: 0 40px 100px rgba(0, 0, 0, 0.8);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  transition: background .4s, color .4s
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button {
  font-family: inherit;
  cursor: pointer
}

/* Grain texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  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='1'/%3E%3C/svg%3E");
  background-size: 250px;
  opacity: .025;
  mix-blend-mode: overlay
}

[data-theme="dark"] body::after {
  opacity: .04
}

/* ══════ TYPE ══════ */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--f-head);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.028em
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 800
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem)
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  letter-spacing: -.02em
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px
}

.eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-mid));
  border-radius: 2px
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 40%, var(--brand-alt) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* ══════ LAYOUT ══════ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px
}

.section {
  padding: var(--py) 0;
  position: relative
}

/* ══════ PROGRESS BAR ══════ */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 9999;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--brand-alt));
  transition: width .1s linear
}

/* ══════ NAV ══════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background .4s var(--ease), box-shadow .4s var(--ease),
              border-color .4s var(--ease);
}

/* ── Bar container ── */
.nav__bar {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  border-bottom: 1px solid transparent;
  transition: height .35s var(--ease), border-color .35s var(--ease),
              padding .35s var(--ease);
}

/* ── Scrolled state ── */
.nav.scrolled {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(40px) saturate(240%);
  -webkit-backdrop-filter: blur(40px) saturate(240%);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .nav.scrolled {
  background: rgba(10, 10, 10, 0.82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04),
              0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav.scrolled .nav__bar {
  height: 60px;
  border-color: var(--border);
}

/* ── Progress bar ── */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2.5px;
  z-index: 9999;
  width: 0%;
  background: linear-gradient(90deg, var(--brand), var(--brand-alt));
  transition: width .1s linear;
  transform-origin: left;
}

/* ── Logo ── */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  outline: none;
}

.nav__logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: transform .3s var(--ease-spring), opacity .25s;
}

.nav__logo:hover .nav__logo-img {
  transform: scale(1.04);
  opacity: .9;
}

/* ── Desktop links ── */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav__lnk {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--f-head);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: var(--r-sm);
  text-decoration: none;
  transition: color .25s var(--ease);
  white-space: nowrap;
}

/* Animated underline */
.nav__lnk::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--brand), var(--brand-alt));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--ease);
}

.nav__lnk:hover {
  color: var(--brand);
}


.nav__lnk:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__lnk.active {
  color: var(--brand);
  font-weight: 600;
}

.nav__lnk.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── Right side actions ── */
.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Theme toggle ── */
.theme-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-2);
  cursor: pointer;
  transition: all .3s var(--ease-spring);
  flex-shrink: 0;
}

.theme-btn:hover {
  border-color: var(--brand);
  background: var(--brand-sub);
  transform: rotate(20deg) scale(1.05);
  color: var(--brand);
}

.theme-btn .sun { display: block }
.theme-btn .moon { display: none }
[data-theme="dark"] .theme-btn .sun { display: none }
[data-theme="dark"] .theme-btn .moon { display: block }

/* ── CTA Button in nav ── */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .01em;
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
  box-shadow: 0 4px 16px var(--brand-glow);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease-spring),
              box-shadow .28s var(--ease),
              opacity .2s;
}

.nav__cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.22) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .25s;
}

.nav__cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px var(--brand-glow);
}

.nav__cta:hover::before { opacity: 1; }
.nav__cta:active { transform: scale(.98); }

.nav__cta-arrow {
  transition: transform .25s var(--ease);
  font-style: normal;
  font-size: .85em;
}

.nav__cta:hover .nav__cta-arrow { transform: translateX(3px); }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5.5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  border: none;
  background: #ffffff;
  border: 1.5px solid rgba(0,0,0,0.15);
  cursor: pointer;
  transition: background .25s, transform .2s;
  flex-shrink: 0;
}


.hamburger:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #0D1B2E;
  transition: transform .35s var(--ease-spring), opacity .25s, width .25s;
  transform-origin: center;
}

/* Morph to X */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile nav dropdown ── */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: 100%;
  left: 16px;
  right: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(48px) saturate(240%);
  -webkit-backdrop-filter: blur(48px) saturate(240%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--brand), var(--brand-alt)) 1;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1),
              inset 0 -1px 0 rgba(0, 0, 0, 0.03);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .3s var(--ease-spring),
              transform .3s var(--ease-spring);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

[data-theme="dark"] .mobile-nav {
  background: rgba(14, 14, 12, 0.92);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5),
              inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

/* Mobile nav links */
.mobile-nav .nav__lnk {
  font-size: .95rem;
  font-weight: 500;
  padding: 13px 16px;
  border-radius: var(--r-md);
  width: 100%;
  color: var(--text-2);
  transition: background .2s, color .2s;
}

.mobile-nav .nav__lnk::after {
  display: none;
}

.mobile-nav .nav__lnk:hover {
  color: var(--brand);
}

.mobile-nav .nav__lnk.active {
  color: var(--brand);
  font-weight: 600;
}

/* Mobile CTA */
.mobile-nav .nav__cta {
  margin-top: 8px;
  justify-content: center;
  padding: 13px 20px;
}

/* Divider in mobile menu */
.mobile-nav__divider {
  height: 1px;
  background: var(--border);
  margin: 4px 4px;
  border-radius: 2px;
}



.nav__right {
  display: flex;
  align-items: center;
  gap: 8px
}

.theme-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--text-2);
  transition: all .3s var(--ease-spring)
}

.theme-btn:hover {
  border-color: var(--brand);
  transform: rotate(20deg);
  color: var(--brand)
}

.theme-btn .sun {
  display: block
}

.theme-btn .moon {
  display: none
}

[data-theme="dark"] .theme-btn .sun {
  display: none
}

[data-theme="dark"] .theme-btn .moon {
  display: block
}

.hamburger {
  display: none;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px
}

.hamburger span {
  width: 16px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all .3s
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px)
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 6px;
  position: absolute;
  top: calc(100% + 12px);
  left: 20px;
  right: 20px;
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(40px) saturate(220%);
  -webkit-backdrop-filter: blur(40px) saturate(220%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--r-xl);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all .35s var(--ease-spring);
}

.mobile-nav.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

[data-theme="dark"] .mobile-nav {
  background: rgba(20, 20, 18, 0.85);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mobile-nav .nav__lnk {
  padding: 12px 16px;
  font-size: 1.05rem;
}

/* ══════ BUTTONS ══════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: .875rem;
  padding: 13px 26px;
  border-radius: var(--r-lg);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .28s var(--ease-spring);
  letter-spacing: -.01em;
  white-space: nowrap
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .18) 0%, transparent 100%);
  opacity: 0;
  transition: opacity .25s
}

.btn:hover::after {
  opacity: 1
}

.btn-primary {
  background: linear-gradient(155deg, var(--brand) 0%, var(--brand-mid) 100%);
  color: #fff;
  box-shadow: var(--sh-brand)
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(45, 179, 254, .38)
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
  box-shadow: none
}

.btn-outline:hover {
  background: var(--brand-sub);
  transform: translateY(-2px)
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--sh-xs)
}

.btn-ghost:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-2px)
}

.btn-dark {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(12px)
}

.btn-dark:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-2px)
}

.btn-lg {
  padding: 15px 34px;
  font-size: .95rem;
  border-radius: var(--r-xl)
}

.btn-sm {
  padding: 8px 18px;
  font-size: .78rem;
  border-radius: var(--r-md)
}

.btn-arrow {
  transition: transform .25s var(--ease-smooth)
}

.btn:hover .btn-arrow {
  transform: translateX(5px)
}

/* ══════ HERO ══════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #0E0E0C;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: fade-in 1.4s var(--ease-out) both;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  animation: hero-zoom 40s linear infinite alternate;
}

@keyframes hero-zoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.1); }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0E0E0C 0%, rgba(14, 14, 12, 0.9) 35%, rgba(14, 14, 12, 0.4) 70%, rgba(14, 14, 12, 0.2) 100%), 
              linear-gradient(0deg, #0E0E0C 0%, transparent 40%, rgba(14, 14, 12, 0.5) 100%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none
}

.hero__orb--1 {
  width: 700px;
  height: 700px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(45, 179, 254, .22) 0%, transparent 65%);
  animation: orb-move 14s ease-in-out infinite
}

.hero__orb--2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(248, 187, 27, .12) 0%, transparent 65%);
  animation: orb-move 18s ease-in-out infinite reverse
}

.hero__orb--3 {
  width: 400px;
  height: 400px;
  top: 30%;
  left: 40%;
  background: radial-gradient(circle, rgba(45, 179, 254, .07) 0%, transparent 60%);
  animation: orb-move 22s ease-in-out infinite
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(45, 179, 254, 0.05) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(45, 179, 254, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 25% 40%, black 20%, transparent 80%);
  opacity: 0.6;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 140px 28px 80px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(45, 179, 254, .1);
  border: 1px solid rgba(45, 179, 254, .22);
  padding: 6px 14px 6px 8px;
  border-radius: var(--r-full);
  margin-bottom: 28px;
  animation: fade-up .6s var(--ease) .1s both
}

.hero__tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 10px var(--brand);
  animation: pulse-dot 2s ease infinite
}

.hero__tag-text {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-mid)
}

.hero__title {
  font-size: clamp(3rem, 6vw, 5.4rem);
  color: #fff;
  margin-bottom: 22px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.04em;
  animation: fade-up .7s var(--ease) .2s both
}

.hero__desc {
  color: rgba(255, 255, 255, .54);
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 492px;
  margin-bottom: 18px;
  animation: fade-up .7s var(--ease) .32s both
}

.hero__checks {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 42px;
  animation: fade-up .7s var(--ease) .44s both
}

.hero__check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: .875rem
}

.hero__check-tick {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .52rem;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 0 8px var(--brand-glow)
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fade-up .7s var(--ease) .55s both
}

/* Hero stats grid */
.hero__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  animation: fade-in .8s var(--ease) .45s both
}

.hstat {
  background: rgba(14, 14, 12, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-xl);
  padding: 26px 22px;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: all .4s var(--ease);
}

.hstat:hover {
  background: rgba(14, 14, 12, 0.7);
  border-color: rgba(45, 179, 254, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5), 0 0 20px rgba(45, 179, 254, 0.1);
}

.hstat--wide {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 16px
}

.hstat__num {
  font-family: var(--f-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px
}

.hstat__num b {
  color: var(--brand-mid)
}

.hstat__lbl {
  color: rgba(255, 255, 255, .42);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .03em
}

.hstat__icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(45, 179, 254, .15);
  border: 1px solid rgba(45, 179, 254, .25);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem
}

.hstat__title {
  color: #fff;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 3px
}

.hstat__sub {
  color: rgba(255, 255, 255, .4);
  font-size: .76rem;
  line-height: 1.55
}

/* ══════ SECTION HEADS ══════ */
.sec-head {
  margin-bottom: 60px
}

.sec-head--c {
  text-align: center
}

.sec-head--c .eyebrow {
  justify-content: center
}

.sec-head__sub {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 540px
}

.sec-head--c .sec-head__sub {
  margin-inline: auto
}

/* ══════ STATS STRIP ══════ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-md)
}

.sstat {
  background: var(--surface);
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  transition: .3s
}

.sstat:last-child {
  border-right: none
}

.sstat:hover {
  background: var(--surface-2)
}

.sstat__num {
  font-family: var(--f-head);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 7px;
  background: linear-gradient(135deg, var(--brand), var(--brand-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.sstat__lbl {
  font-size: .8rem;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: .03em
}

/* ══════ SERVICE CARDS ══════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px
}

.svc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all .35s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
}

.svc-card__img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--surface-2);
}

.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.svc-card:hover .svc-card__img img {
  transform: scale(1.08);
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-mid), var(--brand-light));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 2;
  transition: transform .4s var(--ease-smooth)
}

.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg)
}

.svc-card:hover::before {
  transform: scaleX(1)
}

.svc-card__top {
  padding: 32px 32px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between
}

.svc-card__ico {
  width: 54px;
  height: 54px;
  background: var(--brand-sub);
  border: 1px solid rgba(45, 179, 254, .14);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all .35s var(--ease-spring)
}

.svc-card:hover .svc-card__ico {
  background: linear-gradient(145deg, var(--brand), var(--brand-mid));
  border-color: transparent;
  transform: rotate(-6deg) scale(1.08)
}

.svc-card__n {
  font-family: var(--f-head);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  transition: color .3s
}

.svc-card:hover .svc-card__n {
  color: var(--brand-sub)
}

.svc-card__body {
  padding: 0 32px 32px
}

.svc-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text)
}

.svc-card__desc {
  color: var(--text-2);
  font-size: .875rem;
  line-height: 1.75;
  margin-bottom: 20px
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.chip {
  font-size: .7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-full);
  background: var(--brand-sub);
  color: var(--brand);
  border: 1px solid rgba(45, 179, 254, .12);
  letter-spacing: .02em
}

/* ══════ BENTO GRID ══════ */
.bento {
  display: grid;
  gap: 14px
}

.bento--2x2 {
  grid-template-columns: 1fr 1fr
}

.bento--3 {
  grid-template-columns: repeat(3, 1fr)
}

.bento--asym {
  grid-template-columns: 1.5fr 1fr
}

.bitem {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all .3s var(--ease)
}

.bitem:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md)
}

.bitem--dark {
  background: var(--steel-2);
  border-color: rgba(255, 255, 255, .07);
  color: #fff
}

.bitem--brand {
  background: linear-gradient(145deg, var(--brand), var(--brand-mid));
  border-color: transparent;
  color: #fff
}

.bitem--wide {
  grid-column: span 2
}

.bitem--tall {
  grid-row: span 2
}

.bitem__num {
  font-family: var(--f-head);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px
}

.bitem__lbl {
  font-size: .78rem;
  opacity: .6;
  font-weight: 500;
  margin-bottom: 10px
}

.bitem__ico {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block
}

.bitem__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px
}

.bitem__desc {
  font-size: .83rem;
  color: var(--text-2);
  line-height: 1.68
}

.bitem--dark .bitem__desc,
.bitem--brand .bitem__desc {
  color: rgba(255, 255, 255, .6)
}

/* ══════ WHY ITEMS ══════ */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all .25s var(--ease)
}

.why-item:hover {
  border-color: rgba(45, 179, 254, .22);
  transform: translateX(5px);
  box-shadow: var(--sh-xs)
}

.why-item__ico {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--brand-sub);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all .3s var(--ease-spring)
}

.why-item:hover .why-item__ico {
  background: linear-gradient(145deg, var(--brand), var(--brand-mid));
  transform: scale(1.1)
}

.why-item__title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px
}

.why-item__desc {
  font-size: .78rem;
  color: var(--text-3);
  line-height: 1.55
}

/* ══════ INDUSTRY CARDS ══════ */
.ind-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 26px;
  text-align: center;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden
}

.ind-card__glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-glow), transparent 70%);
  opacity: 0;
  transition: opacity .4s
}

.ind-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-smooth)
}

.ind-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg);
  border-color: rgba(45, 179, 254, .18)
}

.ind-card:hover .ind-card__glow {
  opacity: 1
}

.ind-card:hover::after {
  transform: scaleX(1)
}

.ind-card__ico {
  font-size: 2.3rem;
  margin-bottom: 18px;
  display: block
}

.ind-card__title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 9px
}

.ind-card__desc {
  font-size: .82rem;
  color: var(--text-2);
  line-height: 1.65
}

/* ══════ PROJECT CARDS ══════ */
.proj-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all .35s var(--ease)
}

.proj-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--sh-lg)
}

.proj-card__img {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--surface-2);
}

.proj-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.proj-card:hover .proj-card__img img {
  transform: scale(1.08);
}

.proj-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--brand);
  color: #fff;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--r-full)
}

.proj-card__body {
  padding: 22px 26px 26px
}

.proj-card__title {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px
}

.proj-card__desc {
  font-size: .83rem;
  color: var(--text-2);
  line-height: 1.65
}

/* ══════ ABOUT VISUAL ══════ */
.about-vis {
  position: relative;
  z-index: 1
}

.about-vis__main {
  background: linear-gradient(145deg, var(--steel), var(--steel-2));
  border-radius: var(--r-2xl);
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06)
}

.about-vis__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform .6s var(--ease);
}

.about-vis:hover .about-vis__img {
  transform: scale(1.05);
  opacity: 1;
}

.about-vis__main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(45, 179, 254, .18), transparent 55%),
    repeating-linear-gradient(45deg, transparent, transparent 28px, rgba(255, 255, 255, .015) 28px, rgba(255, 255, 255, .015) 29px)
}

.about-vis__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: linear-gradient(145deg, var(--brand), var(--brand-mid));
  border-radius: var(--r-xl);
  padding: 20px 24px;
  color: #fff;
  box-shadow: var(--sh-brand);
  text-align: center
}

.about-vis__badge-num {
  font-family: var(--f-head);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1
}

.about-vis__badge-lbl {
  font-size: .7rem;
  opacity: .8;
  margin-top: 4px
}

/* ══════ PAGE HERO ══════ */
.page-hero {
  background: linear-gradient(150deg, var(--steel) 0%, #1A0E06 60%, #0E0E0C 100%);
  padding: 160px 0 88px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.page-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(45, 179, 254, .13), transparent 50%),
    radial-gradient(ellipse at 80% 40%, rgba(255, 120, 50, .09), transparent 50%)
}

.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black, transparent)
}

.page-hero .container {
  position: relative;
  z-index: 1
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 16px
}

.page-hero__sub {
  color: rgba(255, 255, 255, .54);
  max-width: 500px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .35);
  font-size: .76rem;
  margin-bottom: 20px
}

.breadcrumb a {
  color: rgba(255, 255, 255, .5);
  transition: .2s
}

.breadcrumb a:hover {
  color: var(--brand-mid)
}

/* ══════ CTA BAND ══════ */
.cta-band {
  background: linear-gradient(150deg, var(--steel) 0%, #1A0E06 60%, var(--steel) 100%);
  padding: var(--py) 0;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(45, 179, 254, .18), transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(45, 179, 254, .12), transparent 50%),
    linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px) 0 0/64px 64px,
    linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px) 0 0/64px 64px
}

.cta-band .container {
  position: relative;
  z-index: 1
}

.cta-band h2 {
  color: #fff;
  margin-bottom: 14px
}

.cta-band p {
  color: rgba(255, 255, 255, .55);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.8
}

/* ══════ FEATURE LIST ══════ */
.feat-list {
  display: flex;
  flex-direction: column;
  gap: 11px
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-2);
  font-size: .875rem;
  line-height: 1.65
}

.feat-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand), var(--brand-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .55rem;
  font-weight: 900;
  margin-top: 2px;
  box-shadow: 0 2px 8px var(--brand-glow)
}

/* ══════ CONTACT ══════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.75fr;
  gap: 44px;
  align-items: start
}

.contact-panel {
  background: linear-gradient(160deg, var(--steel-2), var(--steel-3));
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-2xl);
  padding: 44px 36px;
  position: relative;
  overflow: hidden
}

.contact-panel::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 179, 254, .15), transparent 70%)
}

.contact-panel h3 {
  color: #fff;
  margin-bottom: 8px;
  font-size: 1.4rem
}

.contact-panel>p {
  color: rgba(255, 255, 255, .5);
  font-size: .875rem;
  margin-bottom: 36px
}

.c-row {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1
}

.c-row__ico {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(45, 179, 254, .14);
  border: 1px solid rgba(45, 179, 254, .2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--brand-mid)
}

.c-row__lbl {
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 4px
}

.c-row__val {
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  font-weight: 500
}

.c-divider {
  height: 1px;
  background: rgba(255, 255, 255, .07);
  margin: 24px 0;
  position: relative;
  z-index: 1
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 44px 40px;
  box-shadow: var(--sh-md)
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.form-group {
  margin-bottom: 18px
}

.form-lbl {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 7px;
  letter-spacing: .02em
}

.form-inp {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  font-size: .9rem;
  outline: none;
  transition: all .25s
}

.form-inp:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(45, 179, 254, .1);
  background: var(--surface)
}

.form-inp::placeholder {
  color: var(--text-3)
}

textarea.form-inp {
  resize: vertical;
  min-height: 128px
}

select.form-inp {
  cursor: pointer
}

/* ══════ CLIENTS ══════ */
.clients {
  overflow: hidden;
  position: relative;
}


/* Client Logo Carousel */
.client-carousel-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
  mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.client-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: logo-scroll 25s linear infinite;
}

.client-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes logo-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 10px)); }
}

.client-logo-card {
  width: 220px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.3s var(--ease);
  box-shadow: var(--sh-sm);
  text-align: center;
  cursor: default;
}

.client-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--brand);
}

.client-logo-card__img {
  width: 100%;
  max-height: 72px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  opacity: 0.7;
  transition: all 0.3s var(--ease);
}

[data-theme="dark"] .client-logo-card__img {
  filter: grayscale(1) invert(1) contrast(0.85) brightness(1.1);
}

.client-logo-card:hover .client-logo-card__img {
  filter: grayscale(0) contrast(1);
  opacity: 1;
}

[data-theme="dark"] .client-logo-card:hover .client-logo-card__img {
  filter: grayscale(0) invert(0) brightness(1);
}

.client-logo-card__name {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color 0.3s var(--ease);
}

.client-logo-card:hover .client-logo-card__name {
  color: var(--brand);
}


/* Partnership Highlights */
.partners-highlights {
  background: var(--steel-2);
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.partners-highlights::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(45, 179, 254, 0.1), transparent 60%);
  pointer-events: none;
}

.ph-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 1;
}

.ph-item {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-weight: 500;
}

.ph-item span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
  font-family: var(--f-head);
}

/* ══════ FOOTER ══════ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px
}

.footer__logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer__desc {
  color: var(--text-3);
  font-size: .84rem;
  line-height: 1.75;
  margin-bottom: 24px
}

.footer__col-head {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text);
  margin-bottom: 18px
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.footer__lnk {
  color: var(--text-3);
  font-size: .84rem;
  transition: .2s;
  display: flex;
  align-items: center;
  gap: 5px
}

.footer__lnk:hover {
  color: var(--brand);
  transform: translateX(3px)
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.footer__copy,
.footer__made {
  color: var(--text-3);
  font-size: .78rem
}

.footer__made b {
  color: var(--brand)
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 4px
}

.social {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  font-size: .8rem;
  transition: all .25s var(--ease-spring)
}

.social:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px var(--brand-glow)
}

/* ══════ FORM SUCCESS ══════ */
.form-success {
  display: none;
  text-align: center;
  padding: 40px
}

.form-success.visible {
  display: block;
  animation: fade-up .4s var(--ease-spring)
}

.form-success__ico {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, .1);
  border: 2px solid rgba(34, 197, 94, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem
}

/* ══════ SCROLL REVEAL ══════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease-smooth), transform .75s var(--ease-smooth)
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .75s var(--ease-smooth), transform .75s var(--ease-smooth)
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .75s var(--ease-smooth), transform .75s var(--ease-smooth)
}

.reveal-scale {
  opacity: 0;
  transform: scale(.92);
  transition: opacity .65s var(--ease-smooth), transform .65s var(--ease-smooth)
}

.revealed {
  opacity: 1 !important;
  transform: none !important
}

.d1 {
  transition-delay: .08s
}

.d2 {
  transition-delay: .16s
}

.d3 {
  transition-delay: .24s
}

.d4 {
  transition-delay: .32s
}

.d5 {
  transition-delay: .4s
}

.d6 {
  transition-delay: .48s
}

/* ══════ KEYFRAMES ══════ */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes fade-in {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes orb-move {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(-40px, 30px) scale(1.06)
  }

  66% {
    transform: translate(30px, -26px) scale(.95)
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(.78)
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-18px)
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0)
  }

  to {
    transform: rotate(360deg)
  }
}

/* Ripple */
.ripple-btn {
  position: relative;
  overflow: hidden
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  transform: scale(0);
  animation: ripple-expand .55s linear;
  pointer-events: none
}

@keyframes ripple-expand {
  to {
    transform: scale(4.5);
    opacity: 0
  }
}

/* Particles */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(45, 179, 254, .35);
  animation: particle-rise linear infinite
}

@keyframes particle-rise {
  0% {
    transform: translateY(110vh);
    opacity: 0
  }

  5% {
    opacity: 1
  }

  95% {
    opacity: .6
  }

  100% {
    transform: translateY(-10vh);
    opacity: 0
  }
}

/* ══════ RESPONSIVE ══════ */

/* ── Large Tablet / Small Desktop ── */
@media (max-width: 1280px) {
  .hero__content {
    gap: 40px;
    padding: 120px 28px 70px;
  }

  .hero__title {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
  }
}

/* ── Tablet Landscape ── */
@media (max-width: 1024px) {
  :root {
    --py: 80px;
  }

  /* Hero: single column */
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 120px 32px 64px;
    gap: 32px;
  }

  .hero__stats {
    display: none;
  }

  .hero__checks {
    align-items: center;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__tag {
    justify-content: center;
  }

  /* About / Why Us 2-col grids → 1-col */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Services inline grids */
  [style*="grid-template-columns:1fr 1fr;gap:72px"],
  [style*="grid-template-columns: 1fr 1fr; gap: 72px"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Process 4-col → 2-col */
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Industry cards 3-col → 2-col */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bento--2x2 {
    grid-template-columns: 1fr 1fr;
  }

  .about-vis {
    max-width: 420px;
    margin: 0 auto;
  }

  /* Fix reveal-right order reset on services page */
  .reveal-left[style*="order:2"] {
    order: 1 !important;
  }

  .reveal-right[style*="order:1"] {
    order: 2 !important;
  }
}

/* ── Tablet Portrait / Large Mobile ── */
@media (max-width: 768px) {
  :root {
    --py: 64px;
  }

  /* Nav */
  .nav {
    padding: 12px 16px 0;
  }

  .nav__links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hide-mob {
    display: none;
  }

  .nav__pill {
    height: 54px;
    padding: 0 14px 0 12px;
  }

  .nav__logo-img {
    height: 34px;
  }

  /* Hero */
  .hero__content {
    padding: 100px 20px 56px;
  }

  .hero__title {
    font-size: clamp(2.1rem, 7vw, 3rem);
  }

  .hero__desc {
    font-size: .95rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Page hero (inner pages) */
  .page-hero {
    padding: 100px 0 56px;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .page-hero__sub {
    font-size: .95rem;
  }

  /* All section two-column and three-column grids go to one column */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1.5fr;gap:60px;align-items:center"],
  [style*="grid-template-columns:1fr 1fr;gap:80px"],
  [style*="grid-template-columns:1fr 1fr;gap:64px"],
  [style*="grid-template-columns:1fr 1fr;gap:72px"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  /* Stats strip */
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  /* Service/bento/why cards */
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .bento--2x2,
  .bento--3 {
    grid-template-columns: 1fr;
  }

  .bitem--wide {
    grid-column: span 1;
  }

  /* Industry / project cards */
  .ind-grid,
  .proj-grid {
    grid-template-columns: 1fr;
  }

  /* Forms */
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  /* Fix order overrides on mobile */
  [style*="order:2"],
  [style*="order: 2"] {
    order: 1 !important;
  }

  [style*="order:1"],
  [style*="order: 1"] {
    order: 2 !important;
  }

  /* Visual boxes (service detail pages) */
  [style*="height:360px"] {
    height: 220px !important;
    font-size: 4rem !important;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer__logo-img {
    height: 38px;
  }

  /* CTA band */
  .cta-band h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  /* headings */
  h2 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  h3 {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }

  /* Chips wrap */
  .chips {
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Clients */
  .ph-track {
    justify-content: center;
    text-align: center;
    gap: 24px;
  }

  .ph-item {
    width: 100%;
  }
}

/* ── Mobile ── */
@media (max-width: 480px) {
  :root {
    --py: 48px;
  }

  .container {
    padding: 0 16px;
  }

  .nav {
    padding: 10px 12px 0;
  }

  .nav__pill {
    height: 50px;
  }

  .nav__logo-img {
    height: 30px;
  }

  /* Hero */
  .hero__content {
    padding: 88px 16px 48px;
  }

  .hero__title {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
    letter-spacing: -.03em;
  }

  .hero__checks {
    display: none;
  }

  /* Stats strip: single column */
  .stats-strip {
    grid-template-columns: 1fr 1fr;
    border-radius: var(--r-lg);
  }

  .sstat {
    padding: 28px 16px;
  }

  .sstat__num {
    font-size: 2.2rem;
  }

  /* Section heads */
  .sec-head {
    margin-bottom: 36px;
  }

  /* Cards / bentos take full width */
  .bitem--wide,
  .bitem {
    grid-column: span 1;
  }

  /* service card images */
  [style*="height:360px"],
  [style*="height: 360px"] {
    height: 180px !important;
    font-size: 3.5rem !important;
  }

  .svc-card {
    padding: 24px 18px;
  }

  /* buttons */
  .btn-lg {
    padding: 13px 24px;
    font-size: .9rem;
  }

  /* About-vis */
  .about-vis__main {
    font-size: 5rem;
  }

  /* Form */
  .form-card {
    padding: 24px 16px;
  }

  .contact-panel {
    padding: 28px 16px;
  }

  /* Footer */
  .footer {
    padding-block: 40px;
  }

  .footer__copy,
  .footer__made {
    font-size: .78rem;
  }

  /* Clients */
  .ph-item span {
    font-size: 1.6rem;
  }
}

/* ── Small Mobile (iPhone SE, etc.) ── */
@media (max-width: 375px) {
  .nav__pill {
    height: 48px;
    padding: 0 10px 0 10px;
  }

  .nav__logo-img {
    height: 28px;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__actions .btn {
    font-size: .85rem;
    padding: 12px 20px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

  .sstat {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  h2 {
    font-size: 1.5rem;
  }

  .eyebrow {
    font-size: .65rem;
  }
}

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* ── Lightbox Modal ── */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding: 40px 20px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
}
.lightbox-modal.show {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.lightbox-modal.show .lightbox-content {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 10000;
}
.lightbox-close:hover {
  color: var(--primary);
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}