:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --accent-color: #00f0ff;
  /* Sky Blue Fluo */
  --text-main: #111827;
  --text-muted: #6b7280;
  --glass-bg: rgba(255, 255, 255, 0.4);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ── 3D Globe Background ── */
#globe-container {
  position: absolute;
  bottom: -280px;
  right: -220px;
  left: auto;
  width: 1100px;
  height: 1100px;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
  /* Bottom gradient mask — fades the mid-bottom of the globe into white */
  -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 75%);
  mask-image: linear-gradient(to bottom, black 45%, transparent 75%);
}

.globe-label {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 500;
  color: #111827;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  pointer-events: none;
  transform: translate(-50%, -120%) scale(0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 1000;
  white-space: normal;
  max-width: 240px;
  line-height: 1.4;
  text-align: center;
}

.globe-label.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -120%) scale(1);
}

.globe-label::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(255, 255, 255, 0.4);
}

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

body {
  font-family: var(--font-family);
  background-color: var(--secondary-color);
  color: var(--text-main);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Base Styles */
h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.2s ease;
}

/* Header - Floating Separated Bar */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.65));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

header:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  padding-left: 10px;
}

.logo-img {
  width: 130px;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-img:hover {
  transform: scale(1.15);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

nav ul li a {
  font-weight: 500;
  color: var(--text-muted);
}

nav ul li a:hover {
  color: var(--primary-color);
}

.auth-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-login {
  background: transparent;
  color: var(--text-main);
  font-weight: 500;
}

.btn-signup {
  background: var(--primary-color);
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 500;
}

.btn-signup:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  max-width: 1600px;
  margin: 0 auto;
  padding: 160px 20px 100px; /* Moved closer to the left border */
  display: flex;
  align-items: center;
  min-height: 100vh;
  z-index: 2;
  background: transparent;
}

.hero-content {
  flex: 1;
  max-width: 850px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.15); /* More transparent */
  backdrop-filter: blur(24px); /* Stronger blur */
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 60px;
  border-radius: 48px;
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.08),
    inset 0 0 20px rgba(255, 255, 255, 0.2); /* Inner glow */
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: #fdf2f2;
  border: 1px solid #fee2e2;
  border-radius: 99px;
  font-size: 14px;
  color: #ef4444;
  font-weight: 500;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease-out;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: 92px;
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.05em;
  margin-bottom: 32px;
  color: var(--text-main);
  animation: revealTitle 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title .gradient-text {
  display: block;
  font-weight: 700;
  background: linear-gradient(135deg, #000 0%, #00f0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 8px;
}

@keyframes revealTitle {
  0% {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-description {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.pills {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
}

.pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 20px;
}

.btn-sales {
  padding: 14px 32px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-weight: 600;
}

.btn-trial {
  padding: 14px 32px;
  background: var(--primary-color);
  color: white;
  border-radius: 12px;
  font-weight: 600;
}

.btn-trial:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Background Visuals on Right Side */
.hero-visual {
  flex: 1;
  position: relative;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.network-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.network-wire-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.visible-wires path {
  fill: none;
  stroke: var(--accent-color);
  stroke-width: 1.5px;
  filter: drop-shadow(0 0 8px var(--accent-color));
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.2s ease;
  pointer-events: none;
}

.hover-wires path {
  fill: none;
  stroke: transparent;
  stroke-width: 25px;
  stroke-linecap: round;
  stroke-linejoin: round;
  cursor: pointer;
  pointer-events: stroke;
}

.glass-box {
  position: absolute;
  width: 90px;
  height: 90px;
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  z-index: 100;
  transform: translate(-50%, -50%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  /* Prevent massive icons from leaking */
}

.glass-box img {
  width: 50% !important;
  height: 50% !important;
  max-width: 50% !important;
  max-height: 50% !important;
  object-fit: contain;
  z-index: 5;
}

.glass-box:hover {
  transform: translate(-50%, -60%) scale(1.1);
  border-color: var(--accent-color);
  box-shadow: 0 8px 32px rgba(0, 240, 255, 0.2);
}

/* Precise Vertices for the wire */
.box-chrome {
  top: 15%;
  left: 30%;
}

.box-reddit {
  top: 35%;
  left: 65%;
}

.box-github {
  top: 10%;
  left: 85%;
}

.box-chatgpt {
  top: 45%;
  left: 85%;
}

.box-yahoo {
  top: 80%;
  left: 75%;
}

.box-youtube {
  top: 65%;
  left: 45%;
}

.box-gemini {
  top: 55%;
  left: 15%;
}

/* Particle Physics Animation */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 20;
  animation: explode 1s forwards cubic-bezier(0, 0.5, 0.5, 1);
}

@keyframes explode {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate(var(--dx), var(--dy)) scale(0);
    opacity: 0;
  }
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 1000;
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -1000;
  }
}

/* Showcase Section */
.showcase-section {
  padding: 80px 40px;
  max-width: 1600px;
  margin: 0 auto;
}

.showcase-flex {
  display: flex;
  align-items: center;
  gap: 80px;
  justify-content: flex-start;
}

.showcase-container {
  --c1: 1fr;
  --c2: 0.2fr;
  --c3: 1fr;
  --r1: 1fr;
  --r2: 1fr;

  display: grid;
  grid-template-columns: var(--c1) var(--c2) var(--c3);
  grid-template-rows: var(--r1) var(--r2);
  gap: 24px;
  width: 100%;
  max-width: 760px;
  margin: 0;
  flex: 1.0;
  aspect-ratio: 1 / 1;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Asymmetry Mapping */
.box-1 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.box-2 {
  grid-column: 3 / 4;
  grid-row: 1 / 2;
}

.box-3 {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

.box-4 {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
}

/* Interactive Elastic resizing using :has (Way less intensity) */
.showcase-container:has(.box-1:hover) {
  --c1: 1.15fr;
  --c2: 0.1fr;
  --c3: 0.95fr;
  --r1: 1.1fr;
  --r2: 0.9fr;
}

.showcase-container:has(.box-2:hover) {
  --c1: 0.95fr;
  --c2: 0.1fr;
  --c3: 1.15fr;
  --r1: 1.1fr;
  --r2: 0.9fr;
}

.showcase-container:has(.box-3:hover) {
  --c1: 1.15fr;
  --c2: 0.1fr;
  --c3: 0.95fr;
  --r1: 0.9fr;
  --r2: 1.1fr;
}

.showcase-container:has(.box-4:hover) {
  --c1: 0.95fr;
  --c2: 0.1fr;
  --c3: 1.15fr;
  --r1: 0.9fr;
  --r2: 1.1fr;
}

.showcase-box {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  cursor: pointer;
  box-shadow: var(--glass-shadow);
}

.box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: transform 0.4s ease;
  z-index: 5;
}

.box-content i {
  width: 48px;
  height: 48px;
  color: var(--text-main);
  stroke-width: 1.5px;
}

.box-content span {
  font-weight: 700;
  font-size: 18px;
  color: var(--text-main);
  opacity: 0.8;
}

/* Neon Electric Hover Effect */
.showcase-box:hover {
  border-color: var(--accent-color);
  background: rgba(0, 240, 255, 0.05);
  transform: scale(1.005);
  z-index: 10;
}

.showcase-box::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 32px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}

.showcase-box:hover::after {
  opacity: 1;
  animation: neon-electric 2s linear infinite;
}

.showcase-box:hover .box-content {
  transform: scale(1.1);
}

.showcase-box:hover i {
  color: var(--accent-color);
  filter: drop-shadow(0 0 10px var(--accent-color));
}

/* Showcase Content (Right Side) */
.showcase-content {
  flex: 1;
  max-width: 500px;
}

.content-eyebrow {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  margin-bottom: 16px;
  display: inline-block;
  padding: 6px 12px;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.content-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, #00f0ff 0%, #0072ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.content-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-main);
  opacity: 0.8;
  margin-bottom: 32px;
}

.content-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.badge {
  padding: 8px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.content-stats {
  display: flex;
  gap: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-main);
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.6;
  text-transform: uppercase;
}

@keyframes neon-electric {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.showcase-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Idea Section */
.idea-section {
  padding: 40px 80px 120px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  background: #ffffff;
}

.section-header {
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 48px;
  margin-bottom: 8px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
  font-weight: 500;
}

.idea-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  text-align: left;
}

.idea-text {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-muted);
}

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

.status-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.status-card {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.status-card:hover {
  transform: translateX(10px);
  border-color: var(--accent-color);
}

.site-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.status-light {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 10px #22c55e;
  animation: blink 2s infinite;
}

.site-name {
  font-weight: 600;
  font-size: 16px;
}

.stat-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: #f0fdf4;
  color: #16a34a;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
}

@keyframes blink {

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

  50% {
    opacity: 0.6;
    transform: scale(0.9);
  }
}

@media (max-width: 1024px) {
  .idea-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .idea-section {
    padding: 80px 40px;
  }

  .section-header h2 {
    font-size: 36px;
  }
}

/* Footer */
.site-footer {
  padding: 60px 80px;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  position: relative;
  z-index: 2;
}

.footer-content {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: var(--text-muted);
  font-size: 14px;
}

.legal-links {
  display: flex;
  gap: 24px;
}

.legal-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.legal-links a:hover {
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .site-footer {
    padding: 40px 40px;
  }
}

/* Pricing Page Styles */
.pricing-section {
  padding: 120px 80px;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid black !important;
  padding: 48px 40px;
  border-radius: 32px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--text-main);
}

.pricing-card:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 40px 80px rgba(0, 240, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.pricing-card.featured {
  background: var(--primary-color);
  color: white;
  border: 2px solid black !important;
  box-shadow: 0 20px 60px rgba(0, 240, 255, 0.15);
}

.pricing-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 800;
}

.pricing-card .hero-description {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.pricing-card.featured .hero-description {
  color: rgba(255, 255, 255, 0.6);
}

.price {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card.featured .price span {
  color: rgba(255, 255, 255, 0.5);
}

.discount-price {
  color: #ef4444;
  text-decoration: line-through;
  font-size: 18px;
  font-weight: 500;
  margin-right: 8px;
  opacity: 0.8;
}

.pricing-card.featured .discount-price {
  color: #fee2e2;
  opacity: 0.9;
}

.card-features {
  list-style: none;
  margin-bottom: 40px;
  flex: 1;
}

.card-features li {
  display: grid !important;
  grid-template-columns: 24px 1fr !important;
  align-items: flex-start !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
  font-size: 15px;
}

.card-features li i,
.card-features li svg {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
  stroke-width: 2.5px !important;
  color: var(--accent-color);
}

.pricing-btn {
  width: 100%;
  padding: 18px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  background: var(--primary-color) !important;
  color: white !important;
  border: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.pricing-card.featured .pricing-btn {
  background: var(--accent-color) !important;
  color: var(--primary-color) !important;
}

.pricing-btn:hover {
  transform: scale(1.02);
  filter: brightness(1.1);
  box-shadow: 0 10px 25px rgba(0, 240, 255, 0.2);
}

.btn-pricing {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  text-align: center;
}

.btn-pricing.primary {
  background: var(--primary-color);
  color: white;
}

.btn-pricing.secondary {
  background: white;
  border: 1px solid #e5e7eb;
}

.pricing-note {
  margin-top: 40px;
  font-style: italic;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 80px 40px;
  }
}

/* Startup Page Styles */
.startup-section {
  padding: 80px 80px;
  max-width: 1440px;
  margin: 0 auto;
}

.startup-hero {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.focus-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.1);
  border-color: var(--accent-color);
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  background: #f3f4f6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-color);
  transition: background 0.3s ease;
}

.focus-card:hover .icon-wrapper {
  background: var(--accent-color);
}

.focus-card h3 {
  font-size: 20px;
}

.focus-card p {
  color: var(--text-muted);
  font-size: 16px;
  margin-top: 12px;
}

.feature-list {
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
}

/* Delivery Section V2 - Flow Design */
.delivery-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  background: radial-gradient(circle at top right, rgba(0, 240, 255, 0.05) 0%, transparent 60%);
  border-radius: 48px;
  padding: 100px 80px;
  margin: 120px 0;
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
}

.delivery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.workflow-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.workflow-step {
  padding: 40px;
  background: white;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.workflow-step:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(0, 240, 255, 0.1);
}

.step-number {
  font-size: 110px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
  pointer-events: none;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workflow-step h4 {
  font-size: 20px;
  font-weight: 700;
}

.workflow-step p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Visualization */
.data-viz-container {
  margin-top: 80px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  border: 1px solid var(--glass-border);
}

.viz-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
}

.growth-bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  height: 200px;
}

.growth-bar {
  width: 60px;
  background: #f3f4f6;
  border-radius: 12px 12px 0 0;
  position: relative;
  transition: height 1s ease;
}

.growth-bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.growth-bar.active {
  background: linear-gradient(0deg, var(--primary-color) 0%, var(--accent-color) 100%);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.growth-percentage {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  color: var(--primary-color);
}

@keyframes growBar {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-section {
    padding: 80px 40px;
  }

  .startup-section {
    padding: 40px 20px;
  }

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

  .delivery-section {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .delivery-row {
    flex-direction: column;
    gap: 12px;
  }
}

/* Token Styling */
.token-green {
  color: #4ade80;
  font-weight: 700;
}

.token-gold {
  color: #fbbf24;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.token-grey {
  color: #d1d5db;
  font-weight: 700;
  text-shadow: 0 0 8px rgba(209, 213, 219, 0.3);
}

.pricing-grid-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-grid-note a {
  color: #111827;
  text-decoration: underline;
  font-weight: 600;
}

.token-icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 12px;
  object-fit: contain;
}

/* Token Store Section */
.token-store-section {
  padding: 80px 0;
  text-align: center;
}

.token-store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.token-pack-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.token-pack-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: #e5e7eb;
}

.token-pack-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
}

.token-pack-card h4 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.token-pack-card .pack-amount {
  font-size: 40px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.token-pack-card .pack-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.btn-buy-tokens {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #111827;
  color: white;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-buy-tokens:hover {
  background: #374151;
  transform: scale(1.02);
}

/* Responsive Token Store */
@media (max-width: 900px) {
  .token-store-grid {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: 48px;
  max-width: 800px;
  width: 90%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--primary-color);
  transform: rotate(90deg);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 20px;
}

.modal-feature-box {
  background: white;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid #f3f4f6;
  text-align: left;
  transition: border-color 0.2s ease;
}

.modal-feature-box:hover {
  border-color: var(--accent-light);
}

.modal-feature-box h4 {
  margin-bottom: 12px;
  color: var(--primary-color);
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.modal-feature-box p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.enterprise-gold {
  color: #fbbf24 !important;
  font-weight: 800;
  text-decoration: underline !important;
  text-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
  cursor: pointer;
}

.audit-link {
  text-decoration: underline !important;
  font-weight: 600;
  cursor: pointer;
  color: #0087f5;
}

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

  .modal-content {
    padding: 32px 24px;
  }
}

.plasma-pink-card {
  background: white !important;
  color: #111827 !important;
  border: 2px solid black !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05) !important;
}

.plasma-pink-card:hover {
  border-color: black !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1) !important;
  background: white !important;
}