:root {
  color-scheme: dark;
  --bg-primary: #060607;
  --bg-secondary: rgba(16, 16, 18, 0.9);
  --bg-card: rgba(24, 24, 28, 0.74);
  --bg-elevated: rgba(32, 32, 38, 0.78);
  --bg-border: rgba(255, 255, 255, 0.11);
  --bg-border-strong: rgba(255, 255, 255, 0.18);
  --accent-red: #ff314d;
  --accent-orange: #ff6b35;
  --accent-blue: #38bdf8;
  --accent-green: #32e875;
  --accent-yellow: #ffb020;
  --text-primary: #fff6f7;
  --text-secondary: #c7bbbe;
  --text-muted: #7f7478;
  --shadow-card: 0 20px 52px rgba(0, 0, 0, 0.42);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(120deg, rgba(255, 49, 77, 0.12), transparent 34%),
    linear-gradient(245deg, rgba(56, 189, 248, 0.07), transparent 45%),
    #060607;
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  color: var(--text-primary);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%, rgba(0, 0, 0, 0.42) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 4px);
  opacity: 0.62;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 49, 77, 0.08) 49%, transparent 58%),
    linear-gradient(180deg, transparent 0%, rgba(255, 49, 77, 0.05) 50%, transparent 100%);
  background-size: 220% 220%, 100% 100%;
  animation: surfaceSweep 14s ease-in-out infinite;
  opacity: 0.54;
}

@keyframes surfaceSweep {
  0%, 100% {
    background-position: 120% 0, 0 0;
  }
  50% {
    background-position: -20% 0, 0 0;
  }
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

::selection {
  background: rgba(255, 49, 77, 0.36);
  color: #fff;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(var(--max-width), calc(100% - 32px));
  min-height: 66px;
  padding: 10px 12px;
  transform: translateX(-50%);
  background: rgba(10, 10, 12, 0.72);
  border: 1px solid var(--bg-border);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px) saturate(132%);
}

.site-header.is-scrolled {
  background: rgba(8, 8, 10, 0.9);
  border-color: rgba(255, 49, 77, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark,
.brand-mini {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--accent-red), #dd102d 52%, var(--accent-orange));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 15px 42px rgba(255, 49, 77, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 900;
}

.brand-copy small {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.075);
  color: var(--text-primary);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: rgba(255, 49, 77, 0.14);
  border: 1px solid rgba(255, 49, 77, 0.34);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 94vh;
  padding: 128px max(24px, calc((100vw - var(--max-width)) / 2)) 78px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 6, 7, 0.95) 0%, rgba(6, 6, 7, 0.84) 36%, rgba(6, 6, 7, 0.28) 72%, rgba(6, 6, 7, 0.78) 100%),
    linear-gradient(180deg, transparent 0%, rgba(6, 6, 7, 0.9) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 96px max(16px, calc((100vw - var(--max-width)) / 2)) 36px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.44;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(740px, 55%);
}

.eyebrow {
  margin: 0 0 12px;
  color: #ff7b8e;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.live-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255, 49, 77, 0.28);
  border-radius: 999px;
  background: rgba(255, 49, 77, 0.1);
  color: #ff9aa8;
}

.live-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 14px rgba(50, 232, 117, 0.8);
  animation: pulseDot 1.7s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.45;
    transform: scale(0.72);
  }
}

.hero h1 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(40px, 4.5vw, 76px);
  line-height: 0.94;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--accent-red);
  text-shadow: 0 16px 54px rgba(255, 49, 77, 0.25);
}

.hero-subtitle {
  max-width: 100%;
  margin: 22px 0 0;
  color: var(--text-secondary);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red) 0%, #dd102d 52%, var(--accent-orange) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 44px rgba(255, 49, 77, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--bg-border);
  color: var(--text-primary);
}

.btn.full {
  width: 100%;
}

.btn-big {
  min-height: 58px;
  padding-right: 28px;
  padding-left: 28px;
  font-size: 16px;
}

.app-icon,
.tool-card-logo,
.preview-icon,
.category-app-icons img,
.tool-pill img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero-tool-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-tool-stack span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 7px 12px 7px 7px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 900;
}

.hero-tool-stack img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.95);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(560px, 100%);
  margin-top: 24px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.044);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.proof-avatars {
  display: flex;
  flex: 0 0 auto;
}

.proof-avatars span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: -8px;
  background: linear-gradient(135deg, rgba(255, 49, 77, 0.95), rgba(255, 107, 53, 0.86));
  border: 2px solid #09090a;
  border-radius: 50%;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.proof-avatars span:first-child {
  margin-left: 0;
}

.stars {
  display: block;
  color: var(--accent-yellow);
  font-size: 13px;
  font-weight: 900;
}

.hero-social-proof strong {
  display: block;
  margin-top: 3px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
}

.hero-proof span,
.logo-cloud span,
.preview-tabs span,
.panel-kicker,
.best-badge,
.plan-name {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.052);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 800;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.product-window {
  position: absolute;
  right: max(20px, calc((100vw - var(--max-width)) / 2));
  top: 50%;
  margin-top: -215px;
  width: min(580px, 42vw);
  min-height: 430px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(28, 28, 32, 0.92), rgba(10, 10, 12, 0.86));
  border: 1px solid var(--bg-border-strong);
  border-radius: 8px;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.56), 0 0 80px rgba(255, 49, 77, 0.14);
  transform: perspective(1400px) rotateY(-10deg) rotateX(2deg);
  animation: productFloat 7s ease-in-out infinite;
}

@keyframes productFloat {
  0%, 100% {
    transform: perspective(1400px) rotateY(-10deg) rotateX(2deg) translateY(0);
  }
  50% {
    transform: perspective(1400px) rotateY(-8deg) rotateX(3deg) translateY(-12px);
  }
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.038);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.window-bar span:first-child {
  background: var(--accent-red);
}

.window-bar strong {
  margin-left: auto;
  color: var(--text-muted);
  font-size: 12px;
}

.product-layout {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 18px;
}

.product-layout aside {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 330px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.product-layout aside b {
  color: #fff;
  font-size: 13px;
}

.product-layout aside span {
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.product-layout aside .active-line {
  background: linear-gradient(135deg, rgba(255, 49, 77, 0.32), rgba(255, 107, 53, 0.2));
  border: 1px solid rgba(255, 49, 77, 0.24);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.tool-card {
  position: relative;
  min-height: 150px;
  padding: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.032));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
}

.tool-card-logo {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
}

.tool-card.is-hot {
  border-color: rgba(255, 49, 77, 0.42);
  box-shadow: inset 0 0 0 1px rgba(255, 49, 77, 0.16);
}

.tool-card em {
  color: var(--accent-blue);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.tool-card strong {
  display: block;
  margin-top: 18px;
  font-size: 19px;
}

.tool-card small {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 800;
}

.hero-signals {
  position: absolute;
  right: max(60px, calc((100vw - var(--max-width)) / 2 + 72px));
  top: 15%;
  display: flex;
  gap: 16px;
  z-index: 5;
}

.signal-panel {
  display: grid;
  gap: 2px;
  min-width: 140px;
  padding: 14px;
  background: rgba(10, 10, 12, 0.78);
  border: 1px solid rgba(50, 232, 117, 0.28);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  backdrop-filter: blur(12px);
}

.signal-panel span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

.signal-panel strong {
  color: var(--accent-green);
  font-size: 24px;
}

.signal-panel-secondary {
  border-color: rgba(0, 178, 255, 0.28);
}
.signal-panel-secondary span {
  color: rgba(255, 255, 255, 0.6);
}
.signal-panel-secondary strong {
  color: var(--accent-blue);
}

.signal-panel-secondary strong {
  color: var(--accent-blue);
  font-size: 20px;
}

section {
  padding: 92px max(24px, calc((100vw - var(--max-width)) / 2));
}

.section-band {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.section-heading h2,
.guarantee-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 900;
}

.section-heading p:not(.eyebrow),
.guarantee-copy p,
.final-cta p {
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.value-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 170px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(24, 24, 28, 0.76), rgba(12, 12, 14, 0.82));
  border: 1px solid var(--bg-border);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.value-apps {
  display: flex;
  align-items: center;
}

.value-apps .app-icon {
  width: 42px;
  height: 42px;
  margin-left: -10px;
  border: 2px solid rgba(6, 6, 7, 0.95);
}

.value-apps .app-icon:first-child {
  margin-left: 0;
}

.value-icon,
.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(255, 49, 77, 0.22);
}

.value-card strong {
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.35;
}

.strike-price {
  width: fit-content;
  color: #ff8392;
  font-size: 13px;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.value-total {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 18px;
  padding: 18px;
  background: rgba(255, 49, 77, 0.11);
  border: 1px solid rgba(255, 49, 77, 0.22);
  border-radius: 8px;
}

.value-total span {
  color: var(--text-secondary);
  font-weight: 800;
}

.value-total strong {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.value-total small {
  flex-basis: 100%;
  color: var(--text-muted);
  font-size: 12px;
}

.moving-tools {
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.marquee-viewport {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.marquee-row {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: marquee-left 34s linear infinite;
}

.marquee-row.reverse {
  animation-name: marquee-right;
  animation-duration: 42s;
}

.tool-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  min-height: 58px;
  padding: 10px 14px 10px 10px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.032));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.tool-pill img {
  flex: 0 0 auto;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.comparison-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.plain-panel,
.step,
.category-grid article,
.feature-grid article,
.price-card,
.faq-item,
.dashboard-preview {
  background: linear-gradient(145deg, rgba(24, 24, 28, 0.76), rgba(12, 12, 14, 0.8));
  border: 1px solid var(--bg-border);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.plain-panel {
  padding: 26px;
}

.featured-panel {
  border-color: rgba(255, 49, 77, 0.34);
  box-shadow: 0 26px 70px rgba(255, 49, 77, 0.1), var(--shadow-card);
}

.panel-kicker {
  margin-bottom: 18px;
}

.panel-kicker.bad {
  color: #ff8392;
}

.panel-kicker.good,
.plan-name {
  color: var(--accent-green);
}

.plain-panel h3,
.step h3,
.category-grid h3,
.feature-grid h3,
.price-card h3,
.preview-cards h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text-secondary);
}

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--accent-green);
  border-bottom: 2px solid var(--accent-green);
  transform: rotate(-45deg);
}

.muted-list li::before {
  border-color: #ff6b7d;
}

.steps-grid,
.category-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step {
  padding: 24px;
}

.step span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent-red);
  font-size: 34px;
  font-weight: 900;
}

.step p,
.category-grid p,
.feature-grid p,
.price-card p,
.preview-cards p,
.faq-item p,
.site-footer p {
  color: var(--text-secondary);
  line-height: 1.65;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.category-grid article,
.feature-grid article {
  padding: 22px;
}

.feature-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
}

.feature-icon.shield {
  background: linear-gradient(135deg, var(--accent-red), #a90f24);
}

.feature-icon.speed {
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
}

.feature-icon.monitor {
  background: linear-gradient(135deg, var(--accent-blue), #7c3aed);
}

.feature-icon.lock {
  background: linear-gradient(135deg, #8b5cf6, var(--accent-red));
}

.feature-icon.human {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
}

.feature-icon.check {
  background: linear-gradient(135deg, var(--accent-green), #16a34a);
}

.category-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  box-shadow: 0 14px 34px rgba(255, 49, 77, 0.22);
}

.category-icon.video {
  background: linear-gradient(135deg, var(--accent-blue), #7c3aed);
}

.category-icon.design {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
}

.category-icon.ads {
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
}

.category-app-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.category-app-icons span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 5px 9px 5px 5px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 900;
}

.category-app-icons img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 210px 1fr;
  min-height: 430px;
  overflow: hidden;
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  background: rgba(7, 7, 8, 0.68);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-sidebar b {
  margin-bottom: 10px;
  font-size: 14px;
}

.preview-sidebar span:not(.brand-mini) {
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.preview-main {
  padding: 24px;
}

.preview-topbar,
.preview-tabs,
.preview-cards {
  display: flex;
  gap: 12px;
}

.preview-topbar {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.preview-topbar button,
.preview-cards button {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255, 49, 77, 0.14);
  border: 1px solid rgba(255, 49, 77, 0.28);
  color: #fff;
  font-weight: 800;
}

.preview-tabs {
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.preview-tabs .is-active {
  background: var(--accent-red);
  color: #fff;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-cards article {
  position: relative;
  min-height: 220px;
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.preview-icon {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
}

.dot {
  display: block;
  width: 9px;
  height: 9px;
  margin-bottom: 58px;
  border-radius: 50%;
}

.dot.online {
  background: var(--accent-green);
  box-shadow: 0 0 12px rgba(50, 232, 117, 0.6);
}

.dot.warning {
  background: var(--accent-yellow);
  box-shadow: 0 0 12px rgba(255, 176, 32, 0.55);
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.best-plan {
  border-color: rgba(255, 49, 77, 0.42);
  box-shadow: 0 30px 80px rgba(255, 49, 77, 0.14), var(--shadow-card);
}

.best-badge {
  position: absolute;
  top: 16px;
  right: 18px;
  min-height: 30px;
  background: rgba(255, 49, 77, 0.16);
  border-color: rgba(255, 49, 77, 0.36);
  color: #ff8b9a;
  box-shadow: 0 16px 34px rgba(255, 49, 77, 0.18);
}

.plan-name {
  margin-bottom: 24px;
}

.plan-kicker {
  display: block;
  margin: -14px 0 12px;
  color: var(--accent-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card:not(.best-plan) {
  background: linear-gradient(160deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018));
}

.price-card.best-plan {
  transform: translateY(-8px);
  background: linear-gradient(160deg, rgba(255,49,77,0.13), rgba(255,255,255,0.035));
  padding-top: 58px;
}

.pricing-section .section-heading h2 { max-width: 720px; }
.pricing-section .section-heading > p:last-child { color: var(--text-secondary); font-size: 18px; }

.price-card h3 {
  font-size: 42px;
}

.price-card h3 small {
  color: var(--text-muted);
  font-size: 16px;
}

.price-card .btn {
  margin-top: 28px;
}

.guarantee-section {
  display: grid;
  grid-template-columns: 1fr 250px;
  align-items: center;
  gap: 28px;
}

.guarantee-seal {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(50, 232, 117, 0.28);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(50, 232, 117, 0.12), rgba(255, 255, 255, 0.035));
  text-align: center;
}

.guarantee-seal strong {
  color: var(--accent-green);
  font-size: 82px;
  line-height: 1;
}

.guarantee-seal span {
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 900;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  min-height: 62px;
  padding: 0 20px;
  background: transparent;
  color: var(--text-primary);
  text-align: left;
  font-weight: 900;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--accent-red);
  font-size: 22px;
}

.faq-item.is-open button::after {
  content: "-";
}

.faq-item div {
  display: none;
  padding: 0 20px 18px;
}

.faq-item.is-open div {
  display: block;
}

.final-cta {
  text-align: center;
}

.final-cta h2,
.final-cta p {
  margin-right: auto;
  margin-left: auto;
  max-width: 780px;
}

.final-cta .btn {
  margin-top: 24px;
}

.site-footer {
  display: grid;
  gap: 10px;
  padding: 38px max(24px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.36);
}

.site-footer p {
  max-width: 780px;
  margin: 0;
  font-size: 12px;
}

.site-footer span {
  color: var(--text-muted);
  font-size: 12px;
}

.footer-hubs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-hubs a {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  transition: color 160ms ease;
}

.footer-hubs a:hover {
  color: #fff;
}

/* ============================================================
   PREMIUM TOOL SHOWCASE
============================================================ */
.premium-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.premium-tool-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(145deg, rgba(24, 24, 28, 0.76), rgba(12, 12, 14, 0.8));
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.premium-tool-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 49, 77, 0.4);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 49, 77, 0.15);
}

.premium-tool-card.hot {
  border-color: rgba(255, 49, 77, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 49, 77, 0.1), var(--shadow-card);
}

.tool-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-tool-card.hot .tool-badge {
  background: rgba(255, 49, 77, 0.15);
  color: #ff8b9a;
  border-color: rgba(255, 49, 77, 0.3);
}

.premium-tool-card .tool-badge.new {
  background: rgba(56, 189, 248, 0.15);
  color: #8be1ff;
  border-color: rgba(56, 189, 248, 0.3);
}

.premium-tool-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.premium-tool-head img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.premium-tool-head h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
}

.premium-tool-head p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--accent-blue);
  font-weight: 800;
}

.premium-tool-card > p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.premium-tool-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.premium-tool-card ul li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: var(--text-muted);
}

.premium-tool-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-red);
}

.tool-price {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tool-price span {
  font-size: 14px;
  color: #ff8392;
  text-decoration: line-through;
  font-weight: 700;
}

.tool-price strong {
  font-size: 15px;
  color: var(--accent-green);
  font-weight: 900;
  padding: 4px 12px;
  background: rgba(50, 232, 117, 0.1);
  border-radius: 6px;
}

/* ============================================================
   DECISION TABLE
============================================================ */
.decision-table {
  display: grid;
  background: linear-gradient(145deg, rgba(24, 24, 28, 0.76), rgba(12, 12, 14, 0.8));
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.decision-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 16px;
}

.decision-row:last-child {
  border-bottom: none;
}

.decision-head {
  background: rgba(255, 255, 255, 0.03);
}

.decision-row strong {
  font-size: 16px;
  line-height: 1.3;
}

.decision-row strong small {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 700;
  margin-top: 4px;
}

.decision-row .recommended {
  color: var(--accent-green);
}

.decision-row span {
  font-weight: 900;
  color: var(--text-secondary);
  font-size: 14px;
}

.decision-row b {
  color: var(--text-primary);
  font-size: 14px;
}

.decision-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.decision-row > *:nth-child(2) {
  background: rgba(50, 232, 117, 0.04);
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(50, 232, 117, 0.15);
}

/* ============================================================
   SAVINGS PANEL
============================================================ */
.savings-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: linear-gradient(145deg, rgba(24, 24, 28, 0.76), rgba(12, 12, 14, 0.8));
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 48px;
}

.savings-list {
  padding: 32px;
}

.savings-list h3 {
  margin: 0 0 24px;
  font-size: 18px;
  color: var(--text-secondary);
}

.savings-list > div {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.savings-list > div span {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
}

.savings-list > div strong {
  color: #ff8392;
  font-size: 15px;
}

.savings-list .total {
  border-bottom: none;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.savings-list .total span {
  font-size: 18px;
  font-weight: 900;
}

.savings-list .total strong {
  font-size: 22px;
  font-weight: 900;
}

.savings-callout {
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  padding: 42px 32px;
  background: linear-gradient(135deg, rgba(255, 49, 77, 0.12), rgba(255, 107, 53, 0.08));
  border-left: 1px solid rgba(255, 49, 77, 0.2);
}

.savings-callout span {
  font-size: 14px;
  font-weight: 800;
  color: #ff9aa8;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.savings-callout strong {
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 40px rgba(255, 49, 77, 0.4);
}

.savings-callout small {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 24px;
}

.savings-callout p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ============================================================
   USE CASES
============================================================ */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.use-case-grid article {
  padding: 32px 24px;
  background: linear-gradient(145deg, rgba(24, 24, 28, 0.76), rgba(12, 12, 14, 0.8));
  border: 1px solid var(--bg-border);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.use-case-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.use-case-grid article.is-featured {
  background: linear-gradient(145deg, rgba(32, 32, 40, 0.8), rgba(20, 20, 26, 0.9));
  border-color: rgba(255, 49, 77, 0.3);
  box-shadow: 0 0 60px rgba(255, 49, 77, 0.1), var(--shadow-card);
  transform: scale(1.02);
}

.use-case-grid article.is-featured:hover {
  transform: scale(1.04) translateY(-4px);
  border-color: rgba(255, 49, 77, 0.5);
}

.use-case-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.use-case-icons img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.4);
}

.use-case-grid h3 {
  margin: 0 0 12px;
  font-size: 22px;
  color: var(--text-primary);
}

.use-case-grid p {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.use-case-grid a {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-red);
  text-decoration: none;
  transition: color 0.2s;
}

.use-case-grid a:hover {
  color: var(--accent-orange);
}

/* ============================================================
   ANIMATIONS & EFFECTS
============================================================ */

/* Shimmer Button */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

/* Pulse Glow CTA */
.btn-pulse {
  animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
  0% { box-shadow: 0 18px 44px rgba(255, 49, 77, 0.32), 0 0 0 0 rgba(255, 49, 77, 0.4); }
  70% { box-shadow: 0 18px 44px rgba(255, 49, 77, 0.32), 0 0 0 15px rgba(255, 49, 77, 0); }
  100% { box-shadow: 0 18px 44px rgba(255, 49, 77, 0.32), 0 0 0 0 rgba(255, 49, 77, 0); }
}

/* Floating CTA for Mobile */
.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 100;
  width: calc(100% - 40px);
  max-width: 400px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.hero-conversion-note {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 16px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 700;
}

.hero-conversion-note span:first-child,
.hero-conversion-note span:nth-of-type(3) { color: var(--accent-green); }

.floating-cta.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Scroll Reveal Elements */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal-up.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger reveals */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Interactive Glow Card */
.glow-card {
  position: relative;
}

.glow-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  padding: 2px;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
    rgba(255, 49, 77, 0.4),
    transparent 40%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glow-card:hover::before {
  opacity: 1;
}



@media (max-width: 1040px) {
  .hero-content {
    width: min(780px, 100%);
  }
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 56px;
  }

  .product-window {
    right: -160px;
    width: 620px;
    opacity: 0.7;
  }

  .signal-panel {
    display: none;
  }

  .category-grid,
  .feature-grid,
  .value-grid,
  .preview-cards,
  .premium-tool-grid,
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .savings-panel {
    grid-template-columns: 1fr;
  }
  
  .decision-table {
    overflow-x: auto;
  }
  
  .decision-row {
    min-width: 700px;
  }

  .dashboard-preview,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 118px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-conversion-note { justify-content: center; text-align: center; font-size: 12px; }

  .floating-cta {
    bottom: 12px;
    width: calc(100% - 56px);
    max-width: 360px;
    min-height: 46px;
    padding: 0 14px;
    font-size: 13px;
    box-shadow: 0 10px 28px rgba(255, 49, 77, 0.28);
  }

  .product-window {
    right: -210px;
    bottom: 10px;
    width: 520px;
    min-height: 360px;
    opacity: 0.32;
  }

  section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .section-heading h2,
  .guarantee-copy h2,
  .final-cta h2 {
    font-size: 31px;
  }

  .comparison-grid,
  .pricing-grid,
  .steps-grid,
  .category-grid,
  .feature-grid,
  .value-grid,
  .preview-cards,
  .premium-tool-grid,
  .use-case-grid,
  .guarantee-section {
    grid-template-columns: 1fr;
  }

  .savings-list {
    padding: 20px;
  }

  .savings-callout {
    padding: 32px 20px;
    border-left: none;
    border-top: 1px solid rgba(255, 49, 77, 0.2);
  }

  .savings-callout strong {
    font-size: 48px;
  }

  .hero-social-proof {
    align-items: flex-start;
  }

  .dashboard-preview {
    min-height: auto;
  }

  .preview-main {
    padding: 18px;
  }

  .preview-cards article {
    min-height: 180px;
  }

  .dot {
    margin-bottom: 34px;
  }

  .price-card h3 {
    font-size: 34px;
  }
}
