/* ===== Landing page styles (standalone — no dashforge.css) ===== */
html { scroll-behavior: smooth; }

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1b2e4b;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 { margin-top: 0; margin-bottom: 0; font-weight: 600; line-height: 1.25; color: #1b2e4b; }
p { margin-top: 0; }
a { color: #0168fa; text-decoration: none; }
a:hover { text-decoration: none; }
button { font-family: inherit; }
img { max-width: 100%; }

/* ---------- Flex utilities ---------- */
.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.flex-shrink-0 { flex-shrink: 0; }

/* ---------- Spacing utilities ---------- */
.mg-l-3  { margin-left: 3px; }
.mg-r-5  { margin-right: 5px; }
.mg-r-8  { margin-right: 8px; }
.mg-l-20 { margin-left: 20px; }
.mg-t-20 { margin-top: 20px; }

/* ---------- Sizing utilities ---------- */
.wd-20 { width: 20px; }
.ht-20 { height: 20px; }

/* ---------- Typography utilities ---------- */
.tx-semibold { font-weight: 600; }
.tx-success  { color: #10b759; }

/* ---------- Navbar base ---------- */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  height: 55px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: inherit;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 6px 12px;
  font-size: 13px;
  line-height: 1.5;
  border-radius: 4px;
  transition: all 0.15s ease-in-out;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-sm { padding: 4px 10px; font-size: 12px; }
.btn-xs { padding: 2px 8px; font-size: 11px; }

.btn-primary { background: #0168fa; color: #fff; border-color: #0168fa; }
.btn-primary:hover { background: #0150c7; border-color: #0150c7; color: #fff; }

.btn-outline-primary { background: transparent; color: #0168fa; border-color: #0168fa; }
.btn-outline-primary:hover { background: #0168fa; color: #fff; border-color: #0168fa; }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* ---------- Tone toggle (Corporate / Real Talk) ---------- */
.t-real { display: none; }
body.tone-real .t-corp { display: none; }
body.tone-real .t-real { display: inline; }

/* Hidden items: blurred in light mode, revealed in dark */
.t-real-only {
  filter: blur(4px);
  opacity: 0.4;
  pointer-events: none;
  user-select: none;
  transition: filter 0.5s, opacity 0.5s;
}
.uc-card.t-real-only { display: flex !important; }
.uc-group.t-real-only { display: block !important; }
a.t-real-only { display: inline !important; }
span.uc-soft-badge.t-real-only { display: inline-block !important; }

body.tone-real .t-real-only {
  filter: none;
  opacity: 1;
  pointer-events: auto;
  user-select: auto;
}

/* Floating switch */
.tone-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  user-select: none;
}

/* Flash on toggle */
.tone-fab.tone-flash { animation: toneFlash 0.4s ease; }
@keyframes toneFlash {
  0%   { filter: brightness(1); }
  50%  { filter: brightness(1.6); }
  100% { filter: brightness(1); }
}

/* Single button */
.tone-single-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(15,25,35,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.tone-btn-icon { font-size: 14px; line-height: 1; transition: opacity 0.15s; }
.tone-btn-text { line-height: 1; }

/* Badge counter */
.tone-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: #e63946;
  border-radius: 10px;
  line-height: 1;
  animation: toneBadgePulse 3s ease-in-out infinite;
}
@keyframes toneBadgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
body.tone-real .tone-badge { display: none; }

/* Hover: red glow preview + lock shimmer */
.tone-single-btn:hover {
  border-color: rgba(255,107,107,0.35);
  color: rgba(255,255,255,0.9);
  box-shadow: 0 6px 28px rgba(230,57,70,0.25), 0 0 40px rgba(230,57,70,0.08);
}
.tone-single-btn:hover .tone-btn-icon {
  animation: lockShimmer 0.8s ease infinite;
}
@keyframes lockShimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Periodic pulse ring (added via JS class) */
.tone-fab::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 28px;
  border: 2px solid rgba(230,57,70,0.4);
  opacity: 0;
  pointer-events: none;
}
.tone-fab.tone-pulse::after {
  animation: tonePulseRing 1.2s ease-out;
}
@keyframes tonePulseRing {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Active (Unfiltered) */
body.tone-real .tone-single-btn {
  background: rgba(230,57,70,0.18);
  border-color: rgba(255,107,107,0.45);
  color: #ff9a9a;
  box-shadow: 0 4px 20px rgba(230,57,70,0.25), inset 0 0 12px rgba(230,57,70,0.08);
}
body.tone-real .tone-single-btn:hover {
  background: rgba(230,57,70,0.22);
  border-color: rgba(255,107,107,0.5);
  color: #ffb0b0;
  box-shadow: 0 6px 28px rgba(230,57,70,0.3);
}
body.tone-real .tone-single-btn:hover .tone-btn-icon {
  animation: none;
  opacity: 1;
}
body.tone-real .tone-fab::after { display: none; }

/* Ghost teaser overlay (Use Cases) */
.uc-group-wrap {
  position: relative;
}
.uc-ghost-teaser {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  background: transparent;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  transition: opacity 0.4s, visibility 0.4s, background 0.2s;
}
.uc-ghost-teaser:hover {
  background: rgba(230,57,70,0.03);
}
body.tone-real .uc-ghost-teaser {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.uc-ghost-lock { font-size: 22px; opacity: 0.5; }
.uc-ghost-text {
  font-size: 11px;
  font-weight: 600;
  color: rgba(230,57,70,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- Header ---------- */
header.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  box-shadow: none;
  transition: box-shadow 0.3s, background 0.4s, border-color 0.4s;
}
header.landing-nav.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
header.landing-nav .df-logo,
header.landing-nav .df-logo:hover,
header.landing-nav .df-logo span { color: #1b2e4b; }
header.landing-nav .df-logo .logo-icon {
  margin-right: 7px;
  vertical-align: -3px;
  color: #1b2e4b;
}
header.landing-nav .df-logo .logo-word-black {
  display: inline-block;
  padding: 2px 7px 3px;
  margin: 0 -2px;
  border-radius: 4px;
  background: #05070a;
  color: #fff;
  line-height: 1;
  transition: background 0.4s, color 0.4s, padding 0.4s, margin 0.4s;
  cursor: pointer;
}
header.landing-nav .lang-switch {
  position: relative;
}
header.landing-nav .lang-current {
  color: #596882;
  background: #e8ecf1;
}
header.landing-nav .lang-current:hover {
  background: #dce1e8;
  color: #1b2e4b;
}
header.landing-nav .lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  padding: 4px 0;
  min-width: 120px;
  z-index: 100;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
header.landing-nav .lang-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 16px;
  width: 10px;
  height: 10px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-left: 1px solid rgba(0,0,0,0.08);
  transform: rotate(45deg);
  z-index: 0;
  transition: background 0.4s, border-color 0.4s;
}
header.landing-nav .lang-option {
  position: relative;
  z-index: 1;
}
header.landing-nav .lang-option {
  display: block;
  padding: 8px 14px;
  font-size: 13px;
  color: #596882;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
header.landing-nav .lang-option:hover {
  background: #f0f2f5;
  color: #1b2e4b;
}
header.landing-nav .lang-option.active {
  color: #0168fa;
  font-weight: 600;
}
/* Hamburger button (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #1b2e4b;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
body.tone-real .hamburger span { background: #fff; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Navigation menu */
.landing-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.landing-menu-link {
  font-size: 13px;
  font-weight: 600;
  color: #5f6d80;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.landing-menu-link:hover { color: #0168fa; }
.landing-menu-link.active { color: #0168fa; }

/* ---------- Mobile nav ---------- */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .landing-menu {
    display: none;
    position: fixed;
    top: 55px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    padding: 12px 0;
    z-index: 999;
    transition: background 0.4s;
  }
  .landing-menu.mobile-open { display: flex; }
  .landing-menu-link {
    padding: 12px 24px;
    font-size: 15px;
    width: 100%;
  }
  body.tone-real .landing-menu {
    background: #0f1923;
    border-bottom-color: rgba(255,255,255,0.06);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  }
  .nav-btn-ghost,
  .nav-btn-cta { font-size: 12px; padding: 6px 14px; }
  .navbar-brand .lang-switch { margin-left: 12px; }
}

/* Real Talk: light nav links */
body.tone-real .landing-menu-link { color: rgba(255,255,255,0.55); }
body.tone-real .landing-menu-link:hover { color: #fff; }
body.tone-real .landing-menu-link.active { color: #fff; }

/* Nav buttons */
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.2s;
}
.nav-btn svg { flex-shrink: 0; position: relative; top: -1px; }

.nav-btn-ghost {
  background: transparent;
  color: #596882;
  border: 1px solid rgba(0,0,0,0.12);
  margin-right: 8px;
}
.nav-btn-ghost:hover {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.2);
  color: #1b2e4b;
}

.nav-btn-cta {
  background: #0168fa;
  color: #fff;
  border: 1px solid #0168fa;
  box-shadow: 0 2px 8px rgba(1,104,250,0.25);
}
.nav-btn-cta:hover {
  background: #0150c7;
  border-color: #0150c7;
  color: #fff;
  box-shadow: 0 4px 14px rgba(1,104,250,0.35);
  transform: translateY(-1px);
}
.nav-btn-cta svg {
  transition: transform 0.2s;
}
.nav-btn-cta:hover svg {
  transform: translateX(3px);
}

/* Real Talk: dark nav */
body.tone-real header.landing-nav {
  background: #0f1923;
  border-bottom-color: rgba(255,255,255,0.06);
}
body.tone-real header.landing-nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.4); }
body.tone-real header.landing-nav .df-logo,
body.tone-real header.landing-nav .df-logo:hover,
body.tone-real header.landing-nav .df-logo span { color: #fff; }
body.tone-real header.landing-nav .df-logo .logo-icon { color: #fff; }
body.tone-real header.landing-nav .logo-word-black {
  background: transparent;
  color: #fff !important;
  padding: 2px 0 3px;
  margin: 0;
}
body.tone-real header.landing-nav .lang-current {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.12);
}
body.tone-real header.landing-nav .lang-current:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
}
body.tone-real header.landing-nav .lang-dropdown {
  background: #1a2332;
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
body.tone-real header.landing-nav .lang-dropdown::before {
  background: #1a2332;
  border-top-color: rgba(255,255,255,0.1);
  border-left-color: rgba(255,255,255,0.1);
}
body.tone-real header.landing-nav .lang-option {
  color: rgba(255,255,255,0.6);
}
body.tone-real header.landing-nav .lang-option:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
body.tone-real header.landing-nav .lang-option.active {
  color: #69b2f8;
}
body.tone-real .nav-btn-ghost {
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.18);
}
body.tone-real .nav-btn-ghost:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.3);
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, #f0f4f8 0%, #e8edf3 100%);
  color: #1b2e4b;
  padding: 80px 20px 60px;
  padding-top: 135px;
  text-align: center;
  transition: background 0.4s, color 0.4s;
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.4s, background 0.4s;
}
.hero::before {
  width: 500px;
  height: 500px;
  top: -120px;
  left: -80px;
  background: radial-gradient(circle, #69b2f8 0%, transparent 70%);
}
.hero::after {
  width: 400px;
  height: 400px;
  bottom: -60px;
  right: -60px;
  background: radial-gradient(circle, #0168fa 0%, transparent 70%);
}

/* Real Talk: darker mesh */
body.tone-real .hero::before {
  background: radial-gradient(circle, #0168fa 0%, transparent 70%);
  opacity: 0.2;
}
body.tone-real .hero::after {
  background: radial-gradient(circle, #69b2f8 0%, transparent 70%);
  opacity: 0.12;
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  padding: 5px 18px;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0168fa;
  background: rgba(1,104,250,0.08);
  border: 1px solid rgba(1,104,250,0.18);
  border-radius: 20px;
  transition: color 0.4s, background 0.4s, border-color 0.4s;
}
.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: #1b2e4b;
  transition: color 0.4s;
}
.hero-sub {
  font-size: 16px;
  color: #5f6d80;
  line-height: 1.7;
  margin-bottom: 36px;
  transition: color 0.4s;
}
.hero-features {
  display: flex;
  justify-content: center;
  gap: 12px 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #3c4d63;
  transition: color 0.4s;
}
.hero-feat i,
.hero-feat svg {
  width: 18px;
  height: 18px;
  color: #0168fa;
  flex-shrink: 0;
}
.hero-feat-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  color: #0168fa;
  font-weight: 700;
}
body.tone-real .hero-feat-icon {
  color: #ff8a8a;
}
.hero-feat-accent {
  background: rgba(1,104,250,0.08);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(1,104,250,0.15);
}
body.tone-real .hero-feat-accent {
  background: rgba(255,107,107,0.1);
  border-color: rgba(255,107,107,0.2);
}

/* Hero crypto icons row */
.hero-crypto-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.hero-crypto-icons:hover {
  opacity: 0.85;
}
.hero-crypto-icons img {
  width: 22px;
  height: 22px;
}

/* CTA: outline button visible on light bg */
.hero .btn-outline-light {
  border-color: rgba(0,0,0,0.15);
  color: #1b2e4b;
}
.hero .btn-outline-light:hover {
  background: rgba(0,0,0,0.04);
  color: #1b2e4b;
}

/* ── Real Talk: dark hero ── */
body.tone-real .hero {
  background: #0f1923;
  color: #fff;
}
body.tone-real .hero-badge {
  color: #69b2f8;
  background: rgba(1,104,250,0.12);
  border-color: rgba(1,104,250,0.2);
}
body.tone-real .hero-title { color: #fff; }
body.tone-real .hero-sub { color: rgba(255,255,255,0.7); }
body.tone-real .hero-feat { color: rgba(255,255,255,0.85); }
body.tone-real .hero .btn-outline-light {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
body.tone-real .hero .btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* Hint under CTA */
.hero-hint {
  margin-top: 14px;
  font-size: 12px;
  color: #8a96a3;
  letter-spacing: 0.2px;
  transition: color 0.4s;
}
body.tone-real .hero-hint { color: rgba(255,255,255,0.35); }

/* Crypto icons */
.hero-crypto {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.crypto-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  opacity: 0.45;
  transition: opacity 0.2s;
}
.crypto-icon:hover { opacity: 0.8; }

/* Telegram button icon */
.btn-tg i, .btn-tg svg {
  width: 15px;
  height: 15px;
  vertical-align: -2px;
  margin-right: 4px;
}

/* Live counter */
.hero-live {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 13px;
  color: #5f6d80;
  transition: color 0.4s;
}
.hero-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b759;
  flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,183,89,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(16,183,89,0); }
}
.hero-live-num {
  font-family: "SFMono-Regular", "Consolas", monospace;
  font-size: 16px;
  font-weight: 700;
  color: #1b2e4b;
  letter-spacing: -0.3px;
  transition: color 0.4s;
}
.hero-live-label { letter-spacing: 0.3px; }

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-hero {
  padding: 10px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
}

/* ---------- Section titles ---------- */
.section-title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 14px;
  color: #5f6d80;
  text-align: center;
  margin-bottom: 30px;
}

/* ---------- Ghost Mode ---------- */
.ghost-section {
  background: linear-gradient(180deg, #0f1923 0%, #162536 100%);
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;
}
.ghost-inner {
  max-width: 700px;
  margin: 0 auto;
}
.ghost-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ghost-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 130px;
}
.ghost-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.35);
}
.ghost-ip {
  font-family: "SFMono-Regular", "Consolas", monospace;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  padding: 6px 14px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.ghost-you .ghost-ip { color: #ff6b6b; border-color: rgba(255,107,107,0.3); background: rgba(255,107,107,0.08); }
.ghost-target .ghost-ip { color: #10b759; border-color: rgba(16,183,89,0.3); background: rgba(16,183,89,0.08); transition: all 0.4s; }
.ghost-arrow { color: rgba(255,255,255,0.2); flex-shrink: 0; }
.ghost-shield { color: #0168fa; }
.ghost-bbs .ghost-label { color: #0168fa; font-size: 11px; }
.ghost-country {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  transition: all 0.4s;
}

/* (Iceberg section removed — merged into Use Cases) */

/* ---------- Threat Level ---------- */
.threat-section {
  padding: 60px 20px;
  transition: background 0.6s, color 0.4s;
  background: #f8f9fc;
}
.threat-section[data-level="0"] { background: #f8f9fc; }
.threat-section[data-level="1"] { background: #2c2f3a; }
.threat-section[data-level="2"] { background: #0e0e12; }
.threat-section[data-level="1"] .threat-title,
.threat-section[data-level="2"] .threat-title { color: #fff; }

.threat-container {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.threat-track { margin: 24px 0; }
.threat-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.threat-lbl {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s;
  color: #7e8da2;
}
.threat-section[data-level="1"] .threat-lbl,
.threat-section[data-level="2"] .threat-lbl { color: rgba(255,255,255,0.35); }
.threat-lbl.active { color: #0168fa; }
.threat-section[data-level="1"] .threat-lbl.active { color: #f59f00; }
.threat-section[data-level="2"] .threat-lbl.active { color: #ff6b6b; }

.threat-slider {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  transition: background 0.4s;
  background: linear-gradient(90deg, #0168fa 0%, #7e8da2 50%, #7e8da2 100%);
}
.threat-section[data-level="0"] .threat-slider { background: linear-gradient(90deg, #0168fa 0%, #d0d7e0 50%, #d0d7e0 100%); }
.threat-section[data-level="1"] .threat-slider { background: linear-gradient(90deg, #0168fa 0%, #f59f00 50%, #555 100%); }
.threat-section[data-level="2"] .threat-slider { background: linear-gradient(90deg, #0168fa 0%, #f59f00 50%, #ff6b6b 100%); }
.threat-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 3px solid #0168fa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: border-color 0.3s;
}
.threat-section[data-level="1"] .threat-slider::-webkit-slider-thumb { border-color: #f59f00; }
.threat-section[data-level="2"] .threat-slider::-webkit-slider-thumb { border-color: #ff6b6b; }
.threat-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: 3px solid #0168fa;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: border-color 0.3s;
}
.threat-section[data-level="1"] .threat-slider::-moz-range-thumb { border-color: #f59f00; }
.threat-section[data-level="2"] .threat-slider::-moz-range-thumb { border-color: #ff6b6b; }

.threat-panel {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  min-height: 90px;
}
.threat-usecase {
  flex: 1;
  min-width: 200px;
  text-align: left;
  font-size: 13px;
  line-height: 1.8;
  color: #596882;
  transition: color 0.4s;
}
.threat-section[data-level="1"] .threat-usecase,
.threat-section[data-level="2"] .threat-usecase { color: rgba(255,255,255,0.6); }
.threat-usecase strong { font-weight: 600; }
.threat-section[data-level="1"] .threat-usecase strong { color: #f59f00; }
.threat-section[data-level="2"] .threat-usecase strong { color: #ff6b6b; }

.threat-features {
  flex: 1;
  min-width: 200px;
  text-align: left;
  font-size: 13px;
  line-height: 1.8;
  color: #596882;
  transition: color 0.4s;
}
.threat-section[data-level="1"] .threat-features,
.threat-section[data-level="2"] .threat-features { color: rgba(255,255,255,0.6); }
.threat-feat-icon { margin-right: 6px; }

/* ---------- Use Cases (terminal + cards) ---------- */
.use-cases {
  padding: 60px 0 60px 0;
  background: #f5f6fa;
  overflow: hidden;
}
.uc-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Split layout */
.uc-split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}
.uc-split-left {
  width: 480px;
  flex-shrink: 0;
  margin-left: -120px;
  position: relative;
}
.uc-split-right { flex: 1; min-width: 0; }

/* Start overlay */
.uc-start-overlay {
  position: absolute;
  inset: 0;
  top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30,41,59,0.85);
  backdrop-filter: blur(4px);
  border-radius: 0 0 8px 8px;
  z-index: 2;
  transition: opacity 0.4s, visibility 0.4s;
}
.uc-start-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.uc-start-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: #0168fa;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(1,104,250,0.35);
}
.uc-start-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 28px rgba(1,104,250,0.45);
}
.uc-start-btn svg { flex-shrink: 0; }

/* Use case card groups */
.uc-group { margin-bottom: 18px; }
.uc-group:last-child { margin-bottom: 0; }
.uc-group-tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  padding-left: 2px;
}
.uc-group:nth-child(1) .uc-group-tag { color: #0168fa; }
.uc-group:nth-child(2) .uc-group-tag { color: #a07000; }
.uc-group:nth-child(3) .uc-group-tag { color: #e05555; }
.uc-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.uc-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  transition: all 0.2s;
}
.uc-group:nth-child(1) .uc-card { background: #e8f0fe; color: #0158d4; }
.uc-group:nth-child(2) .uc-card { background: #fff3d6; color: #8a6d00; }
.uc-group:nth-child(3) .uc-card { background: rgba(255,107,107,0.12); color: #d04545; }
.uc-card:hover { filter: brightness(0.95); }
.uc-card i, .uc-card svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Software badges */
.uc-soft {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
  align-items: center;
}
.uc-soft-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #8f99a8;
  margin-right: 2px;
}
.uc-soft-tag svg { width: 11px; height: 11px; }
.uc-soft-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 500;
  border-radius: 12px;
  background: transparent;
  color: #6b7a8d;
  border: 1px solid #d5dce6;
  transition: all 0.2s;
  white-space: nowrap;
}
.uc-soft-badge:hover { border-color: #9aa5b4; color: #3c4d63; }
.uc-group:nth-child(2) .uc-soft-badge { border-color: #e8d6a8; color: #9a8240; }
.uc-group:nth-child(2) .uc-soft-badge:hover { border-color: #c8a84a; }
.uc-group:nth-child(3) .uc-soft-badge { border-color: #e8b8b8; color: #a85050; }
.uc-group:nth-child(3) .uc-soft-badge:hover { border-color: #d07070; }

.uc-terminal {
  position: relative;
  background: #1e293b;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.uc-terminal-header {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  background: #15202e;
  gap: 6px;
}
.uc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.uc-dot.red { background: #ff5f57; }
.uc-dot.yellow { background: #ffbd2e; }
.uc-dot.green { background: #28c840; }
.uc-terminal-title {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-left: 8px;
  font-family: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
}
.uc-code {
  padding: 14px 16px;
  margin: 0;
  font-family: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  font-size: 11.5px;
  line-height: 1.55;
  color: #c8d6e5;
  min-height: 320px;
  max-height: 380px;
  white-space: pre;
  overflow-x: hidden;
  overflow-y: hidden;
  transition: opacity 0.2s;
}
.uc-code .uc-comment { color: #5a6a7e; }
.uc-code .uc-keyword { color: #69b2f8; }
.uc-code .uc-string { color: #10b759; }
.uc-code .uc-number { color: #f59f00; }
.uc-code .uc-success { color: #10b759; }
.uc-code .uc-fail { color: #ff6b6b; }
.uc-code .uc-dim { color: #5a6a7e; }
.uc-code .uc-rotate { color: #f59f00; font-style: italic; }
.uc-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: #69b2f8;
  vertical-align: text-bottom;
  margin-left: 2px;
  animation: ucBlink 0.8s step-end infinite;
}
@keyframes ucBlink { 50% { opacity: 0; } }
.uc-status {
  padding: 8px 20px;
  font-family: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  font-size: 12px;
  color: #5a6a7e;
  border-top: 1px solid rgba(255,255,255,0.06);
  min-height: 30px;
  transition: opacity 0.3s;
}

/* ---------- Calculator ---------- */
.calc-section {
  padding: 60px 20px;
  background: #fff;
}
.calc-container {
  max-width: 620px;
  margin: 0 auto;
}

/* Subtitle under section title */
.calc-subtitle {
  text-align: center;
  font-size: 14px;
  color: #8f99a8;
  margin-bottom: 16px;
  margin-top: -4px;
}

.calc-card {
  background: #f8f9fc;
  border-radius: 8px;
  padding: 24px;
  --odo-bg: #f8f9fc;
}
.calc-row { margin-bottom: 0; }
.calc-label {
  font-size: 12px;
  font-weight: 600;
  color: #596882;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.calc-value {
  font-size: 16px;
  font-weight: 600;
  color: #1b2e4b;
}
.calc-presets {
  display: flex;
  gap: 6px;
  margin: 8px 0 10px;
  flex-wrap: wrap;
}
.calc-presets .btn {
  min-width: 60px;
  position: relative;
}
.calc-presets .btn.active {
  background: #0168fa;
  color: #fff;
  border-color: #0168fa;
}

/* "Popular" micro-badge inside preset button */
.calc-popular {
  position: absolute;
  top: -12px;
  right: -6px;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #ff6b35;
  color: #fff;
  padding: 1px 5px;
  border-radius: 6px;
  line-height: 1.4;
  pointer-events: none;
}

.calc-section .form-range {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: #e5e9f2;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.calc-section .form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0168fa;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.calc-section .form-range::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0168fa;
  cursor: pointer;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Price block */
.calc-price-block {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  gap: 14px;
  --odo-bg: #fff;
}
.calc-price-left { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.calc-price-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}
.calc-price-total {
  font-size: 32px;
  font-weight: 800;
  color: #1b2e4b;
  line-height: 1;
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
}

/* Odometer digit animation */
.odo-digit {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  vertical-align: text-bottom;
}
.odo-digit::before,
.odo-digit::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 20%;
  z-index: 2;
  pointer-events: none;
}
.odo-digit::before {
  top: 0;
  background: linear-gradient(to bottom, var(--odo-bg, #fff), transparent);
}
.odo-digit::after {
  bottom: 0;
  background: linear-gradient(to top, var(--odo-bg, #fff), transparent);
}
.odo-ribbon {
  display: flex;
  flex-direction: column;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.odo-ribbon.no-transition {
  transition: none !important;
}
.odo-ribbon span {
  display: block;
  height: 1em;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
}
.odo-static {
  display: inline-block;
  vertical-align: text-bottom;
  height: 1em;
  line-height: 1;
}
.odo-slot {
  display: inline-block;
  overflow: hidden;
  vertical-align: text-bottom;
  transition: max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s ease;
}
.odo-slot-enter { max-width: 0; opacity: 0; }
.odo-slot-enter.odo-visible { max-width: 0.65em; opacity: 1; }
.odo-slot-exit { max-width: 0.65em; opacity: 1; }
.odo-slot-exit.odo-hidden { max-width: 0; opacity: 0; }
.calc-price-old {
  font-size: 18px;
  font-weight: 500;
  color: #b4bdce;
  text-decoration: line-through;
}
.calc-save-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  background: #10b759;
  border-radius: 20px;
  white-space: nowrap;
  animation: calcBadgePop 0.3s ease-out;
}
@keyframes calcBadgePop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.calc-price-sub {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #596882;
}
.calc-per-day {
  font-weight: 600;
  color: #0168fa;
}
.calc-dot { color: #b4bdce; }

/* Order button */
.calc-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(1,104,250,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
  --odo-bg: #0168fa;
}
.calc-order-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(1,104,250,0.4);
}

/* Footer area: feature tags + crypto */
.calc-footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.calc-footer-tags {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.calc-ftag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: #596882;
}
.calc-ftag svg { width: 14px; height: 14px; color: #0168fa; }
.calc-crypto-text {
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #8392a5;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 10px;
  margin-top: 6px;
}
body.tone-real .calc-crypto-text {
  border-top-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.45);
}

/* ---------- Free Trial ---------- */
.trial-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #0f1923 0%, #162a40 50%, #0f1923 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.trial-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(1,104,250,0.12) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.trial-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.trial-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #0168fa;
  background: rgba(1,104,250,0.12);
  padding: 4px 14px;
  border-radius: 20px;
  animation: trialPulse 2.5s ease-in-out infinite;
}
@keyframes trialPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(1,104,250,0.3); }
  50% { box-shadow: 0 0 0 8px rgba(1,104,250,0); }
}
.trial-title {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
.trial-accent {
  color: #69b2f8;
}
.trial-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.6;
}
.trial-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 4px 0;
}
.trial-feat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.trial-feat svg { width: 15px; height: 15px; color: #0168fa; }
.trial-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}
.trial-cta {
  padding: 14px 40px !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  box-shadow: 0 4px 24px rgba(1,104,250,0.35);
  transition: transform 0.15s, box-shadow 0.15s;
}
.trial-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(1,104,250,0.45);
}
.trial-tg-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.trial-tg-link:hover { color: rgba(255,255,255,0.8); }
.trial-tg-link svg { width: 13px; height: 13px; }

/* ---------- FAQ ---------- */
.faq-section {
  padding: 60px 20px;
  background: #fff;
}
.faq-container {
  max-width: 660px;
  margin: 0 auto;
}
.faq-section .faq-item { border-bottom: 1px solid #e5e9f2; }
.faq-section .faq-item:last-child { border-bottom: none; }
.faq-section .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #1b2e4b;
  user-select: none;
}
.faq-section .faq-chevron {
  flex-shrink: 0;
  margin-left: 10px;
  color: #7e8da2;
  transition: transform 0.25s;
  width: 16px;
  height: 16px;
}
.faq-section .faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-section .faq-answer {
  display: none;
  padding: 0 0 14px;
  font-size: 14px;
  color: #596882;
  line-height: 1.7;
}

/* ---------- Footer (landing override — dark bg) ---------- */
body .footer {
  background: #0f1923;
  padding: 30px 20px 20px;
}
body .footer a { color: rgba(255,255,255,0.55); }
body .footer a:hover { color: #fff; }
body .footer .fv2-bottom { color: rgba(255,255,255,0.35); }
body .footer .fv2-bottom a { color: rgba(255,255,255,0.35); }
body .footer .fv2-bottom a:hover { color: #fff; }
body .footer .fv2-dot { background: rgba(255,255,255,0.2); }

/* ========== REAL TALK: FULL DARK MODE ========== */

/* --- Global transitions --- */
body,
body .hero,
body .use-cases,
body .calc-section,
body .faq-section,
body .calc-card,
body .calc-price-block,
body .section-title,
body .section-sub,
body .hero-title,
body .hero-sub,
body .hero-feat,
body .hero-badge,
body .hero-hint,
body .calc-label,
body .calc-value,
body .calc-price-total,
body .calc-price-sub,
body .calc-per-day,
body .calc-ftag,
body .calc-subtitle,
body .faq-section .faq-question,
body .faq-section .faq-answer,
body .faq-section .faq-item,
body .uc-card,
body .uc-group-tag,
body .uc-soft-badge,
body .uc-soft-tag,
body .hiw-section,
body .hiw-num,
body .hiw-step h3,
body .hiw-step p,
body .hiw-icon svg,
body .hiw-arrow,
body .hiw-proof,
body .proof-num,
body .proof-label,
body .proof-divider {
  transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

/* --- Noise/grain overlay --- */
body.tone-real::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

/* --- Body & page-level --- */
body.tone-real {
  background: #0c0c12;
  color: #c8d0da;
}
body.tone-real h1, body.tone-real h2, body.tone-real h3,
body.tone-real h4, body.tone-real h5, body.tone-real h6 {
  color: #edf0f5;
}
body.tone-real a { color: #ff8a8a; }
body.tone-real a:hover { color: #ffb0b0; }

/* --- Hero: dark aggressive --- */
body.tone-real .hero {
  background: linear-gradient(180deg, #0e0e16 0%, #14080c 60%, #0e0e16 100%);
  color: #edf0f5;
}
body.tone-real .hero::before {
  background: radial-gradient(circle, rgba(255,107,107,0.18) 0%, transparent 70%);
  opacity: 0.5;
}
body.tone-real .hero::after {
  background: radial-gradient(circle, rgba(255,60,60,0.12) 0%, transparent 70%);
  opacity: 0.4;
}
body.tone-real .hero-badge {
  color: #ff8a8a;
  background: rgba(255,107,107,0.08);
  border-color: rgba(255,107,107,0.2);
}
body.tone-real .hero-title { color: #fff; }
body.tone-real .hero-sub { color: rgba(255,255,255,0.6); }
body.tone-real .hero-feat { color: rgba(255,255,255,0.8); }
body.tone-real .hero-feat i,
body.tone-real .hero-feat svg { color: #ff8a8a; }
body.tone-real .hero-hint { color: rgba(255,255,255,0.3); }
body.tone-real .hero-live { color: rgba(255,255,255,0.4); }
body.tone-real .hero-live-num { color: #fff; }
body.tone-real .hero .btn-outline-light {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
body.tone-real .hero .btn-outline-light:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

/* --- Buttons: red accent --- */
body.tone-real .btn-primary {
  background: #e63946;
  border-color: #e63946;
  color: #fff;
}
body.tone-real .btn-primary:hover {
  background: #c5303c;
  border-color: #c5303c;
}
/* --- Header dark (already partially done, enhance) --- */
body.tone-real header.landing-nav {
  background: rgba(10,10,15,0.95);
  border-bottom-color: rgba(255,107,107,0.1);
}
body.tone-real header.landing-nav .navbar-right .btn-primary {
  background: #e63946;
  border-color: #e63946;
}
body.tone-real .nav-btn-cta {
  background: #e63946;
  border-color: #e63946;
  color: #fff;
  box-shadow: 0 2px 8px rgba(230,57,70,0.3);
}
body.tone-real .nav-btn-cta:hover {
  background: #c5303c;
  border-color: #c5303c;
  color: #fff;
  box-shadow: 0 4px 14px rgba(230,57,70,0.45);
}

/* --- Use Cases: lighter dark for contrast --- */
body.tone-real .use-cases {
  background: #16161f;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
body.tone-real .section-title { color: #edf0f5; }
body.tone-real .section-sub { color: rgba(255,255,255,0.45); }
body.tone-real .uc-group:nth-child(1) .uc-card { background: rgba(105,178,248,0.08); color: #8ac4ff; }
body.tone-real .uc-group:nth-child(2) .uc-card { background: rgba(255,179,50,0.08); color: #f5c040; }
body.tone-real .uc-group:nth-child(3) .uc-card { background: rgba(255,80,80,0.1); color: #ff7a7a; }
body.tone-real .uc-group:nth-child(1) .uc-group-tag { color: #69b2f8; }
body.tone-real .uc-group:nth-child(2) .uc-group-tag { color: #f5c040; }
body.tone-real .uc-group:nth-child(3) .uc-group-tag { color: #ff5050; }
body.tone-real .uc-soft-badge {
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.02);
}
body.tone-real .uc-soft-badge:hover { border-color: rgba(255,255,255,0.25); color: rgba(255,255,255,0.8); }
body.tone-real .uc-group:nth-child(2) .uc-soft-badge { border-color: rgba(245,192,64,0.15); color: rgba(245,192,64,0.6); }
body.tone-real .uc-group:nth-child(3) .uc-soft-badge { border-color: rgba(255,107,107,0.15); color: rgba(255,120,120,0.65); }
body.tone-real .uc-soft-tag { color: rgba(255,255,255,0.3); }

/* Start button in Real Talk */
body.tone-real .uc-start-btn {
  background: #e63946;
  box-shadow: 0 4px 20px rgba(230,57,70,0.35);
}
body.tone-real .uc-start-btn:hover {
  box-shadow: 0 6px 28px rgba(230,57,70,0.5);
}

/* --- Calculator: dark base --- */
body.tone-real .calc-section { background: #0c0c12; }
body.tone-real .calc-subtitle { color: rgba(255,255,255,0.4); }
body.tone-real .calc-card {
  background: #141420;
  border: 1px solid rgba(255,107,107,0.12);
  position: relative;
  box-shadow: 0 0 30px rgba(230,57,70,0.06);
  --odo-bg: #141420;
}
body.tone-real .calc-label { color: rgba(255,255,255,0.6); }
body.tone-real .calc-value { color: #edf0f5; }
body.tone-real .calc-price-block {
  background: #0e0e18;
  border: 1px solid rgba(255,255,255,0.06);
  --odo-bg: #0e0e18;
}
body.tone-real .calc-price-total { color: #fff; }
body.tone-real .calc-price-old { color: rgba(255,255,255,0.35); }
body.tone-real .calc-price-sub { color: rgba(255,255,255,0.5); }
body.tone-real .calc-per-day { color: #ff8a8a; }
body.tone-real .calc-dot { color: rgba(255,255,255,0.2); }
body.tone-real .calc-save-badge { background: #e63946; }
body.tone-real .calc-ftag { color: rgba(255,255,255,0.55); }
body.tone-real .calc-ftag svg { color: #ff8a8a; }
body.tone-real .calc-popular { background: #e63946; }
body.tone-real .calc-order-btn {
  background: #e63946;
  border-color: #e63946;
  box-shadow: 0 4px 18px rgba(230,57,70,0.35);
  --odo-bg: #e63946;
}
body.tone-real .calc-order-btn:hover {
  box-shadow: 0 6px 24px rgba(230,57,70,0.5);
}

/* Preset buttons: better contrast */
body.tone-real .btn-outline-primary {
  color: #dda0a0;
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
}
body.tone-real .btn-outline-primary:hover {
  background: #e63946;
  border-color: #e63946;
  color: #fff;
}
body.tone-real .calc-presets .btn.active {
  background: #e63946;
  border-color: #e63946;
  color: #fff;
}

/* Slider track: visible on dark */
body.tone-real .calc-section .form-range {
  background: #252535;
  height: 6px;
}
body.tone-real .calc-section .form-range::-webkit-slider-thumb {
  background: #ff6b6b;
  border-color: #141420;
  width: 18px;
  height: 18px;
  box-shadow: 0 0 8px rgba(255,107,107,0.4);
}
body.tone-real .calc-section .form-range::-moz-range-thumb {
  background: #ff6b6b;
  border-color: #141420;
  width: 18px;
  height: 18px;
  box-shadow: 0 0 8px rgba(255,107,107,0.4);
}

/* Discount badges */
body.tone-real .preset-discount { background: #e63946; }

/* --- Free Trial: lighter dark for contrast --- */
body.tone-real .trial-section {
  background: linear-gradient(135deg, #18121a 0%, #221018 50%, #18121a 100%);
  border-top: 1px solid rgba(255,107,107,0.08);
  border-bottom: 1px solid rgba(255,107,107,0.08);
}
body.tone-real .trial-section::before {
  background: radial-gradient(circle, rgba(230,57,70,0.12) 0%, transparent 70%);
}
body.tone-real .trial-badge {
  color: #ff8a8a;
  background: rgba(255,107,107,0.1);
  box-shadow: 0 0 0 0 rgba(255,107,107,0.3);
}
body.tone-real .trial-accent { color: #ff8a8a; }
body.tone-real .trial-feat svg { color: #ff8a8a; }
body.tone-real .trial-cta {
  background: #e63946;
  border-color: #e63946;
  box-shadow: 0 4px 24px rgba(230,57,70,0.4);
}
body.tone-real .trial-cta:hover {
  box-shadow: 0 8px 32px rgba(230,57,70,0.55);
}

/* --- FAQ: lighter dark for contrast --- */
body.tone-real .faq-section { background: #14141e; }
body.tone-real .faq-section .faq-item { border-bottom-color: rgba(255,255,255,0.06); }
body.tone-real .faq-section .faq-question { color: #edf0f5; }
body.tone-real .faq-section .faq-chevron { color: rgba(255,255,255,0.3); }
body.tone-real .faq-section .faq-answer {
  color: #a8d8a8;
  font-family: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;
  font-size: 13px;
  background: rgba(100,200,100,0.04);
  padding: 12px 14px;
  border-radius: 4px;
  border-left: 2px solid rgba(139,255,139,0.2);
  margin-bottom: 10px;
  line-height: 1.7;
}

/* --- Footer --- */
body.tone-real .footer {
  background: #08080e;
  border-top: 1px solid rgba(255,255,255,0.05);
}
body.tone-real .footer a { color: rgba(255,255,255,0.55); }
body.tone-real .footer a:hover { color: #ff8a8a; }

/* --- Section titles: uppercase + tight tracking in Real Talk --- */
body.tone-real .section-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 24px;
}
body.tone-real .hero-title {
  letter-spacing: -1px;
}

/* ---------- Hamburger Menu ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-right: 8px;
  z-index: 1010;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #596882;
  border-radius: 2px;
  transition: all 0.3s;
}
body.tone-real .hamburger span { background: rgba(255,255,255,0.7); }

.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu overlay */
.landing-menu.mobile-open {
  display: flex !important;
  position: fixed;
  inset: 0;
  top: 55px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 40px;
  gap: 0;
  background: #fff;
  z-index: 1005;
  animation: menuSlide 0.25s ease;
}
body.tone-real .landing-menu.mobile-open { background: #0f1923; }
.landing-menu.mobile-open .landing-menu-link {
  font-size: 18px;
  padding: 16px 0;
  width: 80%;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
body.tone-real .landing-menu.mobile-open .landing-menu-link {
  border-bottom-color: rgba(255,255,255,0.06);
}
@keyframes menuSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- How It Works ---------- */
.hiw-section {
  padding: 60px 20px;
  background: #fff;
}
.hiw-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Variant picker strip */
.hiw-variant-picker {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  margin-bottom: 8px;
}
.hiw-vbtn {
  width: 32px;
  height: 28px;
  border: 1px solid #d0d7e0;
  border-radius: 6px;
  background: #fff;
  color: #596882;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.hiw-vbtn:hover { border-color: #0168fa; color: #0168fa; }
.hiw-vbtn.active { background: #0168fa; color: #fff; border-color: #0168fa; }
body.tone-real .hiw-vbtn { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); }
body.tone-real .hiw-vbtn:hover { border-color: #ff8a8a; color: #ff8a8a; }
body.tone-real .hiw-vbtn.active { background: #e63946; border-color: #e63946; color: #fff; }

/* === Shared base === */
.hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 28px;
  transition: all 0.3s ease;
}
.hiw-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  transition: all 0.3s ease;
}
.hiw-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0168fa;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.hiw-icon {
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.hiw-icon svg {
  width: 28px;
  height: 28px;
  color: #0168fa;
  transition: all 0.3s ease;
}
.hiw-step h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #1b2e4b;
  transition: all 0.3s ease;
}
.hiw-step p {
  font-size: 13px;
  color: #596882;
  line-height: 1.6;
  margin: 0;
  transition: all 0.3s ease;
}
.hiw-arrow {
  display: flex;
  align-items: center;
  padding-top: 36px;
  color: #c0c6d0;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.hiw-arrow svg { width: 20px; height: 20px; }

/* Real Talk base */
body.tone-real .hiw-section { background: #0c0c12; }
body.tone-real .hiw-num { background: #e63946; }
body.tone-real .hiw-icon svg { color: #ff8a8a; }
body.tone-real .hiw-step h3 { color: #edf0f5; }
body.tone-real .hiw-step p { color: rgba(255,255,255,0.5); }
body.tone-real .hiw-arrow { color: rgba(255,255,255,0.15); }

/* ============================================================
   VARIANT A — Cards with icon-circle background + dashed line
   ============================================================ */
.hiw-section[data-variant="a"] .hiw-step {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 28px 20px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
}
.hiw-section[data-variant="a"] .hiw-num {
  width: 26px;
  height: 26px;
  font-size: 12px;
  position: absolute;
  top: 12px;
  left: 14px;
  margin-bottom: 0;
}
.hiw-section[data-variant="a"] .hiw-icon svg {
  width: 36px;
  height: 36px;
}
.hiw-section[data-variant="a"] .hiw-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(1,104,250,0.08);
}
.hiw-section[data-variant="a"] .hiw-arrow {
  padding-top: 0;
  align-self: center;
  color: #c0c6d0;
}
.hiw-section[data-variant="a"] .hiw-arrow svg {
  width: 24px;
  height: 24px;
  stroke-dasharray: 4 4;
}
/* A — Real Talk */
body.tone-real .hiw-section[data-variant="a"] .hiw-step {
  background: #141420;
  border-color: rgba(255,255,255,0.06);
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
body.tone-real .hiw-section[data-variant="a"] .hiw-icon {
  background: rgba(255,107,107,0.1);
}

/* ============================================================
   VARIANT B — Timeline / horizontal track
   ============================================================ */
.hiw-section[data-variant="b"] .hiw-steps {
  position: relative;
  padding-top: 40px;
}
.hiw-section[data-variant="b"] .hiw-steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 16%;
  right: 16%;
  height: 3px;
  background: #e5e9f2;
  border-radius: 2px;
  z-index: 0;
}
.hiw-section[data-variant="b"] .hiw-arrow { display: none; }
.hiw-section[data-variant="b"] .hiw-step { position: relative; z-index: 1; }
.hiw-section[data-variant="b"] .hiw-num {
  width: 36px;
  height: 36px;
  font-size: 15px;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(1,104,250,0.25);
  margin-bottom: 16px;
}
.hiw-section[data-variant="b"] .hiw-icon { display: none; }
.hiw-section[data-variant="b"] .hiw-step h3 { font-size: 15px; }
.hiw-section[data-variant="b"] .hiw-step p { font-size: 12px; }
/* B — Real Talk */
body.tone-real .hiw-section[data-variant="b"] .hiw-steps::before {
  background: rgba(255,255,255,0.08);
}
body.tone-real .hiw-section[data-variant="b"] .hiw-num {
  border-color: #0c0c12;
  box-shadow: 0 2px 8px rgba(230,57,70,0.3);
}

/* ============================================================
   VARIANT C — Large watermark numbers + accent bar
   ============================================================ */
.hiw-section[data-variant="c"] .hiw-steps {
  flex-direction: column;
  gap: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hiw-section[data-variant="c"] .hiw-arrow { display: none; }
.hiw-section[data-variant="c"] .hiw-step {
  text-align: left;
  padding: 18px 20px 18px 24px;
  border-left: 3px solid #0168fa;
  position: relative;
  overflow: hidden;
}
.hiw-section[data-variant="c"] .hiw-step + .hiw-step { margin-top: 6px; }
.hiw-section[data-variant="c"] .hiw-step:nth-child(3) { border-left-color: #3a7bd5; }
.hiw-section[data-variant="c"] .hiw-step:nth-child(5) { border-left-color: #69b2f8; }
.hiw-section[data-variant="c"] .hiw-num {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  background: none;
  color: rgba(1,104,250,0.07);
  font-size: 72px;
  font-weight: 800;
  border-radius: 0;
  margin: 0;
  line-height: 1;
  pointer-events: none;
}
.hiw-section[data-variant="c"] .hiw-icon {
  display: inline;
  margin: 0 6px 0 0;
}
.hiw-section[data-variant="c"] .hiw-icon svg {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
}
.hiw-section[data-variant="c"] .hiw-step h3 {
  display: inline;
  font-size: 15px;
}
.hiw-section[data-variant="c"] .hiw-step p {
  margin-top: 4px;
}
/* C — Real Talk */
body.tone-real .hiw-section[data-variant="c"] .hiw-step {
  border-left-color: #e63946;
}
body.tone-real .hiw-section[data-variant="c"] .hiw-step:nth-child(3) { border-left-color: #ff6b6b; }
body.tone-real .hiw-section[data-variant="c"] .hiw-step:nth-child(5) { border-left-color: #ff8a8a; }
body.tone-real .hiw-section[data-variant="c"] .hiw-num {
  color: rgba(230,57,70,0.08);
}

/* ============================================================
   VARIANT D — Gradient circle icons + dashed animated arrows
   ============================================================ */
.hiw-section[data-variant="d"] .hiw-num {
  position: absolute;
  top: -4px;
  right: calc(50% - 36px);
  width: 22px;
  height: 22px;
  font-size: 11px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.hiw-section[data-variant="d"] .hiw-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #0168fa 0%, #69b2f8 100%);
  box-shadow: 0 6px 20px rgba(1,104,250,0.3);
}
.hiw-section[data-variant="d"] .hiw-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}
.hiw-section[data-variant="d"] .hiw-arrow svg {
  stroke-dasharray: 5 5;
  animation: hiwDash 1.2s linear infinite;
}
@keyframes hiwDash {
  to { stroke-dashoffset: -20; }
}
.hiw-section[data-variant="d"] .hiw-arrow {
  padding-top: 0;
  align-self: center;
}
/* D — Real Talk */
body.tone-real .hiw-section[data-variant="d"] .hiw-icon {
  background: linear-gradient(135deg, #e63946 0%, #ff8a8a 100%);
  box-shadow: 0 6px 20px rgba(230,57,70,0.35);
}
body.tone-real .hiw-section[data-variant="d"] .hiw-icon svg { color: #fff; }

/* ============================================================
   VARIANT E — Horizontal cards, vertical stack
   ============================================================ */
.hiw-section[data-variant="e"] .hiw-steps {
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.hiw-section[data-variant="e"] .hiw-arrow { display: none; }
.hiw-section[data-variant="e"] .hiw-step {
  display: flex;
  text-align: left;
  padding: 20px 0;
  gap: 20px;
  align-items: flex-start;
  border-bottom: 1px solid #e5e9f2;
}
.hiw-section[data-variant="e"] .hiw-step:last-of-type { border-bottom: none; }
.hiw-section[data-variant="e"] .hiw-num {
  width: 40px;
  height: 40px;
  font-size: 18px;
  flex-shrink: 0;
  margin: 0;
}
.hiw-section[data-variant="e"] .hiw-icon {
  display: none;
}
.hiw-section[data-variant="e"] .hiw-step h3 {
  font-size: 16px;
  margin-bottom: 4px;
}
.hiw-section[data-variant="e"] .hiw-step p {
  font-size: 13px;
}
/* E — Real Talk */
body.tone-real .hiw-section[data-variant="e"] .hiw-step {
  border-bottom-color: rgba(255,255,255,0.06);
}

/* ---------- Social Proof (inside HIW) ---------- */
.hiw-proof {
  margin-top: 44px;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 120px;
}
.proof-num {
  font-size: 28px;
  font-weight: 800;
  color: #1b2e4b;
  letter-spacing: -0.5px;
  line-height: 1;
}
.proof-label {
  font-size: 11px;
  font-weight: 600;
  color: #8f99a8;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
}

/* Social Proof — Real Talk */
body.tone-real .hiw-proof { border-top-color: rgba(255,255,255,0.06); }
body.tone-real .proof-num { color: #ff8a8a; }
body.tone-real .proof-label { color: rgba(255,255,255,0.4); }
body.tone-real .proof-divider { background: rgba(255,107,107,0.15); }

/* ---------- Footer (expanded) ---------- */
.footer-main {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 140px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.footer-brand svg { width: 18px; height: 18px; color: rgba(255,255,255,0.7); }
body.tone-real .footer-brand svg { color: #ff8a8a; }
.footer-brand .logo-word-black {
  display: inline-block;
  padding: 1px 6px 2px;
  margin: 0 -1px;
  border-radius: 3px;
  background: #fff;
  color: #0f1923;
  line-height: 1;
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin: 0;
  font-style: italic;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-col a:hover { color: #fff; }
.footer-col a svg { width: 13px; height: 13px; }
.footer-links-real {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 12px 0;
}
.footer-links-real a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}
.footer-links-real a svg { width: 13px; height: 13px; }
.footer-slogan {
  font-style: italic;
  opacity: 0.6;
}

body .fv2-bottom { margin-top: 16px; }

/* ---------- Scroll Animations ---------- */
[data-anim] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-anim].anim-visible {
  opacity: 1;
  transform: translateY(0);
}
.hiw-step[data-anim] { transition-delay: 0s; }
.hiw-step[data-anim]:nth-child(3) { transition-delay: 0.12s; }
.hiw-step[data-anim]:nth-child(5) { transition-delay: 0.24s; }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .landing-menu { display: none; }
  .hero { padding: 105px 16px 40px; }
  .hero-title { font-size: 28px; }
  .hero-sub { font-size: 14px; }
  .hero-features { gap: 16px; }
  .hero-feat { font-size: 12px; }
  .hero-live { margin-bottom: 20px; }
  .section-title { font-size: 22px; }
  .trial-title { font-size: 24px; }
  .trial-features { gap: 14px; }
  .trial-cta { padding: 12px 30px !important; font-size: 15px !important; }
  .uc-code { font-size: 11px; min-height: 160px; }
  .tone-btn-text { display: none; }
  .tone-single-btn { padding: 9px 12px; }
  .threat-panel { flex-direction: column; }
  .uc-split { flex-direction: column; }
  .uc-split-left { width: 100%; margin-left: 0; }
  .ghost-chain { flex-direction: column; }
  .ghost-arrow svg { transform: rotate(90deg); }
  .calc-price-block { flex-direction: column; }
  .calc-order-btn { width: 100%; }
  .calc-footer { flex-direction: column; align-items: center; }
  .hiw-steps { flex-direction: column; align-items: center; gap: 24px; }
  .hiw-arrow { display: none; }
  .hiw-step { padding: 0; }
  .hiw-section[data-variant="a"] .hiw-step { padding: 28px 20px 24px; width: 100%; max-width: 340px; }
  .hiw-section[data-variant="b"] .hiw-steps::before { display: none; }
  .hiw-section[data-variant="c"] .hiw-steps { max-width: 100%; }
  .hiw-section[data-variant="c"] .hiw-step { padding: 18px 20px 18px 24px; }
  .hiw-section[data-variant="d"] .hiw-step { padding: 0; }
  .hiw-section[data-variant="e"] .hiw-steps { max-width: 100%; }
  .hiw-section[data-variant="e"] .hiw-step { padding: 16px 0; }
  .hiw-proof { margin-top: 28px; padding: 20px 0; }
  .proof-stats { gap: 24px; }
  .proof-divider { display: none; }
  .footer-main { flex-direction: column; gap: 24px; align-items: center; text-align: center; }
  .footer-col { align-items: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 24px; }
  .hero-features { flex-direction: column; align-items: center; gap: 10px; }
}
