/* Global Styles & Variables */
:root {
  --bg-color: #f8fafc;
  --text-color: #0f172a;
  --text-secondary: #475569;
  --primary-color: #246bfd;
  --primary-glow: rgba(36, 107, 253, 0.15);
  --pink-color: #db2777;
  --pink-glow: rgba(219, 39, 119, 0.15);
  --green-color: #059669;
  --green-glow: rgba(5, 150, 105, 0.15);
  --card-bg: rgba(255, 255, 255, 0.7);
  --card-border: rgba(0, 0, 0, 0.06);
  --card-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
  --glass-blur: blur(24px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-color);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Mesh Gradient Background */
.mesh-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.mesh-ball {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.06;
}

.ball-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-color);
  top: -100px;
  right: -100px;
  animation: float1 15s infinite alternate ease-in-out;
}

.ball-2 {
  width: 500px;
  height: 500px;
  background: var(--pink-color);
  top: 40%;
  left: -150px;
  animation: float2 18s infinite alternate ease-in-out;
}

.ball-3 {
  width: 400px;
  height: 400px;
  background: var(--green-color);
  bottom: -100px;
  right: 10%;
  animation: float1 20s infinite alternate ease-in-out;
}

/* Animations */
@keyframes float1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.1); }
}

@keyframes float2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-40px, -60px) scale(1.15); }
}

/* Header & Nav */
.header {
  padding: 20px 0;
  border-bottom: 1px solid var(--card-border);
  backdrop-filter: var(--glass-blur);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 250, 252, 0.8);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-color);
}

.logo-icon {
  color: var(--primary-color);
  font-size: 28px;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 0.95rem;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0d42d3 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px var(--primary-glow);
}

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

.btn-outline:hover {
  background: rgba(0, 0, 0, 0.03);
  border-color: var(--primary-color);
}

.btn-large {
  padding: 14px 28px;
  border-radius: 14px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 100px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-actions {
    justify-content: center;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tag {
  align-self: flex-start;
  background: rgba(36, 107, 253, 0.08);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(36, 107, 253, 0.15);
}

@media (max-width: 992px) {
  .tag {
    align-self: center;
  }
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  color: var(--text-color);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--pink-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 520px;
}

@media (max-width: 992px) {
  .hero-subtitle {
    margin: 0 auto;
  }
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.hero-preview {
  display: flex;
  justify-content: center;
}

.hero-graphic-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 500px;
  position: relative;
}

.graphic-card {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  border-radius: 20px;
  gap: 20px;
  transition: transform 0.3s;
}

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

.glassmorphism-graphic {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(20px);
}

.highlight-border {
  border-color: var(--primary-color);
  box-shadow: 0 25px 50px -12px rgba(36, 107, 253, 0.08);
}

.graphic-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.graphic-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 4px;
}

.graphic-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--text-color);
  font-size: 1.05rem;
}

.graphic-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.graphic-status {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
}

.graphic-status.pending {
  background: rgba(36, 107, 253, 0.08);
  color: var(--primary-color);
  border: 1px solid rgba(36, 107, 253, 0.15);
}

.graphic-status.verified {
  background: rgba(5, 150, 105, 0.08);
  color: var(--green-color);
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.graphic-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  position: relative;
}

.connector-arrow {
  color: var(--text-secondary);
  font-size: 28px;
  animation: floatArrow 2s infinite alternate ease-in-out;
}

@keyframes floatArrow {
  0% { transform: translateY(-4px); opacity: 0.5; }
  100% { transform: translateY(4px); opacity: 1; }
}

/* Features Section */
.features-section {
  padding: 100px 0;
  border-top: 1px solid var(--card-border);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--text-color);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.glassmorphism {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  backdrop-filter: var(--glass-blur);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.glassmorphism:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 107, 253, 0.2);
  box-shadow: 0 30px 60px -15px rgba(36, 107, 253, 0.08);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.blue-glow {
  background: rgba(36, 107, 253, 0.06);
  color: var(--primary-color);
  border: 1px solid rgba(36, 107, 253, 0.1);
  box-shadow: 0 0 20px rgba(36, 107, 253, 0.05);
}

.pink-glow {
  background: rgba(219, 39, 119, 0.06);
  color: var(--pink-color);
  border: 1px solid rgba(219, 39, 119, 0.1);
  box-shadow: 0 0 20px rgba(219, 39, 119, 0.05);
}

.green-glow {
  background: rgba(5, 150, 105, 0.06);
  color: var(--green-color);
  border: 1px solid rgba(5, 150, 105, 0.1);
  box-shadow: 0 0 20px rgba(5, 150, 105, 0.05);
}

.feature-title {
  font-size: 1.4rem;
  color: var(--text-color);
}

.feature-desc {
  color: var(--text-secondary);
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  border-top: 1px solid var(--card-border);
}

.pricing-grid-single {
  display: flex;
  justify-content: center;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  width: 100%;
}

.popular-plan {
  border-color: var(--primary-color);
  box-shadow: 0 25px 50px -12px rgba(36, 107, 253, 0.12);
}

.popular-tag {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 20px;
}

.plan-name {
  font-size: 1.6rem;
  color: var(--text-color);
}

.plan-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-color);
  font-family: 'Outfit', sans-serif;
}

.price-suffix {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.plan-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-color);
}

.check {
  color: var(--green-color);
  font-size: 20px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--card-border);
  padding: 40px 0;
  background: rgba(241, 245, 249, 0.9);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

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

.footer-link {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

@media (max-width: 600px) {
  .footer-links {
    justify-content: center;
    gap: 16px;
  }
}
