/* ================ BASE EXTENSIONS ================ */
:root {
  --section-padding: 6rem 0;
  --section-padding-mobile: 4rem 0;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--accent-purple);
  max-width: 700px;
  margin: 0 auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-purple), var(--primary-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.cta-button i {
  font-size: 0.9rem;
}

.cta-button.primary {
  background-color: var(--primary-purple);
  color: white;
  box-shadow: 0 4px 15px rgba(94, 53, 177, 0.4);
}

.cta-button.primary:hover {
  background-color: var(--dark-purple);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94, 53, 177, 0.6);
}

.cta-button.secondary {
  background-color: transparent;
  color: var(--accent-purple);
  border: 2px solid var(--accent-purple);
}

.cta-button.secondary:hover {
  background-color: rgba(179, 136, 255, 0.1);
  transform: translateY(-2px);
}

.cta-button.large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ================ NAVIGATION ================ */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(30, 30, 30, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.logo-pulse {
  position: relative;
  width: 40px;
  height: 40px;
}

.logo {
  width: 100%;
  height: 100%;
  background-color: var(--primary-purple);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(93, 53, 177, 0.5);
  z-index: 2;
  position: relative;
}

.pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: 1;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--accent-purple);
}

.nav-links a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-purple);
  transition: width 0.3s ease;
}

.nav-links a:hover:after {
  width: 100%;
}

.mobile-menu-button {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ================ HERO SECTION ================ */
.hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 6rem;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1;
}

.tagline {
  font-size: 1rem;
  color: var(--accent-purple);
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-subtext {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

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

.trust-signals {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.trust-signals span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.trust-signals i {
  color: var(--accent-purple);
}

.hero-visual {
  flex: 1;
  position: relative;
}

.mockup-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s ease;
}

.mockup-container:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) scale(1.02);
}

.mockup {
  width: 100%;
  height: auto;
  display: block;
}

.mockup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(94, 53, 177, 0.3), rgba(179, 136, 255, 0.2));
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%235E35B1" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%235E35B1" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%237E57C2"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

/* ================ PRODUCT SECTION ================ */
.product-section {
  padding: var(--section-padding);
  position: relative;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-features {
  display: grid;
  gap: 2rem;
}

.feature-card {
  background-color: var(--medium-gray);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid var(--primary-purple);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  background-color: var(--light-gray);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(94, 53, 177, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-purple);
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.product-demo {
  position: relative;
}

.demo-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
}

.demo-image {
  width: 100%;
  height: auto;
  display: block;
}

.demo-cta {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

/* ================ SUITE SECTION ================ */
.suite-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.suite-card {
  background-color: var(--medium-gray);
  padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.suite-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(94, 53, 177, 0.1), rgba(179, 136, 255, 0.05));
  z-index: -1;
}

.suite-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.suite-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.suite-icon.sandbox {
  background-color: rgba(76, 175, 80, 0.2);
  color: #4CAF50;
}

.suite-icon.studio {
  background-color: rgba(255, 193, 7, 0.2);
  color: #FFC107;
}

.suite-icon.biz {
  background-color: rgba(33, 150, 243, 0.2);
  color: #2196F3;
}

.suite-icon.logic {
  background-color: rgba(233, 30, 99, 0.2);
  color: #E91E63;
}

.suite-icon.dio {
  background-color: rgba(156, 39, 176, 0.2);
  color: #9C27B0;
}

.suite-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.suite-subtitle {
  font-size: 0.9rem;
  color: var(--accent-purple);
  margin-bottom: 1rem;
  font-weight: 500;
}

.suite-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.suite-status {
  font-size: 0.8rem;
  color: var(--accent-purple);
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  background-color: rgba(179, 136, 255, 0.1);
  border-radius: 50px;
  display: inline-block;
}

.suite-cta {
  text-align: center;
  margin-top: 4rem;
}

.suite-mission {
  font-size: 1.2rem;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* ================ STORY SECTION ================ */
.story-section {
  padding: var(--section-padding);
  background-color: var(--dark-gray);
  position: relative;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

blockquote {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--white);
  border-left: 4px solid var(--primary-purple);
  padding-left: 2rem;
  margin: 2rem 0;
  font-style: italic;
}

.founder-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.founder-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-purple);
}

.founder-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.founder-title {
  font-size: 0.9rem;
  color: var(--accent-purple);
}

.story-details {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-top: 2rem;
}

/* ================ WORKS SECTION ================ */
.works-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
}

.steps-container {
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-purple);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content {
  padding-top: 0.5rem;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.works-visual {
  margin-top: 4rem;
}

.visual-container {
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.visual-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.visual-icon {
  width: 60px;
  height: 60px;
  background-color: var(--medium-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent-purple);
  margin-bottom: 1rem;
}

.visual-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-purple), var(--primary-purple));
  margin: 30px 0;
}

/* ================ FINAL CTA SECTION ================ */
.final-cta {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-purple) 100%);
}

.final-cta h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-subtext {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 3rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* ================ FOOTER ================ */
.main-footer {
  background-color: var(--dark-gray);
  padding: 4rem 0 0;
  border-top: 1px solid var(--light-gray);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  margin-bottom: 1.5rem;
}

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

.link-group h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.link-group a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.8rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-group a:hover {
  color: var(--accent-purple);
}

.footer-social h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: var(--medium-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-purple);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  margin-top: 3rem;
  border-top: 1px solid var(--light-gray);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-bottom i {
  color: var(--error);
}

/* ================ ANIMATIONS ================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* ================ RESPONSIVE STYLES ================ */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero-subtext {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta {
    align-items: center;
  }
  
  .trust-signals {
    justify-content: center;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .product-features {
    order: 2;
  }
  
  .product-demo {
    order: 1;
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-button {
    display: block;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtext {
    font-size: 1rem;
  }
  
  .trust-signals {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    flex-direction: column;
    gap: 1rem;
  }
  
  .visual-container {
    flex-direction: column;
    align-items: center;
  }
  
  .visual-line {
    width: 3px;
    height: 60px;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .final-cta h2 {
    font-size: 2rem;
  }
  
  .cta-subtext {
    font-size: 1rem;
  }
}