/* ============================================
   LC STUDIO — Premium Redesign
   Inspired by: linear.app, vercel.com, rauno.me
   ============================================ */

/* ── RESET ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* palette */
  --black: #06060a;
  --bg: #0a0a0f;
  --bg-raised: #111118;
  --bg-card: #13131a;
  --border: rgba(255, 255, 255, 0.06);
  --border-subtle: rgba(255, 255, 255, 0.04);
  --border-hover: rgba(255, 255, 255, 0.12);
  --white: #f5f5f7;
  --gray-1: #e4e4e7;
  --gray-2: #a1a1aa;
  --gray-3: #71717a;
  --gray-4: #3f3f46;
  --accent: #00e5c7;
  --accent-2: #00c4ff;
  --accent-dim: rgba(0, 229, 199, 0.08);
  --accent-glow: rgba(0, 229, 199, 0.15);
  --accent-glow-s: rgba(0, 229, 199, 0.30);
  /* type */
  --font: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', monospace;
  /* motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur: 0.35s;
  /* sizing */
  --wrap: 1140px;
  --radius: 14px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--accent);
  color: var(--black);
}

/* ── CUSTOM CURSOR ── */
.cursor,
.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.cursor {
  width: 8px;
  height: 8px;
  background: var(--white);
  transition: width 0.2s var(--ease), height 0.2s var(--ease);
}

.cursor.hover {
  width: 48px;
  height: 48px;
  background: var(--accent);
  mix-blend-mode: normal;
  opacity: 0.25;
}

.cursor-trail {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.15s var(--ease-out);
}

/* ── GRAIN ── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}

/* ── LAYOUT ── */
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

.hide-mobile {}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 72px;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 13px;
  color: var(--black);
  letter-spacing: -0.04em;
}

.nav__logo-img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  object-fit: cover;
}

.nav__logo-text {
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  gap: 8px;
}

.nav__links a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-2);
  padding: 6px 14px;
  border-radius: 6px;
  transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
  overflow: hidden;
}

.nav__links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  background: var(--accent);
  padding: 8px 20px;
  border-radius: 100px;
  transition: all var(--dur) var(--ease);
}

.nav__cta-arrow {
  display: flex;
  font-size: 14px;
  transition: transform var(--dur) var(--ease);
}

.nav__cta:hover {
  box-shadow: 0 0 30px var(--accent-glow-s);
  transform: translateY(-1px);
}

.nav__cta:hover .nav__cta-arrow {
  transform: translateX(3px);
}

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--dur) var(--ease);
}

.nav__burger span+span {
  margin-top: 6px;
}

.nav__burger.active span:first-child {
  transform: rotate(45deg) translate(3px, 3px);
}

.nav__burger.active span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 120px 32px 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 229, 199, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 20%, rgba(0, 196, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(0, 229, 199, 0.04) 0%, transparent 50%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 40%, black 0%, transparent 100%);
}

.hero__beam {
  position: absolute;
  width: 1px;
  height: 180px;
  top: -180px;
  animation: beam 6s infinite;
}

.hero__beam--1 {
  left: 25%;
  background: linear-gradient(180deg, transparent, var(--accent), transparent);
  animation-delay: 0s;
}

.hero__beam--2 {
  left: 72%;
  background: linear-gradient(180deg, transparent, var(--accent-2), transparent);
  animation-delay: 3s;
}

@keyframes beam {
  0% {
    top: -180px;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 110%;
    opacity: 0;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-2);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.02);
}

.hero__badge-pulse {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero__title {
  font-family: var(--font);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.045em;
  margin-bottom: 28px;
}

.hero__title-line {
  display: block;
}

.hero__title-line--em {
  color: var(--gray-1);
}

.hero__title-highlight {
  position: relative;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__title-dot {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

.hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--gray-2);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 44px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
}

/* ── MARQUEE ── */
.hero__marquee {
  position: relative;
  z-index: 1;
  width: 100vw;
  overflow: hidden;
  margin-top: 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.01);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: scroll-x 30s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.marquee__item {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--gray-3);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.marquee__sep {
  color: var(--accent);
  font-size: 10px;
  opacity: 0.5;
}

@keyframes scroll-x {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  border: none;
  cursor: none;
  transition: all var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--accent);
  color: var(--black);
}

.btn--primary:hover {
  box-shadow: 0 0 40px var(--accent-glow-s), 0 4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--gray-2);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hover);
}

.btn--outline {
  background: transparent;
  color: var(--gray-1);
  border: 1px solid var(--border);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-hover);
  transform: translateY(-1px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ── SECTIONS ── */
.section {
  padding: 140px 0;
  position: relative;
}

.section--dark {
  background: var(--black);
}

.section__label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.section__label-num {
  color: var(--accent);
  font-weight: 600;
}

.section__label-line {
  width: 32px;
  height: 1px;
  background: var(--gray-4);
}

.section__heading {
  font-family: var(--font);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 56px;
}

/* ── SERVICES ── */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 36px;
  background: var(--bg-card);
  transition: background var(--dur) var(--ease);
  cursor: none;
  text-decoration: none;
}

.service:hover {
  background: var(--bg-raised);
}

.service:hover .service__glow {
  opacity: 1;
}

.service:hover .service__arrow {
  transform: translateX(4px);
  opacity: 1;
}

.service__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  pointer-events: none;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--accent-dim), transparent 40%);
}

.service__label {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--accent);
  color: var(--black);
  font-weight: 600;
}

.service--accent {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}

.service__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.service__idx {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--gray-4);
  letter-spacing: 0.05em;
}

.service__icon {
  color: var(--accent);
}

.service__title {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.service__desc {
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 32px;
}

.service__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.service__price {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.02em;
}

.service__arrow {
  font-size: 18px;
  color: var(--gray-3);
  transition: all var(--dur) var(--ease);
  opacity: 0.4;
}

/* ── PROCESS ── */
.process {
  display: flex;
  flex-direction: column;
  max-width: 600px;
}

.process__step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 48px;
}

.process__step:last-child {
  padding-bottom: 0;
}

.process__step-line {
  position: absolute;
  left: 15px;
  top: 40px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--gray-4) 100%);
}

.process__step-line--last {
  background: var(--gray-4);
  opacity: 0.3;
}

.process__step-dot {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  z-index: 1;
}

.process__step-content {
  padding-top: 4px;
}

.process__step-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.process__step-content h3 {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.process__step-content p {
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.7;
}

/* ── PORTFOLIO / PROJECT ── */
.project {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.project__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  padding: 2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, var(--border-hover), var(--border-subtle), var(--border-hover));
}

.project__inner>* {
  background: var(--bg-card);
}

.project__browser {
  border-radius: var(--radius);
  overflow: hidden;
}

.project__browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border);
}

.project__browser-dots {
  display: flex;
  gap: 6px;
}

.project__browser-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: block;
}

.project__browser-dots i:nth-child(1) {
  background: #ff5f57;
}

.project__browser-dots i:nth-child(2) {
  background: #ffbd2e;
}

.project__browser-dots i:nth-child(3) {
  background: #28c840;
}

.project__browser-url {
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gray-3);
  background: rgba(255, 255, 255, 0.03);
  padding: 5px 16px;
  border-radius: 6px;
}

.project__screen {
  aspect-ratio: 16/10;
  position: relative;
  overflow: hidden;
}

.project__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 40px;
  border-radius: var(--radius);
}

.project__tag {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.project__title {
  font-family: var(--font);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.project__desc {
  font-size: 15px;
  color: var(--gray-2);
  line-height: 1.7;
}

.project__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 4px 0;
}

.project__metric {
  background: var(--bg);
  padding: 16px;
  text-align: center;
}

.project__metric-val {
  display: block;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.project__metric-key {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.project__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project__stack code {
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--gray-2);
  background: rgba(255, 255, 255, 0.02);
}

/* Clutch Mockup Screen */
.clutch-mock {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0c1020 0%, #0f0f1e 100%);
  display: flex;
  flex-direction: column;
  padding: 12px;
  gap: 8px;
  position: relative;
}

.clutch-mock::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--accent);
  filter: blur(100px);
  opacity: 0.12;
  top: 20%;
  left: 25%;
}

.clutch-mock__nav {
  height: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
}

.clutch-mock__nav span {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.clutch-mock__nav span:first-child {
  width: 40px;
  background: var(--accent);
  opacity: 0.5;
}

.clutch-mock__body {
  flex: 1;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
}

.clutch-mock__side {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 3px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.clutch-mock__side-item {
  height: 18px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.04);
}

.clutch-mock__side-item.act {
  background: rgba(0, 229, 199, 0.12);
  border-left: 2px solid var(--accent);
}

.clutch-mock__main {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.clutch-mock__bar {
  height: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding: 0 8px;
}

.clutch-mock__bar span {
  height: 8px;
  width: 80px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
}

.clutch-mock__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  flex: 0 0 auto;
}

.clutch-mock__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 3px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.clutch-mock__card span {
  height: 5px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
}

.clutch-mock__card span.a {
  background: rgba(0, 229, 199, 0.2);
  width: 60%;
}

.clutch-mock__bracket {
  flex: 1;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.bracket-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.bracket-slot {
  width: 50px;
  height: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  border-left: 2px solid var(--accent);
}

.bracket-wire {
  width: 16px;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* ── WHY ── */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why__heading {
  font-family: var(--font);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  position: sticky;
  top: 120px;
}

.why__heading-em {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why__right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why__item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.why__item:first-child {
  border-top: 1px solid var(--border);
}

.why__item-icon {
  font-size: 24px;
  flex-shrink: 0;
  padding-top: 2px;
}

.why__item-body h3 {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.why__item-body p {
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.6;
}

/* ── PRICING ── */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.pricing__card {
  position: relative;
  background: var(--bg-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.pricing__card--pop {
  background: linear-gradient(180deg, rgba(0, 229, 199, 0.04), var(--bg-card));
}

.pricing__pop-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px;
  background: var(--accent);
  color: var(--black);
  font-weight: 600;
}

.pricing__card--pop .pricing__head {
  margin-top: 20px;
}

.pricing__name {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.pricing__blurb {
  font-size: 13px;
  color: var(--gray-3);
  line-height: 1.6;
}

.pricing__amount {
  font-family: var(--font);
  font-size: 54px;
  font-weight: 700;
  letter-spacing: -0.05em;
  margin: 28px 0;
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.pricing__curr {
  font-size: 22px;
  color: var(--gray-3);
  padding-top: 8px;
}

.pricing__from {
  font-size: 20px;
  color: var(--gray-3);
  padding-top: 6px;
}

.pricing__list {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.pricing__list li {
  font-size: 13px;
  color: var(--gray-2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing__list li::before {
  content: '✓';
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FAQ ── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.faq-layout__heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:first-child {
  border-top: 1px solid var(--border);
}

.faq__item summary {
  list-style: none;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-1);
  transition: color var(--dur) var(--ease);
  font-family: var(--font);
  letter-spacing: -0.01em;
}

.faq__q:hover {
  color: var(--white);
}

.faq__icon {
  font-size: 20px;
  color: var(--gray-3);
  transition: transform var(--dur) var(--ease);
  line-height: 1;
}

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq__a {
  overflow: hidden;
  animation: faq-open 0.3s var(--ease);
}

.faq__a p {
  padding-bottom: 22px;
  font-size: 14px;
  color: var(--gray-2);
  line-height: 1.7;
}

@keyframes faq-open {
  from {
    max-height: 0;
    opacity: 0;
  }

  to {
    max-height: 200px;
    opacity: 1;
  }
}

/* ── CONTACT ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__heading {
  font-family: var(--font);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.contact__heading-em {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact__sub {
  font-size: 15px;
  color: var(--gray-2);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact__meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-family: var(--mono);
  color: var(--gray-2);
  letter-spacing: 0.01em;
}

.contact__meta-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}

.field {
  margin-bottom: 20px;
}

.field:last-of-type {
  margin-bottom: 24px;
}

.field label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-3);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--gray-4);
}

.field textarea {
  resize: vertical;
  min-height: 130px;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 0 28px;
  border-top: 1px solid var(--border);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 13px;
  color: var(--gray-3);
  transition: color var(--dur) var(--ease);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 12px;
  color: var(--gray-4);
}

.footer__tagline {
  font-family: var(--mono);
  letter-spacing: 0.04em;
}

/* ── SCROLL ANIMATIONS ── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__heading {
  font-family: var(--font);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  position: sticky;
  top: 120px;
}

.about__heading-em {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about__text {
  font-size: 15px;
  color: var(--gray-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about__text strong {
  color: var(--white);
  font-weight: 600;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__stat-val {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about__stat-key {
  font-size: 12px;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── LEGAL ── */
.footer__legal {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.legal__toggle {
  font-size: 12px;
  color: var(--gray-3);
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: color var(--dur) var(--ease);
  list-style: none;
}

.legal__toggle::-webkit-details-marker {
  display: none;
}

.legal__toggle:hover {
  color: var(--gray-2);
}

.legal__content {
  margin-top: 20px;
  text-align: left;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.legal__content p {
  font-size: 12px;
  color: var(--gray-3);
  line-height: 1.6;
  margin-bottom: 8px;
}

.legal__content strong {
  color: var(--gray-2);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services {
    grid-template-columns: 1fr;
  }

  .pricing {
    grid-template-columns: 1fr;
  }

  .why {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why__heading {
    position: static;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__heading {
    position: static;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-layout__heading {
    position: static;
  }

  .project__inner {
    grid-template-columns: 1fr;
  }

  .project__info {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .cursor,
  .cursor-trail {
    display: none;
  }

  .section {
    padding: 100px 0;
  }

  .nav {
    padding: 0 20px;
    height: 60px;
    overflow: visible;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    z-index: 200;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 4px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    font-size: 18px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }

  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: block;
  }

  .wrap {
    padding: 0 20px;
  }

  .hero {
    padding-top: 80px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .project__metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .project {
    padding: 0 20px;
  }

  .footer__top,
  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hide-mobile {
    display: none;
  }
}