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

:root {
  --black: #0a0a0a;
  --white: #f5f0e8;
  --acid: #c8ff00;
  --acid-dim: #9ccc00;
  --red: #ff3c2e;
  --mid: #1a1a1a;
  --border: rgba(245, 240, 232, 0.12);
  --border-hover: rgba(245, 240, 232, 0.22);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: crosshair;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── BACKGROUND FX ───────────────────────────────────── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

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

/* ── LAYOUT ──────────────────────────────────────────── */
.container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── HEADER ────────────────────────────────────────── */
header {
  padding: 36px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.12em;
  color: var(--white);
}

.logo span {
  color: var(--acid);
}

.status-pill {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--acid);
  border: 1px solid var(--acid);
  padding: 6px 14px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  animation: blink 2s step-end infinite;
  background: rgba(200, 255, 0, 0.08);
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* ── HERO ──────────────────────────────────────────── */
.hero {
  padding: 80px 0 0;
  position: relative;
}

.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--acid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--acid);
}

.headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 11vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}

.headline .line1 {
  display: block;
  color: var(--white);
}

.headline .line2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--white);
}

.headline .line3 {
  display: block;
  color: var(--acid);
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}

.tagline {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.65);
  max-width: 400px;
}

.tagline strong {
  color: var(--white);
  font-weight: 500;
}

/* ── COUNTDOWN ─────────────────────────────────────── */
.countdown-block {
  text-align: right;
}

.countdown-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.countdown {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.cd-unit {
  text-align: center;
  min-width: 52px;
}

.cd-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  color: var(--white);
  display: block;
}

.cd-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

.cd-sep {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--acid);
  align-self: flex-start;
  padding-top: 4px;
  opacity: 0.6;
  animation: blink 1s step-end infinite;
}

/* ── SERVICES ──────────────────────────────────────── */
.services {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-item {
  background: var(--black);
  padding: 28px 24px;
  transition: background 0.2s, border-color 0.2s;
  cursor: default;
}

.service-item:hover {
  background: var(--mid);
}

.service-num {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--acid);
  margin-bottom: 16px;
  display: block;
}

.service-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.1;
}

.service-desc {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.6;
}

/* ── NOTIFY ────────────────────────────────────────── */
.notify {
  padding: 64px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.notify-copy h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

.notify-copy p {
  font-size: 14px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.7;
}

.notify-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.input-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.input-row:focus-within {
  border-color: var(--border-hover);
}

.input-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--white);
  caret-color: var(--acid);
}

.input-row input::placeholder {
  color: rgba(245, 240, 232, 0.25);
}

.input-row input:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: -2px;
}

.input-row button {
  background: var(--acid);
  border: none;
  padding: 16px 28px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--black);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  white-space: nowrap;
}

.input-row button:hover {
  background: #d9ff1a;
}

.input-row button:active {
  transform: scale(0.98);
}

.input-row button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: -3px;
}

.form-note {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(245, 240, 232, 0.25);
  letter-spacing: 0.05em;
}

.success-msg {
  display: none;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--acid);
  letter-spacing: 0.08em;
  padding: 14px 0;
}

.error-msg {
  display: none;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  color: var(--red);
  letter-spacing: 0.08em;
  padding: 14px 0;
}

/* ── FOOTER ────────────────────────────────────────── */
footer {
  padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 232, 0.3);
}

.footer-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(245, 240, 232, 0.2);
  letter-spacing: 0.1em;
}

/* ── CORNER MARK ───────────────────────────────────── */
.corner-mark {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px;
  height: 48px;
  border-right: 2px solid var(--acid);
  border-bottom: 2px solid var(--acid);
  opacity: 0.3;
  z-index: 10;
  pointer-events: none;
}

/* ── ANIMATIONS ────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.d1 {
  animation-delay: 0.1s;
}

.d2 {
  animation-delay: 0.25s;
}

.d3 {
  animation-delay: 0.4s;
}

.d4 {
  animation-delay: 0.55s;
}

.d5 {
  animation-delay: 0.7s;
}

.d6 {
  animation-delay: 0.85s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .status-pill,
  .cd-sep {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .countdown-block {
    text-align: left;
  }

  .countdown {
    justify-content: flex-start;
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
  }

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

  footer {
    flex-direction: column;
    text-align: center;
  }

  .corner-mark {
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .service-list {
    grid-template-columns: 1fr;
  }

  .input-row {
    flex-direction: column;
  }

  .input-row button {
    padding: 14px;
  }

  .countdown {
    gap: 12px;
  }

  .cd-unit {
    min-width: 44px;
  }
}

/* ── SKIP LINK (accessibility) ─────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--acid);
  color: var(--black);
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-decoration: none;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ── VISUALLY HIDDEN (screen readers only) ─────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ═══════════════════════════════════════════════════════════════
   NEW PAGE COMPONENTS — Pricing, Portfolio, Contact
   Add these to your style.css or keep in components.css
   ═══════════════════════════════════════════════════════════════ */

/* ── PRICING PAGE ─────────────────────────────────────────── */

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-toggle span {
  color: rgba(245, 240, 232, 0.5);
  transition: color 0.3s;
}

.pricing-toggle span.active {
  color: var(--acid);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.3s;
}

.toggle-switch:hover {
  border-color: var(--acid);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: var(--acid);
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.toggle-switch.usd::after {
  transform: translateX(24px);
}

.toggle-switch:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 2px;
}

.price-section {
  padding: 32px 0 48px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.pricing-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.pricing-grid.single {
  grid-template-columns: 1fr;
}

.pricing-tier {
  background: var(--black);
  padding: 40px 32px;
  position: relative;
  transition: background 0.3s;
}

.pricing-tier:hover {
  background: var(--mid);
}

.pricing-tier.featured {
  background: var(--mid);
  border-top: 2px solid var(--acid);
}

.pricing-tier.featured::before {
  content: '// POPULAR';
  position: absolute;
  top: 0;
  right: 0;
  background: var(--acid);
  color: var(--black);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 6px 12px;
}

.tier-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
}

.tier-desc {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.45);
  line-height: 1.6;
  margin-bottom: 24px;
}

.tier-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}

.tier-price span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(245, 240, 232, 0.4);
  font-weight: 300;
}

.tier-price-quote {
  font-size: 36px;
  color: var(--acid);
}

.tier-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.tier-features {
  list-style: none;
  margin-bottom: 32px;
}

.tier-features li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: rgba(245, 240, 232, 0.7);
}

.tier-features li::before {
  content: '✓';
  color: var(--acid);
  font-size: 11px;
  font-weight: bold;
  flex-shrink: 0;
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-cta {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  background: var(--acid);
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--black);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-align: center;
  text-decoration: none;
}

.tier-cta:hover {
  background: #d9ff1a;
}

.tier-cta:active {
  transform: scale(0.98);
}

/* ── PORTFOLIO PAGE ─────────────────────────────────────── */

.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--acid);
  color: var(--acid);
}

.filter-btn.active {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--black);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 80px;
}

.project-card {
  background: var(--black);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: background 0.3s;
}

.project-card:hover {
  background: var(--mid);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.5s;
}

.project-card:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

/* Touch devices have no hover — keep project titles visible */
@media (hover: none) {
  .project-overlay {
    opacity: 1;
  }
}

.project-category {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--acid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

/* Client Logo Carousel */
.carousel-section {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.carousel-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-align: center;
}

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

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

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  height: 40px;
  width: auto;
  opacity: 0.4;
  filter: grayscale(100%);
  transition: opacity 0.3s, filter 0.3s;
  flex-shrink: 0;
}

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

/* ── CONTACT PAGE ───────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.contact-info>p {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-detail {
  margin-bottom: 24px;
}

.contact-detail-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--acid);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.contact-detail-value {
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail-value:hover {
  color: var(--acid);
}

.contact-form-full {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: rgba(245, 240, 232, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  background: transparent;
  border: 1px solid var(--border);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  caret-color: var(--acid);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--acid);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245, 240, 232, 0.25);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c8ff00' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--black);
  color: var(--white);
}

.submit-btn {
  background: var(--acid);
  border: none;
  padding: 16px 32px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--black);
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  margin-top: 8px;
}

.submit-btn:hover {
  background: #d9ff1a;
}

.submit-btn:active {
  transform: scale(0.98);
}

/* Social links row */
.social-row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.social-row a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(245, 240, 232, 0.4);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  border: 1px solid var(--border);
  padding: 8px 14px;
}

.social-row a:hover {
  color: var(--acid);
  border-color: var(--acid);
}

/* ── NAVIGATION (for multi-page) ────────────────────────── */

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--acid);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--acid);
}

/* ── RESPONSIVE ADDITIONS ───────────────────────────────── */

@media (max-width: 768px) {
  .pricing-grid,
  .pricing-grid.cols-2 {
    grid-template-columns: 1fr;
  }

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

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

  .main-nav {
    gap: 16px;
  }

  .carousel-track {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .pricing-tier {
    padding: 28px 20px;
  }

  .project-card {
    aspect-ratio: 3/2;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 12px;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   INDEX PAGE — Hero Stats, Featured Work, Final CTA
   (Replaces countdown timer and email signup on the homepage)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero Stats ───────────────────────────────────────────── */
.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
  align-items: flex-end;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1;
  color: var(--acid);
  display: block;
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

.hero-cta {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  background: var(--acid);
  color: var(--black);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}

.hero-cta:hover {
  background: #d9ff1a;
}

.hero-cta:active {
  transform: scale(0.98);
}

/* ── Featured Work Section ─────────────────────────────────── */
.featured-work {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.work-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.work-card {
  background: var(--black);
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  cursor: pointer;
}

.work-card:hover {
  background: var(--mid);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: opacity 0.3s, transform 0.5s;
}

.work-card:hover img {
  opacity: 0.8;
  transform: scale(1.05);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.work-category {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  color: var(--acid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.work-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.work-link {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.work-link:hover {
  color: var(--acid);
}

.work-cta-row {
  text-align: center;
}

/* ── Final CTA Section ────────────────────────────────────── */
.final-cta {
  padding: 100px 0;
  text-align: center;
}

.final-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.final-cta-inner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  color: var(--white);
}

.final-cta-inner p {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ── Responsive for new sections ──────────────────────────── */
@media (max-width: 768px) {
  .hero-stats {
    justify-content: flex-start;
    gap: 24px;
  }

  .work-preview {
    grid-template-columns: 1fr;
  }
}