/* ========================================
   SORCRR MARKET — Industry Landing Pages
   Shared stylesheet for all 16 industry pages
   Font: Urbanist (all weights)
   ======================================== */

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #4B39EF;
  color: #fff;
  padding: 8px 16px;
  z-index: 1000;
  font-size: 14px;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}
:focus-visible {
  outline: 2px solid #4B39EF;
  outline-offset: 2px;
}

:root {
  --primary: #800080;
  --secondary: #39D2C0;
  --amber: #F59E0B;
  --amber-light: #FEF3C7;
  --amber-dark: #92400E;
  --pill: 999px;
  --t: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.3s cubic-bezier(0.22, 1, 0.36, 1);

  /* Industry theme vars — overridden per-page in inline <style> */
  --spread-bg: #FAF3E8;
  --spread-text: #2D5016;
  --spread-accent: #87A878;
  --spread-dark: #2D5016;
  --spread-light: #F0F7E8;
  --spread-gradient: linear-gradient(135deg, #2D5016, #87A878);
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Urbanist', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  background: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

button { cursor: pointer; border: none; font-family: inherit; background: none; }
a { text-decoration: none; color: inherit; }
::selection { background: var(--spread-accent); color: #fff; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.display {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
  transition: color var(--t);
}

.display-italic {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: 0.01em;
  transition: color var(--t);
}

.body-light {
  font-family: 'Urbanist', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  transition: color var(--t);
}

.caps {
  font-family: 'Urbanist';
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color var(--t);
}

.caps-tiny {
  font-family: 'Urbanist';
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  transition: color var(--t);
}

/* =============================================
   SECTION LAYOUT (replaces .spread)
   Normal scroll, no scroll-snap
   ============================================= */
.ip-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 48px;
  min-height: 100vh;
  transition: background var(--t), color var(--t);
}

/* =============================================
   MAGAZINE ANNOTATIONS & MARKS
   ============================================= */
.page-num {
  position: absolute;
  top: 36px;
  right: 48px;
  font-family: 'Urbanist';
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 5px;
  opacity: 0.35;
  transition: color var(--t);
  z-index: 5;
}

.margin-mark {
  position: absolute;
  bottom: 36px;
  left: 48px;
  font-family: 'Urbanist';
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.2;
  transition: color var(--t);
  z-index: 5;
}

.margin-mark-right {
  position: absolute;
  bottom: 36px;
  right: 48px;
  font-family: 'Urbanist';
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.15;
  transition: color var(--t);
  z-index: 5;
}

.hr-rule {
  position: absolute;
  bottom: 0;
  left: 48px;
  right: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.08;
}

.hr-rule-top {
  position: absolute;
  top: 0;
  left: 48px;
  right: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.06;
}

/* =============================================
   HAMBURGER MENU
   ============================================= */
.ham-btn {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 200;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: opacity 0.5s ease, transform 0.3s ease, background 0.3s ease;
}
.ham-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ham-btn:hover {
  background: rgba(255,255,255,0.2);
}
.ham-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}
.ham-btn.open span:nth-child(1) {
  transform: rotate(45deg) translate(2.5px, 2.5px);
}
.ham-btn.open span:nth-child(2) {
  opacity: 0;
}
.ham-btn.open span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -2px);
}

.ham-menu {
  position: fixed;
  top: 78px;
  right: 28px;
  z-index: 199;
  background: rgba(20,20,20,0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 12px 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.96);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.ham-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.ham-menu a {
  display: block;
  padding: 12px 20px;
  color: rgba(255,255,255,0.8);
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}
.ham-menu a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.ham-menu .ham-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 6px 16px;
}

/* =============================================
   SCROLL INDICATOR
   ============================================= */
.scroll-hint {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  animation: scrollBounce 2.4s ease-in-out infinite;
  z-index: 10;
  transition: opacity 0.6s ease-out;
}
.scroll-hint span {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 300;
}
.scroll-hint svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.5;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  padding: 17px 44px;
  border-radius: var(--pill);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--t-fast);
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #fff;
  color: var(--spread-dark);
  transition: color var(--t), transform var(--t-fast), box-shadow var(--t-fast);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-browse {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-browse:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.btn-cta {
  display: inline-block;
  padding: 22px 60px;
  border-radius: var(--pill);
  background: #fff;
  color: var(--spread-dark);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: all var(--t-fast), color var(--t);
}
.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* =============================================
   S1 — HERO
   ============================================= */
.ip-hero {
  background: var(--spread-gradient);
  color: #fff;
  align-items: center;
  text-align: center;
  padding: 0 48px;
  min-height: 100vh;
}

.ip-hero .bg-word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Urbanist', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(70px, 15vw, 200px);
  opacity: 0.08;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
}

.ip-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.ip-hero-content .display {
  font-size: clamp(40px, 6.5vw, 80px);
  margin-bottom: 28px;
}

.ip-hero-content .subtitle {
  font-size: clamp(16px, 2vw, 26px);
  font-weight: 300;
  opacity: 0.8;
  margin-bottom: 14px;
  line-height: 1.5;
}

.ip-hero-content .desc {
  font-size: clamp(13px, 1.3vw, 17px);
  font-weight: 300;
  opacity: 0.5;
  max-width: 520px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

.ip-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   S2 — FEATURES GRID (3x2 glass cards)
   ============================================= */
.ip-features-grid {
  background: var(--spread-light);
  color: var(--spread-text);
  align-items: center;
  text-align: center;
}

.ip-features-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.ip-features-inner .display {
  font-size: clamp(40px, 7vw, 96px);
  margin-bottom: 20px;
}

.ip-features-inner .body-light {
  font-size: clamp(14px, 1.4vw, 19px);
  opacity: 0.5;
  max-width: 520px;
  margin: 0 auto 64px;
}

.ip-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.ip-feat-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: left;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.ip-feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

/* Dark mode feature cards (for dark lightBg industries like Creative) */
.ip-features-grid.dark-mode .ip-feat-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}
.ip-features-grid.dark-mode .ip-feat-card:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.ip-feat-icon {
  font-size: 30px;
  margin-bottom: 20px;
}
.ip-feat-card h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.ip-feat-card p {
  font-weight: 300;
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.65;
}

/* =============================================
   S3 — HOW IT WORKS (2-column)
   ============================================= */
.ip-solution {
  background: var(--spread-bg);
  color: var(--spread-text);
}

.ip-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  gap: 100px;
}

.ip-solution-left .display {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.92;
}

.ip-solution-left .body-light {
  font-size: clamp(14px, 1.3vw, 18px);
  opacity: 0.45;
  margin-top: 24px;
  max-width: 400px;
}

.ip-solution-right {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.step-num {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--spread-accent);
  line-height: 1;
  min-width: 56px;
  transition: color var(--t);
}
.step-content h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.step-content p {
  font-weight: 300;
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.65;
  max-width: 360px;
}

/* =============================================
   S4 — SCREENSHOTS (CSS phone mockups)
   ============================================= */
.ip-screenshots {
  background: var(--spread-dark);
  color: #fff;
  align-items: center;
  text-align: center;
}

.ip-screenshots-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.ip-screenshots-inner .display {
  font-size: clamp(34px, 5.5vw, 72px);
  margin-bottom: 20px;
}

.ip-screenshots-inner .body-light {
  font-size: clamp(14px, 1.3vw, 18px);
  opacity: 0.4;
  max-width: 480px;
  margin: 0 auto 64px;
}

.ip-phones {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
}

.ip-phone {
  width: 220px;
  height: 440px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  position: relative;
  transition: transform var(--t-fast);
}
.ip-phone:hover {
  transform: translateY(-8px);
}

.ip-phone-center {
  width: 240px;
  height: 480px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 80px rgba(var(--spread-accent-rgb, 135, 168, 120), 0.15);
  transition: transform var(--t-fast);
}
.ip-phone-center:hover {
  transform: translateY(-8px);
}

.ip-phone-notch {
  width: 120px;
  height: 28px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
}

.ip-phone-screen {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ip-phone-label {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.35;
}

/* Skeleton UI elements */
.ip-skel-bar {
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
}
.ip-skel-bar.w60 { width: 60%; }
.ip-skel-bar.w80 { width: 80%; }
.ip-skel-bar.w40 { width: 40%; }
.ip-skel-bar.w100 { width: 100%; }
.ip-skel-bar.accent { background: var(--spread-accent); opacity: 0.3; }
.ip-skel-bar.thick { height: 14px; }

.ip-skel-card {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ip-skel-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.ip-skel-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ip-skel-btn {
  height: 32px;
  border-radius: var(--pill);
  background: var(--spread-accent);
  opacity: 0.25;
  margin-top: 4px;
}

/* =============================================
   S5 — BOUNTY (dark, reuses bounty card)
   ============================================= */
/* ==========================================
   S3.5 — WHY IT WORKS (Maya's story)
   ========================================== */
.ip-why {
  background: #fff;
  color: #1a1a1a;
  padding: 120px 80px;
  position: relative;
}
.ip-why-inner {
  max-width: 920px;
  margin: 0 auto;
}
.ip-why .display { color: #0a0a0a; margin-bottom: 18px; }
.ip-why .body-light {
  color: #555;
  max-width: 640px;
  margin-bottom: 80px;
}
.ip-why-story {
  display: flex;
  flex-direction: column;
  gap: 56px;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  padding-left: 0;
  margin-left: 0;
}
.why-chapter {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
}
.why-chapter::before {
  content: '';
  position: absolute;
  left: -1px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--spread-accent);
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px #fff;
}
.why-chapter-num {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--spread-accent);
  padding-top: 6px;
  padding-left: 24px;
}
.why-chapter-body h3 {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #0a0a0a;
  margin: 0 0 12px;
}
.why-chapter-body p {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: #444;
  margin: 0;
}
.why-chapter-body p strong {
  font-weight: 600;
  color: #1a1a1a;
}
.why-chapter-body p em {
  font-style: italic;
  color: #1a1a1a;
}

/* Callout math row inside a chapter — visual breakout for "$80 → 50% → $40". */
.why-callout {
  margin-top: 18px;
  padding: 16px 20px;
  background: #FAFAFA;
  border-left: 3px solid var(--spread-accent);
  border-radius: 6px;
}
.why-callout-label {
  font-family: 'Urbanist', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 10px;
}
.why-callout-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Urbanist', system-ui, sans-serif;
}
.why-callout-num {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}
.why-callout-num.accent { color: var(--spread-accent); }
.why-callout-arrow {
  font-size: 16px;
  font-weight: 400;
  color: #888;
}

@media (max-width: 768px) {
  .ip-why { padding: 80px 24px; }
  .ip-why-story { gap: 40px; }
  .why-chapter { grid-template-columns: 56px 1fr; gap: 16px; }
  .why-chapter-num { font-size: 12px; padding-left: 14px; }
  .why-chapter-body h3 { font-size: 22px; }
  .why-chapter-body p { font-size: 15px; }
  .why-callout-row { gap: 8px; }
  .why-callout-num { font-size: 15px; }
}

.ip-bounty {
  background: var(--spread-dark);
  color: #fff;
}

.ip-bounty-inner {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 0 80px;
  align-content: center;
}

.ip-bounty-rule {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.ip-bounty-rule::before,
.ip-bounty-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.ip-bounty-rule-num {
  font-family: 'Urbanist', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  opacity: 0.3;
  white-space: nowrap;
}

.ip-bounty-title {
  grid-column: 1 / -1;
  margin-bottom: 48px;
}

.ip-bounty-title .display {
  font-size: clamp(40px, 5.5vw, 72px);
  margin-bottom: 14px;
}

.ip-bounty-title .body-light {
  font-size: clamp(14px, 1.4vw, 19px);
  opacity: 0.45;
  letter-spacing: 0.02em;
}

/* Bounty card column */
.ip-bounty-card-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.bounty-card-frame {
  position: relative;
  max-width: 440px;
}
.bounty-card-frame::before,
.bounty-card-frame::after {
  content: '';
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0 12px;
}
.bounty-card-frame::before { margin-bottom: 10px; }
.bounty-card-frame::after { margin-top: 10px; }

.bounty-card-frame .crop-tl,
.bounty-card-frame .crop-tr,
.bounty-card-frame .crop-bl,
.bounty-card-frame .crop-br {
  position: absolute;
  width: 12px;
  height: 12px;
  pointer-events: none;
  z-index: 3;
}
.bounty-card-frame .crop-tl { top: 0; left: 0; border-top: 1px solid rgba(255,255,255,0.18); border-left: 1px solid rgba(255,255,255,0.18); }
.bounty-card-frame .crop-tr { top: 0; right: 0; border-top: 1px solid rgba(255,255,255,0.18); border-right: 1px solid rgba(255,255,255,0.18); }
.bounty-card-frame .crop-bl { bottom: 0; left: 0; border-bottom: 1px solid rgba(255,255,255,0.18); border-left: 1px solid rgba(255,255,255,0.18); }
.bounty-card-frame .crop-br { bottom: 0; right: 0; border-bottom: 1px solid rgba(255,255,255,0.18); border-right: 1px solid rgba(255,255,255,0.18); }

.bounty-card-label {
  font-family: 'Urbanist', sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.25;
  color: #fff;
  margin-bottom: 14px;
  padding-left: 2px;
}

/* Bounty card — mirrors the in-app BountyReferralCard layout:
   prominent bounty banner at top + service info + provider row +
   stats strip + price + CTA. */
.bounty-card {
  background: #fff;
  color: #1a1a1a;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  max-width: 440px;
  position: relative;
  text-align: left;
  box-shadow:
    0 0 120px rgba(255, 255, 255, 0.05),
    0 40px 100px rgba(0, 0, 0, 0.5);
}
.bounty-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  right: -60px;
  bottom: -60px;
  border-radius: 40px;
  background:
    radial-gradient(ellipse 300px 200px at 50% 20%, var(--spread-accent), transparent 70%),
    radial-gradient(ellipse 200px 300px at 30% 80%, rgba(245, 158, 11, 0.12), transparent 60%);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
  transition: background var(--t);
}

/* Top bounty banner — the visual anchor of the whole card.
   Gradient amber, percent + per-referral hint on the right. */
.bc-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #fff;
  position: relative;
  z-index: 1;
}
.bc-banner-icon {
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
}
.bc-banner-body {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.bc-banner-percent {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.bc-banner-sub {
  font-family: 'Urbanist', sans-serif;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.92;
  margin-top: 2px;
}

.bc-type {
  font-family: 'Urbanist', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--spread-accent);
  margin: 28px 32px 8px;
  position: relative;
  z-index: 1;
  transition: color var(--t);
}
.bc-service {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 32px 14px;
  position: relative;
  z-index: 1;
}
.bc-provider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 32px 20px;
  position: relative;
  z-index: 1;
}
.bc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #800080 0%, #B43EB4 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Urbanist', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.bc-provider-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.bc-provider-name {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.bc-provider-cred {
  font-family: 'Urbanist', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: #888;
  margin-top: 2px;
}

.bc-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 32px 22px;
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
  z-index: 1;
}
.bc-stat {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
.bc-stat-num {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
}
.bc-stat-label {
  font-family: 'Urbanist', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  color: #888;
}
.bc-stat-divider {
  width: 1px;
  height: 14px;
  background: rgba(0,0,0,0.1);
}

.bc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  margin: 0 32px 28px;
}
.bc-price {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1a1a1a;
}
.bc-cta {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--pill);
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background var(--t), transform var(--t);
}
.bc-cta:hover {
  background: var(--spread-accent);
  transform: translateY(-1px);
}

/* Footnote under the chain timeline — explains the geometric split. */
.chain-footnote {
  margin-top: 18px;
  font-family: 'Urbanist', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
}
.chain-footnote strong {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* Referral chain column */
.ip-bounty-chain-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 4px;
}

.chain-label {
  font-family: 'Urbanist', sans-serif;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.25;
  margin-bottom: 28px;
}

.chain-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.chain-row {
  display: grid;
  grid-template-columns: 32px 1fr auto auto;
  gap: 0 16px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.chain-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.chain-row:last-child { border-bottom: none; }

.chain-row-num {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px;
  opacity: 0.3;
  line-height: 1;
}
.chain-row-role {
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 300;
  opacity: 0.4;
  display: flex;
  align-items: baseline;
  gap: 8px;
  overflow: hidden;
}
.chain-row-role::after {
  content: '';
  flex: 1;
  border-bottom: 1px dotted var(--spread-accent);
  opacity: 0.25;
  min-width: 20px;
  position: relative;
  top: -3px;
  transition: border-color var(--t);
}
.chain-row-name {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.8;
  white-space: nowrap;
  padding-right: 12px;
}
.chain-row-action {
  font-family: 'Urbanist', sans-serif;
  font-size: 12px;
  font-weight: 300;
  opacity: 0.35;
  white-space: nowrap;
  text-align: right;
  min-width: 90px;
}
.chain-row-earning {
  color: var(--amber);
  font-weight: 700;
  opacity: 1;
}
.chain-row-final { position: relative; }
.chain-row-final::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: 0.4;
}
.chain-row-final .chain-row-name { color: var(--amber); }
.chain-row-final .chain-row-action { color: var(--amber); font-weight: 600; opacity: 0.8; }

/* =============================================
   S6 — BRAND PAGE (gradient)
   ============================================= */
.ip-brand {
  background: var(--spread-gradient);
  color: #fff;
  align-items: center;
  text-align: center;
}

.ip-brand-inner {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.ip-brand-inner .display {
  font-size: clamp(40px, 7vw, 96px);
  margin-bottom: 24px;
}

.ip-brand-url {
  font-size: clamp(14px, 1.6vw, 20px);
  font-weight: 300;
  opacity: 0.6;
  margin-bottom: 48px;
  font-family: 'Urbanist', monospace;
  letter-spacing: 0.02em;
}

.ip-brand-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.ip-brand-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.ip-brand-benefit-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.ip-brand-benefit h4 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 6px;
}
.ip-brand-benefit p {
  font-weight: 300;
  font-size: 13px;
  opacity: 0.6;
  line-height: 1.6;
}

/* =============================================
   S7 — PRICING (2-column cards)
   ============================================= */
.ip-pricing {
  background: var(--spread-light);
  color: var(--spread-text);
  align-items: flex-start;
  justify-content: center;
  min-height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
}

.ip-pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.ip-pricing-inner .display {
  font-size: clamp(34px, 5.5vw, 72px);
  margin-bottom: 20px;
  text-align: left;
}

.ip-pricing-inner > .body-light {
  font-size: clamp(14px, 1.3vw, 18px);
  opacity: 0.45;
  margin-bottom: 60px;
  max-width: 520px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto 36px;
}

.price-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.price-card h3 {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}
.price-card .price-value {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.price-card .price-sub {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.45;
}

/* Dark-mode price cards */
.ip-pricing.dark-mode .price-card {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}
.ip-pricing.dark-mode .price-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pricing-benefits {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}
.pricing-benefits span {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.55;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-benefits span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--spread-accent);
  transition: background var(--t);
  flex-shrink: 0;
}

/* Provider Tiers Row */
.pricing-tiers {
  margin-top: 32px;
  text-align: center;
}

.tier-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
}

.tier-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 12px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
  min-width: 110px;
  flex: 1;
  position: relative;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.tier-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.tier-name {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.tier-price {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}
.tier-price small {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.45;
}

.tier-limit {
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
}

.tier-popular {
  background: rgba(0, 0, 0, 0.06);
  border: 1.5px solid var(--spread-accent);
  padding-top: 22px;
}

.tier-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--spread-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Dark-mode tier items */
.ip-pricing.dark-mode .tier-item {
  background: rgba(255, 255, 255, 0.06);
}
.ip-pricing.dark-mode .tier-popular {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--spread-accent);
}

/* =============================================
   S8 — TESTIMONIALS (quote cards)
   ============================================= */
.ip-testimonials {
  background: var(--spread-bg);
  color: var(--spread-text);
  align-items: center;
  text-align: center;
}

.ip-testimonials-inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.ip-testimonials-inner .display {
  font-size: clamp(34px, 5.5vw, 72px);
  margin-bottom: 64px;
}

.ip-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ip-quote-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  padding: 40px 36px;
  text-align: left;
  position: relative;
}

/* Dark mode quote cards */
.ip-testimonials.dark-mode .ip-quote-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.ip-quote-mark {
  font-family: 'Urbanist', serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--spread-accent);
  line-height: 0.8;
  opacity: 0.2;
  position: absolute;
  top: 24px;
  left: 32px;
}

.ip-quote-text {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.ip-quote-author {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.ip-quote-role {
  font-family: 'Urbanist', sans-serif;
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
  margin-top: 4px;
}

/* =============================================
   S9 — FAQ (accordion)
   ============================================= */
.ip-faq {
  background: var(--spread-light);
  color: var(--spread-text);
  align-items: center;
}

.ip-faq-inner {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.ip-faq-inner .display {
  font-size: clamp(34px, 5.5vw, 72px);
  margin-bottom: 56px;
  text-align: center;
}

.ip-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0;
}
.ip-faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Dark mode FAQ borders */
.ip-faq.dark-mode .ip-faq-item {
  border-color: rgba(255, 255, 255, 0.1);
}

.ip-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Urbanist', sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  user-select: none;
  transition: opacity 0.2s;
}
.ip-faq-q:hover { opacity: 0.7; }

.ip-faq-toggle {
  font-size: 24px;
  font-weight: 300;
  opacity: 0.4;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

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

.ip-faq-a-inner {
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.6;
  padding-bottom: 24px;
  max-width: 600px;
}

.ip-faq-item.open .ip-faq-toggle {
  transform: rotate(45deg);
}
.ip-faq-item.open .ip-faq-a {
  max-height: 300px;
}

/* =============================================
   S8B — FOR BUYERS
   ============================================= */
.ip-buyers {
  background: var(--spread-bg);
  color: var(--spread-text);
}
.ip-buyers-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}
.ip-buyers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 40px auto 0;
}
.ip-buyers-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: left;
}
.ip-buyers.dark-mode .ip-buyers-card {
  background: rgba(255, 255, 255, 0.08);
}
.ip-buyers-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.ip-buyers-card h4 {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-weight: 700;
  font-size: 17px;
  margin-bottom: 8px;
}
.ip-buyers-card p {
  font-size: 14px;
  font-weight: 300;
  opacity: 0.7;
  line-height: 1.5;
}
.ip-buyers-cta {
  text-align: center;
  margin-top: 36px;
}

/* =============================================
   S10 — AI-POWERED
   ============================================= */
.ip-ai-section {
  background: var(--spread-dark);
  color: #fff;
}

.ip-ai-subtitle {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  max-width: 440px;
  opacity: 0.45;
  margin-top: 24px;
}

.ip-ai-header {
  max-width: 1100px;
  margin: 0 auto 64px;
}

.ip-ai-header .display {
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.92;
}

.ip-ai-grid {
  display: flex;
  flex-direction: column;
  gap: 44px;
  max-width: 1100px;
  margin: 0 auto;
}

.ip-ai-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  text-align: left;
}

.ip-ai-num {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--spread-accent);
  line-height: 1;
  min-width: 56px;
  opacity: 0.5;
}

.ip-ai-card h4 {
  font-family: 'Urbanist', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  color: #fff;
}

.ip-ai-card p {
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  opacity: 0.6;
  max-width: 480px;
}

/* dark industries (creative) */
.ip-ai-section.dark-mode {
  color: #fff;
}

.ip-ai-section.dark-mode .ip-ai-num {
  color: var(--spread-accent);
  opacity: 0.35;
}

.ip-ai-section.dark-mode .ip-ai-card h4 {
  color: #fff;
}

/* =============================================
   S11 — FINAL CTA (dark, dramatic)
   ============================================= */
.ip-cta {
  background: var(--spread-dark);
  color: #fff;
  align-items: center;
  text-align: center;
}

.ip-cta .display {
  font-size: clamp(64px, 14vw, 160px);
  margin-bottom: 44px;
  letter-spacing: -0.04em;
}

.ip-cta-logo {
  margin-top: 72px;
  font-size: 13px;
  font-weight: 300;
  opacity: 0.25;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--spread-dark);
  color: #fff;
  padding: 80px 48px 40px;
  transition: background var(--t);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-brand {
  text-align: center;
  margin-bottom: 48px;
}
.footer-brand-name {
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.8;
}
.footer-brand-tagline {
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 300;
  opacity: 0.3;
  margin-top: 8px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-col-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.3;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.55;
  padding: 6px 0;
  transition: opacity 0.2s ease;
}
.footer-col a:hover { opacity: 1; }

.footer-social {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 32px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover {
  opacity: 1;
  border-color: rgba(255,255,255,0.3);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.footer-bottom {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  opacity: 0.2;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.38s; }
.reveal-d4 { transition-delay: 0.52s; }
.reveal-d5 { transition-delay: 0.66s; }

/* =============================================
   RESPONSIVE — TABLET
   ============================================= */
@media (max-width: 768px) {
  /* Each section fills the viewport so its colored background stretches to
     the full screen, but `height: auto` lets denser sections grow rather
     than clip. Snap is not used on industry pages — natural scroll. */
  .ip-section {
    padding: 56px 24px;
    min-height: 100dvh;
    height: auto;
  }

  .ip-hero {
    padding: 0 24px;
    min-height: 100vh;
    min-height: 100dvh;
  }

  /* S2 features — 6 cards arranged 2×3 instead of 1×6 to fit one viewport. */
  .ip-features-inner .display {
    font-size: clamp(34px, 9vw, 56px);
    margin-bottom: 10px;
  }
  .ip-features-inner .body-light {
    margin-bottom: 32px;
  }
  .ip-feat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .ip-feat-card {
    padding: 22px 18px;
    border-radius: 18px;
  }
  .ip-feat-icon { font-size: 24px; margin-bottom: 12px; }
  .ip-feat-card h4 { font-size: 15px; margin-bottom: 6px; }
  .ip-feat-card p { font-size: 12px; line-height: 1.55; }

  /* S3 solution — tighter step list. */
  .ip-solution-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ip-solution-left .display {
    font-size: clamp(36px, 10vw, 52px);
    margin-bottom: 12px;
  }
  .ip-solution-right { gap: 24px; }
  .step { gap: 18px; }
  .step-num { font-size: 36px; min-width: 44px; }
  .step-content h4 { font-size: 16px; }
  .step-content p { font-size: 13px; }

  /* S4 screenshots — keep 3 phones side-by-side, scaled down to fit. */
  .ip-screenshots-inner .display {
    font-size: clamp(30px, 8vw, 48px);
    margin-bottom: 10px;
  }
  .ip-screenshots-inner .body-light {
    margin-bottom: 32px;
  }
  .ip-phones {
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
  }
  .ip-phone { width: 28vw; max-width: 110px; height: 240px; border-radius: 20px; }
  .ip-phone-center { width: 32vw; max-width: 124px; height: 268px; border-radius: 22px; }
  .ip-phone-notch { width: 48px; height: 16px; border-radius: 0 0 8px 8px; }
  .ip-phone-screen { padding: 8px; gap: 6px; }
  .ip-skel-bar { height: 6px; border-radius: 3px; }
  .ip-skel-bar.thick { height: 9px; }
  .ip-skel-card { padding: 8px; gap: 5px; border-radius: 8px; }
  .ip-skel-avatar { width: 22px; height: 22px; }
  .ip-skel-btn { height: 18px; }
  .ip-phone-label { font-size: 9px; letter-spacing: 1px; margin-top: 8px; }

  /* S5 bounty — pull title in, shrink the printed card + chain rows. */
  .ip-bounty-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ip-bounty-title { margin-bottom: 24px; }
  .ip-bounty-title .display { font-size: clamp(30px, 8vw, 48px); }
  .ip-bounty-card-col { margin-bottom: 28px; }
  .bounty-card-frame { max-width: 100%; margin: 0 auto; }
  .bounty-card { padding: 22px 24px 20px; }
  .bc-service { font-size: 19px; }
  .bc-provider { font-size: 12px; margin-bottom: 16px; }
  .bc-price-row { margin-bottom: 14px; }
  .bc-price { font-size: 28px; }
  .bc-bounty { padding: 7px 14px; font-size: 12px; }
  .chain-row { grid-template-columns: 22px 1fr auto auto; gap: 0 8px; padding: 8px 0; }
  .chain-row-num { font-size: 13px; }
  .chain-row-name { font-size: 12px; padding-right: 8px; }
  .chain-row-action { font-size: 10px; min-width: 64px; }
  .chain-label { margin-bottom: 18px; }

  /* S6 brand — pull headings in. */
  .ip-brand-inner .display {
    font-size: clamp(36px, 9vw, 56px);
    margin-bottom: 14px;
  }
  .ip-brand-url { margin-bottom: 28px; font-size: 14px; }
  .ip-brand-benefits {
    grid-template-columns: 1fr;
    max-width: 400px;
    gap: 16px;
  }
  .ip-brand-benefit-icon { font-size: 22px; }
  .ip-brand-benefit h4 { font-size: 15px; }
  .ip-brand-benefit p { font-size: 12px; }

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

  /* S8 testimonials — 3 stacked quote cards, tightened. */
  .ip-testimonials-inner .display {
    font-size: clamp(28px, 8vw, 44px);
    margin-bottom: 28px;
  }
  .ip-quotes {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ip-quote-card { padding: 24px 22px; border-radius: 18px; }
  .ip-quote-mark { font-size: 48px; top: 14px; left: 18px; }
  .ip-quote-text { font-size: 14px; margin-bottom: 14px; }

  /* S9 FAQ — denser rows so 7 items + heading fit. */
  .ip-faq-inner .display {
    font-size: clamp(28px, 8vw, 44px);
    margin-bottom: 24px;
  }
  .ip-faq-q { padding: 16px 0; font-size: 15px; }
  .ip-faq-toggle { font-size: 20px; }
  .ip-faq-a-inner { font-size: 13px; padding-bottom: 16px; }

  .ip-buyers-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 12px;
  }
  .ip-buyers-card { padding: 20px 20px; }
  .ip-buyers-icon { font-size: 24px; margin-bottom: 10px; }
  .ip-buyers-card h4 { font-size: 15px; }
  .ip-buyers-card p { font-size: 13px; }

  /* S10 AI grid. */
  .ip-ai-header { margin-bottom: 32px; }
  .ip-ai-header .display { font-size: clamp(36px, 9vw, 56px); }
  .ip-ai-subtitle { font-size: 13px; margin-top: 16px; }
  .ip-ai-grid { gap: 24px; }
  .ip-ai-card { gap: 18px; }
  .ip-ai-num { font-size: 36px; min-width: 44px; }
  .ip-ai-card h4 { font-size: 16px; }
  .ip-ai-card p { font-size: 13px; }

  /* S11 final CTA — display still loud, but trim margins so the lockup fits. */
  .ip-cta .display { font-size: clamp(56px, 16vw, 96px); margin-bottom: 28px; }
  .ip-cta-logo { margin-top: 32px; font-size: 11px; }

  .ip-hero-cta {
    flex-direction: column;
    align-items: center;
  }
  .ip-hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }

  .ip-pricing-inner .display,
  .ip-pricing-inner > .body-light {
    text-align: center;
  }
  .pricing-benefits {
    gap: 20px;
    flex-direction: column;
    align-items: center;
  }
  .tier-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .tier-item {
    min-width: 220px;
    max-width: 280px;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    padding: 14px 20px;
  }
  .tier-popular {
    padding-top: 14px;
    padding-left: 20px;
  }
  .tier-badge {
    top: 50%;
    left: auto;
    right: -8px;
    transform: translateY(-50%);
  }

  .page-num { top: 20px; right: 24px; font-size: 10px; }
  .margin-mark,
  .margin-mark-right { display: none; }
  .hr-rule,
  .hr-rule-top { left: 24px; right: 24px; }

  .ham-btn { top: 16px; right: 16px; }
  .ham-menu { top: 70px; right: 16px; }

  .footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .site-footer {
    padding: 60px 24px 32px;
  }
}

/* =============================================
   RESPONSIVE — SMALL PHONES
   Note: phone-row sizing is fluid (vw-based) in the 768px block; this
   block only narrows the type scale further on truly small screens.
   ============================================= */
@media (max-width: 480px) {
  .ip-cta .display { font-size: clamp(52px, 16vw, 80px); }
  .bc-service { font-size: 18px; }
  .ip-feat-card p { font-size: 11.5px; }
}

/* =============================================
   RESPONSIVE — WIDE SCREENS
   ============================================= */
@media (min-width: 1200px) {
  .ip-hero .bg-word { font-size: 200px; }
  .ip-solution-left .display { font-size: 96px; }
}
