/* ── Design tokens ────────────────────────────────────────────── */

:root {
  --navy:        #0d1117;
  --navy-2:      #161b22;
  --navy-3:      #21262d;
  --gold:        #f59e0b;
  --gold-2:      #fcd34d;
  --blue:        #3b82f6;
  --emerald:     #10b981;
  --rose:        #f43f5e;
  --violet:      #8b5cf6;

  /* dark-section text */
  --d-text:    #f0f6fc;
  --d-muted:   #8b949e;
  --d-border:  rgba(255,255,255,0.08);

  /* light-section */
  --l-bg:     #f8fafc;
  --l-panel:  #ffffff;
  --l-text:   #0f172a;
  --l-muted:  #64748b;
  --l-border: #e2e8f0;

  /* public_nav.css compat */
  --bg:           var(--l-bg);
  --panel:        var(--l-panel);
  --panel-soft:   #f1f5f9;
  --text:         var(--l-text);
  --text-soft:    var(--l-muted);
  --border:       var(--l-border);
  --primary:      var(--blue);
  --primary-dark: #2563eb;
  --accent:       #06b6d4;
  --shadow:       0 10px 30px rgba(0,0,0,0.08);
  --shadow-soft:  0 4px 16px rgba(0,0,0,0.05);
  --radius:       16px;
  --max:          1160px;

  --font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── Reset ────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--l-text);
  background: #fff;
}

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

/* Slack bot avatar — must not be affected by global img reset */
img.slack-bot-avatar {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  min-width: 32px !important;
  border-radius: 7px !important;
  flex-shrink: 0;
  object-fit: cover;
}
a { color: inherit; text-decoration: none; }

code {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 0.88em;
  background: rgba(255,255,255,0.1);
  color: inherit;
  padding: 0.1em 0.38em;
  border-radius: 5px;
}

section[id] { scroll-margin-top: 80px; }
.inline-form { display: inline; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Topbar dark override (hero only) ─────────────────────────── */

.topbar {
  background: rgba(13,17,23,0.88) !important;
  border-bottom-color: rgba(255,255,255,0.07) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

.topbar .brand { color: #fff !important; }

.topbar .nav-links a {
  color: rgba(255,255,255,0.55) !important;
}

.topbar .nav-links a:hover,
.topbar .nav-links a.active {
  background: rgba(255,255,255,0.07) !important;
  color: #fff !important;
}

.topbar .nav-actions .btn-secondary {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(255,255,255,0.14) !important;
  color: rgba(255,255,255,0.85) !important;
}

.topbar .nav-actions .btn-secondary:hover {
  background: rgba(255,255,255,0.13) !important;
  color: #fff !important;
}

.topbar .mobile-menu-btn {
  background: rgba(255,255,255,0.07) !important;
  border-color: rgba(255,255,255,0.14) !important;
  color: #fff !important;
}

/* ── Buttons ──────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 46px;
  padding: 0.78rem 1.35rem;
  border-radius: 11px;
  font-weight: 700;
  font-size: 0.96rem;
  font-family: var(--font-body);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  line-height: 1;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #0d1117;
  box-shadow: 0 6px 22px rgba(245,158,11,0.38);
}
.btn-gold:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(245,158,11,0.44);
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  box-shadow: 0 6px 22px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(37,99,235,0.38);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.14);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--l-text);
  border-color: var(--l-border);
}
.btn-outline:hover {
  background: var(--l-bg);
}

/* ── Section framework ────────────────────────────────────────── */

.section { padding: 5.5rem 0; }

.section-light { background: #fff; }
.section-mid   { background: #f8fafc; }

.section-cta {
  background: var(--navy) !important;
  background-image:
    radial-gradient(ellipse 90% 65% at 50% 0%, rgba(245,158,11,0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(139,92,246,0.07), transparent 55%) !important;
}

.site-footer {
  background: var(--navy-2) !important;
  border-top: 1px solid var(--d-border);
  padding: 2.25rem 0 2.75rem;
}

.section-label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--l-text);
  margin-bottom: 0.8rem;
}

.section-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--l-muted);
  max-width: 600px;
}

.section-head { margin-bottom: 3.25rem; }
.section-head-center { text-align: center; }
.section-head-center .section-sub { margin: 0 auto; }

/* ── Hero (dark) ──────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 5.5rem;
  background: var(--navy);
  background-image:
    radial-gradient(ellipse 65% 55% at 92% 12%, rgba(245,158,11,0.14), transparent 55%),
    radial-gradient(ellipse 45% 40% at 6%  82%, rgba(59,130,246,0.09),  transparent 55%),
    radial-gradient(ellipse 35% 45% at 50% 55%, rgba(139,92,246,0.04), transparent 65%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Transition from dark hero to light body */
.hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #ffffff);
  pointer-events: none;
  z-index: 2;
}

.hero > .container { position: relative; z-index: 1; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.22);
  color: var(--gold-2);
  padding: 0.36rem 0.88rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.4rem;
  width: fit-content;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  line-height: 1.02;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.045em;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 1.07rem;
  color: var(--d-muted);
  line-height: 1.7;
  max-width: 470px;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.86rem;
  color: var(--d-muted);
}

.proof-check {
  color: var(--emerald);
  font-weight: 800;
  font-size: 0.8rem;
}

.proof-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

/* ── Slack mockup ─────────────────────────────────────────────── */

.hero-visual { position: relative; }

.mockup-outer {
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 40px 80px rgba(0,0,0,0.55),
    0 0 80px rgba(245,158,11,0.06);
}

.mockup-chrome {
  background: #1e2328;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mockup-dot.red    { background: #ff5f57; }
.mockup-dot.yellow { background: #febc2e; }
.mockup-dot.green  { background: #28c840; }

.mockup-chrome-title {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  margin-left: 8px;
  font-weight: 500;
}

.slack-mockup {
  display: grid;
  grid-template-columns: 196px 1fr;
  height: 380px;
  min-width: 0;
}

.slack-sidebar {
  background: #3f0f40;
  display: flex;
  flex-direction: column;
  padding: 12px 0 0;
  overflow: hidden;
}

.slack-workspace {
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 0 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.slack-channel {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  color: rgba(255,255,255,0.52);
  font-size: 0.83rem;
  border-radius: 6px;
  margin: 0 6px 1px;
  cursor: default;
}

.slack-channel.active {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.slack-sidebar-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 8px 14px;
}

.slack-dm-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  color: rgba(255,255,255,0.62);
  font-size: 0.83rem;
  border-radius: 6px;
  margin: 0 6px;
  cursor: default;
}

.slack-dm-avatar {
  width: 20px; height: 20px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  flex-shrink: 0;
}

.slack-unread {
  margin-left: auto;
  background: #f43f5e;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
}

.slack-ephemeral {
  background: rgba(245, 158, 11, 0.04);
  border-left: 2px solid rgba(245, 158, 11, 0.35);
  padding-left: 8px;
  margin-left: -8px;
  border-radius: 0 4px 4px 0;
}

.slack-ephemeral-label {
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 3px;
  font-style: italic;
}

.slack-dm-pill {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.05em 0.45em;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* Main chat */

.slack-main {
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.slack-main-header {
  padding: 10px 16px;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 800;
  font-size: 0.9rem;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.slack-dm-header {
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.slack-dm-header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slack-dm-header-avatar {
  width: 32px;
  height: 32px;
  min-width: 32px;
  max-width: 32px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  background: #0f172a;
}

.slack-dm-header-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.slack-dm-header-title {
  font-size: 0.86rem;
  font-weight: 800;
  color: #111827;
}

.slack-dm-header-sub {
  font-size: 0.72rem;
  color: #94a3b8;
  margin-top: 2px;
}

.slack-messages {
  flex: 1;
  padding: 14px 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.slack-mockup img[width="32"],
.slack-preview-card img[width="32"],
.celebrations-dm-note img[width="32"] {
  border-radius: 7px !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  flex-shrink: 0;
  display: block;
}

.slack-msg {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.slack-avatar {
  width: 32px; height: 32px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  color: #fff;
  flex-shrink: 0;
}

.av-bot { background: linear-gradient(135deg, #d97706, #f59e0b); font-size: 1rem; }
.av-p   { background: linear-gradient(135deg, #7c3aed, #6366f1); }
.av-s   { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.av-bot-icon {
  background: var(--prizebot-icon) center/cover no-repeat;
  border-radius: 7px;
}

/* Tab panels */
.slack-panel {
  display: none;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  height: 100%;
}
.slack-panel.active {
  display: flex;
}

/* Clickable sidebar items */
.slack-tab {
  cursor: pointer;
  transition: background 0.15s ease;
}
.slack-tab:hover {
  background: rgba(255,255,255,0.1) !important;
}
.slack-tab.active {
  background: rgba(255,255,255,0.14) !important;
  color: #fff !important;
}

.slack-avatar-img {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.slack-dm-icon {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.dm-avatar-img {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  max-width: 36px !important;
  border-radius: 9px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

.slack-msg-content { min-width: 0; }

.slack-msg-name {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
}

.slack-msg-name strong {
  font-size: 0.86rem;
  color: #1a1a1a;
  font-weight: 700;
}

.slack-msg-name time {
  font-size: 0.72rem;
  color: #94a3b8;
}

.slack-app-badge {
  background: #ede9fe;
  color: #5b21b6;
  font-size: 0.63rem;
  font-weight: 800;
  padding: 0.06em 0.42em;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.slack-msg-text {
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.5;
}

.slack-msg-text strong { color: #111827; }
.slack-msg-text .mention { color: #1264a3; font-weight: 600; }

.slack-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #f59e0b;
  border-radius: 6px;
  padding: 9px 12px;
  margin-top: 4px;
  font-size: 0.82rem;
  color: #374151;
  line-height: 1.5;
}

.slack-card strong { color: #111827; display: block; margin-bottom: 2px; font-size: 0.84rem; }

/* ── DM strip (below hero) ────────────────────────────────────── */

.dm-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--l-border);
  padding: 2.5rem 0;
  position: relative;
  z-index: 3;
}

.dm-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.dm-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.dm-avatar {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.dm-content { min-width: 0; }

.dm-name {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dm-text {
  font-size: 0.83rem;
  color: #374151;
  line-height: 1.52;
}

@media (max-width: 720px) {
  .dm-strip-grid { grid-template-columns: 1fr; }
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: #fff;
  border: 1px solid var(--l-border);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d97706, #fbbf24);
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.09);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 1.15rem;
  box-shadow: 0 4px 14px rgba(217,119,6,0.32);
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--l-text);
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.step-card p {
  font-size: 0.93rem;
  color: var(--l-muted);
  line-height: 1.62;
}

.step-card code {
  background: #f1f5f9;
  color: var(--l-text);
}

/* ── Features ─────────────────────────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--l-border);
  border-radius: 20px;
  padding: 1.6rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: rgba(245,158,11,0.3);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.fi-gold    { background: rgba(245,158,11,0.1); }
.fi-blue    { background: rgba(59,130,246,0.1); }
.fi-emerald { background: rgba(16,185,129,0.1); }
.fi-rose    { background: rgba(244,63,94,0.1);  }
.fi-violet  { background: rgba(139,92,246,0.1); }
.fi-slate   { background: rgba(100,116,139,0.1);}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--l-text);
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.91rem;
  color: var(--l-muted);
  line-height: 1.62;
}

/* ── Celebrations section ─────────────────────────────────────── */

.celebrations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.celebrations-bullets {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.celebrations-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.cbullet-icon {
  font-size: 1.2rem;
  width: 36px;
  height: 36px;
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.celebrations-bullet strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--l-text);
  margin-bottom: 2px;
}

.celebrations-bullet span {
  font-size: 0.88rem;
  color: var(--l-muted);
  line-height: 1.58;
}

.celebrations-preview {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.slack-preview-card {
  background: #fff;
  border: 1px solid var(--l-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.slack-preview-header {
  padding: 10px 16px;
  border-bottom: 1px solid #e5e7eb;
  font-weight: 800;
  font-size: 0.9rem;
  color: #1a1a1a;
  background: #fff;
}

.slack-preview-msgs {
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.celebrations-dm-note {
  background: #f8fafc;
  border: 1px solid var(--l-border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .celebrations-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

.demo-wheel-canvas {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
}

.demo-spin-btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 0.76rem 1.25rem;
  font-size: 0.97rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(180deg, #2137aa 0%, #1a2f8d 58%, #13236b 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(19,35,107,0.22);
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.1s ease;
  font-family: var(--font-body);
}

.demo-spin-btn:hover:not(:disabled) {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.demo-spin-btn:disabled {
  background: linear-gradient(180deg, #94a3b8 0%, #64748b 100%);
  cursor: not-allowed;
  transform: none;
}

.demo-wheel-result {
  text-align: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--l-text);
  margin-top: 0.75rem;
  min-height: 1.5rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.demo-wheel-result.visible {
  opacity: 1;
  transform: translateY(0);
}

.wheel-section {
  background: #f8fafc;
}

.wheel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.wheel-visual-wrap {
  background: #fff;
  border: 1px solid var(--l-border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

.wheel-visual-wrap img {
  width: 100%;
  border-radius: 14px;
}

.wheel-copy { display: flex; flex-direction: column; gap: 1rem; }

.wheel-copy h2 {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--l-text);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.wheel-copy > p {
  color: var(--l-muted);
  font-size: 0.97rem;
  line-height: 1.68;
}

.wheel-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.wheel-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: var(--l-muted);
  line-height: 1.55;
}

.wbullet-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 900;
}

/* ── Pricing ──────────────────────────────────────────────────── */

.pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.pricing-main {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  background-image: radial-gradient(ellipse 85% 60% at 50% 0%, rgba(245,158,11,0.16), transparent 60%);
  border: 1px solid rgba(245,158,11,0.18);
  border-radius: 24px;
  padding: 2.25rem;
  box-shadow: 0 20px 60px rgba(13,17,23,0.22);
}

.pricing-main::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.1), transparent 70%);
  pointer-events: none;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.22);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.28rem 0.78rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 1.25rem;
}

.pricing-main h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.18;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.6rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-unit {
  color: var(--d-muted);
  font-size: 0.96rem;
}

.pricing-main > p {
  color: var(--d-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.91rem;
  color: rgba(255,255,255,0.7);
}

.pricing-feature strong { color: #fff; }

.pricing-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.64rem;
  color: var(--emerald);
  font-weight: 900;
}

.pricing-cta-area {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pricing-cta-area .btn { width: 100%; }

.pricing-note {
  text-align: center;
  color: var(--d-muted);
  font-size: 0.81rem;
}

.pricing-how {
  background: #fff;
  border: 1px solid var(--l-border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.pricing-how h4 {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--l-text);
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
}

.pricing-how p {
  font-size: 0.91rem;
  color: var(--l-muted);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.pricing-how p:last-child { margin-bottom: 0; }

/* ── FAQ ──────────────────────────────────────────────────────── */

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--l-border);
  border-radius: 16px;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  transition: border-color 0.16s ease;
}

.faq-item:hover { border-color: #cbd5e1; }

.faq-item h3 {
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--l-text);
  margin-bottom: 0.45rem;
  line-height: 1.4;
}

.faq-item p {
  font-size: 0.91rem;
  color: var(--l-muted);
  line-height: 1.62;
}

/* ── Final CTA ────────────────────────────────────────────────── */

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin-bottom: 1rem;
}

.cta-inner h2 em {
  font-style: normal;
  color: var(--gold);
}

.cta-inner > p {
  color: var(--d-muted);
  font-size: 1.04rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.cta-footnote {
  color: rgba(255,255,255,0.28);
  font-size: 0.82rem;
}
.slack-dm-header {
  display: flex;
  align-items: center;
  min-height: 58px;
}

.slack-dm-header-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slack-dm-header-avatar {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.slack-dm-header-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.slack-dm-header-title {
  font-weight: 700;
  font-size: 15px;
}

.slack-dm-header-sub {
  font-size: 12px;
  color: var(--d-muted);
}

.slack-inline-action {
  font-weight: 700;
  color: #67b7ff;
}
/* ── Footer ───────────────────────────────────────────────────── */

/* footer styles consolidated above */

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-weight: 800;
  font-size: 0.96rem;
}

.footer-brand img {
  width: 30px; height: 30px;
  border-radius: 8px;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--d-muted);
  font-size: 0.87rem;
  transition: color 0.14s;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

.footer-copy {
  color: rgba(255,255,255,0.2);
  font-size: 0.84rem;
}

/* ── Responsive ───────────────────────────────────────────────── */

@media (max-width: 1040px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .mockup-outer { max-width: 560px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
  .wheel-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .slack-mockup {
    grid-template-columns: 148px 1fr;
    height: 340px;
  }
  .slack-workspace { font-size: 0.82rem; padding: 0 10px 8px; }
  .slack-channel { font-size: 0.78rem; padding: 4px 10px; gap: 5px; }
  .slack-dm-item { font-size: 0.78rem; padding: 4px 10px; gap: 5px; }
  .slack-messages { padding: 10px 10px 8px; gap: 10px; }
  .slack-msg-name strong { font-size: 0.8rem; }
  .slack-msg-text { font-size: 0.8rem; }
  .slack-msg-name time { font-size: 0.66rem; }
  .slack-app-badge { font-size: 0.58rem; }
  .slack-bot-avatar {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    min-width: 28px !important;
  }
  .slack-avatar-img {
    width: 28px !important;
    height: 28px !important;
    max-width: 28px !important;
    min-width: 28px !important;
  }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero { padding: 4.5rem 0 5rem; }
  .hero h1 { font-size: 2.2rem; }
  .cta-inner h2 { font-size: 1.95rem; }
  .section-title { font-size: 1.85rem; }
  .price-amount { font-size: 3rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-links { gap: 1rem; }

  /* Slack mockup — hide sidebar, show only chat area */
  .slack-mockup {
    grid-template-columns: 1fr;
    height: 320px;
  }
  .slack-sidebar { display: none; }
  .mockup-outer { max-width: 100%; }
}

@media (max-width: 420px) {
  .slack-mockup { height: 280px; }
  .slack-messages { padding: 8px 8px 6px; gap: 8px; }
  .slack-msg-text { font-size: 0.78rem; }
  .slack-msg-name strong { font-size: 0.78rem; }
  .mockup-chrome { padding: 8px 12px; }
  .mockup-dot { width: 10px; height: 10px; }
  .mockup-chrome-title { font-size: 0.68rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}