/* ==========================================================================
   CLIPPY — design tokens
   ========================================================================== */
:root {
  /* surfaces */
  --bg-base: #08090a;
  --bg-raised: #0e1113;
  --bg-raised-2: #15181b;
  --bg-overlay: rgba(255, 255, 255, 0.035);
  /* borders */
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --border-green: rgba(52, 224, 161, 0.35);
  /* text */
  --text-primary: #f3f5f6;
  --text-secondary: #98a1a8;
  --text-tertiary: #5f676e;
  /* accent — green stays an accent only */
  --green: #38e6a6;
  --green-dim: #22b884;
  --green-deep: #0f4a38;
  --green-glow: rgba(56, 230, 166, 0.22);
  --green-soft: rgba(56, 230, 166, 0.09);
  --green-text: #6df3bf;
  /* status */
  --amber: #f0b559;
  --amber-soft: rgba(240, 181, 89, 0.12);
  /* type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
  /* geometry */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 999px;
  --shadow-card: 0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 24px 48px -28px rgba(0, 0, 0, 0.75);
  --shadow-pop: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 30px 60px -20px rgba(0, 0, 0, 0.65);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  overflow-x: hidden;
}

h1, h2, h3, h4, p, figure {
  margin: 0;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
  display: block;
}

::selection {
  background: var(--green-soft);
  color: var(--green-text);
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ==========================================================================
   Atmosphere — layered background lighting
   ========================================================================== */
body::before, body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, black 0%, transparent 70%);
  opacity: 0.6;
  animation-duration: 1.4s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

body::after {
  background: radial-gradient(560px 380px at 12% -6%, var(--green-glow), transparent 60%), radial-gradient(480px 340px at 88% 6%, rgba(56, 140, 230, 0.10), transparent 60%), radial-gradient(900px 500px at 50% 100%, rgba(56, 230, 166, 0.05), transparent 60%), radial-gradient(720px 460px at 6% 88%, rgba(56, 230, 166, 0.045), transparent 65%), radial-gradient(1400px 800px at 50% 45%, rgba(255, 255, 255, 0.018), transparent 70%);
  filter: blur(10px);
  /* Ambient "breathing" life — makes the background feel alive, not static */
  animation: breathe 9s ease-in-out infinite;
  will-change: opacity, transform;
}

@keyframes breathe {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.035);
  }
}

main, header, footer {
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-primary {
  background: linear-gradient(180deg, #4bf0b3, var(--green-dim));
  color: #04150f;
  box-shadow: 0 0 0 1px rgba(56, 230, 166, 0.3) inset, 0 4px 8px -6px var(--green-glow);
}

.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(56, 230, 166, 0.45) inset, 0 6px 12px -8px var(--green-glow);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-raised-2);
  color: var(--text-primary);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--border-green);
  background: var(--bg-overlay);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--border-green);
  color: var(--green-text);
  background: var(--green-soft);
}

.btn-sm {
  height: 38px;
  padding: 0 16px;
  font-size: 13.5px;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ==========================================================================
   Nav
   ========================================================================== */
.nav {
  position: static;
  background: rgba(8, 9, 10, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 12px var(--green-glow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > a:not(.nav-cta) {
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-links > a:not(.nav-cta):hover {
  color: var(--text-primary);
  background: var(--bg-overlay);
}

.nav-links > a.active {
  color: var(--text-primary);
  background: var(--bg-raised-2);
}

/* nav-cta — Discord pill. Hover intentionally disabled (active-press only). */
.nav-cta {
  position: relative;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #04150f;
  background: linear-gradient(180deg, #4bf0b3 0%, var(--green-dim) 100%);
  box-shadow: 0 0 0 1px rgba(56, 230, 166, 0.45) inset, 0 1px 0 rgba(255, 255, 255, 0.35) inset, 0 8px 20px -8px var(--green-glow);
  transition: transform 0.2s var(--ease);
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}

.nav-cta svg {
  width: 16px;
  height: 16px;
  color: #04150f;
}

.nav-cta:active {
  transform: scale(0.98);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  min-height: calc(100vh - 68px);
  min-height: calc(100dvh - 68px);
  padding: 96px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px 7px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-strong);
  background: var(--bg-overlay);
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px 2px var(--green-glow);
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  max-width: 780px;
  margin: 0 auto;
  padding-bottom: 0.08em;
  background: linear-gradient(180deg, #ffffff 20%, #b9c0c5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow: visible;
}

.hero-sub {
  max-width: 560px;
  margin: 22px auto 0;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  color: var(--text-tertiary);
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.scroll-indicator:hover {
  color: var(--green-text);
  border-color: var(--border-green);
  background: var(--green-soft);
}

.scroll-indicator svg {
  display: block;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
  padding: 88px 0;
  border-top: 1px solid var(--border);
}

.section:first-of-type {
  border-top: none;
}

.section-header {
  margin-bottom: 44px;
}

.section-header h2 {
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.025em;
}

.section-header p {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 16px;
}

.text-center {
  text-align: center;
}

.text-center p {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.mt-48 {
  margin-top: 48px;
}

/* ==========================================================================
   Why CLIPPY — benefit cards
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.benefit-card {
  background: var(--bg-raised);
  padding: 36px 30px 32px;
  transition: background 0.25s var(--ease);
  position: relative;
  border-right: 1px solid var(--border);
}

.benefit-card:last-child {
  border-right: none;
}

.benefit-card:hover {
  background: var(--bg-raised-2);
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, var(--bg-raised-2), var(--bg-raised));
  border: 1px solid var(--border-strong);
  margin-bottom: 22px;
  color: var(--green);
  position: relative;
}

.benefit-icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(155deg, var(--green-glow), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
}

.benefit-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.benefit-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ==========================================================================
   Stats row
   ========================================================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 56px;
}

.stat {
  background: var(--bg-raised);
  padding: 26px 20px;
  text-align: center;
}

.stat-value {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: normal;
  padding-right: 0.06em;
  background: linear-gradient(180deg, #ffffff, var(--green-text));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.01em;
}

/* ==========================================================================
   Campaigns grid + cards
   ========================================================================== */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.search-input, .filter-select {
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-raised);
  color: var(--text-primary);
  font-size: 14px;
  padding: 0 14px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.search-input {
  flex: 1 1 240px;
}

.search-input::placeholder {
  color: var(--text-tertiary);
}

.filter-select {
  flex: 0 0 auto;
  appearance: none;
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2398a1a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.search-input:focus, .filter-select:focus {
  border-color: var(--border-green);
  background: var(--bg-raised-2);
  outline: none;
}

.results-count {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.campaigns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.campaign-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s var(--ease);
}

.campaign-card:hover {
  border-color: rgba(56, 230, 166, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(56, 230, 166, 0.05) inset, 0 12px 32px -20px rgba(56, 230, 166, 0.08), 0 0 20px -14px rgba(56, 230, 166, 0.04);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-raised-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-secondary);
  flex-shrink: 0;
  cursor: default;
}

.card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title-block {
  flex: 1;
  min-width: 0;
}

.card-title {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default;
}

.card-platform {
  font-size: 12.5px;
  color: var(--text-tertiary);
  margin-top: 2px;
  cursor: default;
}

.card-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.card-status {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}

.card-status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.card-status.active {
  color: var(--green-text);
  background: var(--green-soft);
  border: 1px solid rgba(56, 230, 166, 0.25);
}

.card-status.active::before {
  background: var(--green);
  box-shadow: 0 0 8px 1px var(--green-glow);
  /* Subtle living pulse */
  animation: pulse-dot 2.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    box-shadow: 0 0 8px 1px var(--green-glow);
  }
  50% {
    box-shadow: 0 0 12px 3px var(--green-glow);
  }
}

.card-status.ending {
  color: var(--amber);
  background: var(--amber-soft);
  border: 1px solid rgba(240, 181, 89, 0.22);
}

.card-status.ending::before {
  background: var(--amber);
}

.card-status.highest-pay {
  color: #7fb8f5;
  background: rgba(56, 140, 230, 0.12);
  border: 1px solid rgba(56, 140, 230, 0.3);
}

.card-status.highest-pay::before {
  background: #388ce6;
  box-shadow: 0 0 8px 1px rgba(56, 140, 230, 0.35);
}

.card-earnings {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(155deg, var(--bg-raised-2), var(--bg-raised));
  border: 1px solid var(--border);
  cursor: default;
}

.earnings-label {
  font-size: 11.5px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: default;
}

.earnings-value {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: default;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-tag {
  position: relative;
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--bg-overlay);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  cursor: default;
  transition: all 0.3s var(--ease);
}

/* Days left — yellow accent */
.card-meta .card-tag:first-child {
  background: linear-gradient(155deg, rgba(251, 191, 36, 0.05), rgba(251, 191, 36, 0.01));
  border: 1.5px solid rgba(251, 191, 36, 0.3);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.05) inset, 0 2px 6px -4px rgba(251, 191, 36, 0.04);
}

.card-meta .card-tag:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.campaign-card:hover .card-meta .card-tag:first-child {
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.07) inset, 0 2px 8px -4px rgba(251, 191, 36, 0.05);
  background: linear-gradient(155deg, rgba(251, 191, 36, 0.08), rgba(251, 191, 36, 0.02));
}

.campaign-card:hover .card-meta .card-tag:first-child::before {
  opacity: 0.2;
}

/* Min views — red accent */
.card-meta .card-tag:nth-child(2) {
  background: linear-gradient(155deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.01));
  border: 1.5px solid rgba(239, 68, 68, 0.3);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.05) inset, 0 2px 6px -4px rgba(239, 68, 68, 0.04);
}

.card-meta .card-tag:nth-child(2)::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

.campaign-card:hover .card-meta .card-tag:nth-child(2) {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.07) inset, 0 2px 8px -4px rgba(239, 68, 68, 0.05);
  background: linear-gradient(155deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.02));
}

.campaign-card:hover .card-meta .card-tag:nth-child(2)::before {
  opacity: 0.2;
}

.card-platforms {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

/* Platform icons — static glow, no hover reaction */
.platform-icon {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(155deg, rgba(56, 230, 166, 0.04), rgba(56, 230, 166, 0.01));
  border: 1.5px solid rgba(56, 230, 166, 0.2);
  box-shadow: 0 0 0 1px rgba(56, 230, 166, 0.08) inset, 0 4px 12px -6px rgba(56, 230, 166, 0.1), 0 0 16px -10px rgba(56, 230, 166, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
  cursor: default;
  overflow: hidden;
  color: rgba(56, 230, 166, 0.6);
}

.platform-icon img, .platform-icon svg {
  width: 14px;
  height: 14px;
  object-fit: contain;
  color: inherit;
}

.platform-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(56, 230, 166, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s var(--ease);
  pointer-events: none;
}

.platform-icon:hover {
  transform: none;
}

.platform-icon:hover::after {
  opacity: 0;
}

.platform-icon:active {
  transform: scale(0.98);
  box-shadow: 0 0 0 1px rgba(56, 230, 166, 0.15) inset, 0 4px 10px -4px rgba(56, 230, 166, 0.1), 0 0 16px -8px rgba(56, 230, 166, 0.07);
}

.card-footer {
  margin-top: auto;
}

.card-footer .btn {
  width: 100%;
}

.empty-state {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-secondary);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
}

.empty-state p {
  margin-bottom: 16px;
}

/* ==========================================================================
   About page
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px 2px var(--green-glow);
}

.about-main {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-hero {
  padding: 100px 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.about-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.12;
  padding-bottom: 0.06em;
  background: linear-gradient(180deg, #ffffff 20%, #b9c0c5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow: visible;
  margin-top: 0;
}

.about-lead {
  margin: 20px auto 0;
  max-width: 480px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
}

.about-pillars {
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.pillar-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.pillar-card:hover {
  background: var(--bg-raised-2);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-raised-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 22px;
}

.pillar-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 10px;
}

.pillar-card h2 {
  font-size: 18px;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin-bottom: 12px;
}

.pillar-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.7;
}

.about-contact {
  padding: 72px 0 88px;
}

.contact-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-top: 4px;
}

.contact-inner p {
  margin: 14px auto 0;
  color: var(--text-secondary);
  font-size: 15px;
}

.contact-inner p a {
  color: var(--green-text);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}

.contact-inner p a:hover {
  color: var(--text-primary);
}

.about-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Signup box
   ========================================================================== */
.signup-box {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 52px;
  text-align: center;
  background: radial-gradient(460px 240px at 50% 0%, var(--green-glow), transparent 70%), var(--bg-raised);
}

.signup-box h3 {
  font-size: 24px;
  letter-spacing: -0.02em;
}

.signup-box p {
  margin-top: 10px;
  color: var(--text-secondary);
}

.signup-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 26px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.signup-form input {
  flex: 1;
  height: 46px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-strong);
  background: var(--bg-raised-2);
  color: var(--text-primary);
  padding: 0 18px;
  font-size: 14px;
}

.signup-form input::placeholder {
  color: var(--text-tertiary);
}

.signup-form input:focus {
  outline: none;
  border-color: var(--border-green);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-tertiary);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
.reveal-fade-up, .reveal-fade-in {
  opacity: 0;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}

.reveal-fade-up {
  transform: translateY(16px);
}

.reveal-fade-in {
  transform: none;
}

.reveal-fade-up.is-revealed, .reveal-fade-in.is-revealed {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Campaign modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 5, 6, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal-overlay[hidden] {
  display: none;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--bg-raised-2);
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.modal-close:hover {
  color: var(--text-primary);
  border-color: var(--border-green);
}

.modal-campaign-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 20px;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
}

.modal-partner-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-tertiary);
  font-style: italic;
}

.modal-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-email-input {
  width: 100%;
  height: 46px;
  margin-top: 16px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-raised-2);
  color: var(--text-primary);
  font-size: 14px;
}

.modal-email-input::placeholder {
  color: var(--text-tertiary);
}

.modal-email-input:focus {
  outline: none;
  border-color: var(--border-green);
}

.modal-skip {
  padding: 8px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 13.5px;
  cursor: pointer;
  transition: color 0.2s var(--ease);
}

.modal-skip:hover {
  color: var(--text-primary);
}

.modal-redirecting {
  padding: 20px 0;
  text-align: center;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 14px;
}

/* ==========================================================================
   Email wall — full-page gate (no access without email)
   ========================================================================== */
.email-wall-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
  padding: 32px 20px;
}

.email-wall-screen[hidden] {
  display: none;
}

.email-wall-container {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.email-wall-header {
  text-align: center;
}

.email-wall-header .logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

.email-wall-header .logo::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 12px var(--green-glow);
}

.email-wall-content {
  text-align: center;
}

.email-wall-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(56, 230, 166, 0.25);
  background: var(--green-soft);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: 32px;
}

.email-wall-badge svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

.email-wall-content h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #ffffff 25%, #b9c0c5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.email-wall-subtitle {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.email-wall-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.email-wall-form input {
  height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-raised);
  color: var(--text-primary);
  font-size: 15px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.email-wall-form input::placeholder {
  color: var(--text-tertiary);
}

.email-wall-form input:focus {
  outline: none;
  border-color: var(--border-green);
  background: var(--bg-raised-2);
  box-shadow: 0 0 0 3px rgba(56, 230, 166, 0.08);
}

.email-wall-note {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 28px;
}

.email-wall-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(155deg, var(--bg-raised-2), var(--bg-raised));
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  margin-top: 2px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.email-wall-footer {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.email-wall-footer p {
  font-size: 12.5px;
  color: var(--text-tertiary);
}

/* Main wrapper */
.main-wrapper {
  display: block;
}

.main-wrapper[hidden] {
  display: none;
}

/* ==========================================================================
   Campaign gate — clean email unlock
   ========================================================================== */
.campaign-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 20px;
}

.campaign-gate[hidden] {
  display: none;
}

.campaign-gate-inner {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  text-align: center;
}

.campaign-gate-inner .logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.campaign-gate-inner .logo::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 12px var(--green-glow);
}

.gate-content h1 {
  font-size: 32px;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.gate-content > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.gate-form input {
  height: 46px;
  padding: 0 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-raised);
  color: var(--text-primary);
  font-size: 14px;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.gate-form input::placeholder {
  color: var(--text-tertiary);
}

.gate-form input:focus {
  outline: none;
  border-color: var(--border-green);
  background: var(--bg-raised-2);
}

.gate-form button {
  height: 46px;
}

.gate-subtext {
  font-size: 12.5px;
  color: var(--text-tertiary);
}

/* ==========================================================================
   Campaigns page layout
   ========================================================================== */
.campaigns-main {
  position: relative;
  z-index: 1;
}

.campaigns-hero {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.campaigns-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.campaigns-hero p {
  font-size: 15px;
  color: var(--text-secondary);
}

.campaigns-section {
  padding: 48px 0;
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 860px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .campaigns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .about-hero {
    padding: 72px 0 56px;
  }
  .about-pillars {
    padding: 56px 0;
  }
  .about-contact {
    padding: 56px 0 72px;
  }
  .pillar-grid {
    grid-template-columns: 1fr;
  }
  .pillar-card {
    padding: 28px 24px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  /* Nav — compact single-line bar, no hamburger dropdown */
  .nav-toggle {
    display: none;
  }
  .nav-inner {
    flex-wrap: nowrap;
    height: auto;
    padding: 10px 12px;
    gap: 6px;
  }
  .logo {
    font-size: 12px;
    gap: 5px;
    flex-shrink: 0;
  }
  .logo::before {
    width: 6px;
    height: 6px;
  }
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    background: transparent;
    border-bottom: none;
    padding: 0;
    min-width: 0;
  }
  .nav-links > a {
    width: auto;
  }
  .nav-links > a:not(.nav-cta) {
    padding: 5px 9px;
    font-size: 11px;
    border-radius: var(--radius-full);
    white-space: nowrap;
  }
  .nav-links > a.active {
    background: var(--bg-raised-2);
    color: var(--text-primary);
  }
  .nav-cta {
    margin-left: 2px;
    justify-content: center;
    width: auto;
    height: 22px;
    padding: 0 7px;
    font-size: 9px;
    gap: 3px;
    flex-shrink: 0;
    white-space: nowrap;
  }
  .nav-cta svg {
    width: 9px;
    height: 9px;
  }

  .hero {
    padding: 72px 0;
  }
  .hero-badge {
    padding: 5px 13px 5px 10px;
    font-size: 11px;
    margin-bottom: 22px;
  }
  .hero-badge::before {
    width: 5px;
    height: 5px;
  }

  .section {
    padding: 64px 0;
  }

  /* Benefits grid — single column, divider between cards */
  .benefits-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
    gap: 0;
  }
  .benefit-card {
    padding: 24px 20px;
    border-right: none;
    border-bottom: none;
  }
  .benefit-card + .benefit-card {
    border-top: 1px solid var(--border);
  }
  .benefit-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 16px;
  }
  .benefit-icon svg {
    width: 18px;
    height: 18px;
  }
  .benefit-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .benefit-card p {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
    border-radius: var(--radius-md);
  }
  .stat {
    padding: 18px 12px;
  }
  .stat-value {
    font-size: 22px;
  }
  .stat-label {
    font-size: 11.5px;
  }

  .campaigns-grid {
    grid-template-columns: 1fr;
  }
  .filters-bar {
    flex-direction: column;
  }
  .filter-select {
    width: 100%;
  }

  .signup-form {
    flex-direction: column;
  }

  .modal {
    max-width: 100%;
    width: calc(100% - 24px);
    padding: 24px 20px;
  }
  .profile-metrics-row {
    gap: 20px;
    flex-wrap: wrap;
  }

  .email-wall-screen {
    padding: 24px 16px;
  }
  .email-wall-container {
    gap: 48px;
  }
  .email-wall-content h1 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .email-wall-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .email-wall-features {
    padding: 20px;
    gap: 12px;
  }
  .feature-item span {
    font-size: 13.5px;
  }

  .campaign-gate-inner {
    gap: 40px;
  }
  .gate-content h1 {
    font-size: 26px;
  }
  .campaigns-hero {
    padding: 40px 0;
  }
  .campaigns-hero h1 {
    font-size: 24px;
  }
  .campaigns-section {
    padding: 32px 0;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ==========================================================================
   Footer alignment — centered across all viewports
   ========================================================================== */
.footer-inner {
  justify-content: center;
  text-align: center;
}

.footer-links {
  justify-content: center;
}

/* ==========================================================================
   Centre Patch — index.html Featured Campaigns header
   ========================================================================== */
#campaigns-preview .section-header {
  text-align: center;
}

#campaigns-preview .section-header p {
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Force-hide any category/niche pill in the campaign modal, regardless of source */
.modal .card-meta .card-tag:nth-child(3) {
  display: none !important;
}