/* === HERO CONTAINER (Convex-style dark enclosure) === */
.hero-container {
  background: var(--dark-bg);
  border-radius: 24px;
  padding: 80px 40px 60px;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dark-border);
}

.hero-container .section-label {
  background: rgba(217, 119, 87, 0.15);
  border-color: rgba(217, 119, 87, 0.3);
}

.hero-container .hero-headline {
  color: var(--dark-text);
}

.hero-container .hero-sub {
  color: var(--dark-text-muted);
}

/* No Max Plan Badge */
.no-max-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(52, 199, 89, 0.12);
  border: 1px solid rgba(52, 199, 89, 0.35);
  color: #34c759;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 16px auto 20px;
  animation: badge-glow 2s ease-in-out infinite alternate;
}
.no-max-badge .no-max-icon {
  font-weight: 800;
  font-size: 1rem;
}
@keyframes badge-glow {
  0% { box-shadow: 0 0 8px rgba(52, 199, 89, 0.1); }
  100% { box-shadow: 0 0 20px rgba(52, 199, 89, 0.25); }
}
@media (max-width: 768px) {
  .no-max-badge {
    font-size: 0.8rem;
    padding: 6px 14px;
    gap: 6px;
  }
}

.hero-container .btn-outline {
  color: var(--dark-text);
  border-color: var(--dark-border);
}

.hero-container .btn-outline:hover {
  background: rgba(217, 119, 87, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.hero-container .dino-label {
  color: var(--dark-text-muted);
}

/* === NAV === */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 24px;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark-text);
}

.logo-img {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--dark-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--dark-text);
}

.nav-cta {
  margin-left: 8px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dark-text);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 4px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-large {
  padding: 14px 36px;
  font-size: 1rem;
  border-radius: 9999px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: scale(1.02);
  box-shadow: 0 8px 16px rgba(217, 119, 87, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: rgba(217, 119, 87, 0.08);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.btn-dark {
  background: #fafafa;
  color: #000;
  font-weight: 700;
}

.btn-dark:hover {
  background: #fff;
  transform: scale(1.02);
}

.cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === STORE BADGES === */
.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #000;
  color: #fff;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 8px 16px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  height: 48px;
}

.store-badge:hover {
  transform: scale(1.03);
  background: #111;
  box-shadow: 0 8px 20px rgba(217, 119, 87, 0.2);
  border-color: rgba(217, 119, 87, 0.4);
}

.store-badge svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.store-badge-sub {
  font-size: 0.65rem;
  font-weight: 500;
  color: #a1a1aa;
}

.store-badge-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.2px;
}

/* === TRUST STRIP === */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  font-size: 1rem;
  font-weight: 700;
}

.trust-icon.no {
  color: var(--red);
}

.trust-icon.yes {
  color: var(--green);
}

.trust-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
}

/* === FEATURE GRID === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.feature-card {
  padding: 36px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

section.alt .feature-card {
  background: #fff;
}

.feature-card:hover {
  border-color: rgba(217, 119, 87, 0.4);
  box-shadow: 0 12px 40px rgba(217, 119, 87, 0.1);
  transform: translateY(-8px) scale(1.02);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), background 0.4s, color 0.4s, box-shadow 0.4s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(-5deg);
}

.feature-icon.purple {
  background: var(--primary-soft);
  color: var(--primary);
}

.feature-icon.green {
  background: var(--green-soft);
  color: var(--green);
}

.feature-card:hover .feature-icon.purple {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 20px rgba(217, 119, 87, 0.3);
}

.feature-card:hover .feature-icon.green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 0 20px rgba(52, 199, 89, 0.3);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* === HOW IT WORKS STEPS === */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.step-card:hover {
  transform: translateX(8px);
  border-color: rgba(217, 119, 87, 0.4);
  box-shadow: -8px 8px 32px rgba(217, 119, 87, 0.1);
}

.step-num-bubble {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(217, 119, 87, 0.3);
  box-shadow: 0 0 20px rgba(217, 119, 87, 0.2);
}

.step-content {
  text-align: left;
}

.step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.step-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Animations */
.anim-step-1 {
  animation: slide-right-fade 0.8s ease-out forwards;
}

.anim-step-2 {
  animation: slide-right-fade 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.anim-step-3 {
  animation: slide-right-fade 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

@keyframes slide-right-fade {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Testimonial */
.testimonial-mini {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: 12px;
  border-left: 3px solid var(--primary);
}

.testimo-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.testimo-quote {
  font-style: italic;
  font-size: 0.95rem !important;
  color: var(--text) !important;
  margin-bottom: 4px !important;
}

.testimo-author {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* === VOICE HERO FEATURE === */
.voice-hero-section {
  padding: 120px 0;
  background: var(--dark-bg);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
  border-radius: 24px;
  margin: 0 24px;
}

.voice-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.voice-glow-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124, 106, 247, 0.12) 0%, rgba(217, 119, 87, 0.08) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  filter: blur(60px);
  animation: breathe 8s infinite alternate;
}

.voice-icon-wrapper {
  display: inline-flex;
  margin: 0 auto;
  position: relative;
}

.mic-icon {
  font-size: 4rem;
  background: rgba(30, 30, 30, 0.8);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 119, 87, 0.4);
  box-shadow: 0 0 40px rgba(217, 119, 87, 0.2);
  z-index: 2;
  position: relative;
}

.pulse-ring::before {
  content: '';
  position: absolute;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: ripple 2s linear infinite;
  opacity: 0;
}

.pulse-ring::after {
  content: '';
  position: absolute;
  left: -20px;
  right: -20px;
  top: -20px;
  bottom: -20px;
  border-radius: 50%;
  border: 2px solid var(--purple);
  animation: ripple 2s linear 1s infinite;
  opacity: 0;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.voice-wave-anim {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 60px;
}

.voice-wave-anim .bar {
  width: 8px;
  background: var(--primary);
  border-radius: 4px;
  animation: sound-wave 1.2s ease-in-out infinite alternate;
}

.bar.b1 {
  height: 20px;
  animation-delay: 0.1s;
}

.bar.b2 {
  height: 40px;
  animation-delay: 0.3s;
  background: var(--purple);
}

.bar.b3 {
  height: 60px;
  animation-delay: 0.6s;
}

.bar.b4 {
  height: 30px;
  animation-delay: 0.2s;
  background: var(--green);
}

.bar.b5 {
  height: 50px;
  animation-delay: 0.5s;
}

.bar.b6 {
  height: 25px;
  animation-delay: 0.4s;
  background: var(--purple);
}

.bar.b7 {
  height: 15px;
  animation-delay: 0.7s;
}

@keyframes sound-wave {
  0% {
    transform: scaleY(0.5);
    opacity: 0.7;
  }

  100% {
    transform: scaleY(1.2);
    opacity: 1;
    box-shadow: 0 0 10px var(--primary);
  }
}

/* === TERMINAL MOCKUP === */
.terminal {
  max-width: 680px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #161616;
  text-align: left;
  border: 1px solid var(--dark-border);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #1a1a1a;
  border-bottom: 1px solid var(--border);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.r {
  background: #ff5f57;
}

.terminal-dot.y {
  background: #febc2e;
}

.terminal-dot.g {
  background: #28c840;
}

.terminal-bar-title {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: #6e6e73;
  margin-left: auto;
}

.terminal-body {
  padding: 24px;
  font-family: var(--mono);
  font-size: 0.85rem;
  line-height: 1.7;
  color: #e4e4e7;
  min-height: 220px;
}

.terminal-line {
  opacity: 0;
  animation: typeLine 0.3s ease forwards;
}

.terminal-line:nth-child(1) {
  animation-delay: 0.3s;
}

.terminal-line:nth-child(2) {
  animation-delay: 0.8s;
}

.terminal-line:nth-child(3) {
  animation-delay: 1.6s;
}

.terminal-line:nth-child(4) {
  animation-delay: 2.2s;
}

.terminal-line:nth-child(5) {
  animation-delay: 2.8s;
}

.terminal-line:nth-child(6) {
  animation-delay: 3.2s;
}

.terminal-line:nth-child(7) {
  animation-delay: 3.8s;
}

.terminal-line:nth-child(8) {
  animation-delay: 4.3s;
}

.t-purple {
  color: var(--primary);
}

.t-green {
  color: var(--green);
}

.t-muted {
  color: var(--text-muted);
}

.t-amber {
  color: var(--primary);
}

.prompt-sym {
  color: var(--primary);
}

.cursor-blink {
  display: inline-block;
  width: 8px;
  height: 16px;
  background: var(--primary);
  animation: blink 1s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes typeLine {
  to {
    opacity: 1;
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  padding: 40px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  position: relative;
  text-align: center;
}

section.alt .pricing-card {
  background: #fff;
}

.pricing-card.featured {
  border-color: var(--primary);
  box-shadow: 0 8px 32px var(--primary-soft);
  transform: scale(1.02);
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text);
}

.pricing-price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
}

.pricing-list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-list li::before {
  content: "\2713";
  color: var(--green);
  font-weight: 800;
  font-size: 0.9rem;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* === COMPARISON TABLE === */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 48px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.95rem;
}

.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table th {
  font-weight: 700;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.compare-table td {
  color: var(--text-muted);
}

.compare-table .highlight {
  color: var(--primary);
  font-weight: 600;
}

.compare-table .winner {
  background: var(--primary-soft);
}

/* === FAQ ACCORDION === */
.faq {
  margin-top: 48px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 24px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
}

.faq-q:hover {
  color: var(--primary);
}

.faq-arrow {
  transition: transform 0.3s;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 24px;
}

.faq-a p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* === DOCS / PROSE === */
.prose h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 56px 0 20px;
  color: var(--text);
}

.prose h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--text);
}

.prose p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.prose ul,
.prose ol {
  color: var(--text-muted);
  margin-left: 24px;
  margin-bottom: 20px;
}

.prose li {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

pre.code-block {
  background: #161616;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  padding: 24px;
  font-family: var(--mono);
  font-size: 0.9rem;
  color: #e4e4e7;
  overflow-x: auto;
  margin: 24px 0;
  line-height: 1.7;
}

/* === FOOTER === */
footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-light);
  background: var(--bg-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--text-light);
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* === SESSION MULTIPLIER FLOW === */
.session-multiplier-container {
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  border-radius: 24px;
  padding: 60px 40px 40px;
  position: relative;
  max-width: 1000px;
  margin: 48px auto 0;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.multiplier-badge {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-family: var(--mono);
  font-weight: 900;
  font-size: 1.1rem;
  padding: 10px 24px;
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(217, 119, 87, 0.4);
  letter-spacing: 1px;
  z-index: 10;
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 0 rgba(217, 119, 87, 0.4);
  }

  50% {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 0 20px rgba(217, 119, 87, 0.6);
  }

  100% {
    transform: translateX(-50%) scale(1);
    box-shadow: 0 0 0 rgba(217, 119, 87, 0);
  }
}

.session-flow-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 2;
}

.step-label {
  color: #888;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.highlight-label {
  color: var(--primary);
  font-weight: 800;
}

/* 1. Phone Mockup */
.mockup-phone {
  width: 80px;
  height: 160px;
  border: 3px solid #444;
  border-radius: 16px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.mockup-phone::before {
  content: '';
  position: absolute;
  top: 6px;
  width: 30px;
  height: 4px;
  background: #333;
  border-radius: 4px;
}

.phone-screen {
  width: 64px;
  height: 140px;
  background: linear-gradient(135deg, #F5F0E8 0%, #E3D9C9 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.phone-app-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(217, 119, 87, 0.3);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.animate-flow .phone-app-icon {
  opacity: 1;
  animation: pulseIcon 2s infinite alternate;
}

@keyframes pulseIcon {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(217, 119, 87, 0.3);
  }

  100% {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(217, 119, 87, 0.8);
  }
}

/* 2. Flow Lines & Packets */
.flow-line-container {
  flex-grow: 1;
  height: 100px;
  display: flex;
  align-items: center;
  position: relative;
}

.flow-line {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}

.branch-container {
  flex-direction: column;
  justify-content: space-evenly;
  height: 140px;
}

.branch {
  transform-origin: left center;
}

.branch.top {
  transform: rotate(-15deg) scaleX(1.1);
}

.branch.mid {
  transform: rotate(0deg);
}

.branch.bot {
  transform: rotate(15deg) scaleX(1.1);
}

.data-packet {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: -2px;
  left: 0;
  box-shadow: 0 0 10px var(--primary);
  opacity: 0;
}

.animate-flow .data-packet {
  animation: sendData 1.5s infinite linear;
}

.p1 {
  animation-delay: 0.0s !important;
}

.p2 {
  animation-delay: 0.5s !important;
}

.p3 {
  animation-delay: 1.0s !important;
}

.p4 {
  animation-delay: 0.2s !important;
}

.p5 {
  animation-delay: 0.7s !important;
}

.p6 {
  animation-delay: 1.2s !important;
}

@keyframes sendData {
  0% {
    left: 0%;
    opacity: 0;
    transform: scale(0.5);
  }

  10% {
    opacity: 1;
    transform: scale(1);
  }

  90% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    left: 100%;
    opacity: 0;
    transform: scale(0.5);
  }
}

/* 3. Mac Mini Hub */
.mac-mini-hub {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 160px;
  width: 100px;
}

.mac-mini-body {
  width: 90px;
  height: 24px;
  background: #222;
  border-radius: 6px;
  border: 1px solid #444;
  border-bottom: 2px solid #111;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.mac-light {
  width: 6px;
  height: 6px;
  background: #555;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 9px;
}

.animate-flow .mac-light {
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: blinkStatus 1s infinite;
}

@keyframes blinkStatus {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hub-pulse {
  position: absolute;
  bottom: 0;
  width: 120px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(217, 119, 87, 0.4) 0%, transparent 70%);
  opacity: 0;
  z-index: 1;
}

.animate-flow .hub-pulse {
  animation: hubGlow 1.5s infinite alternate;
}

@keyframes hubGlow {
  0% {
    transform: scale(0.8);
    opacity: 0.2;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

/* 4. Multiple Sessions Stars */
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  background: #000;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #333;
}

.session-star {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
}

.session-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(217, 119, 87, 0.4));
}

.session-glyph {
  width: 36px;
  height: 36px;
  background: #1a1a2e;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97757;
  font-family: "SF Mono", Menlo, monospace;
  font-size: 14px;
  font-weight: 700;
  filter: drop-shadow(0 0 8px rgba(217, 119, 87, 0.4));
}

.animate-flow .session-star {
  animation: popStar 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* Stagger the star pops */
.animate-flow .session-star:nth-child(1) {
  animation-delay: 0.2s;
}

.animate-flow .session-star:nth-child(2) {
  animation-delay: 0.4s;
}

.animate-flow .session-star:nth-child(3) {
  animation-delay: 0.6s;
}

.animate-flow .session-star:nth-child(4) {
  animation-delay: 0.8s;
}

.animate-flow .session-star:nth-child(5) {
  animation-delay: 1.0s;
}

.animate-flow .session-star:nth-child(6) {
  animation-delay: 1.2s;
}

.animate-flow .session-star:nth-child(7) {
  animation-delay: 1.4s;
}

.animate-flow .session-star:nth-child(8) {
  animation-delay: 1.6s;
}

.animate-flow .session-star:nth-child(9) {
  animation-delay: 1.8s;
}

.animate-flow .session-star:nth-child(10) {
  animation-delay: 2.0s;
}

@keyframes popStar {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }

  80% {
    transform: scale(1.2) rotate(10deg);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

/* 5. Before & After Stats */
.session-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid #333;
}

.stat-col {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #333;
}

.stat-col.good {
  background: rgba(217, 119, 87, 0.05);
  border-color: rgba(217, 119, 87, 0.3);
}

.stat-title {
  color: #fff;
  font-size: 1.2rem;
  margin: 0 0 20px 0;
  text-align: center;
}

.stat-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-list li {
  color: #ccc;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.indicator.minus {
  background: rgba(255, 255, 255, 0.1);
  color: #ff8a8a;
  line-height: 0;
  padding-bottom: 2px;
}

.indicator.cross {
  background: rgba(255, 255, 255, 0.05);
  color: #888;
  font-size: 1.2rem;
  line-height: 0;
  padding-bottom: 2px;
}

.indicator.plus {
  background: rgba(217, 119, 87, 0.2);
  color: var(--primary);
  line-height: 0;
  padding-bottom: 2px;
}

/* === YOU VS CLAUDAWAY HOOK === */
.compare-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
  max-width: 1000px;
}

.compare-col {
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* You / Bad Reality Card */
.you-card {
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.you-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.you-card .subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Pro / Good Reality Card */
.pro-card {
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.pro-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.pro-card .subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Animation Layouts */
.anim-window {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 180px;
  margin-bottom: 40px;
  position: relative;
  background: #F8FAFC;
  border-radius: 16px;
  border: 1px solid #F1F5F9;
}

/* Mac Mini */
.anim-mac {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mac-screen {
  width: 80px;
  height: 60px;
  background: #2a2a2a;
  border: 4px solid #444;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mac-base {
  width: 30px;
  height: 15px;
  background: #666;
  clip-path: polygon(10% 0, 90% 0, 100% 100%, 0% 100%);
}

/* Bad Mac States */
.you-card .mac-screen {
  background: #1a1a1a;
}

.sleep-z {
  position: absolute;
  color: #fff;
  font-family: var(--mono);
  font-weight: 700;
  opacity: 0;
}

.z1 {
  font-size: 1.2rem;
  top: 10px;
  right: 20px;
  animation: floatZ 3s infinite;
}

.z2 {
  font-size: 0.9rem;
  top: 25px;
  right: 35px;
  animation: floatZ 3s 0.8s infinite;
}

.z3 {
  font-size: 0.7rem;
  top: 35px;
  right: 45px;
  animation: floatZ 3s 1.6s infinite;
}

@keyframes floatZ {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    transform: translate(15px, -20px);
  }
}

.anim-status {
  padding: 12px 16px;
  background: #FEF2F2;
  color: #991B1B;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1px solid #FECACA;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.05);
}

.emoji-circle {
  font-size: 1.5rem;
}

/* Good Mac & Phone States */
.pro-window {
  justify-content: space-between;
  background: #000;
  border-color: #222;
  padding: 0 20px;
}

.anim-phone {
  width: 60px;
  height: 110px;
  background: #111;
  border-radius: 12px;
  border: 3px solid #444;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  position: relative;
}

.location-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0;
  animation: cycleLocations 9s infinite;
}

.loc-train {
  animation-delay: 0s;
}

.loc-work {
  animation-delay: 3s;
}

.loc-toilet {
  animation-delay: 6s;
}

@keyframes cycleLocations {

  0%,
  25% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  33%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

.prompt-stream {
  display: flex;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.prompt-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.2;
}

.d1 {
  animation: streamLine 1.5s linear infinite;
}

.d2 {
  animation: streamLine 1.5s 0.2s linear infinite;
}

.d3 {
  animation: streamLine 1.5s 0.4s linear infinite;
}

@keyframes streamLine {
  0% {
    transform: translateX(-10px);
    opacity: 0.2;
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 8px var(--primary);
  }

  100% {
    transform: translateX(10px);
    opacity: 0.2;
  }
}

.active-mac .mac-screen {
  background: #1e1e1e;
  border-color: var(--primary);
  box-shadow: inset 0 0 12px rgba(217, 119, 87, 0.2), 0 0 16px rgba(217, 119, 87, 0.4);
  flex-direction: column;
  justify-content: flex-start;
  padding: 10px;
  gap: 6px;
}

.active-mac .mac-base {
  background: var(--border);
}

.code-line {
  height: 4px;
  border-radius: 2px;
  background: var(--green);
  width: 0%;
  opacity: 0;
}

.l1 {
  animation: typeCode 3s infinite;
}

.l2 {
  animation: typeCode 3s 0.5s infinite;
}

.l3 {
  animation: typeCode 3s 1s infinite;
}

@keyframes typeCode {
  0% {
    width: 0%;
    opacity: 1;
  }

  50% {
    width: 80%;
    opacity: 1;
  }

  100% {
    width: 80%;
    opacity: 0;
  }
}

/* Money Meters */
.money-meter {
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.you-card .money-meter {
  border-color: #eee;
}

.dollar-wrap {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.you-card .dollar-wrap {
  color: #a1a1aa;
}

.money-meter p {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.you-card .money-meter p {
  color: #888;
}

.pro-card .money-meter p {
  color: var(--primary);
}

.glow-text {
  color: var(--primary);
  text-shadow: 0 0 24px rgba(217, 119, 87, 0.4);
}

.up-arrow {
  color: var(--primary);
  font-size: 2rem;
  margin-left: 8px;
  display: inline-block;
  animation: bounceUp 1s infinite alternate;
}

@keyframes bounceUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-8px);
  }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {

  .features-grid,
  .superpower-grid,
  .compare-section {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 24px;
    gap: 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .trust-strip {
    gap: 16px;
    padding: 24px 0;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    flex-basis: 45%;
    justify-content: center;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .terminal {
    max-width: 100%;
  }

  .compare-table {
    font-size: 0.85rem;
  }

  .compare-table th,
  .compare-table td {
    padding: 12px 16px;
  }

  .vibe-levels-grid {
    grid-template-columns: 1fr;
  }

  .session-multiplier-container {
    padding: 40px 20px 20px;
  }

  .session-flow-area {
    flex-direction: column;
    gap: 40px;
  }

  .flow-line-container {
    height: 40px;
    width: 2px;
  }

  .flow-line {
    width: 2px;
    height: 100%;
  }

  .branch-container {
    flex-direction: row;
    height: 2px;
    width: 140px;
  }

  .branch {
    transform-origin: top center;
  }

  .branch.top {
    transform: rotate(-15deg) scaleY(1.1);
  }

  .branch.mid {
    transform: rotate(0deg);
  }

  .branch.bot {
    transform: rotate(15deg) scaleY(1.1);
  }

  @keyframes sendData {
    0% {
      top: 0%;
      opacity: 0;
      transform: scale(0.5);
    }

    10% {
      opacity: 1;
      transform: scale(1);
    }

    90% {
      opacity: 1;
      transform: scale(1);
    }

    100% {
      top: 100%;
      opacity: 0;
      transform: scale(0.5);
    }
  }
}

/* === VPS COMPARISON GRID === */
.vps-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.vps-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vps-card:hover {
  transform: translateY(-5px);
}

.vps-card.bad-way {
  opacity: 0.9;
}

.vps-card.good-way {
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(217, 119, 87, 0.15);
  background: linear-gradient(180deg, var(--bg-dark) 0%, #201a18 100%);
}

.way-header {
  text-align: center;
  margin-bottom: 24px;
}

.way-header h3 {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 4px 0;
}

.way-header p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.cost-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border: 2px solid;
}

.cost-circle.bad {
  border-color: #ff5e5e;
  background: rgba(255, 94, 94, 0.05);
}

.cost-circle.good {
  border-color: #4ade80;
  background: rgba(74, 222, 128, 0.05);
}

.cost-circle .cost-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: -4px;
}

.cost-circle .cost-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.cost-circle .cost-period {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.vps-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
}

.vps-feature-list li {
  color: #ccc;
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.vps-feature-list li:last-child {
  margin-bottom: 0;
}

.icon.cross {
  color: #ff5e5e;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
}

.icon.check {
  color: #4ade80;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
}

.vps-footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.vps-footer.bad {
  color: #ff8a8a;
}

.vps-footer.good {
  color: #86efac;
}

.best-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(217, 119, 87, 0.4);
}

@media (max-width: 768px) {
  .vps-compare-grid {
    grid-template-columns: 1fr;
  }
}

/* === STICKY CTA BAR === */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(217, 119, 87, 0.3);
  z-index: 1000;
  padding: 12px 0;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* We use a simple class toggle to show it after scrolling */
.sticky-cta-bar.visible {
  transform: translateY(0);
}

.sticky-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-cta-text {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.sticky-price small {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.sticky-headline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  display: none;
  /* Hide on smallest screens */
}

@media (min-width: 768px) {
  .sticky-headline {
    display: inline-block;
  }
}

.sticky-cta-buttons {
  display: flex;
  gap: 12px;
}

.store-badge-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #000;
  color: #fff;
  border: 1px solid #333;
  border-radius: 99px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.store-badge-mini svg {
  width: 16px;
  height: 16px;
}

.store-badge-mini:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(217, 119, 87, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  .sticky-cta-buttons {
    gap: 8px;
  }

  .store-badge-mini {
    padding: 8px 12px;
  }

  .store-badge-mini span {
    display: none;
    /* Hide text, show only icons on very small screens */
  }
}

/* === SOCIAL PROOF AVATARS === */
.social-proof-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -24px;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}

.avatar-stack {
  display: flex;
  margin-bottom: 12px;
}

.avatar-bubble {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  background-size: cover;
  background-position: center;
  margin-left: -12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.avatar-bubble:first-child {
  margin-left: 0;
}

.social-proof-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* === EXTREME VALUE ANCHORING === */
.value-anchor-strip {
  background: linear-gradient(90deg, #1A1A1A 0%, #2a201d 50%, #1A1A1A 100%);
  color: #fff;
  padding: 60px 20px;
  border-top: 1px solid rgba(217, 119, 87, 0.2);
  border-bottom: 1px solid rgba(217, 119, 87, 0.2);
  margin-top: -5px;
  /* Pull up to hide gap from preceding dark section if needed */
}

.anchor-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: #fff;
}

.anchor-sub {
  font-size: 1.25rem;
  color: #D97757;
  font-weight: 600;
  margin: 0;
}

.vps-footer {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
}

.vps-footer.bad {
  color: #ff8a8a;
}

.vps-footer.good {
  color: #86efac;
}

.best-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(217, 119, 87, 0.4);
}

@media (max-width: 768px) {
  .vps-compare-grid {
    grid-template-columns: 1fr;
  }
}

/* === VIBE CODER LEVELS === */
.vibe-levels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.vibe-level-card {
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
}

.vibe-level-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.level-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Level 1: Basic */
.lvl-1 {
  background: #fff;
  border: 1px solid var(--border);
}

.badge-1 {
  background: var(--bg-alt);
  color: var(--text-muted);
}

.lvl-1:hover {
  transform: translateY(-4px);
}

/* Level 2: Intermediate */
.lvl-2 {
  background: #fff;
  border: 1px solid var(--border);
  border-color: rgba(217, 119, 87, 0.3);
  /* Terracotta hint */
}

.badge-2 {
  background: rgba(217, 119, 87, 0.1);
  color: var(--primary);
}

.lvl-2:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(124, 106, 247, 0.1);
}

/* Level 3: Master (Claudaway) */
.lvl-3 {
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.lvl-3 h3 {
  color: #fff;
}

.lvl-3 .subtitle {
  color: #aaa;
}

.badge-3 {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 10px var(--primary-soft);
}

.lvl-3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.lvl-3:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 48px rgba(217, 119, 87, 0.2);
  border-color: var(--primary);
}

/* Visuals Container */
.level-visual {
  height: 140px;
  width: 100%;
  margin: 24px 0;
  background: #F8FAFC;
  border: 1px solid #F1F5F9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.lvl-3 .level-visual {
  background: #000;
  border-color: #222;
}

.level-traits {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.level-traits li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.level-traits li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.lvl-3 .level-traits li::before {
  color: var(--primary);
}

.lvl-3 .level-traits {
  color: #ddd;
}

/* Level 1 Visual: Keyboard Mash */
.coder-emoji {
  font-size: 3rem;
  margin-right: 16px;
}

.keyboard-mash {
  display: flex;
  gap: 4px;
  border: 2px solid #555;
  padding: 4px 8px;
  border-radius: 6px;
}

.kb-key {
  display: inline-block;
  animation: mash 0.4s infinite alternate;
}

.kb-key:nth-child(2) {
  animation-delay: 0.1s;
}

.kb-key:nth-child(3) {
  animation-delay: 0.2s;
}

@keyframes mash {
  0% {
    opacity: 0.3;
    transform: translateY(0);
  }

  100% {
    opacity: 1;
    transform: translateY(2px);
  }
}

/* Level 2 Visual: Autocomplete */
.cursor-coder {
  position: relative;
  width: 120px;
  height: 60px;
  background: #222;
  border-radius: 6px;
  border: 1px solid #444;
}

.fake-editor {
  padding: 10px;
  font-family: monospace;
  font-size: 0.7rem;
  color: #888;
}

.autocomplete {
  color: #a78bfa;
  opacity: 0;
  animation: type-glow 2s infinite;
}

.mouse-pointer {
  position: absolute;
  right: -10px;
  bottom: -10px;
  font-size: 1.5rem;
  animation: mouse-click 2s infinite;
}

@keyframes type-glow {

  0%,
  50% {
    opacity: 0;
  }

  60%,
  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes mouse-click {
  0% {
    transform: scale(1) translate(10px, 10px);
  }

  50% {
    transform: scale(0.9) translate(0, 0);
  }

  100% {
    transform: scale(1) translate(10px, 10px);
  }
}

/* Level 3 Visual: Phone Money Printing */
.mobile-coder {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.float-emoji {
  animation: float-emoji-anim 3s ease-in-out infinite;
  margin: 0;
  z-index: 2;
}

.phone-ring {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: radar-ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.sparkles {
  position: absolute;
  font-size: 1.5rem;
  top: 10px;
  right: 40px;
  animation: sparkle-pop 1.5s infinite;
}

@keyframes float-emoji-anim {

  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@keyframes radar-ping {
  0% {
    transform: scale(.5);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes sparkle-pop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* === DINO WHIP HERO ANIMATION === */
.dino-whip-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 64px;
  position: relative;
}

.dino-label {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-160px);
  color: var(--text-muted);
  font-family: var(--mono);
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float-label 3s infinite alternate ease-in-out;
}

.dino-arrow {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-top: 4px;
}

/* Runner Game Container */
.dino-game-box {
  width: 100%;
  max-width: 450px;
  height: 140px;
  position: relative;
  background: rgba(10, 10, 10, 0.4);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  padding-bottom: 20px;
}

/* Scrolling Ground Line */
.dino-ground {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 200%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
      var(--border-light) 0,
      var(--border-light) 10px,
      transparent 10px,
      transparent 20px);
  animation: bg-scroll 0.5s linear infinite;
  z-index: 1;
}

@keyframes bg-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-20px);
  }
}

.running-dino {
  position: relative;
  z-index: 2;
  display: flex;
  animation: dino-bounce 0.4s infinite alternate ease-in-out;
}

.dino-emoji {
  font-size: 4.5rem;
  line-height: 1;
  transform: scaleX(-1);
}

@keyframes dino-bounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-4px);
  }
}

/* 24/7 badge */
.badge-247 {
  position: absolute;
  top: 8px;
  right: 12px;
  background: var(--primary);
  color: #000;
  font-family: var(--mono);
  font-weight: 900;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 1px;
  z-index: 5;
}

/* === ROPE WHIP PHYSICS === */
.whip-rope {
  position: absolute;
  bottom: 30px;
  left: 40px;
  display: flex;
  align-items: flex-end;
  z-index: 3;
  transform-origin: left center;
  animation: whip-arm-swing 2s ease-in-out infinite;
}

.rope-seg {
  width: 22px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  transform-origin: left center;
}

/* Each segment gets a cascading delay to propagate the wave */
.seg-1 {
  animation: rope-wave 2s ease-in-out infinite;
}

.seg-2 {
  animation: rope-wave 2s ease-in-out infinite 0.08s;
  width: 20px;
  height: 3px;
}

.seg-3 {
  animation: rope-wave 2s ease-in-out infinite 0.16s;
  width: 18px;
  height: 3px;
}

.seg-4 {
  animation: rope-wave 2s ease-in-out infinite 0.24s;
  width: 16px;
  height: 2px;
}

.rope-tip {
  font-size: 0.9rem;
  animation: rope-wave 2s ease-in-out infinite 0.32s;
  transform-origin: left center;
}

@keyframes whip-arm-swing {
  0% {
    transform: rotate(-15deg);
  }

  15% {
    transform: rotate(5deg);
  }

  /* wind up */
  30% {
    transform: rotate(35deg);
  }

  /* STRIKE - arm forward */
  45% {
    transform: rotate(20deg);
  }

  /* follow through */
  60% {
    transform: rotate(-5deg);
  }

  /* return */
  100% {
    transform: rotate(-15deg);
  }

  /* ready again */
}

@keyframes rope-wave {
  0% {
    transform: rotate(-10deg);
  }

  15% {
    transform: rotate(8deg);
  }

  30% {
    transform: rotate(30deg);
  }

  /* Snap forward following arm */
  40% {
    transform: rotate(45deg);
  }

  /* Overshoot - whip crack */
  50% {
    transform: rotate(20deg);
  }

  /* Settle */
  65% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(-10deg);
  }
}

.running-target {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4px;
  animation: dino-bounce 0.4s infinite alternate ease-in-out 0.2s;
}

.claude-icon-wrap {
  width: 56px;
  height: 56px;
  background: #1a1a2e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: flinch 2s ease-in-out infinite;
}

.claude-icon-wrap .agent-glyph {
  color: #d97757;
  font-family: "SF Mono", Menlo, monospace;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.money-sparks {
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10;
}

.m-spark {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  top: 0px;
}

/* Chat bubble with arrow */
.chat-bubble {
  background: #fff;
  color: #000;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  white-space: nowrap;
}

.chat-bubble::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 4px 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.m-emoji {
  font-size: 1.5rem;
  margin-top: 4px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Synced to whip strike at 30-40% of the 2s cycle = 0.6-0.8s delay */
.m1 {
  animation: float-up-fade 2s infinite ease-out 0.6s;
  left: 25px;
}

.m2 {
  animation: float-up-fade 2s infinite ease-out 0.75s;
  left: 40px;
}

.m3 {
  animation: float-up-fade 2s infinite ease-out 0.9s;
  left: 10px;
}

@keyframes float-up-fade {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.5);
  }

  8% {
    opacity: 1;
    transform: translate(5px, -15px) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(20px, -55px) scale(1);
  }

  80% {
    opacity: 0.5;
    transform: translate(30px, -80px) scale(0.95);
  }

  100% {
    opacity: 0;
    transform: translate(35px, -95px) scale(0.85);
    filter: blur(2px);
  }
}

@keyframes flinch {

  0%,
  25% {
    transform: scale(1) translateX(0);
    filter: drop-shadow(0 0 0 transparent);
  }

  32% {
    transform: scale(0.82) translateX(10px) rotate(12deg);
    filter: drop-shadow(0 0 12px rgba(217, 119, 87, 1));
  }

  50% {
    transform: scale(1.05) translateX(-2px) rotate(0);
    filter: drop-shadow(0 0 4px rgba(217, 119, 87, 0.3));
  }

  65% {
    transform: scale(1) translateX(0);
    filter: drop-shadow(0 0 0 transparent);
  }

  100% {
    transform: scale(1) translateX(0);
  }
}

@keyframes float-label {
  0% {
    transform: translate(-180px, 0);
  }

  100% {
    transform: translate(-180px, -5px);
  }
}

/* Mac App Mockup — reuses .terminal-bar */
.mac-app-mockup {
  max-width: 640px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  background: #1A1A1A;
  border: 1px solid rgba(255,255,255,0.08);
}
.mac-app-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mac-app-status {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: #c5c0b8;
  line-height: 1.6;
}
.mac-app-qr {
  text-align: center;
  padding: 24px 0;
}
.qr-placeholder {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.qr-grid {
  width: 100px;
  height: 100px;
  position: relative;
  background-color: #fff;
  background-image:
    /* top-left finder pattern */
    linear-gradient(#1a1a1a 0 0),   /* outer border */
    linear-gradient(#fff 0 0),       /* inner white */
    linear-gradient(#1a1a1a 0 0),   /* center dot */
    /* top-right finder pattern */
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#fff 0 0),
    linear-gradient(#1a1a1a 0 0),
    /* bottom-left finder pattern */
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#fff 0 0),
    linear-gradient(#1a1a1a 0 0),
    /* data modules - scattered dark squares */
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0),
    linear-gradient(#1a1a1a 0 0);
  background-size:
    /* finder patterns: outer 28px, inner white 20px, center dot 12px */
    28px 28px, 20px 20px, 12px 12px,
    28px 28px, 20px 20px, 12px 12px,
    28px 28px, 20px 20px, 12px 12px,
    /* data modules */
    5px 5px, 5px 10px, 10px 5px, 5px 5px,
    5px 5px, 10px 5px, 5px 10px, 5px 5px,
    5px 5px, 5px 5px, 10px 5px, 5px 5px,
    5px 5px, 5px 10px, 5px 5px, 10px 5px, 5px 5px;
  background-position:
    /* top-left finder */
    0 0, 4px 4px, 8px 8px,
    /* top-right finder */
    72px 0, 76px 4px, 80px 8px,
    /* bottom-left finder */
    0 72px, 4px 76px, 8px 80px,
    /* data modules */
    35px 10px, 45px 5px, 55px 35px, 40px 45px,
    35px 55px, 50px 50px, 60px 60px, 70px 45px,
    45px 70px, 60px 75px, 35px 35px, 80px 40px,
    45px 25px, 70px 55px, 55px 15px, 35px 80px, 80px 65px;
  background-repeat: no-repeat;
}
.qr-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 12px;
}
.mac-app-session {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: #c5c0b8;
  line-height: 1.6;
  padding: 4px 0;
}
.mac-app-actions {
  font-family: var(--mono);
  font-size: 0.9rem;
  padding: 4px 0;
}

@media (max-width: 768px) {
  .mac-app-mockup {
    max-width: 100%;
  }
}

/* === ZERO TRUST FLOW DIAGRAM === */
.trust-flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 16px;
  margin: 20px 0;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  flex-wrap: wrap;
}

.trust-node {
  font-size: 0.95rem;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.trust-node.danger {
  background: rgba(255, 59, 48, 0.15);
  border-color: rgba(255, 59, 48, 0.4);
  color: #ff6b6b;
}

.trust-node.safe {
  background: rgba(52, 199, 89, 0.12);
  border-color: rgba(52, 199, 89, 0.35);
  color: #34c759;
}

.trust-arrow {
  font-size: 1.4rem;
  color: var(--text-muted);
  font-weight: 300;
}

.trust-arrow.accent-arrow {
  color: var(--primary);
}

@media (max-width: 768px) {
  .trust-flow-diagram {
    gap: 6px;
    padding: 16px 10px;
  }
  .trust-node {
    font-size: 0.8rem;
    padding: 8px 10px;
  }
  .trust-arrow {
    font-size: 1rem;
  }
}

/* === MOBILE WAITLIST BANNER === */
.mobile-waitlist-banner {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, var(--primary), #c0603a);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.mobile-waitlist-banner .mwb-arrow {
  font-size: 1rem;
  animation: mwb-bounce 1.5s infinite;
}
@keyframes mwb-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
@media (max-width: 768px) {
  .mobile-waitlist-banner {
    display: flex;
  }
  body {
    padding-top: 40px;
  }
  nav {
    top: 40px !important;
  }
}

/* === SCREENSHOT CAROUSEL === */
.screenshot-carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 24px 48px;
}
.screenshot-carousel::-webkit-scrollbar {
  display: none;
}
.screenshot-track {
  display: flex;
  gap: 24px;
  justify-content: center;
  min-width: min-content;
}
.screenshot-card {
  flex: 0 0 auto;
  width: 220px;
  text-align: center;
}
.screenshot-card img {
  width: 100%;
  border-radius: 24px;
  border: 2px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshot-card img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(217,119,87,0.15);
}
.screenshot-label {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
}
@media (max-width: 768px) {
  .screenshot-track {
    justify-content: flex-start;
    padding-left: 16px;
  }
  .screenshot-card {
    width: 180px;
  }
}