*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #080808;
  --surface: #111111;
  --accent: #ffc00e;
  --accent2: #ff3d00;
  --white: #f5f5f0;
  --muted: #555;
  --border: rgba(255, 255, 255, 0.08);
  --heading: "Bebas Neue", sans-serif;
  --body: "DM Sans", sans-serif;
  --mono: "Space Mono", monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* Custom cursor */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition:
    transform 0.15s ease,
    width 0.2s,
    height 0.2s;
  transform: translate(-50%, -50%);
}

.cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(200, 255, 0, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition:
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    width 0.3s,
    height 0.3s,
    opacity 0.3s;
  transform: translate(-50%, -50%);
}

body:hover .cursor-ring {
  opacity: 1;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 3px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  mix-blend-mode: normal;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.9) 0%,
    transparent 100%
  );
  backdrop-filter: blur(0px);
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: var(--heading);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--accent);
  color: #080808;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 700;
  transition:
    background 0.2s,
    transform 0.2s;
}

.nav-cta:hover {
  background: #d4ff1a;
  transform: translateY(-1px);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0 48px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 60% 40%,
      rgba(200, 255, 0, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 50% at 10% 80%,
      rgba(255, 61, 0, 0.06) 0%,
      transparent 50%
    );
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.hero-title {
  font-family: var(--heading);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -1px;
  margin-bottom: 0;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title .line:nth-child(2) span {
  animation-delay: 0.12s;
}

.hero-title .line:nth-child(3) span {
  animation-delay: 0.24s;
}

.hero-title .accent-word {
  color: var(--accent);
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

.hero-sub {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: end;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-desc {
  font-size: 16px;
  color: rgba(245, 245, 240, 0.55);
  line-height: 1.7;
  max-width: 360px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}

.btn-primary {
  background: var(--accent);
  color: #080808;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 16px 32px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 255, 0, 0.25);
}

.btn-ghost {
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 245, 240, 0.3);
  padding-bottom: 2px;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 0 40px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-stats {
  display: flex;
  gap: 48px;
}

.stat-num {
  font-family: var(--heading);
  font-size: 42px;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.hero-scroll {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  display: block;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* MARQUEE */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  background: var(--surface);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  font-family: var(--heading);
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 32px;
  flex-shrink: 0;
}

.marquee-item .dot {
  color: var(--accent);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ABOUT */
.about {
  padding: 120px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-tag::before {
  content: "//";
  opacity: 0.5;
}

.about-headline {
  font-family: var(--heading);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
  color: var(--white);
}

.about-headline em {
  color: var(--accent);
  font-style: normal;
}

.about-body {
  padding-top: 20px;
}

.about-text {
  font-size: 15px;
  color: rgba(245, 245, 240, 0.55);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-image-wrap {
  position: relative;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: "PRISM ADVERTO";
  position: absolute;
  font-family: var(--heading);
  font-size: 14px;
  letter-spacing: 6px;
  color: rgba(200, 255, 0, 0.15);
  bottom: 24px;
  left: 24px;
}

.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-accent span {
  font-family: var(--heading);
  font-size: 48px;
  color: #080808;
}

.about-visual-bg {
  position: absolute;
  top: -30px;
  left: -30px;
  right: 30px;
  bottom: 30px;
  border: 1px solid var(--border);
  z-index: -1;
}

/* SERVICES */
.services {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}

.services-headline {
  font-family: var(--heading);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9;
}

.services-desc {
  max-width: 320px;
  font-size: 14px;
  color: rgba(245, 245, 240, 0.45);
  line-height: 1.7;
  text-align: right;
}

.services-list {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 60px 1fr auto 60px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  cursor: none;
  transition: padding-left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: rgba(200, 255, 0, 0.03);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-item:hover::before {
  width: 100%;
}

.service-item:hover {
  padding-left: 16px;
}

.service-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
}

.service-name {
  font-family: var(--heading);
  font-size: clamp(28px, 4vw, 52px);
  letter-spacing: 1px;
  transition: color 0.3s;
}

.service-item:hover .service-name {
  color: var(--accent);
}

.service-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  border: 1px solid var(--border);
}

.service-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s;
  color: var(--muted);
  font-size: 18px;
}

.service-item:hover .service-arrow {
  background: var(--accent);
  border-color: var(--accent);
  color: #080808;
  transform: rotate(-45deg);
}

/* WORK GRID */
.work {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.work-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.work-headline {
  font-family: var(--heading);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 0.9;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.work-card {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  cursor: none;
  group: true;
}

.work-card:nth-child(1) {
  grid-column: span 7;
  aspect-ratio: 16/9;
}

.work-card:nth-child(2) {
  grid-column: span 5;
  aspect-ratio: 4/3;
}

.work-card:nth-child(3) {
  grid-column: span 4;
  aspect-ratio: 4/3;
}

.work-card:nth-child(4) {
  grid-column: span 8;
  aspect-ratio: 16/7;
}

.work-card-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-card-bg {
  transform: scale(1.05);
}

.wc1 {
  background: linear-gradient(135deg, #1a2a0a 0%, #2d4a1a 50%, #1a3a0a 100%);
}

.wc2 {
  background: linear-gradient(135deg, #2a1a0a 0%, #4a2a1a 50%, #3a1a0a 100%);
}

.wc3 {
  background: linear-gradient(135deg, #0a1a2a 0%, #1a2a4a 50%, #0a1a3a 100%);
}

.wc4 {
  background: linear-gradient(135deg, #1a0a2a 0%, #2a1a4a 50%, #1a0a3a 100%);
}

.work-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-card-label {
  transform: translateY(0);
}

.work-card-title {
  font-family: var(--heading);
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
}

.work-card-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
}

.work-card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
}

.work-card-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  opacity: 1;
  font-family: var(--heading);
  letter-spacing: 8px;
  color: white;
}

/* INDUSTRIES */
.industries {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.industries-header {
  margin-bottom: 40px;
}

.industries-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.industries-scroll::-webkit-scrollbar {
  display: none;
}

.industry-chip {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 20px;
  border: 1px solid var(--border);
  white-space: nowrap;
  color: var(--muted);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  cursor: none;
  flex-shrink: 0;
}

.industry-chip:hover,
.industry-chip.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(200, 255, 0, 0.05);
}

/* BRANDS */
.brands {
  padding: 120px 48px;
  border-top: 1px solid var(--border);

}

.brands-header {
  margin-bottom: 56px;
}

.brands-headline {
  font-family: var(--heading);
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1;
}

.brands-headline span {
  color: var(--accent);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
}

.brand-cell {
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
  cursor: none;
}

.brand-cell:hover {
  background: rgba(200, 255, 0, 0.04);
}

.brand-cell:nth-child(5n) {
  border-right: none;
}

.brand-name {
  font-family: var(--heading);
  font-size: 22px;
  letter-spacing: 3px;
  color: rgba(245, 245, 240, 0.25);
  text-transform: uppercase;
  transition: color 0.3s;
}

.brand-cell:hover .brand-name {
  color: rgba(245, 245, 240, 0.8);
}

/* CTA SECTION */
.cta-section {
  padding: 160px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 60% at 50% 50%,
    rgba(200, 255, 0, 0.05) 0%,
    transparent 70%
  );
}

.cta-headline {
  font-family: var(--heading);
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.9;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.cta-headline em {
  color: var(--accent);
  font-style: normal;
  display: block;
}

.cta-sub {
  font-size: 16px;
  color: rgba(245, 245, 240, 0.45);
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--accent);
  color: #080808;
  font-family: var(--heading);
  font-size: 24px;
  letter-spacing: 2px;
  padding: 20px 48px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(200, 255, 0, 0.2);
}

.cta-btn svg {
  transition: transform 0.3s;
}

.cta-btn:hover svg {
  transform: translateX(6px);
}

/* BLOG */
.blog {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.blog-headline {
  font-family: var(--heading);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--surface);
  padding: 32px;
  border: 1px solid var(--border);
  transition:
    border-color 0.3s,
    transform 0.3s;
  cursor: none;
}

.blog-card:hover {
  border-color: rgba(200, 255, 0, 0.3);
  transform: translateY(-4px);
}

.blog-cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.blog-title {
  font-family: var(--heading);
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.blog-card:hover .blog-title {
  color: var(--accent);
}

.blog-excerpt {
  font-size: 13px;
  color: rgba(245, 245, 240, 0.4);
  line-height: 1.7;
  margin-bottom: 24px;
}

.blog-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* FOOTER */
footer {
  padding: 80px 48px 40px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .logo {
  font-family: var(--heading);
  font-size: 36px;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
}

.footer-brand .logo span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 13px;
  color: rgba(245, 245, 240, 0.4);
  line-height: 1.8;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 13px;
  color: rgba(245, 245, 240, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-copy {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}

.social-link:hover {
  border-color: var(--accent);
  color: #080808;
  background: var(--accent);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

/* Noise overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.025;
  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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .about,
  .services,
  .work,
  .brands,
  .blog,
  .industries,
  .cta-section,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .hero-sub {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .work-card:nth-child(1),
  .work-card:nth-child(2),
  .work-card:nth-child(3),
  .work-card:nth-child(4) {
    grid-column: span 12;
  }

  .hero-stats {
    gap: 24px;
  }
}



/* Customized css */
img.logo-img {
    width: 60px;
}
.work-card-icon img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
span.brand-name img {
    width: 150px;
}


/* Contact form */
section.form-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 60px;
}

section.form-container form {
    width: 100%;
    max-width: 560px;
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 48px 40px;
}

input.name, .textarea, .email, .companyname, .tel_num {
    padding: 14px 16px;
    width: 100%;
    margin: 6px 0;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--white);
    font-family: var(--body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

input.name:focus, .textarea:focus, .email:focus, .companyname:focus, .tel_num:focus {
    border-color: var(--accent);
}

.textarea {
    resize: vertical;
    min-height: 120px;
}

button#submit {
    background-color: var(--accent);
    border: none;
    color: #080808;
    padding: 16px 40px;
    font-size: 15px;
    font-family: var(--mono);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin: 20px 0;
    transition: background 0.2s, transform 0.2s;
}

button#submit:hover {
    background: #d4ff1a;
    transform: translateY(-2px);
}}

/* =============================================
   MOBILE RESPONSIVE — COMPREHENSIVE OVERRIDES
   ============================================= */

/* Hide custom cursor on touch devices */
@media (hover: none), (pointer: coarse) {
    body {
        cursor: auto;
    }
    .cursor,
    .cursor-ring {
        display: none !important;
    }
    .service-item,
    .work-card,
    .blog-card,
    .brand-cell,
    .industry-chip {
        cursor: auto;
    }
}

/* ---- Tablet: max 768px ---- */
@media (max-width: 768px) {

    /* Nav */
    nav {
        padding: 14px 20px;
    }
    .nav-links {
        display: none;
    }
    .nav-cta {
        font-size: 10px;
        padding: 9px 14px;
    }

    /* Hero */
    .hero {
        padding: 0 20px;
    }
    .hero-content {
        padding-top: 100px;
    }
    .hero-sub {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .hero-actions {
        justify-content: flex-start;
    }
    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .stat-num {
        font-size: 32px;
    }
    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px 0 32px;
    }
    .hero-scroll {
        display: none;
    }

    /* About */
    .about {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 20px;
    }
    .about div img {
        width: 100%;
        height: auto;
    }

    /* Services */
    .services {
        padding: 80px 20px;
    }
    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
    .services-desc {
        text-align: left;
        max-width: 100%;
    }
    .service-item {
        grid-template-columns: 40px 1fr 40px;
        gap: 8px;
    }
    .service-tag {
        display: none;
    }

    /* Work */
    .work {
        padding: 80px 20px;
    }
    .work-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .work-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .work-card:nth-child(1),
    .work-card:nth-child(2),
    .work-card:nth-child(3),
    .work-card:nth-child(4) {
        grid-column: span 1;
        aspect-ratio: 16 / 9;
    }
    .work-card-icon img {
        height: 240px;
    }

    /* Industries */
    .industries {
        padding: 60px 20px;
    }

    /* Brands */
    .brands {
        padding: 80px 20px;
    }
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .brand-cell:nth-child(5n) {
        border-right: 1px solid var(--border);
    }
    .brand-cell:nth-child(2n) {
        border-right: none;
    }
    span.brand-name img {
        width: 110px;
    }

    /* Blog / Gallery */
    .blog {
        padding: 80px 20px;
    }
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* CTA */
    .cta-section {
        padding: 100px 20px;
    }
    .cta-headline {
        font-size: clamp(44px, 12vw, 88px);
    }
    .cta-btn {
        font-size: 18px;
        padding: 16px 32px;
        gap: 12px;
    }

    /* Footer */
    footer {
        padding: 60px 20px 32px;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand {
        grid-column: span 2;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    /* Contact form page */
    section.form-container {
        padding: 100px 16px 48px;
    }
    section.form-container form {
        padding: 32px 20px;
    }
    /* Scale down reCAPTCHA if it overflows */
    .g-recaptcha {
        transform-origin: 0 0;
    }
}

/* ---- Small mobile: max 480px ---- */
@media (max-width: 480px) {

    /* Nav */
    nav {
        padding: 12px 16px;
    }

    /* Hero */
    .hero {
        padding: 0 16px;
    }
    .hero-stats {
        gap: 16px;
    }
    .stat-num {
        font-size: 28px;
    }
    .btn-primary {
        padding: 14px 24px;
        font-size: 10px;
        width: 100%;
        justify-content: center;
    }

    /* About */
    .about {
        padding: 60px 16px;
    }

    /* Brands */
    .brands {
        padding: 60px 16px;
    }
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    span.brand-name img {
        width: 120px;
    }

    /* Work images */
    .work-card-icon img {
        height: 200px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-socials {
        gap: 10px;
    }

    /* Contact page form */
    section.form-container {
        padding: 90px 12px 40px;
        align-items: flex-start;
    }
    section.form-container form {
        padding: 24px 16px;
    }
    button#submit {
        width: 100%;
        padding: 16px;
    }
    /* Shrink reCAPTCHA on very small screens */
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}