:root{
  --bg:#050505;
  --panel:#0f0f10;
  --text-primary:rgba(255,255,255,0.87);
  --text-secondary:rgba(255,255,255,0.6);
  --text-muted:rgba(255,255,255,0.38);
  --accent:#e0e0e0;
  --pink-glow: rgba(218, 123, 226, 0.08);
  --spacing-base: clamp(16px, 2vw, 24px);
  --container-padding: clamp(16px, 5vw, 60px);
  --header-height: clamp(64px, 8vh, 84px);

  font-family: 'Segoe UI', Roboto, -apple-system, 'Helvetica Neue', Arial;
  background: 
    radial-gradient(circle at 0% 0%, var(--pink-glow) 0%, transparent 30%),
    radial-gradient(circle at 100% 0%, var(--pink-glow) 0%, transparent 30%),
    radial-gradient(circle at 100% 100%, var(--pink-glow) 0%, transparent 30%),
    radial-gradient(circle at 0% 100%, var(--pink-glow) 0%, transparent 30%),
    radial-gradient(ellipse at top, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 15%, transparent 40%),
    linear-gradient(180deg,#000000 0%, #070707 60%);
  color:var(--accent);
}

/* Base responsive settings */
html {
  font-size: clamp(14px, 1vw, 16px);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(40px, 8vh, 60px) var(--container-padding) clamp(60px, 12vh, 120px);
  box-sizing: border-box;
}

/* Fluid Typography */
h1, .h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2, .h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3, .h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
p, .text-base { font-size: clamp(1rem, 2vw, 1.125rem); }
.text-sm { font-size: clamp(0.875rem, 1.5vw, 1rem); }

/* Bio Section */
.bio-section {
  width: 100%;
  max-width: 1500px;
  margin: 40px auto 60px;
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
}

.bio-container {
  padding: 0 var(--spacing-base);
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
}

.bio-content {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.005));
  border-radius: 32px;
  padding: 56px 48px;
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 
    0 24px 48px rgba(0,0,0,0.18),
    -15px 0 30px -15px var(--pink-glow),
    15px 0 30px -15px var(--pink-glow),
    inset 0 1px 0 rgba(255,255,255,0.02);
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.bio-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 0% 50%, var(--pink-glow) 0%, transparent 50%),
    radial-gradient(circle at 100% 50%, var(--pink-glow) 0%, transparent 100%);
  opacity: 0.3;
  pointer-events: none;
}

.bio-text {
  flex: 1;
}

.bio-text h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.bio-text h3 {
  font-size: 24px;
  margin: 32px 0 16px;
  color: var(--text-primary);
}

.bio-text p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.bio-text strong {
  color: var(--text-primary);
}

.bio-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.bio-list li {
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.bio-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--text-primary);
  font-size: 1.2em;
}

.bio-image {
  flex: 0 0 400px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  animation: slideshow 15s infinite;
}

.slide:nth-child(1) {
  animation-delay: -0s;
}

.slide:nth-child(2) {
  animation-delay: -5s;
}

.slide:nth-child(3) {
  animation-delay: -10s;
}

@keyframes slideshow {
  0%, 25%, 100% {
    opacity: 0;
    transform: scale(1.1);
  }
  33%, 58% {
    opacity: 1;
    transform: scale(1);
  }
  66% {
    opacity: 0;
    transform: scale(1.1);
  }
}

/* Hover durumunda animasyonu duraklat */
.bio-image:hover .slideshow .slide {
  animation-play-state: paused;
}

@media (max-width: 1200px) {
  .bio-content {
    flex-direction: column-reverse;
    padding: 32px;
    gap: 40px;
  }
  
  .bio-image {
    flex: 0 0 300px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .bio-container {
    padding: 0 20px;
  }
  
  .bio-content {
    padding: 24px;
  }
  
  .bio-text h2 {
    font-size: 28px;
  }
  
  .bio-text h3 {
    font-size: 20px;
  }
}

.image-accent{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 0%,rgba(0,0,0,0.2) 100%);
  pointer-events:none
}

@media (max-width:900px){
  .bio-grid{
    grid-template-columns:1fr;
    gap:30px
  }
  
  .bio-content{
    padding:30px 20px
  }
  
  .bio-image{
    aspect-ratio:16/9;
    margin:0 auto;
    max-width:500px
  }
}

/* Top navbar */
.topbar{
  position:fixed;
  inset:0 0 auto 0;
  --topbar-height:84px;
  height:var(--topbar-height);
  background:linear-gradient(180deg,#070707,#0b0b0b);
  border-bottom:1px solid rgba(255,255,255,0.03);
  z-index:40;
  width:100%
}
.topbar .container{
  max-width:1180px;
  margin:0 auto;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 var(--spacing-base);
  width: 100%;
  box-sizing: border-box;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px
}
.logo-img{
  height:150px;
  width:auto;
  display:block;
  border-radius:4px;
  max-width:100%
}
.nav{
  display:flex;
  gap:18px;
  align-items:center;
  margin:0 20px
}
.nav a{
  color:var(--text-secondary);
  text-decoration:none;
  padding:8px 16px;
  border-radius:6px;
  font-size:15px;
  font-weight:500;
  transition:0.2s ease;
  white-space:nowrap
}
.nav a:hover{
  color:var(--text-primary);
  background:var(--hover)
}
.nav-actions{
  display:flex;
  gap:12px;
  align-items:center
}
.search{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.06);
  padding:8px 16px;
  border-radius:8px;
  color:var(--text-secondary);
  min-width:180px;
  font-size:14px
}
.search::placeholder{
  color:var(--text-muted)
}

/* ensure stage content sits below fixed navbar */
.stage{padding-top:160px}

/* Responsive Design System */

/* Extra Large Screens (Desktops >= 1400px) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  .title {
    font-size: clamp(48px, 4vw, 64px);
  }
  .bio-content {
    gap: 80px;
  }
  .bio-image {
    flex: 0 0 450px;
  }
  .cards {
    gap: 32px;
  }
}

/* Large Screens (Laptops >= 1200px) */
@media (min-width: 1200px) and (max-width: 1399px) {
  .container {
    max-width: 1140px;
  }
  .bio-content {
    gap: 60px;
  }
  .bio-image {
    flex: 0 0 400px;
  }
}

/* Medium Screens (Tablets >= 992px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  .bio-content {
    gap: 40px;
  }
  .bio-image {
    flex: 0 0 360px;
  }
  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* Small Screens (Small Tablets >= 768px) */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  .topbar {
    --topbar-height: 72px;
  }
  .bio-content {
    flex-direction: column-reverse;
    gap: 32px;
  }
  .bio-image {
    max-width: 400px;
    margin: 0 auto;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .nav {
    margin: 0 10px;
  }
  .nav a {
    padding: 6px 12px;
    font-size: 14px;
  }
}

/* Mobile Landscape (>= 576px) */
@media (min-width: 576px) and (max-width: 767px) {
  .container {
    max-width: 540px;
  }
  .topbar {
    --topbar-height: 68px;
  }
  .logo-img {
    height: 55px;
  }
  .nav, .nav-actions {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .title {
    font-size: 32px;
  }
  .bio-content {
    padding: 24px;
  }
}

/* Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-spinner {
  position: relative;
  width: 80px;
  height: 80px;
}

.preloader-circle {
  width: 100%;
  height: 100%;
  animation: rotate 2s linear infinite;
}

.preloader-circle circle {
  stroke: var(--pink-glow);
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

.preloader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: pulse 2s ease infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(0.95);
  }
}

/* Mobile Portrait (< 576px) */
@media (max-width: 575px) {
  :root {
    --spacing-base: 16px;
  }
  
  .container {
    width: 100%;
    padding: 0 var(--spacing-base);
  }
  
  .topbar {
    --topbar-height: 64px;
  }
  
  .topbar .container {
    padding: 0 var(--spacing-base);
  }
  
  .logo-img {
    height: 50px;
  }
  
  .nav, .nav-actions {
    display: none;
  }
  
  .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .title {
    font-size: 28px;
  }
  
  .stage {
    padding: calc(var(--header-height) + 20px) var(--spacing-base) 40px;
  }
  
  .bio-section {
    margin: 20px 0 40px;
    width: 100%;
  }
  
  .bio-container {
    padding: 0 var(--spacing-base);
  }
  
  .bio-content {
    padding: 20px;
    border-radius: 16px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }
  
  .bio-text h2 {
    font-size: 24px;
  }
  
  .bio-text h3 {
    font-size: 20px;
    margin: 24px 0 12px;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
    width: 100%;
  }
  
  .card {
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .card.featured {
    transform: none;
    padding: 20px;
  }
  
  .mobile-menu {
    width: 100%;
    left: 0;
    right: 0;
  }
}

/* Touch Device Optimizations */
@media (hover: none) {
  .nav a:hover,
  .mobile-menu a:hover,
  .cta:hover {
    background: none;
  }
  
  .card {
    touch-action: pan-y;
  }
}

/* High-DPI Screen Optimizations */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .grid-lines {
    background-size: 60px 60px, 60px 60px;
  }
}

/* Modal Styles */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.modal-open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  width: 90%;
  max-width: 1100px;
  height: auto;
  min-height: 60vh;
  max-height: 85vh;
  position: relative;
  box-shadow: 
    0 24px 48px rgba(0,0,0,0.2),
    -15px 0 30px -15px var(--pink-glow),
    15px 0 30px -15px var(--pink-glow);
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin: 0;
}

.modal-open .modal-content {
  transform: scale(1);
}

.modal-header {
  padding: 24px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-shrink: 0;
}

.header-content {
  flex: 1;
}

.modal-title {
  font-size: 32px;
  color: var(--text-primary);
  margin: 0 0 8px;
  line-height: 1.2;
}

.modal-subtitle {
  color: var(--text-secondary);
  margin: 0;
  font-size: 16px;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: -8px;
}

.modal-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-primary);
  transform: rotate(90deg);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  padding: 24px 32px 32px 24px;
  flex: 1;
  overflow: hidden;
  align-items: start;
  max-width: 1100px;
  margin: 0;
  justify-content: start;
}

.course-overview {
  margin-bottom: 40px;
}

.overview-stats {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 36px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 14px;
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.section-title h3 {
  margin: 0;
  font-size: 20px;
  color: var(--text-primary);
}

.progress {
  color: var(--text-secondary);
  font-size: 14px;
}

/* Program module box - make full width, remove horizontal shifts */
.course-module {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border-radius: 12px;
  transition: all 0.24s ease;
  align-items: center;
  width: calc(100% - 24px);
  max-width: 700px;
  margin: 0 0 10px;
  border: 1px solid rgba(255,255,255,0.04);
  box-sizing: border-box;
}

.course-module:hover {
  background: rgba(255,255,255,0.05);
  transform: translateY(-4px);
}

.module-icon {
  flex: 0 0 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}

.module-content {
  flex: 1;
}

.module-content h4 {
  margin: 0 0 2px;
  color: var(--text-primary);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 500;
}

.module-content p {
  margin: 0 0 8px;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.4;
}

.module-meta {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  transition: all 0.22s ease;
}

.feature:hover {
  background: rgba(255,255,255,0.04);
}

.feature-icon {
  font-size: 24px;
}

.feature span {
  color: var(--text-secondary);
  font-size: 14px;
}

.video-preview {
  position: relative;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
}

.video-container {
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 320px;
  background: rgba(0,0,0,0.28);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.video-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
  pointer-events: none;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.1);
  border: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-primary);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.play-button:hover {
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%) scale(1.1);
}

.enrollment-box {
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 20px;
  margin-top: 32px; /* push price box lower so video becomes larger */
}

.price-tag {
  margin-bottom: 24px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.amount {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

.period {
  color: var(--text-secondary);
  font-size: 13px;
  white-space: nowrap;
}

.guarantee {
  color: var(--text-muted);
  font-size: 13px;
}

.modal-join {
  width: 100%;
  padding: 16px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.spots-left {
  text-align: center;
}

.progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  margin-bottom: 8px;
}

.progress-bar .progress {
  height: 100%;
  background: var(--pink-glow);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.spots-text {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .modal-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .video-preview {
    order: -1;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
  }

  .modal-header {
    padding: 20px;
  }

  .modal-grid {
    padding: 20px;
    gap: 24px;
  }

  .modal-title {
    font-size: 24px;
  }

  .overview-stats {
    gap: 20px;
  }

  .stat-value {
    font-size: 28px;
  }

  .course-module {
    padding: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .overview-stats {
    flex-direction: column;
    gap: 16px;
  }

  .stat {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .stat-value {
    margin: 0;
  }
}


/* Responsive modal tweaks: prevent overlap, scale typography, allow internal scroll on small screens */
@media (max-width: 1024px) {
  .modal-content {
    width: 94%;
    max-width: 960px;
    height: auto;
    max-height: 94vh;
    padding: 0;
    border-radius: 18px;
    overflow: hidden;
  }

  .modal-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    align-items: stretch;
  }

  .video-container {
    min-height: 260px;
    border-radius: 12px;
  }

  .enrollment-box {
    margin-top: 12px;
  }

  .course-module {
    flex-direction: row;
    gap: 12px;
    padding: 12px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .modal-title { font-size: 22px; }
  .stat-value { font-size: 28px; }
}

@media (max-width: 768px) {
  .modal-content {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .modal-grid {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
    align-items: start;
  }

  /* Make modules stack vertically and be compact */
  .course-module {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
  }

  .module-icon { flex: 0 0 44px; height: 44px; }
  .module-content h4 { font-size: 15px; }

  .video-container { min-height: 220px; }

  /* Ensure video area is visible and the enrollment box doesn't overlap */
  .video-preview { order: -1; }
  .enrollment-box { margin-top: 8px; }

  .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .modal-header { padding: 16px; }
  .modal-title { font-size: 20px; }
  .modal-subtitle { font-size: 13px; }
  .stat-value { font-size: 22px; }

  .video-container { min-height: 180px; }

  /* Allow inner scrolling for very small screens to avoid cramping */
  .modal-grid { overflow-y: auto; }
  .modal-content { overflow: visible; }

  .course-module {
    padding: 10px;
    margin: 0 0 8px 0;
    gap: 8px;
  }

  .module-content h4 {
    font-size: 13px;
  }

  .module-content p {
    font-size: 12px;
    margin-bottom: 4px;
  }

  .module-meta {
    font-size: 11px;
  }

  .module-icon {
    flex: 0 0 32px;
    height: 32px;
    border-radius: 6px;
  }
}

/* Footer styles */
.footer {
  background: linear-gradient(180deg, var(--bg) 0%, #070707 100%);
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 80px 0 40px;
  margin-top: 80px;
  position: relative;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-base);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column h3 {
  color: var(--text-primary);
  font-size: 16px;
  margin: 0 0 20px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: var(--text-primary);
}

.contact-info li {
  color: var(--text-secondary);
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-links a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.03);
  text-align: center;
}

.footer-note {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.copyright {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .footer-column:last-child {
    grid-column: span 4;
    text-align: center;
  }
  
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-column:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-column:last-child {
    grid-column: span 1;
  }
  
  .footer-column {
    text-align: center;
  }
  
  .footer-note {
    font-size: 13px;
  }
}

/* ensure images don't overflow and remove accidental horizontal scroll on mobile */
img{max-width:100%;height:auto;display:block}
html,body{overflow-x:hidden}
/* Mobile menu styles */
.hamburger{
  display:none;
  background:transparent;
  border:0;
  color:var(--text-secondary);
  font-size:24px;
  width:40px;
  height:40px;
  cursor:pointer;
  border-radius:6px;
  transition:0.2s ease;
  padding: 0;
  position: relative;
  right: 0;
}
.hamburger:hover{
  color:var(--text-primary);
  background:var(--hover)
}
.mobile-menu{
  display:none;
  position:fixed;
  top:var(--topbar-height);
  left:0;
  right:0;
  background:linear-gradient(180deg,#080808,#0b0b0b);
  padding:16px 20px;
  z-index:45;
  border-bottom:1px solid rgba(255,255,255,0.03);
  box-shadow:0 10px 30px rgba(0,0,0,0.6)
}
.mobile-menu a{
  display:block;
  color:var(--text-secondary);
  text-decoration:none;
  padding:14px 8px;
  font-size:15px;
  font-weight:500;
  border-radius:8px;
  transition:0.2s ease
}
.mobile-menu a:hover{
  color:var(--text-primary);
  background:var(--hover)
}
.mobile-menu .search{
  width:100%;
  margin-top:12px;
  background:rgba(255,255,255,0.02);
  border-color:rgba(255,255,255,0.06)
}

@media (max-width:900px){
  .nav{display:none}
  .nav-actions{display:none}
  .hamburger{display:block}
  .mobile-menu{top:64px}
}

.grid-lines{
  position:absolute;inset:0;pointer-events:none;opacity:0.06;
  background-image: linear-gradient(#111 1px, transparent 1px), linear-gradient(90deg,#111 1px, transparent 1px);
  background-size: 120px 120px, 120px 120px;
  mix-blend-mode: overlay;
}

.spotlight{
  position:absolute;
  left:50%;
  top:24%;
  width:min(900px,90vw);
  height:clamp(180px,40vw,360px);
  transform:translateX(-50%);
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.0) 45%),
    radial-gradient(circle at 30% center, var(--pink-glow) 0%, transparent 50%),
    radial-gradient(circle at 70% center, var(--pink-glow) 0%, transparent 50%);
  filter:blur(40px);
  opacity:0.4;
  pointer-events:none
}

.hero{z-index:2;max-width:980px;text-align:center;margin-bottom:34px;}
.eyebrow{display:inline-block;background:rgba(255,255,255,0.04);padding:6px 12px;border-radius:20px;color:var(--muted);font-size:12px;margin-bottom:18px}
.title{font-size:48px;line-height:1.02;margin:6px 0 12px;font-weight:700;letter-spacing:-1px}
.title span{display:block;font-size:48px}
.subtitle{max-width:760px;margin:6px auto 18px;color:var(--muted);font-size:15px}

.billing-toggle{
  display:inline-flex;
  background:linear-gradient(180deg,#111 0%, #0a0a0a 100%);
  padding:6px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,0.06);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.02);
  margin-top: 30px;
}
.billing-toggle .toggle{
  background:none;
  border:0;
  color:var(--muted);
  padding:8px 18px;
  border-radius:18px;
  cursor:pointer;
  transition: all 0.3s ease;
}
.billing-toggle .toggle.active{
  background:linear-gradient(180deg,#fff 0%, #dcdcdc 100%);
  color:#111;
  padding:8px 18px;
  font-weight:600;
  box-shadow:0 6px 18px rgba(0,0,0,0.6);
}

.cards{z-index:2;display:grid;grid-template-columns:repeat(3,1fr);gap:26px;max-width:1180px;width:100%;margin-top:18px;padding-left:12px;padding-right:12px;box-sizing:border-box}

.card{background:linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));border-radius:18px;padding:22px 22px 28px;color:var(--accent);box-shadow:0 10px 40px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.02);border:1px solid rgba(255,255,255,0.03)}
.card.featured{transform:translateY(-16px);padding:26px;border-radius:22px;background:linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.008));box-shadow:0 20px 60px rgba(0,0,0,0.7), 0 2px 0 rgba(255,255,255,0.02) inset}

.card-top{border-bottom:1px solid rgba(255,255,255,0.03);padding-bottom:18px;margin-bottom:14px}
.badge{width:18px;height:18px;border-radius:50%;border:4px solid rgba(255,255,255,0.06);box-shadow:inset 0 2px 0 rgba(255,255,255,0.06);margin-bottom:10px}
.card h3{margin:0;font-size:18px}
.muted{color:var(--muted);font-size:13px;margin:6px 0 10px}
.price{font-size:36px;font-weight:700;margin:10px 0}
.price .per{font-size:12px;color:var(--muted);font-weight:500;margin-left:6px}
.price .dollar{font-size:18px;margin-right:6px}

.cta{display:inline-block;background:linear-gradient(180deg,#0b0b0b,#070707);color:var(--muted);border-radius:8px;padding:10px 26px;border:1px solid rgba(255,255,255,0.03);box-shadow:inset 0 1px 0 rgba(255,255,255,0.02);cursor:pointer}
.cta.primary{background:linear-gradient(180deg,#fff,#dcdcdc);color:#111;font-weight:700;padding:12px 28px;border-radius:12px}

.features{list-style:none;padding:0;margin:4px 0 0;color:var(--muted);font-size:13px}
.features li{padding:8px 0;border-top:1px dashed rgba(255,255,255,0.02);display:flex;align-items:flex-start}
.features li:before{content:"";flex:0 0 18px;height:18px;margin-right:12px;border-radius:50%;background:radial-gradient(circle at 30% 30%, rgba(255,255,255,0.8), rgba(255,255,255,0.2)), linear-gradient(180deg,#222,#000);box-shadow:inset 0 1px 0 rgba(255,255,255,0.06);opacity:0.9}

@media (max-width:900px){
  .cards{grid-template-columns:1fr;max-width:720px}
  .spotlight{width:700px}
  .title{font-size:36px}
}

@media (min-width:1400px){
  .title{font-size:64px}
  .spotlight{width:1200px;height:420px}
}
