@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #020202;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.055) 1px, transparent 0);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: radial-gradient(ellipse 55% 60% at 50% 45%, black 0%, transparent 100%);
  mask-image: radial-gradient(ellipse 55% 60% at 50% 45%, black 0%, transparent 100%);
}

.hero::after {
  content: '';
  position: absolute;
  width: 720px;
  height: 720px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  background: radial-gradient(circle, rgba(74,222,128,0.04) 0%, rgba(74,222,128,0.01) 42%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: heroPulse 7s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { transform: translate(-50%, -54%) scale(1);    opacity: 1; }
  50%       { transform: translate(-50%, -54%) scale(1.13); opacity: 0.7; }
}

.hero-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -68%);
  width: 480px;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-logo img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 55%);
  mask-image: linear-gradient(to bottom, black 30%, transparent 55%);
}

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-headline {
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.14;
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

/* Hero line reveal animation */
@keyframes heroLineReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroShimmer {
  0%   { background-position: 0% center; }
  50%  { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.hero-line { display: block; }

.hero-line-1 {
  animation: heroLineReveal 1s cubic-bezier(0.16,1,0.3,1) 0.05s both;
}

.hero-line-2 {
  animation: heroLineReveal 1s cubic-bezier(0.16,1,0.3,1) 0.22s both;
  font-size: 0.88em;
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  letter-spacing: -0.8px;
}

.hero-type-cursor {
  display: inline-block;
  width: 2px;
  height: 0.82em;
  background: #4ADE80;
  margin-left: 3px;
  vertical-align: baseline;
  position: relative;
  top: 0.06em;
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(74,222,128,0.85), 0 0 20px rgba(74,222,128,0.35);
  animation: heroCursorBlink 0.85s ease-in-out infinite;
}

@keyframes heroCursorBlink {
  0%, 44%  { opacity: 1; }
  56%, 100% { opacity: 0; }
}

/* Left-to-right green sweep — full arc, white→green→white, no snap */
@keyframes heroSweep {
  from { background-position: 100% center; }
  to   { background-position: 0% center; }
}

.hero-type-sweep {
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 37%,
    rgba(74,222,128,0) 42%,
    rgba(134,239,172,0.85) 47%,
    rgba(220,255,238,1) 50%,
    rgba(134,239,172,0.85) 53%,
    rgba(74,222,128,0) 58%,
    #fff 63%,
    #fff 100%
  );
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: heroSweep 1.5s cubic-bezier(0.37, 0, 0.63, 1) forwards;
}

.hero-fade-in-4 {
  animation: heroLineReveal 0.9s cubic-bezier(0.16,1,0.3,1) 0.6s both;
}

.hero-fade-in-5 {
  animation: heroLineReveal 0.9s cubic-bezier(0.16,1,0.3,1) 0.8s both;
}

.accent-1 { color: #4ADE80; }
.accent-2 { color: #86EFAC; }

/* ── Scroll indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  pointer-events: none;
}

.scroll-text {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  font-family: 'Inter', sans-serif;
  animation: scrollTextPulse 1.4s ease-in-out infinite;
}

@keyframes scrollTextPulse {
  0%, 100% { opacity: 0.25; transform: scale(0.94); }
  50%       { opacity: 0.75; transform: scale(1.05); }
}

.scroll-arrow {
  display: block;
  width: 18px;
  height: 18px;
  border-right: 1.5px solid rgba(255,255,255,0.2);
  border-bottom: 1.5px solid rgba(255,255,255,0.2);
  animation: scrollBounce 1.4s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0)   rotate(45deg); opacity: 0.2; }
  50%       { transform: translateY(5px) rotate(45deg); opacity: 0.6; }
}

/* ── Sparkle particles ── */
.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9;
  background: #4ADE80;
  clip-path: polygon(50% 0%, 54% 44%, 100% 50%, 54% 56%, 50% 100%, 46% 56%, 0% 50%, 46% 44%);
  filter: drop-shadow(0 0 5px rgba(74, 222, 128, 0.9));
  transition: opacity 0.5s ease;
}

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.8)  rotate(0deg);  filter: drop-shadow(0 0 3px rgba(74,222,128,0.5)); }
  50%       { opacity: 1.0;  transform: scale(1.25) rotate(18deg); filter: drop-shadow(0 0 8px rgba(74,222,128,1.0)); }
}

/* ── Hide native scrollbar ── */
html { scrollbar-width: none; }
::-webkit-scrollbar { display: none; }
body { -ms-overflow-style: none; }

/* ── Laser scrollbar ── */
.laser-scrollbar {
  position: fixed;
  right: -2px;
  top: 14px;
  bottom: 14px;
  width: 1.5px;
  background: rgba(255,255,255,0.05);
  border-radius: 999px;
  z-index: 9999;
  pointer-events: none;
}

.laser-thumb {
  position: absolute;
  left: 0;
  width: 1.5px;
  border-radius: 999px;
  background: #4ADE80;
  box-shadow:
    0 0 4px #4ADE80,
    0 0 10px rgba(74, 222, 128, 0.7),
    0 0 22px rgba(74, 222, 128, 0.35);
  transition: top 0.08s linear, height 0.08s linear;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.verified-logo {
  width: 22px;
  height: 22px;
  display: block;
  opacity: 0.5;
}

.verified-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.verified-divider {
  display: inline-block;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.1);
  margin: 0 4px;
  flex-shrink: 0;
}

.verified-logo-fanvue {
  width: 16px;
  height: 16px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #0d0d0d;
  background-image: radial-gradient(ellipse at 50% -15%, rgba(74,222,128,0.22) 0%, transparent 65%);
  border: 1px solid rgba(74,222,128,0.42);
  border-radius: 10px;
  color: #4ADE80;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.1px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 28px rgba(74,222,128,0.12), 0 0 60px rgba(74,222,128,0.04);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}

.hero-cta-btn:hover {
  border-color: rgba(74,222,128,0.75);
  box-shadow: 0 0 64px rgba(74,222,128,0.28), 0 0 130px rgba(74,222,128,0.08);
  color: #6ee9a0;
  transform: translateY(-2px);
}

.hero-cta-btn:active { transform: translateY(0); }

.hero-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
}

/* ── Proof / Split Section ── */
.proof {
  background: #020202;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.proof::before {
  content: 'HIDDEN';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(130px, 22vw, 260px);
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.012);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.proof-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.feed-card {
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.feed-title {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.feed-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
}

.feed-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 5px rgba(74,222,128,0.8);
  animation: feedDotPulse 1.8s ease-in-out infinite;
}

@keyframes feedDotPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.feed-cols-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 0.8fr;
  padding: 7px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.feed-cols-header span {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
}

.feed-body {
  overflow: hidden;
  height: 272px;
}

.feed-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr 0.8fr;
  align-items: center;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.6s ease;
}

.feed-row-new {
  opacity: 0;
  transform: translateY(-6px);
}

.feed-row-flash {
  background: rgba(74,222,128,0.05);
}

.feed-member {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.feed-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}

.feed-name {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.feed-revenue {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
}

.feed-type {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  font-family: 'Inter', sans-serif;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  padding: 2px 7px;
  width: fit-content;
}

.feed-type-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feed-time {
  font-size: 10px;
  color: rgba(255,255,255,0.22);
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
}

.proof-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.proof-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px;
  padding: 5px 11px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  font-family: 'Inter', sans-serif;
}

.pill-val {
  font-weight: 700;
  color: #4ADE80;
}

.proof-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proof-q {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  font-family: 'Inter', sans-serif;
}

.proof-main {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  font-family: 'Inter', sans-serif;
}

.proof-sub {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.38);
  font-family: 'Inter', sans-serif;
}

.proof-catch {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.proof-catch-q {
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.28);
  font-family: 'Inter', sans-serif;
}

.proof-catch-a {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

.proof-catch-a em {
  font-style: italic;
  color: rgba(255,255,255,0.32);
}

/* ── Revenue Section ── */
.revenue {
  background: #020202;
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}

.revenue::before {
  content: 'HIDDEN';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(130px, 22vw, 260px);
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.012);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.revenue-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.revenue-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.rev-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
}

.rev-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #fff;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.rev-body-copy {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.32);
  font-family: 'Inter', sans-serif;
  line-height: 1.75;
  max-width: 540px;
}

.rev-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.rev-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border-radius: 8px;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.07);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  font-family: 'Inter', sans-serif;
}

.rev-card {
  width: 100%;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 20px 0;
  overflow: hidden;
  box-sizing: border-box;
}

.rev-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.rev-title {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

.rev-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.rev-leg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 0.5px solid rgba(255,255,255,0.12);
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  font-family: 'Inter', sans-serif;
}

.rev-leg-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rev-chart-area {
  display: flex;
  gap: 10px;
}

.rev-yaxis {
  position: relative;
  width: 30px;
  flex-shrink: 0;
}

.rev-yaxis span {
  position: absolute;
  right: 0;
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.18);
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: right;
  transform: translateY(-50%);
}

.rev-yaxis span:nth-child(1) { top: 0px; }
.rev-yaxis span:nth-child(2) { top: 41.5px; }
.rev-yaxis span:nth-child(3) { top: 83px; }
.rev-yaxis span:nth-child(4) { top: 124.5px; }
.rev-yaxis span:nth-child(5) { top: 166px; }

.rev-plot-wrap {
  flex: 1;
  position: relative;
  min-width: 0;
}

.rev-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
  z-index: 0;
}

.rev-grid-line {
  width: 100%;
  border-top: 1px dashed rgba(255,255,255,0.07);
}

.rev-bars {
  display: flex;
  align-items: flex-end;
  gap: 0;
  height: 190px;
  position: relative;
  z-index: 1;
}

.rev-bar-group {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.rev-bar {
  width: 8px;
  height: var(--bar-h, 0px);
  display: flex;
  flex-direction: column-reverse;
  overflow: hidden;
  border-radius: 2px 2px 0 0;
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.rev-bars.animated .rev-bar {
  transform: scaleY(1);
}

.rev-segment {
  width: 100%;
  flex-shrink: 0;
}

.rev-xlabel {
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  flex-shrink: 0;
}

.rev-blur {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #0b0b0b);
  pointer-events: none;
  z-index: 2;
}

/* ── Community / Discord Section ── */
.community {
  background: #020202;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.community-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: start;
}

/* Left */
.comm-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.comm-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
}

.comm-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.comm-body {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.32);
  font-family: 'Inter', sans-serif;
  line-height: 1.75;
}

/* Fee breakdown */
.comm-fee {
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comm-fee-main {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.3px;
}

.comm-fee-sub {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* Methods */
.comm-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.comm-method {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comm-method-name {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.comm-method-desc {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
}

/* Discord card */
.comm-right {
  position: sticky;
  top: 40px;
}

.disc-card {
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.disc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.disc-channel {
  display: flex;
  align-items: center;
  gap: 6px;
}

.disc-hash {
  width: 14px;
  height: 14px;
  color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.disc-channel-name {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.disc-online {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
}

/* Messages */
.disc-body {
  padding: 12px 0 4px;
  display: flex;
  flex-direction: column;
}

.disc-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 16px;
  transition: background 0.15s;
}

.disc-msg:hover {
  background: rgba(255,255,255,0.02);
}

.disc-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
  margin-top: 2px;
}

.disc-av-hidden {
  background: rgba(74,222,128,0.12);
  border-color: rgba(74,222,128,0.2);
  color: #4ADE80;
}

.disc-msg-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.disc-msg-meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.disc-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
}

.disc-name-hidden {
  color: #4ADE80;
}

.disc-bot-tag {
  font-size: 8px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  background: rgba(74,222,128,0.15);
  color: #4ADE80;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  vertical-align: middle;
}

.disc-time {
  font-size: 9px;
  font-weight: 400;
  color: rgba(255,255,255,0.18);
  font-family: 'Inter', sans-serif;
}

.disc-text {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  font-family: 'Inter', sans-serif;
  line-height: 1.5;
}

/* Embed (daily report card) */
.disc-embed {
  display: flex;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  margin-top: 2px;
}

.disc-embed-bar {
  width: 3px;
  background: #4ADE80;
  flex-shrink: 0;
}

.disc-embed-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disc-embed-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.disc-embed-stats {
  display: flex;
  gap: 20px;
}

.disc-estat {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.disc-estat-val {
  font-size: 14px;
  font-weight: 700;
  color: #4ADE80;
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.5px;
}

.disc-estat-lbl {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.disc-embed-note {
  font-size: 11px;
  font-weight: 500;
  color: rgba(74,222,128,0.7);
  font-family: 'Inter', sans-serif;
}

/* ── Typewriter CTA ── */
.typewriter {
  background: #020202;
  padding: 120px 24px 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tw-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.tw-headline {
  font-size: clamp(14px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.2;
  color: #fff;
  font-family: 'Inter', sans-serif;
  text-align: center;
  max-width: 760px;
  min-height: 1.4em;
  white-space: nowrap;
}

/* cursor sits right after the last character as an inline element */
.tw-cursor {
  display: inline-block;
  width: 3px;
  height: 0.78em;
  background: #4ADE80;
  margin-left: 3px;
  vertical-align: baseline;
  position: relative;
  top: 0.05em;
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(74,222,128,0.9), 0 0 20px rgba(74,222,128,0.4);
  animation: twBlink 0.85s ease-in-out infinite;
}

.tw-cursor.typing {
  animation: none;
  opacity: 1;
}

@keyframes twBlink {
  0%, 44%  { opacity: 1; }
  56%, 100% { opacity: 0; }
}

#twText.tw-flash {
  animation: twFlash 0.65s ease-out forwards;
}

@keyframes twFlash {
  0%   { color: #fff; text-shadow: none; }
  30%  { color: #86EFAC; text-shadow: 0 0 40px rgba(74,222,128,0.45); }
  100% { color: #fff; text-shadow: none; }
}

/* ── Compare Section ── */
.compare {
  background: #020202;
  padding: 100px 24px;
  position: relative;
  overflow: hidden;
}

.compare-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.compare-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.compare-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
}

.compare-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1.2px;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.cmp-table {
  display: flex;
  flex-direction: column;
}

.cmp-table-head {
  display: grid;
  grid-template-columns: 40px 1fr 1fr;
  gap: 0 32px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cmp-th {
  display: flex;
  align-items: center;
}

.cmp-badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Inter', sans-serif;
}

.cmp-badge-us {
  background: rgba(74,222,128,0.1);
  color: #4ADE80;
  border: 1px solid rgba(74,222,128,0.18);
}

.cmp-badge-them {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.07);
}

.cmp-item {
  display: grid;
  grid-template-columns: 40px 1fr 1fr;
  gap: 0 32px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: start;
}

.cmp-item-last { border-bottom: none; }

.cmp-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(74,222,128,0.35);
  font-family: 'Inter', sans-serif;
  padding-top: 3px;
}

.cmp-us-text {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  font-family: 'Inter', sans-serif;
  line-height: 1.55;
  letter-spacing: -0.3px;
}

.cmp-them-text {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  padding-top: 2px;
}

/* ── How It Works ── */
.howitworks {
  background: #020202;
  padding: 100px 24px;
}

.hiw-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}

.hiw-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  max-width: 480px;
}

.hiw-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
}

.hiw-title {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
  letter-spacing: -1.2px;
  line-height: 1.15;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.hiw-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
}

/* ── Pipeline ── */
.hiw-pipeline {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Connector row: positions beam + node circles */
.hiw-pipe-connector {
  position: relative;
  height: 52px;
}


/* Dim background track — spans center-of-col-1 to center-of-col-4 */
.hiw-beam-track {
  position: absolute;
  top: 50%;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.06);
}

/* Animated glowing fill */
.hiw-beam-fill {
  position: absolute;
  top: 50%;
  left: 12.5%;
  width: 0;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(to right, #4ADE80, rgba(74,222,128,0.55));
  box-shadow: 0 0 7px rgba(74,222,128,0.85), 0 0 18px rgba(74,222,128,0.35);
  transition: width 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.hiw-pipeline.animated .hiw-beam-fill {
  width: 75%; /* col-1 center to col-4 center = 87.5% - 12.5% */
}

/* 4 nodes — fills connector height so rings center correctly */
.hiw-pipe-nodes {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 2;
}

.hiw-pipe-node {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Circle — explicitly centered inside node */
.hiw-pn-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

/* Number */
.hiw-pn-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

/* Pulsing aura on last node — centered via calc so transform is free for scale */
.hiw-pn-aura {
  position: absolute;
  width: 58px;
  height: 58px;
  top: calc(50% - 29px);
  left: calc(50% - 29px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,222,128,0.18) 0%, transparent 70%);
  animation: nodeAura 2.8s ease-in-out infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease 1.9s;
  pointer-events: none;
}

@keyframes nodeAura {
  0%, 100% { transform: scale(0.85); opacity: 0.7; }
  50%       { transform: scale(1.6);  opacity: 0;   }
}

/* Nodes light up sequentially when pipeline animates */
.hiw-pipeline.animated .hiw-pipe-nodes .hiw-pipe-node:nth-child(1) .hiw-pn-ring {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
  transition-delay: 0ms;
}
.hiw-pipeline.animated .hiw-pipe-nodes .hiw-pipe-node:nth-child(1) .hiw-pn-num {
  color: rgba(255,255,255,0.65);
  transition-delay: 0ms;
}
.hiw-pipeline.animated .hiw-pipe-nodes .hiw-pipe-node:nth-child(2) .hiw-pn-ring {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
  transition-delay: 550ms;
}
.hiw-pipeline.animated .hiw-pipe-nodes .hiw-pipe-node:nth-child(2) .hiw-pn-num {
  color: rgba(255,255,255,0.65);
  transition-delay: 550ms;
}
.hiw-pipeline.animated .hiw-pipe-nodes .hiw-pipe-node:nth-child(3) .hiw-pn-ring {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
  transition-delay: 1100ms;
}
.hiw-pipeline.animated .hiw-pipe-nodes .hiw-pipe-node:nth-child(3) .hiw-pn-num {
  color: rgba(255,255,255,0.65);
  transition-delay: 1100ms;
}
.hiw-pipeline.animated .hiw-pipe-nodes .hiw-pipe-node:nth-child(4) .hiw-pn-ring {
  border-color: rgba(74,222,128,0.6);
  background: rgba(74,222,128,0.09);
  box-shadow: 0 0 14px rgba(74,222,128,0.35), 0 0 36px rgba(74,222,128,0.12);
  transition-delay: 1650ms;
}
.hiw-pipeline.animated .hiw-pipe-nodes .hiw-pipe-node:nth-child(4) .hiw-pn-num {
  color: #4ADE80;
  transition-delay: 1650ms;
}
.hiw-pipeline.animated .hiw-pipe-node-last .hiw-pn-aura {
  opacity: 1;
}

/* ── Cards with rotating border beams ── */
.hiw-pipe-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding-top: 12px;
}

/* Outer shell: 1px padding = the "border" space the beam shows through */
.hiw-pipe-card {
  position: relative;
  border-radius: 16px;
  padding: 1px;
  background: rgba(255,255,255,0.055);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1),
              transform 0.6s cubic-bezier(0.22,1,0.36,1),
              background 0.25s ease;
}

.hiw-pipe-card:hover { background: rgba(255,255,255,0.1); }

/* Staggered reveal */
.hiw-pipeline.animated .hiw-pipe-card:nth-child(1) { opacity:1; transform:none; transition-delay:60ms;  }
.hiw-pipeline.animated .hiw-pipe-card:nth-child(2) { opacity:1; transform:none; transition-delay:200ms; }
.hiw-pipeline.animated .hiw-pipe-card:nth-child(3) { opacity:1; transform:none; transition-delay:340ms; }
.hiw-pipeline.animated .hiw-pipe-card:nth-child(4) { opacity:1; transform:none; transition-delay:480ms; }

/* Rotating beam — a conic gradient that spins inside the 1px border gap */
.hiw-card-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%,-50%) rotate(0deg);
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 76%,
    rgba(255,255,255,0.08) 82%,
    rgba(255,255,255,0.18) 85%,
    rgba(255,255,255,0.08) 88%,
    transparent 94%
  );
  animation: beamSpin var(--bd,4s) linear infinite var(--boff,0s);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Green beam variant for step 04 */
.hiw-card-beam-green {
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 74%,
    rgba(74,222,128,0.18) 80%,
    rgba(74,222,128,0.48) 85%,
    rgba(74,222,128,0.18) 90%,
    transparent 96%
  );
}

@keyframes beamSpin {
  from { transform: translate(-50%,-50%) rotate(0deg);   }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Beams fade in shortly after their card appears */
.hiw-pipeline.animated .hiw-pipe-card:nth-child(1) .hiw-card-beam { opacity:1; transition-delay:260ms; }
.hiw-pipeline.animated .hiw-pipe-card:nth-child(2) .hiw-card-beam { opacity:1; transition-delay:400ms; }
.hiw-pipeline.animated .hiw-pipe-card:nth-child(3) .hiw-card-beam { opacity:1; transition-delay:540ms; }
.hiw-pipeline.animated .hiw-pipe-card:nth-child(4) .hiw-card-beam { opacity:1; transition-delay:680ms; }

/* Dark inner area — sits over the beam so it only shows at the 1px border gap */
.hiw-card-inner {
  position: relative;
  z-index: 1;
  background: #0c0c0c;
  border-radius: 15px;
  padding: 28px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  overflow: hidden;
}

/* Ghost step number — large, transparent, bottom-right of card */
.hiw-ghost-num {
  position: absolute;
  bottom: -8px;
  right: 10px;
  font-size: 88px;
  font-weight: 900;
  letter-spacing: -6px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.045);
  font-family: 'Inter', sans-serif;
  user-select: none;
  pointer-events: none;
}

.hiw-pipe-card-last .hiw-ghost-num {
  -webkit-text-stroke: 1.5px rgba(74,222,128,0.07);
}

/* Card typography */
.hiw-pc-title {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.2px;
  position: relative;
  z-index: 1;
}

.hiw-pc-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
  line-height: 1.72;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Step 04 — green border + brighter text */
.hiw-pipe-card-last { background: rgba(74,222,128,0.1); }
.hiw-pipe-card-last:hover { background: rgba(74,222,128,0.16); }
.hiw-pipe-card-last .hiw-card-inner { background: #0b0b0b; }
.hiw-pipe-card-last .hiw-pc-title   { color: rgba(255,255,255,0.95); }
.hiw-pipe-card-last .hiw-pc-desc    { color: rgba(255,255,255,0.4); }

.hiw-active-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(74,222,128,0.6);
  font-family: 'Inter', sans-serif;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

/* CTA row */
.hiw-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hiw-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: #0c0c0c;
  background-image: radial-gradient(ellipse at 50% -20%, rgba(74,222,128,0.14) 0%, transparent 68%);
  border: 1px solid rgba(74,222,128,0.35);
  border-radius: 11px;
  color: #4ADE80;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.2px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 24px rgba(74,222,128,0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.hiw-btn:hover {
  border-color: rgba(74,222,128,0.6);
  box-shadow: 0 0 48px rgba(74,222,128,0.2), 0 0 100px rgba(74,222,128,0.06);
  color: #6ee9a0;
  transform: translateY(-1px);
  background-image: radial-gradient(ellipse at 50% -10%, rgba(74,222,128,0.22) 0%, transparent 68%);
}

.hiw-btn:active { transform: translateY(0); }

.hiw-contact-wrap { position: relative; }

.hiw-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 11px;
  color: rgba(255,255,255,0.38);
  font-size: 14px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}

.hiw-contact-btn:hover {
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.025);
}

/* Contact widget */
.contact-widget {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #111213;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 8px;
  width: 272px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
}

.contact-widget::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 9px;
  height: 9px;
  background: #111213;
  border-right: 1px solid rgba(255,255,255,0.09);
  border-bottom: 1px solid rgba(255,255,255,0.09);
}

.contact-widget.open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.cw-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.18);
  font-family: 'Inter', sans-serif;
  padding: 4px 10px 8px;
}

.cw-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.12s ease;
  text-decoration: none;
}

.cw-item:hover { background: rgba(255,255,255,0.04); }

.cw-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cw-icon-discord { background: rgba(88,101,242,0.12); border: 1px solid rgba(88,101,242,0.18); color: #8b9cf7; }
.cw-icon-tg      { background: rgba(38,162,223,0.12); border: 1px solid rgba(38,162,223,0.18); color: #45b8e8; }

.cw-info { flex: 1; min-width: 0; }

.cw-platform {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  font-family: 'Inter', sans-serif;
}

.cw-handle {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
  font-family: 'Inter', sans-serif;
  margin-top: 1px;
}

.cw-action {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.22);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
  transition: color 0.12s ease;
}

.cw-item:hover .cw-action { color: rgba(255,255,255,0.6); }
.cw-action.copied { color: #4ADE80; }

/* ── CTA Section ── */
.cta-section {
  position: relative;
  background: #020202;
  padding: 100px 24px;
  overflow: hidden;
}


/* Outer breathing glow */
.cta-glow-outer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  transform: translate(-50%, -56%);
  background: radial-gradient(circle, rgba(74,222,128,0.045) 0%, rgba(74,222,128,0.015) 42%, transparent 68%);
  animation: ctaPulse 6s ease-in-out infinite;
  pointer-events: none;
}

/* Tight core glow */
.cta-glow-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  transform: translate(-50%, -58%);
  background: radial-gradient(circle, rgba(74,222,128,0.08) 0%, transparent 65%);
  animation: ctaPulse 6s ease-in-out infinite 0.8s;
  pointer-events: none;
}

@keyframes ctaPulse {
  0%, 100% { opacity: 1;   transform: translate(-50%, -56%) scale(1);    }
  50%       { opacity: 0.6; transform: translate(-50%, -56%) scale(1.18); }
}

.cta-glow-core {
  animation-name: ctaPulseCore;
}

@keyframes ctaPulseCore {
  0%, 100% { opacity: 1;   transform: translate(-50%, -58%) scale(1);    }
  50%       { opacity: 0.5; transform: translate(-50%, -58%) scale(1.25); }
}

/* Content */
.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}

.cta-card {
  position: relative;
  border-radius: 22px;
  padding: 1.5px;
  background: rgba(74,222,128,0.18);
  overflow: hidden;
}

.cta-card-beam {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 280%;
  aspect-ratio: 1/1;
  transform: translate(-50%,-50%) rotate(0deg);
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 68%,
    rgba(74,222,128,0.1) 74%,
    rgba(74,222,128,0.55) 81%,
    rgba(74,222,128,0.1) 87%,
    transparent 93%
  );
  animation: beamSpin 6s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.cta-card-inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #121314 0%, #0d0d0d 100%);
  border-radius: 20.5px;
  padding: 52px 48px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.cta-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(74,222,128,0.55);
  font-family: 'Inter', sans-serif;
}

.cta-title {
  font-size: clamp(36px, 5.5vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.08;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.cta-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.32);
  font-family: 'Inter', sans-serif;
  line-height: 1.72;
  max-width: 400px;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

/* Primary button — larger green glass */
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 36px;
  background: #0d0d0d;
  background-image: radial-gradient(ellipse at 50% -15%, rgba(74,222,128,0.22) 0%, transparent 65%);
  border: 1px solid rgba(74,222,128,0.42);
  border-radius: 13px;
  color: #4ADE80;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.3px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 36px rgba(74,222,128,0.14), 0 0 80px rgba(74,222,128,0.05);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s, background-image 0.2s, color 0.2s;
}

.cta-btn-primary:hover {
  border-color: rgba(74,222,128,0.75);
  box-shadow: 0 0 64px rgba(74,222,128,0.28), 0 0 130px rgba(74,222,128,0.08);
  color: #6ee9a0;
  transform: translateY(-2px);
  background-image: radial-gradient(ellipse at 50% -5%, rgba(74,222,128,0.34) 0%, transparent 65%);
}

.cta-btn-primary:active { transform: translateY(0); }

/* Secondary ghost button */
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 17px 30px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 13px;
  color: rgba(255,255,255,0.42);
  font-size: 15px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}

.cta-btn-secondary:hover {
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.03);
}

.cta-contact-wrap { position: relative; }

.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.18);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.1px;
}

.cta-trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .cta-section { padding: 60px 20px 80px; }
  .cta-card-inner { padding: 36px 24px 30px; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btn-primary, .cta-btn-secondary { width: 100%; justify-content: center; }
  .cta-contact-wrap { width: 100%; }
  .cta-btn-secondary { width: 100%; }
}

/* ── Footer ── */
.site-footer {
  background: #020202;
  position: relative;
  padding: 36px 24px 28px;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 960px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.07) 25%, rgba(255,255,255,0.07) 75%, transparent);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.55;
}

.footer-name {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.3px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.footer-social:hover {
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.05);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.14);
  font-family: 'Inter', sans-serif;
}

.footer-note {
  font-size: 11px;
  color: rgba(255,255,255,0.1);
  font-family: 'Inter', sans-serif;
}

/* ── Mobile ── */
@media (max-width: 768px) {

  /* Hero */
  .hero-bg-logo { width: 300px; transform: translate(-50%, -85%); }
  .hero-headline { font-size: clamp(18px, 5vw, 28px); letter-spacing: -0.6px; }

  /* Proof section — stack vertically */
  .proof { padding: 60px 16px; }
  .proof-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* How it works */
  .howitworks { padding: 60px 16px; }
  .hiw-inner { gap: 32px; }
  .hiw-pipe-connector { height: 44px; }
  .hiw-pipe-cards { grid-template-columns: 1fr 1fr; gap: 8px; padding-top: 10px; }
  .hiw-card-inner { padding: 20px 16px 22px; }
  .hiw-ghost-num { font-size: 64px; bottom: -6px; right: 6px; }
  .hiw-cta-row { flex-direction: column; gap: 10px; }
  .contact-widget { left: 0; transform: translateY(8px); }
  .contact-widget.open { transform: translateY(0); }
  .contact-widget::after { left: 30%; }
  .laser-scrollbar { display: none; }

  /* Compare section */
  .compare { padding: 60px 16px; }
  .cmp-table-head { display: none; }
  .cmp-item {
    grid-template-columns: 32px 1fr;
    grid-template-rows: auto auto;
    gap: 4px 12px;
  }
  .cmp-num { grid-row: 1; grid-column: 1; }
  .cmp-us-text { grid-row: 1; grid-column: 2; }
  .cmp-them-text {
    grid-row: 2;
    grid-column: 2;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.04);
    margin-top: 4px;
  }

  /* Footer */
  .site-footer { padding: 28px 20px 22px; }
  .footer-bottom { flex-direction: column; gap: 6px; align-items: flex-start; }

  /* Community section — stack vertically */
  .community { padding: 60px 16px; }
  .community-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .comm-right { position: static; }

  /* Revenue section */
  .revenue { padding: 60px 16px 50px; }
  .rev-headline { white-space: normal; font-size: clamp(24px, 6vw, 36px); }
  .rev-card { padding: 16px 12px 0; border-radius: 12px; }
  .rev-head { flex-direction: column; gap: 10px; }
  .rev-legend { gap: 4px; }

  /* Make chart scroll horizontally on small screens */
  .rev-chart-area { overflow-x: auto; }
  .rev-plot-wrap { min-width: 480px; }

}

@media (max-width: 480px) {

  /* Tighter hero padding */
  .hero-bg-logo { width: 220px; transform: translate(-50%, -88%); }
  .scroll-indicator { bottom: 28px; }

  /* Proof pills wrap tight */
  .proof-pills { gap: 5px; }
  .proof-pill { font-size: 10px; padding: 4px 9px; }

  /* Feed card columns narrower */
  .feed-cols-header,
  .feed-row { grid-template-columns: 1.8fr 0.9fr 1.1fr 0.7fr; }

  /* Revenue text tighter */
  .revenue { padding: 48px 14px 40px; }
  .rev-body-copy { font-size: 12px; }
  .rev-tags { gap: 5px; }
  .rev-tag { font-size: 10px; padding: 4px 9px; }

  /* Verified badge wraps on very small screens */
  .verified-badge { flex-wrap: wrap; gap: 5px 8px; justify-content: center; }
  .verified-divider { display: none; }

  /* Hero CTA button */
  .hero-cta-btn { font-size: 12px; padding: 10px 18px; }

  /* Typewriter */
  .tw-headline { white-space: normal; font-size: clamp(13px, 3.8vw, 22px); }

  /* Footer */
  .footer-row { gap: 14px; }
  .footer-bottom { flex-direction: column; gap: 5px; }

  /* Compare — hide the "Average Agency" text column, keep just our advantage */
  .cmp-them-text { display: none; }

}

/* ── Hero Notification Cards ── */
.hn-col {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 380px;
  pointer-events: none;
  z-index: 2;
}

.hn-col-left  { left: 0; }
.hn-col-right { right: 0; }

@media (max-width: 1200px) { .hn-col { display: none; } }

/* Card shell — same as feed-card */
.hn-card {
  position: absolute;
  width: 258px;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 36px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.16,1,0.3,1);
}

.hn-card-left  { transform: translateX(-20px) translateY(-50%); }
.hn-card-right { transform: translateX(20px) translateY(-50%); }
.hn-card.hn-show { opacity: 1; transform: translateX(0) translateY(-50%); }
.hn-card-left.hn-hide  { opacity: 0; transform: translateX(-12px) translateY(-50%); }
.hn-card-right.hn-hide { opacity: 0; transform: translateX(12px) translateY(-50%); }

/* Flash on entry */
@keyframes hnFlash {
  0%   { background: rgba(74,222,128,0.07); }
  100% { background: transparent; }
}
.hn-card.hn-flash { animation: hnFlash 0.7s ease-out forwards; }

/* Row — 3 cols: member | amount | type badge */
.hn-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
}

.hn-member {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.hn-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}

.hn-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.1px;
}

.hn-revenue {
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.2px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Type pill — dot + grey label (matches live sales feed style) */
.hn-type {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  font-family: 'Inter', sans-serif;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 999px;
  padding: 2px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.hn-type-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Button shake (validation error) ── */
@keyframes btnShake {
  0%, 100% { transform: translateX(0); }
  20%       { transform: translateX(-6px); }
  40%       { transform: translateX(6px); }
  60%       { transform: translateX(-4px); }
  80%       { transform: translateX(4px); }
}
.app-btn-shake { animation: btnShake 0.4s ease; }

/* ── Mobile Floating CTA ── */
.mobile-fab {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-fab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    z-index: 8000;
    padding: 13px 26px;
    background: #0d0d0d;
    background-image: radial-gradient(ellipse at 50% -15%, rgba(74,222,128,0.22) 0%, transparent 65%);
    border: 1px solid rgba(74,222,128,0.42);
    border-radius: 999px;
    color: #4ADE80;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.1px;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 0 28px rgba(74,222,128,0.15), 0 8px 32px rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease, box-shadow 0.2s ease;
  }

  .mobile-fab.fab-visible {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }

  .mobile-fab:active {
    transform: translateX(-50%) translateY(2px);
    box-shadow: 0 0 14px rgba(74,222,128,0.1), 0 4px 16px rgba(0,0,0,0.4);
  }
}

/* ── Application Modal ── */
.app-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.app-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.app-card {
  width: 100%;
  max-width: 640px;
  margin: 0 20px;
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    0 2px 1px rgba(0,0,0,0.3),
    0 24px 60px rgba(0,0,0,0.6),
    0 60px 120px rgba(0,0,0,0.4);
  overflow: hidden;
  transform: scale(0.96) translateY(14px);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(0.34,1.56,0.64,1), opacity 0.28s ease;
}

.app-overlay.open .app-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Progress bar */
.app-progress {
  height: 1px;
  background: rgba(255,255,255,0.05);
}

.app-progress-fill {
  height: 100%;
  width: 50%;
  background: rgba(255,255,255,0.28);
  transition: width 0.55s cubic-bezier(0.65,0,0.35,1);
}

/* Steps */
.app-step { display: flex; flex-direction: column; }
.app-step-hidden { display: none; }

@keyframes appStepIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0);    }
}
@keyframes appStepOut {
  from { opacity: 1; transform: translateX(0);     }
  to   { opacity: 0; transform: translateX(-20px); }
}
@keyframes appStepInBack {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0);     }
}
@keyframes appStepOutBack {
  from { opacity: 1; transform: translateX(0);    }
  to   { opacity: 0; transform: translateX(20px); }
}

.app-step.step-in       { animation: appStepIn      0.28s cubic-bezier(0.25,0.46,0.45,0.94) both; }
.app-step.step-out      { animation: appStepOut     0.18s ease both; }
.app-step.step-in-back  { animation: appStepInBack  0.28s cubic-bezier(0.25,0.46,0.45,0.94) both; }
.app-step.step-out-back { animation: appStepOutBack 0.18s ease both; }

/* Header */
.app-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 0;
}

.app-step-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.2);
  font-family: 'Inter', sans-serif;
}

.app-close-btn {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  background: transparent;
  color: rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
  padding: 0;
}

.app-close-btn:hover {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
}

/* Body */
.app-card-body {
  padding: 18px 26px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.app-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.9px;
  line-height: 1.15;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* Fields */
.app-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.app-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-slider-val {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  font-variant-numeric: tabular-nums;
}

.app-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.app-input::placeholder {
  color: rgba(255,255,255,0.15);
}

.app-input:focus {
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.04);
}

.app-input-wrap { position: relative; }

.app-input-sym {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.22);
  font-family: 'Inter', sans-serif;
  pointer-events: none;
}

.app-input.app-input-prefixed { padding-left: 27px; }

/* Slider */
.app-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  outline: none;
  cursor: pointer;
}

.app-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 2.5px solid rgba(12,12,12,0.9);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25), 0 2px 8px rgba(0,0,0,0.5);
  transition: box-shadow 0.15s;
}

.app-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.55), 0 2px 12px rgba(0,0,0,0.5);
}

.app-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 2.5px solid rgba(12,12,12,0.9);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25), 0 2px 8px rgba(0,0,0,0.5);
}

.app-slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
}

.app-slider-ticks span {
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.14);
  font-family: 'Inter', sans-serif;
}

/* Platform card grid (Step 1) */
.app-platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.app-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 28px 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.app-platform-card-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.4;
  transition: opacity 0.15s;
}

.app-platform-card-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.32);
  font-family: 'Inter', sans-serif;
  transition: color 0.15s;
}

.app-platform-card:hover {
  border-color: rgba(255,255,255,0.15);
}

.app-platform-card:hover .app-platform-card-logo { opacity: 0.7; }
.app-platform-card:hover .app-platform-card-name  { color: rgba(255,255,255,0.65); }

.app-platform-card.active {
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.07);
}

.app-platform-card.active .app-platform-card-logo { opacity: 1; }
.app-platform-card.active .app-platform-card-name  { color: #fff; }

/* Yes / No pills */
.app-pills { display: flex; gap: 8px; }

.app-pill {
  flex: 1;
  padding: 10px 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  letter-spacing: -0.1px;
}

.app-pill:hover {
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
}

.app-pill.active {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* Footer */
.app-card-foot { padding: 0 26px 22px; }

.app-foot-row {
  display: flex;
  gap: 8px;
  align-items: center;
}

.app-foot-row .app-next-btn { flex: 1; }

.app-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  background: transparent;
  color: rgba(255,255,255,0.3);
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}

.app-back-btn:hover {
  border-color: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
}

.app-back-link {
  background: none;
  border: none;
  color: rgba(255,255,255,0.18);
  font-size: 12px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: color 0.15s;
  padding: 0;
  text-align: center;
  display: block;
}

.app-back-link:hover { color: rgba(255,255,255,0.5); }

.app-next-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
}

.app-next-btn:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.app-next-btn:active { transform: translateY(0); }

/* Step 2 — Authorize */
.app-auth-body {
  padding-top: 26px;
  padding-bottom: 30px;
  gap: 18px;
}

.app-auth-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.3);
  font-family: 'Inter', sans-serif;
  line-height: 1.75;
  margin-top: -4px;
}

.app-auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 13px 24px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.2px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
  margin-top: 6px;
}

.app-auth-btn:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

.app-auth-btn:active { transform: translateY(0); }

.app-auth-note {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.12);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ── Modal mobile ── */
@media (max-width: 700px) {
  .app-card { margin: 0 14px; }
}

@media (max-width: 480px) {
  .app-card {
    margin: 0 10px;
    border-radius: 16px;
  }
  .app-card-head { padding: 16px 18px 0; }
  .app-card-body { padding: 14px 18px 12px; }
  .app-card-foot { padding: 0 18px 18px; }
  .app-title { font-size: 20px; letter-spacing: -0.6px; }
  .app-platform-card { padding: 20px 0; }
  .app-platform-card-logo { width: 22px; height: 22px; }
  .app-next-btn, .app-auth-btn { padding: 12px 20px; font-size: 13px; }
  .app-back-btn { padding: 11px 13px; font-size: 12px; }
}
