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

:root {
  --bg: #09090f;
  --surface: #0f0f1a;
  --surface-2: #141424;
  --surface-3: #1a1a2e;
  --border: rgba(255, 255, 255, 0.06);
  --border-md: rgba(255, 255, 255, 0.12);
  --cyan: #00e5ff;
  --cyan-dim: #00b8cc;
  --cyan-glow: rgba(0, 229, 255, 0.15);
  --violet: #a855f7;
  --violet-dim: #8b3cf7;
  --violet-glow: rgba(168, 85, 247, 0.15);
  --white: #ffffff;
  --text: #e2e2f0;
  --text-2: #9898b8;
  --text-3: #4a4a6a;
  --font: "Outfit", sans-serif;
  --mono: "JetBrains Mono", monospace;
  --green: #00ff87;
  --green-bg: rgba(0, 255, 135, 0.08);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-border: rgba(255, 255, 255, 0.05);
  --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  --blur-amount: blur(16px);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
}
/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--cyan-dim);
  border-radius: 4px;
}

/* ══════════════ SHARED NAV ══════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;

  transition:
    background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);

  padding: 24px 0;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.8);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  padding: 16px 0;
}

.nav-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(32px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 101;
}

.glitch-text {
  color: var(--clr-text-main);
  position: relative;
}

.neon-text {
  color: var(--clr-primary);
  text-shadow: 0 0 10px var(--clr-primary-glow);
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  position: relative;
  padding-bottom: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--clr-primary);
  transition: width var(--transition-fast);
  box-shadow: 0 0 8px var(--clr-primary);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-text-main);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--clr-text-main);
  font-size: 2rem;
  cursor: pointer;
  z-index: 101;
}
/* ══════════════ VIEWS ══════════════ */
.view {
  display: none;
  min-height: 100vh;
}

.view.active {
  display: block;
}

/* ══════════════════════════════════════
   VIEW 1: LANDING / DPDPA INFO + LOGIN
══════════════════════════════════════ */
#viewLanding {
  background: var(--bg);
  padding-top: 64px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 48px 60px;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-glow-1 {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 229, 255, 0.1) 0%,
    transparent 65%
  );
}

.hero-glow-2 {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.08) 0%,
    transparent 65%
  );
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(0, 229, 255, 0.08);
  border: 0.5px solid rgba(0, 229, 255, 0.2);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero-title {
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title .cyan {
  color: var(--cyan);
}

.hero-title .violet {
  color: var(--violet);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  background: var(--cyan);
  color: #000;
  padding: 13px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: #33eeff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  background: transparent;
  padding: 13px 24px;
  border-radius: 8px;
  border: 0.5px solid var(--border-md);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
}

/* Deadline ticker */
.deadline-ticker {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(168, 85, 247, 0.08);
  border: 0.5px solid rgba(168, 85, 247, 0.2);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 28px;
}

.deadline-icon {
  font-size: 20px;
}

.deadline-text {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.deadline-text strong {
  color: var(--violet);
}

/* Login card on hero right */
.login-card {
  background: var(--surface);
  border: 0.5px solid var(--border-md);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}

.login-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.login-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.login-card-sub {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
}

.tab-row {
  display: flex;
  gap: 4px;
  background: var(--surface-2);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 24px;
}

.tab-btn {
  flex: 1;
  padding: 9px;
  border-radius: 6px;
  border: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  background: transparent;
  color: var(--text-2);
}

.tab-btn.active {
  background: var(--surface-3);
  color: var(--white);
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  background: var(--surface-2);
  border: 0.5px solid var(--border-md);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.15s;
}

.form-input::placeholder {
  color: var(--text-3);
}

.form-input:focus {
  border-color: var(--cyan);
}

.form-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  border: none;
  background: var(--cyan);
  color: #000;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 4px;
}

.form-submit:hover {
  background: #33eeff;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.25);
}

.form-fine {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
}

.form-fine a {
  color: var(--cyan);
  text-decoration: none;
}

.divider-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  font-size: 11px;
  color: var(--text-3);
}

.divider-row::before,
.divider-row::after {
  content: "";
  flex: 1;
  height: 0.5px;
  background: var(--border-md);
}

/* DPDPA info section */
.info-section {
  padding: 80px 48px;
  background: var(--surface);
}

.info-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title .violet {
  color: var(--violet);
}

.section-body {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 620px;
  font-weight: 300;
}

/* What is DPDPA grid */
.dpdpa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.dpdpa-card {
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}

.dpdpa-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.dpdpa-card:hover {
  border-color: rgba(0, 229, 255, 0.2);
}

.dpdpa-card:hover::after {
  transform: scaleX(1);
}

.dpdpa-card-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.dpdpa-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.dpdpa-card-body {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

/* Penalty section */
.penalty-section {
  padding: 80px 48px;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.06),
    rgba(0, 229, 255, 0.04)
  );
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.penalty-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.penalty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 48px;
  border: 0.5px solid var(--border-md);
  border-radius: 16px;
  overflow: hidden;
}

.penalty-item {
  padding: 32px 28px;
  border-right: 0.5px solid var(--border-md);
  position: relative;
  transition: background 0.2s;
}

.penalty-item:last-child {
  border-right: none;
}

.penalty-item:hover {
  background: rgba(0, 229, 255, 0.03);
}

.penalty-num {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}

.penalty-label {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.penalty-sub {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 4px;
  font-family: var(--mono);
}

/* Timeline */
.timeline-section {
  padding: 80px 48px;
  background: var(--bg);
}

.timeline-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.timeline {
  margin-top: 48px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    var(--cyan),
    var(--violet),
    transparent
  );
}

.timeline-item {
  display: flex;
  gap: 32px;
  padding: 0 0 36px 60px;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 6px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
}

.timeline-item:nth-child(2) .timeline-dot {
  border-color: var(--violet);
}

.timeline-item:nth-child(2) .timeline-dot::after {
  background: var(--violet);
}

.timeline-item:nth-child(3) .timeline-dot {
  border-color: rgba(255, 255, 255, 0.3);
}

.timeline-item:nth-child(3) .timeline-dot::after {
  background: rgba(255, 255, 255, 0.3);
}

.timeline-date {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--cyan);
  font-weight: 500;
  white-space: nowrap;
  padding-top: 4px;
  min-width: 120px;
}

.timeline-item:nth-child(2) .timeline-date {
  color: var(--violet);
}

.timeline-content-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.timeline-content-body {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   VIEW 2: PRICING
══════════════════════════════════════ */
#viewPricing {
  background: var(--bg);
  padding-top: 64px;
}

.pricing-hero {
  padding: 72px 48px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.pricing-hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.12) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.pricing-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
}

.pricing-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.pricing-title .cyan {
  color: var(--cyan);
}

.pricing-sub {
  font-size: 16px;
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 12px;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* Urgency banner */
.urgency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(168, 85, 247, 0.08);
  border: 0.5px solid rgba(168, 85, 247, 0.25);
  border-radius: 100px;
  padding: 8px 20px;
  margin: 20px auto 0;
  max-width: 480px;
  font-size: 12px;
  position: relative;
  z-index: 1;
}

.urgency-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  animation: pulse 2s infinite;
}

.urgency-text {
  color: var(--text-2);
}

.urgency-text strong {
  color: var(--violet);
}

/* Pricing cards */
.pricing-section {
  padding: 0 48px 80px;
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pricing-card {
  background: var(--surface);
  border: 0.5px solid var(--border-md);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.2);
}

.pricing-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(
    135deg,
    var(--surface) 0%,
    rgba(0, 229, 255, 0.04) 100%
  );
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.08);
}

.pricing-card.featured:hover {
  box-shadow: 0 20px 60px rgba(0, 229, 255, 0.15);
}

.featured-tag {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--cyan);
  color: #000;
  padding: 4px 16px;
  border-radius: 0 0 8px 8px;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.badge-plan1 {
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan);
  border: 0.5px solid rgba(0, 229, 255, 0.2);
}

.badge-plan2 {
  background: rgba(168, 85, 247, 0.1);
  color: var(--violet);
  border: 0.5px solid rgba(168, 85, 247, 0.2);
}

.badge-plan3 {
  background: rgba(0, 255, 135, 0.1);
  color: var(--green);
  border: 0.5px solid rgba(0, 255, 135, 0.2);
}

.plan-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.plan-tagline {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.5;
}

.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.plan-price {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1;
}

.pricing-card.featured .plan-price {
  color: var(--cyan);
}

.plan-currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-2);
  margin-right: 2px;
}

.plan-price-label {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 24px;
}

.plan-divider {
  height: 0.5px;
  background: var(--border-md);
  margin: 20px 0;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  padding: 7px 0;
  border-bottom: 0.5px solid var(--border);
}

.plan-feature:last-child {
  border-bottom: none;
}

.feature-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-top: 2px;
}

.check-cyan {
  background: rgba(0, 229, 255, 0.12);
  color: var(--cyan);
}

.check-violet {
  background: rgba(168, 85, 247, 0.12);
  color: var(--violet);
}

.check-green {
  background: rgba(0, 255, 135, 0.12);
  color: var(--green);
}

.plan-cta {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  border: none;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-cyan {
  background: var(--cyan);
  color: #000;
}

.cta-cyan:hover {
  background: #33eeff;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3);
}

.cta-violet {
  background: var(--violet);
  color: #fff;
}

.cta-violet:hover {
  background: #b975f8;
  box-shadow: 0 8px 24px rgba(168, 85, 247, 0.3);
}

.cta-green {
  background: var(--green);
  color: #000;
}

.cta-green:hover {
  background: #33ff9f;
  box-shadow: 0 8px 24px rgba(0, 255, 135, 0.3);
}

.plan-fine {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  margin-top: 10px;
}

/* Comparison table */
.compare-section {
  padding: 0 48px 80px;
}

.compare-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.compare-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 32px;
  text-align: center;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
}

.compare-table th {
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--surface-2);
  color: var(--text-3);
  text-align: left;
}

.compare-table th:not(:first-child) {
  text-align: center;
}

.compare-table th.cyan {
  color: var(--cyan);
}

.compare-table th.violet {
  color: var(--violet);
}

.compare-table th.green {
  color: var(--green);
}

.compare-table td {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--text-2);
  border-bottom: 0.5px solid var(--border);
}

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

.compare-table td:not(:first-child) {
  text-align: center;
  font-size: 16px;
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.tick-cyan {
  color: var(--cyan);
}

.tick-violet {
  color: var(--violet);
}

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

.tick-no {
  color: var(--text-3);
}

.toast {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 340px;
}

.toast.show {
  transform: translateX(0);
}

.toast.success {
  background: #0f2a1e;
  border: 1px solid #22c55e;
  color: #22c55e;
}

.toast.error {
  background: #2a0f0f;
  border: 1px solid #ef4444;
  color: #ef4444;
}

.toast-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* Button loading state */
.form-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Trust logos */
.trust-section {
  padding: 60px 48px;
  border-top: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-label {
  font-size: 12px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--text-3);
  padding: 8px 16px;
  border: 0.5px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.15s;
}

.trust-item:hover {
  border-color: var(--border-md);
  color: var(--text-2);
}

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fadeUp 0.5s ease both;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

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

  .nav {
    padding: 0 20px;
  }

  .hero,
  .info-section,
  .penalty-section,
  .timeline-section,
  .pricing-hero,
  .pricing-section,
  .compare-section {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ══ USER WELCOME BAR ══ */
.user-bar {
  background: rgba(0, 229, 255, 0.05);
  border-bottom: 0.5px solid rgba(0, 229, 255, 0.12);
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.user-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-2);
}

.user-bar-left strong {
  color: var(--white);
}

.user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #000;
}

.user-bar-right {
  font-size: 12px;
  color: var(--cyan);
  cursor: pointer;
  text-decoration: none;
}

/* ══ SCAN ANIMATION on hero right ══ */
.scan-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 440px;
  margin: 0 auto;
}

.scan-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scan-ring:nth-child(1) {
  width: 85%;
  height: 85%;
  border-color: rgba(0, 229, 255, 0.2);
}

.scan-ring:nth-child(2) {
  width: 65%;
  height: 65%;
  animation: spinSlow 12s linear infinite;
}

.scan-ring:nth-child(3) {
  width: 45%;
  height: 45%;
  border-color: rgba(168, 85, 247, 0.3);
  animation: spinSlow 8s linear infinite reverse;
}

.scan-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 16px;
  background: var(--surface-2);
  border: 0.5px solid var(--border-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.scan-center-icon {
  font-size: 32px;
}

.scan-center-label {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--cyan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.scan-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
  0%,
  100% {
    top: 15%;
  }

  50% {
    top: 85%;
  }
}

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

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.scan-nodes {
  position: absolute;
  inset: 0;
}

.scan-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: nodePulse 2s ease infinite;
}

@keyframes nodePulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

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

.scan-data-tags {
  position: absolute;
  inset: 0;
}

.data-tag {
  position: absolute;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--text-3);
  background: var(--surface-2);
  border: 0.5px solid var(--border);
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}
