:root {
  --color-bg: #0a0a0a;
  --color-surface: #141414;
  --color-surface-glass: rgba(255, 255, 255, 0.05);
  --color-primary: #d946ef;
  /* Pink-ish */
  --color-secondary: #8b5cf6;
  /* Purple-ish */
  --color-text: #ffffff;
  --color-text-muted: #a1a1aa;
  --font-main: 'Outfit', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --gradient-main: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  --border-radius: 1rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* Background Blobs */
.cursor-blob,
.cursor-blob-2 {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.4;
  animation: float 10s infinite ease-in-out;
}

.cursor-blob {
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  top: -100px;
  left: -100px;
}

.cursor-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--color-secondary);
  bottom: -50px;
  right: -50px;
  animation-delay: -5s;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(50px, 50px);
  }
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
}

.text-gradient {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: #fff;
}

.nav-logo {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: #fff;
}

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 70, 239, 0.5);
}

.btn-primary.small {
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
  padding-top: 150px;
  padding-bottom: 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 90vh;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.price-tag-hero {
  margin-bottom: 2.5rem;
  font-family: var(--font-display);
}

.price-tag-hero .currency {
  font-size: 2rem;
  color: var(--color-primary);
  vertical-align: top;
}

.price-tag-hero .amount {
  font-size: 5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.price-tag-hero .per {
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  position: relative;
  height: 500px;
}

.glass-card {
  position: absolute;
  padding: 2rem;
  background: var(--color-surface-glass);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  animation: float-card 6s ease-in-out infinite;
}

.glass-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.card-1 {
  top: 10%;
  left: 10%;
  width: 200px;
  z-index: 2;
  transform: rotate(-5deg);
}

.card-2 {
  top: 40%;
  right: 10%;
  width: 220px;
  z-index: 1;
  animation-delay: -2s;
  transform: rotate(5deg);
}

.card-3 {
  bottom: 10%;
  left: 20%;
  width: 180px;
  z-index: 3;
  animation-delay: -4s;
}

@keyframes float-card {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Features */
.features {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(20, 20, 20, 0.8) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--color-surface-glass);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-primary);
}

.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--color-text-muted);
}

/* Pricing */
.pricing {
  padding: 6rem 0;
  position: relative;
}

.pricing-card {
  max-width: 500px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.9), rgba(10, 10, 10, 0.9));
  padding: 3rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-main);
}

.glow-border:hover {
  box-shadow: 0 0 30px rgba(217, 70, 239, 0.15);
  border-color: rgba(217, 70, 239, 0.3);
}

.pricing-header .price {
  font-size: 4rem;
  font-weight: 800;
  font-family: var(--font-display);
  margin: 1.5rem 0;
  color: #fff;
}

.pricing-header .price .dollar {
  font-size: 2rem;
  vertical-align: super;
  color: var(--color-primary);
}

.pricing-header .price .period {
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

.billed {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 3rem;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.full-width {
  width: 100%;
  display: block;
  text-align: center;
}

/* Contact */
.contact {
  padding: 6rem 0;
  background: #000;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}

.contact-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-family: var(--font-main);
  font-size: 1rem;
}

.contact-form input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-feedback {
  margin-top: 1rem;
  min-height: 24px;
  font-weight: 500;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(10px);
}

.form-feedback.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-feedback.success {
  color: #4ade80;
  /* Green */
}

.form-feedback.error {
  color: #ef4444;
  /* Red */
}

/* Button Loading State */
.btn-primary.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn-primary.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  border: 2px solid #fff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Footer */
footer {
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}

.footer-logo img {
  height: 24px;
  border-radius: 4px;
}

.copyright {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    text-align: center;
    gap: 3rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-subtitle {
    margin: 0 auto 2rem;
  }

  .hero-visual {
    height: 400px;
  }

  .nav-links {
    display: none;
    /* simple hide for v1 */
  }

  .contact-form {
    flex-direction: column;
  }
}