/* ========================================
   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; }

: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-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)
   ============================================= */
.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 {
  background: #fff;
  color: #1a1a1a;
  border-radius: 20px;
  padding: 36px 40px 32px;
  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);
}

.bc-type {
  font-family: 'Urbanist', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--spread-accent);
  margin-bottom: 10px;
  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-bottom: 6px;
  position: relative;
  z-index: 1;
}
.bc-provider {
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #999;
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.bc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.bc-price {
  font-family: 'Urbanist', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #1a1a1a;
}
.bc-bounty {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--amber-light);
  color: var(--amber-dark);
  padding: 9px 18px;
  border-radius: var(--pill);
  font-size: 14px;
  font-weight: 700;
  position: relative;
}
.bc-bounty::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--pill);
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.3);
  pointer-events: none;
}
.bc-book {
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--spread-accent);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transition: color var(--t);
  display: inline-block;
}
.bc-book:hover { opacity: 0.7; }

/* 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;
}

.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: 32px;
  max-width: 720px;
  margin: 0 auto 52px;
}

.price-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px 36px;
  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: 22px;
  margin-bottom: 12px;
}
.price-card .price-value {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 6px;
  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;
}

/* =============================================
   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;
}

/* =============================================
   S10 — 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) {
  .ip-section {
    padding: 80px 24px;
  }

  .ip-hero {
    padding: 0 24px;
  }

  .ip-feat-grid {
    grid-template-columns: 1fr;
  }

  .ip-solution-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ip-solution-left .display {
    font-size: clamp(36px, 10vw, 52px);
    margin-bottom: 12px;
  }

  .ip-phones {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .ip-phone,
  .ip-phone-center {
    width: 200px;
    height: 400px;
  }

  .ip-bounty-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ip-bounty-title { margin-bottom: 32px; }
  .ip-bounty-card-col { margin-bottom: 36px; }
  .bounty-card-frame { max-width: 100%; margin: 0 auto; }
  .bounty-card { padding: 32px 28px; }
  .chain-row { grid-template-columns: 24px 1fr auto auto; gap: 0 10px; padding: 10px 0; }
  .chain-row-num { font-size: 14px; }
  .chain-row-name { font-size: 13px; }
  .chain-row-action { font-size: 11px; min-width: 72px; }

  .ip-brand-benefits {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

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

  .ip-quotes {
    grid-template-columns: 1fr;
  }

  .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;
  }

  .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
   ============================================= */
@media (max-width: 480px) {
  .ip-phone,
  .ip-phone-center {
    width: 180px;
    height: 360px;
  }

  .bounty-card { padding: 28px 24px; }
  .bc-price { font-size: 28px; }
  .bc-service { font-size: 20px; }

  .ip-cta .display { font-size: clamp(52px, 16vw, 80px); }

  .ip-feat-card { padding: 28px 24px; }
}

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