/* ============================================
   FORGE — styles.css
   Design: sales.co mechanical aesthetic + joseph.so color palette
   ============================================ */

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

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

body {
  font-family: 'Geist Sans Variable', 'Geist Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--tx);
  background-color: var(--bg);
  transition: background-color 0.2s, color 0.2s;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* ---- CSS VARIABLES ---- */
:root {
  /* Dark mode (default) */
  --bg: #0a0a0b;
  --bg-2: #111113;
  --surface: #232528;
  --border: #2c2e31;
  --border-2: #35373a;
  --tx: #ffffff;
  --tx-2: #b8b9bb;
  --tx-3: #8b8c8e;
  --accent: #4ade80;
  --accent-hover: #22c55e;
  --accent-text: #0a0a0b;
}

:root.light {
  --bg: #ffffff;
  --bg-2: #f9fafb;
  --surface: #f1f2f3;
  --border: #e3e4e6;
  --border-2: #d1d2d4;
  --tx: #1a1c1f;
  --tx-2: #5b5c5e;
  --tx-3: #8b8c8e;
  --accent: #22c55e;
  --accent-hover: #16a34a;
  --accent-text: #ffffff;
}

/* ---- UTILITY ---- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  display: inline-block;
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section {
  padding: 120px 0;
}

.section-alt {
  background-color: var(--bg-2);
}

.section-headline {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--tx);
  margin-bottom: 20px;
  max-width: 680px;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--tx-2);
  max-width: 560px;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 48px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 2px;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  border: 1px solid var(--tx);
  color: var(--tx);
  background: transparent;
}

.btn-primary:hover {
  background: var(--tx);
  color: var(--bg);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-text);
  border: 1px solid var(--accent);
}

.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.btn-ghost {
  color: var(--tx-2);
  border: 1px solid var(--border);
  background: transparent;
}

.btn-ghost:hover {
  color: var(--tx);
  border-color: var(--tx-3);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 0.875rem;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 28, 31, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.2s;
}

.light .nav {
  background: rgba(255, 255, 255, 0.85);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tx-3);
  transition: color 0.15s;
}

.nav-link:hover {
  color: var(--tx);
}

.nav-cta {
  padding: 8px 20px;
  font-size: 0.75rem;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--tx-3);
  transition: color 0.15s;
}

.theme-toggle:hover {
  color: var(--tx);
}

/* Show sun in dark, moon in light */
.icon-moon { display: none; }
.light .icon-sun { display: none; }
.light .icon-moon { display: block; }

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--tx);
  transition: all 0.2s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 16px;
  border-top: 1px solid var(--border);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-link {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tx-2);
  padding: 8px 0;
}

.mobile-menu-cta {
  margin-top: 8px;
}

/* ---- HERO ---- */
.hero {
  padding-top: 180px;
  padding-bottom: 120px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-headline {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.highlight {
  display: inline;
  background-image: linear-gradient(rgba(74, 222, 128, 0.3), rgba(74, 222, 128, 0.3));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0% 0.35em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding-bottom: 4px;
}

.highlight.animate {
  animation: highlightSweep 0.8s ease-out forwards;
}

@keyframes highlightSweep {
  from { background-size: 0% 0.35em; }
  to { background-size: 100% 0.35em; }
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--tx-2);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* ---- PROBLEM ---- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.problem-icon {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 2px;
}

.problem-item p {
  color: var(--tx-2);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ---- STEPS ---- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.step-card {
  padding: 32px 24px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.15s;
}

.step-card:hover {
  border-color: var(--border-2);
}

.step-number {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--tx-2);
  line-height: 1.6;
}

/* ---- FEATURES ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.15s;
}

.feature-card:hover {
  border-color: var(--border-2);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--tx-2);
  line-height: 1.6;
}

/* ---- BRANDS ---- */
.brands-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 0;
}

.brand-logo {
  height: 28px;
  width: auto;
  opacity: 0.4;
  transition: opacity 0.15s;
}

.brand-logo:hover {
  opacity: 0.7;
}

.light .brand-logo {
  filter: invert(1);
}

/* ---- PRICING (sales.co minimal style) ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  width: 100%;
}

.pricing-card {
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  transition: border-color 0.15s;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--border-2);
}

.pricing-card-featured {
  border-color: var(--tx);
}

.pricing-card-featured:hover {
  border-color: var(--tx);
}

.pricing-badge {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--tx);
  color: var(--bg);
  padding: 4px 12px;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pricing-tier {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tx-3);
  margin-bottom: 12px;
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-period {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--tx-3);
  margin-bottom: 16px;
}

.pricing-detail {
  font-size: 0.875rem;
  color: var(--tx-2);
  margin-top: 8px;
}

.pricing-detail-use {
  margin-top: 12px;
  font-style: italic;
  font-size: 0.8125rem;
}

/* Included with all plans — boxed container */
.pricing-box {
  margin-top: 48px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 48px 40px;
}

.pricing-included-title {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
  color: var(--tx);
}

.pricing-included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.pricing-included-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-included-label {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.pricing-included-item p {
  font-size: 0.875rem;
  color: var(--tx-2);
  line-height: 1.5;
}

/* Full-width CTA */
.pricing-cta-wrap {
  margin-top: 40px;
  width: 100%;
  text-align: center;
}

.btn-block {
  width: 100%;
  padding: 18px 40px;
  font-size: 0.875rem;
}

.pricing-cta-note {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--tx-3);
}

/* ---- ABOUT ---- */
.about-box {
  display: flex;
  align-items: stretch;
  gap: 40px;
  max-width: 720px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 40px;
}

.about-photo {
  width: 160px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-bio {
  font-size: 0.9375rem;
  color: var(--tx-2);
  line-height: 1.7;
}

.about-bio a {
  color: var(--tx);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--border-2);
  transition: text-decoration-color 0.15s;
}

.about-bio a:hover {
  text-decoration-color: var(--tx);
}

.about-links {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--tx-3);
  transition: color 0.15s;
}

.about-link:hover {
  color: var(--tx);
}

/* ---- FAQ ---- */
/* Center section headers globally */
.section > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-headline {
  text-align: center;
}

.faq-list {
  max-width: 680px;
  width: 100%;
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--tx);
  transition: color 0.15s;
}

.faq-question:hover {
  color: var(--tx-2);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--tx-3);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: var(--tx-2);
  line-height: 1.7;
}

/* ---- FINAL CTA ---- */
.section-cta {
  text-align: center;
}

.section-cta .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-cta .section-headline {
  max-width: 560px;
}

.section-cta .section-sub {
  text-align: center;
}

.cta-note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--tx-3);
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-center {
  display: flex;
  gap: 32px;
}

.footer-center a {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tx-3);
  transition: color 0.15s;
}

.footer-center a:hover {
  color: var(--tx);
}

.footer-right {
  display: flex;
  gap: 16px;
}

.footer-right a {
  color: var(--tx-3);
  transition: color 0.15s;
}

.footer-right a:hover {
  color: var(--tx);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--tx-3);
}

.footer-domain {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  letter-spacing: 0.05em;
}

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }

  .hero {
    padding-top: 140px;
    padding-bottom: 80px;
  }

  .hero-headline {
    font-size: 2.75rem;
  }

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

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

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .pricing-card {
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    padding-top: 120px;
    padding-bottom: 64px;
  }

  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .section-headline {
    font-size: 1.75rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

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

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

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card-featured {
    order: -1;
  }

  .pricing-included-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .brands-row {
    gap: 24px;
  }

  .brand-logo {
    height: 22px;
  }

  .about-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 32px 24px;
  }

  .about-photo {
    width: 120px;
    height: 120px;
  }

  .about-links {
    justify-content: center;
  }

  /* Nav mobile */
  .hide-mobile {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  /* Footer mobile */
  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

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

/* ---- ACCESSIBILITY ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .highlight {
    animation: none;
    background-size: 100% 0.35em;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

/* ---- HOMEPAGE ---- */

.home {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.home-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px;
  margin-top: 20vh;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.home-inner.visible {
  opacity: 1;
  transform: translateY(0);
}

.home-contact {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  min-width: 200px;
  padding: 14px 36px;
  border: 1px solid var(--tx);
  color: var(--bg);
  background: var(--tx);
  border-radius: 2px;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15), 0 0 60px rgba(255, 255, 255, 0.05);
}

.light .home-contact {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1), 0 0 60px rgba(0, 0, 0, 0.03);
}

.home-contact:hover {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.25), 0 0 80px rgba(255, 255, 255, 0.08);
}

.light .home-contact:hover {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15), 0 0 80px rgba(0, 0, 0, 0.05);
}

.home-contact.copied {
  border-color: var(--accent);
  color: var(--bg);
  background: var(--accent);
}

.home-theme-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 11;
}

/* ---- CREATIVES HERO ---- */
.hero-arrow {
  margin-top: 32px;
  text-align: center;
}

.hero-scroll-link {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--tx-3);
  transition: color 0.15s;
}

.hero-scroll-link:hover {
  color: var(--tx);
}

.btn-solid {
  background: var(--tx);
  color: var(--bg);
  border: 1px solid var(--tx);
  gap: 8px;
}

.btn-solid:hover {
  background: var(--tx-2);
  border-color: var(--tx-2);
}

.btn-icon {
  padding: 12px;
  line-height: 0;
}

.btn-icon svg {
  display: block;
}

.btn-solid.copied {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-text);
}

.pricing-save {
  font-family: 'Geist Mono Variable', 'Geist Mono', monospace;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 4px;
}

/* ---- PROCESS GRID (2x2) ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- SHOWREEL (Creatives page) ---- */
.showreel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
  width: 100%;
}

.showreel-item {
  position: relative;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.15s;
}

.showreel-item:hover {
  border-color: var(--border-2);
}

.showreel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-2);
  color: var(--tx-3);
}

.showreel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .showreel-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .showreel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

