/* Font Faces */
@font-face {
  font-family: 'Guton';
  src: url('/assets/Guton-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Guton';
  src: url('/assets/Guton-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Guton';
  src: url('/assets/Guton-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
}


/* Variables */
:root {
  --purple: #A13DFF;
  --black: #0A0A0A;
  --dark-gray: #111111;
  --darker-gray: #151515;
  --text-primary: #CDCDCD;
  --text-secondary: #888888;
  --color-1: 200, 100, 250;
  --color-2: 100, 200, 250;
  --color-3: 150, 150, 250;
  --color-4: 250, 100, 200;
}

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

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in.visible {
  animation: fadeIn 0.8s ease-out forwards;
}

/* Base Styles */
body {
  font-family: 'Guton', sans-serif;
  background-color: var(--black);
  color: var(--text-primary);
  line-height: 1.5;
  min-height: 100vh;
}

/* Common Components */
.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Guton', sans-serif;
  color: var(--text-secondary);
  background: var(--dark-gray);
  border: 1px solid rgba(138, 138, 138, 0.1);
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: var(--purple);
  color: var(--black);
}

.btn-primary:hover {
  background: #7700e6;
}

.btn-secondary {
  background: var(--text-primary);
  color: var(--black);
  border: 1px solid var(--text-primary);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

.btn-dark {
  background: var(--black);
  color: var(--text-primary);
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
}

.btn-dark:hover {
  background: var(--dark-gray);
}

/* Header & Navigation */
.notification-banner {
  background: var(--purple);
  color: var(--black);
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.notification-banner a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.notification-banner a:hover {
  text-decoration-thickness: 2px;
}

.header {
  position: fixed;
  top: 2rem;
  left: 0;
  right: 0;
  height: 6rem;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.navbar {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(138, 138, 138, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  padding: 1.25rem 1.5rem;
  width: 100%;
}

.navbar-content {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  height: 2rem;
}

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-logo {
  display: inline-block;
  height: 100%;
}

.nav-logo img {
  height: 100%;
  width: auto;
  display: block;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
  padding-top: 15rem;
  text-align: center;
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ripple-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, white, transparent);
  -webkit-mask-image: linear-gradient(to bottom, white, transparent);
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: var(--initial-opacity);
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.ripple-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: var(--purple);
  animation: ripple 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  opacity: 0;
}

.ripple-circle:nth-child(1) {
  width: 210px;
  height: 210px;
  --initial-opacity: 0.12;
  animation-delay: 0s;
}

.ripple-circle:nth-child(2) {
  width: 280px;
  height: 280px;
  --initial-opacity: 0.10;
  animation-delay: 0.06s;
}

.ripple-circle:nth-child(3) {
  width: 350px;
  height: 350px;
  --initial-opacity: 0.08;
  animation-delay: 0.12s;
}

.ripple-circle:nth-child(4) {
  width: 420px;
  height: 420px;
  --initial-opacity: 0.06;
  animation-delay: 0.18s;
}

.ripple-circle:nth-child(5) {
  width: 490px;
  height: 490px;
  --initial-opacity: 0.04;
  animation-delay: 0.24s;
}

.ripple-circle:nth-child(6) {
  width: 560px;
  height: 560px;
  --initial-opacity: 0.03;
  animation-delay: 0.30s;
}

.ripple-circle:nth-child(7) {
  width: 630px;
  height: 630px;
  --initial-opacity: 0.02;
  animation-delay: 0.36s;
}

.ripple-circle:nth-child(8) {
  width: 700px;
  height: 700px;
  --initial-opacity: 0.01;
  animation-delay: 0.42s;
  border: 1px dashed var(--purple);
  background: transparent;
}
.content {
  padding: 0 2rem;
}

.liability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0.50rem;
  background: var(--darker-gray);
  border: 1px var(--dark-gray);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.liability-badge svg {
  flex-shrink: 0;
}

/* Typography */
h1 {
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.text-plain {
  color: var(--text-primary);
}

.secondary-text {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.secondary-text span {
  text-decoration: underline;
  text-decoration-color: var(--text-secondary);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Features Section */
.features {
  padding: 6rem 0;
}

.features-content {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
}

.features h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--purple);
  text-align: center;
}

.features-description {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.features-subtext {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.7;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.feature-column {
  background: var(--darker-gray);
  border: 1px solid rgba(138, 138, 138, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.feature-column h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.new-badge {
  background: var(--dark-gray);
  color: var(--purple);
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-weight: 500;
}

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

@media (max-width: 768px) {
  .features-description {
    font-size: 1.5rem;
  }
  
  .features-subtext {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-column {
    padding: 1.5rem;
  }
}

/* Common Section Styles */
.platform,
.ecommerce,
.payments,
.developers,
.business-types {
  padding: 6rem 0;
}

.platform-content,
.ecommerce-content,
.payments-content {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  background: var(--darker-gray);
  border: 1px solid rgba(138, 138, 138, 0.1);
  border-radius: 16px;
  padding: 4rem 2rem;
}

/* Section Headers */
.platform h2,
.ecommerce h2,
.payments h2,
.developers h2,
.business-types h2 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--purple);
  text-align: center;
}

.platform-description,
.ecommerce-description,
.payments-description,
.developers-description {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.platform-subtext,
.ecommerce-subtext,
.payments-subtext {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  text-align: center;
}

/* Dashboard */
.dashboard-container {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.dashboard {
  position: relative;
  width: 100%;
  height: 600px;
  opacity: 0.8;
  mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Features Grid */
.platform-features,
.ecommerce-features,
.payments-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Business Types */
.business-types-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.business-types-primary {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.business-types-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  line-height: 1.7;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.business-types-description a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Badges Grid */
.badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  justify-content: center;
}

.badge {
  text-align: center;
  background: var(--dark-gray);
  border: 1px solid rgba(138, 138, 138, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
}

/* Contact Sales */
.contact-sales {
  margin-top: 3rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.contact-sales a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Stats Section */
.stats-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 3rem;
  margin: 6rem auto;
  max-width: 1000px;
  padding: 0 2rem;
}

.stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat h2 {
  font-size: 2.5rem;
  font-weight: 700;
  min-height: 3rem;
  margin-bottom: 1rem;
  color: var(--purple);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.stat h2.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.stat-divider {
  width: 1px;
  height: 80px;
  background: rgba(138, 138, 138, 0.1);
}

/* Comparison Grid */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-card {
  padding: 2rem;
  border-radius: 16px;
}

.comparison-card.dark {
  background: var(--darker-gray);
  border: 1px solid rgba(138, 138, 138, 0.1);
}

.comparison-title {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.comparison-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--dark-gray);
  border-radius: 8px;
}

.comparison-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.comparison-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.comparison-more {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--dark-gray);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: var(--darker-gray);
  border: 1px solid rgba(138, 138, 138, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.faq-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  text-align: center;
}

.cta-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cta-section h2 {
  font-size: 8rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0;
}

/* Aurora Text Effect */
.aurora-text {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    90deg,
    rgb(var(--color-1)),
    rgb(var(--color-2)),
    rgb(var(--color-3)),
    rgb(var(--color-4)),
    rgb(var(--color-1))
  );
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: aurora-border 8s ease infinite;
}

@keyframes aurora-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* Footer */
.footer {
  padding: 6rem 0 3rem;
}

.footer-content {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-left {
  max-width: 400px;
}

.footer-logo {
  height: 2rem;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-subtext {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 6rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-column h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

/* Media Queries */
@media (max-width: 1200px) {
  .pricing-grid,
  .pricing-addons,
  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 1rem;
  }
}

  
.developers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.developers-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.developer-card {
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.developer-card h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.developer-card p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
  min-height: 96px;
}

@media (max-width: 768px) {
  .header {
    height: auto;
    top: 1.5rem;
  }

  .notification-banner {
    font-size: 0.8125rem;
    padding: 0.625rem 1rem;
  }

  .navbar {
    padding: 1rem;
  }

  .navbar-content {
    width: 95%;
    flex-direction: column;
    height: auto;
    gap: 1rem;
  }

  .nav-left, .nav-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .nav-logo {
    height: 1.5rem;
  }

  .nav-btn {
    padding: 0.4rem 0.8rem;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .hero-section {
    padding-top: 8rem;
    width: 95%;
  }

  h1 {
    font-size: 3rem;
  }

  .secondary-text {
    font-size: 1rem;
  }

  .cta-section h2 {
    font-size: 3rem;
  }

  .footer {
    padding: 4rem 0 2rem;
  }

  .footer-main {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-left {
    text-align: center;
    margin: 0 auto;
  }

  .footer-links {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-center {
    display: none;
  }
  
  .nav-logo {
    height: 1.25rem;
  }

  .nav-right {
    gap: 0.5rem;
  }

  .nav-btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
  }

  .platform-content,
  .ecommerce-content,
  .payments-content {
    width: 95%;
  }

  .stats-section {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-divider {
    width: 80%;
    height: 1px;
  }

  .comparison-card {
    padding: 1rem;
  }

  .comparison-title {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }

  .comparison-item {
    padding: 0.625rem;
    gap: 0.75rem;
  }

  .comparison-icon {
    width: 16px;
    height: 16px;
  }

  .comparison-text {
    font-size: 0.75rem;
  }

  .comparison-more {
    padding: 0.625rem;
    font-size: 0.75rem;
    margin-top: 0.75rem;
  }
}

.comparison-more {
  margin-top: 1rem;
  padding: 1rem;
  background: var(gray);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Pricing Styles */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.pricing-card {
  background: var(--darker-gray);
  border: 1px solid rgba(138, 138, 138, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.pricing-header p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pricing-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: var(--dark-gray);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.pricing-price {
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem;
  background: var(--black);
  border-radius: 12px;
}

.price-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Pricing Add-ons */
.pricing-addons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 2rem auto;
  padding: 2rem;
}

.addon-card {
  background: var(--darker-gray);
  border: 1px solid rgba(138, 138, 138, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.addon-header {
  margin-bottom: 2rem;
}

.addon-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.addon-header p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.addon-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.addon-feature {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.addon-feature svg {
  flex-shrink: 0;
}

.addon-feature span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.addon-price {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(138, 138, 138, 0.1);
}

/* Timeline Section */
.timeline {
  padding: 6rem 0;
}

.timeline-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.timeline-description {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 4rem;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.timeline-item {
  text-align: left;
}

.timeline-year {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1rem;
}

.timeline-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Team Section */
.team {
  padding: 6rem 0;
  background: var(--darker-gray);
}

.team-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.team-description {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.team-member {
  background: var(--darker-gray);
  border: 1px solid rgba(138, 138, 138, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

.team-member h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--purple);
  margin-bottom: 1rem;
  font-weight: 500;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive styles for team section */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-member {
    padding: 1.5rem;
  }

  .team-member h3 {
    font-size: 1.25rem;
  }
}

/* Locations Section */
.locations {
  padding: 6rem 0;
}

.locations-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.locations-description {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 4rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.location {
  background: var(--darker-gray);
  border: 1px solid rgba(138, 138, 138, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.location h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.location p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Grid Pattern */
.grid-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 70%);
  transform: skewY(12deg);
  background-size: 40px 40px;
  background-image: 
    linear-gradient(to right, rgba(161, 61, 255, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(161, 61, 255, 0.15) 1px, transparent 1px);
}

/* Pricing Category */
.pricing-category {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
}

.pricing-category h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.pricing-category-description {
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .pricing-category {
    margin-bottom: 3rem;
  }
  
  .pricing-category-description {
    font-size: 1.5rem;
  }
}

/* Calculator Section */
.calculator-section {
  padding: 4rem 0;
}

.calculator-content {
  width: 80%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.calculator-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.calculator-card {
  background: var(--darker-gray);
  border: 1px solid rgba(138, 138, 138, 0.1);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  gap: 3rem;
}

.calculator-inputs {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  text-align: left;
}

.input-group label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix,
.input-suffix {
  position: absolute;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.input-prefix {
  left: 1rem;
}

.input-suffix {
  right: 1rem;
}

.calculator-inputs input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid rgba(138, 138, 138, 0.1);
  border-radius: 8px;
  background: var(--black);
  color: var(--text-primary);
  font-family: 'Guton', sans-serif;
}

.calculator-inputs input:focus {
  outline: none;
  border-color: var(--purple);
}

.input-prefix ~ input {
  padding-left: 2rem;
}

.input-suffix ~ input {
  padding-right: 2rem;
}

.calculator-results {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-card {
  background: var(--black);
  border: 1px solid rgba(138, 138, 138, 0.1);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
}

.result-card h3 {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.result-amount {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.result-card.highlight {
  background: var(--purple);
}

.result-card.highlight h3,
.result-card.highlight .result-amount {
  color: var(--black);
}

.savings {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .calculator-card {
    flex-direction: column;
    gap: 2rem;
  }
  
  .calculator-inputs,
  .calculator-results {
    width: 100%;
  }
}

/* Responsive styles for locations section */
@media (max-width: 768px) {
  .locations-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .locations-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .location {
    padding: 1.5rem;
  }
}

/* Hero Background */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
  background-image:
    repeating-linear-gradient(100deg, rgba(100, 100, 100, 0.5) 0%, rgba(100, 100, 100, 0.5) 7%, transparent 10%, transparent 12%, rgba(100, 100, 100, 0.5) 16%),
    repeating-linear-gradient(100deg, var(--purple) 20%, rgba(161, 61, 255, 0.3) 30%, #B65DFF 40%, rgba(161, 61, 255, 0.3) 50%, #D580FF 60%);
  background-size: 200% 200%;
  background-position: 0 0;
  filter: blur(20px) opacity(35%) saturate(150%);
}

.hero-background-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 70%);
  background-image:
    repeating-linear-gradient(100deg, rgba(100, 100, 100, 0.5) 0%, rgba(100, 100, 100, 0.5) 7%, transparent 10%, transparent 12%, rgba(100, 100, 100, 0.5) 16%),
    repeating-linear-gradient(100deg, var(--purple) 20%, rgba(161, 61, 255, 0.3) 30%, #B65DFF 40%, rgba(161, 61, 255, 0.3) 50%, #D580FF 60%);
  background-size: 200% 200%;
  mix-blend-mode: purple;
  animation: ray 20s linear infinite;
}

@keyframes ray {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
