/* Main Stylesheet for Demo Day Dot Cloud Theme */

:root {
  --primary-color: #22979F;
  --primary-dark: #125156;
  --primary-light: #44B9C2;
  --bg-gradient: linear-gradient(135deg, #1a747b 0%, #2aa5ae 100%);
  --accent-gold: #FFB800;
  --text-white: #ffffff;
  --text-muted: #cce7eb;
  --glass-bg: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-blur: blur(12px);
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Global resets & scroll snapping */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: var(--font-body);
  background-color: var(--primary-color);
  color: var(--text-white);
  overflow: hidden;
}

.home-snap-container {
  height: 100vh;
  width: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.snap-section {
  scroll-snap-align: start;
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 60px 20px;
}

/* Transparent Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
  padding: 24px 40px;
}

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

.logo {
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-headings);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.login-button {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-white);
  text-decoration: none;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.login-button:hover {
  background: var(--text-white);
  color: var(--primary-dark);
  border-color: var(--text-white);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* SECTION 1: HERO */
.hero-section {
  background: var(--bg-gradient);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, rgba(15, 76, 82, 0.4) 100%);
  pointer-events: none;
}

/* 3D Ring Layout - Desktop */
.ring-desktop-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 100%;
  max-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.canvas-container-outer {
  position: relative;
  width: 680px;
  height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#canvas-container {
  width: 100%;
  height: 100%;
}

.inner-ring-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 200px;
  pointer-events: none;
  z-index: 10;
}

.inner-ring-content h1 {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.inner-ring-content p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-muted);
}

/* Absolute Labels around the ring */
.ring-label {
  position: absolute;
  z-index: 20;
  font-family: var(--font-headings);
  color: rgba(255, 255, 255, 0.85);
  pointer-events: none;
  transition: all 0.3s ease;
}

.ring-label .label-title {
  font-size: 20px;
  font-weight: 700;
  display: block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.ring-label .label-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  display: block;
  line-height: 1.3;
  margin-top: 4px;
}

.ring-label .label-hint {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  background: rgba(255, 184, 0, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 6px;
  border: 1px solid rgba(255, 184, 0, 0.2);
}

/* Label Positions */
.label-top {
  top: 80px; /* Shifted up outward */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.label-right {
  right: 90px; /* Shifted further right outward */
  top: 44%;
  transform: translateY(-50%);
  text-align: left;
}

.label-bottom-right {
  bottom: 70px;  /* Shifted further down outward */
  right: 140px;  /* Shifted further right outward */
  text-align: right; /* Restored right alignment for right column */
}

.label-bottom-left {
  bottom: 100px;  /* Shifted closer */
  left: 220px;   /* Shifted closer to the bottom-left sector */
  text-align: left; /* Restored left alignment for left column */
}

.label-left {
  left: 90px;  /* Shifted further left outward */
  top: 44%;
  transform: translateY(-50%);
  text-align: right;
  cursor: pointer;
  pointer-events: auto; /* Active label is interactive */
}

/* Hover/active styles for active label */
.label-left:hover {
  color: var(--text-white);
  transform: translateY(-50%) scale(1.05);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Mobile Wrapper (Hidden by default) */
.ring-mobile-wrapper {
  display: none;
  width: 100%;
  max-width: 480px;
  flex-direction: column;
  gap: 30px;
  padding: 0 10px;
}

.mobile-hero-header {
  text-align: center;
}

.mobile-hero-header h1 {
  font-family: var(--font-headings);
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 10px;
}

.mobile-hero-header p {
  font-size: 16px;
  color: var(--text-muted);
}

.mobile-button-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-btn {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-white);
  text-align: left;
}

.mobile-btn .btn-text {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
}

.mobile-btn .btn-action {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-gold);
}

.mobile-btn.active-btn {
  border-color: var(--primary-light);
  box-shadow: 0 4px 20px rgba(68, 185, 194, 0.2);
}

.mobile-btn.active-btn:active {
  transform: scale(0.98);
}

.mobile-btn.disabled-btn {
  opacity: 0.55;
  cursor: not-allowed;
}

.mobile-btn .btn-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  z-index: 20;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--text-white);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 1.6s infinite;
}

.scroll-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
}

@keyframes scrollAnim {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 10px); }
}


/* SECTION 2: ASPIRING ENTREPRENEURS */
.solo-section {
  background-color: #f7f9fa; /* Light grey background from screenshot */
  color: #1f2937; /* Dark gray body text */
}

.solo-split-container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  z-index: 10;
  padding: 0 60px;
}

.solo-left-col {
  flex: 0 0 32%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.solo-heading {
  font-family: var(--font-headings);
  font-size: 52px;
  font-weight: 800;
  color: #22979F; /* Teal heading color */
  line-height: 1.1;
  margin: 0 0 10px 0;
  letter-spacing: -1.5px;
}

.solo-canvas-outer {
  width: 100%;
  max-width: 440px;
  height: 440px;
  position: relative;
}

#canvas-container-solo {
  width: 100%;
  height: 100%;
}

.solo-right-col {
  flex: 0 0 64%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  text-align: left;
}

.solo-point-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.point-header {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: #22979F; /* Teal accent */
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.point-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

.point-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.point-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.list-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}

.list-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: #4b5563;
  line-height: 1.4;
}

/* CTA Capsule */
.solo-cta-capsule {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(34, 151, 159, 0.08);
  border: 1px solid rgba(34, 151, 159, 0.2);
  padding: 20px 30px;
  border-radius: 16px;
  margin-top: 10px;
}

.cta-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta-title {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: #22979F;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  color: #4b5563;
}

.btn-signup-free {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  background-color: #22979F; /* Teal theme button */
  color: var(--text-white);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(34, 151, 159, 0.2);
  display: inline-block;
}

.btn-signup-free:hover {
  background-color: #1a747b;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 151, 159, 0.3);
}


/* SECTION 3: PRICING */
.pricing-section {
  background: var(--bg-gradient); /* Teal background matching hero */
  color: var(--text-white);
}

.pricing-split-container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  z-index: 10;
  padding: 0 60px;
}

.pricing-left-col {
  flex: 0 0 32%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-heading {
  font-family: var(--font-headings);
  font-size: 52px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin: 0 0 10px 0;
  letter-spacing: -1.5px;
}

.pricing-canvas-outer {
  width: 100%;
  max-width: 440px;
  height: 440px;
  position: relative;
}

#canvas-container-pricing {
  width: 100%;
  height: 100%;
}

.pricing-right-col {
  flex: 0 0 64%;
  display: flex;
  justify-content: flex-end;
}

.pricing-card-box {
  background: #ffffff;
  color: #1f2937;
  border-radius: 24px;
  padding: 50px 45px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: visible; /* To allow the rotated stamp sticker to extend outwards */
}

.pricing-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
  position: relative;
}

.pricing-col:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding-right: 40px;
}

.col-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-name {
  font-family: var(--font-headings);
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.plan-price {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.price-duration {
  font-family: var(--font-body);
  font-size: 14px;
  color: #4b5563;
}

.price-amount {
  font-family: var(--font-headings);
  font-size: 32px;
  font-weight: 800;
  color: #111827;
}

.price-vat {
  font-family: var(--font-body);
  font-size: 12px;
  color: #6b7280;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
  margin-top: 10px;
}

.plan-features li {
  font-family: var(--font-body);
  font-size: 14px;
  color: #4b5563;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.plan-features .check-icon {
  color: #22979F; /* Teal theme color for checks */
  font-weight: 800;
  font-size: 15px;
}

.plan-features .plus-feature {
  color: #22979F;
}

.plan-features .plus-icon {
  color: #22979F;
  font-weight: 800;
  font-size: 15px;
}

.col-action {
  margin-top: 15px;
}

.btn-pricing-free {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  background-color: #f3f4f6;
  color: #111827;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: underline;
  transition: all 0.3s ease;
  border: 1px solid #d1d5db;
  display: inline-block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.btn-pricing-free:hover {
  background-color: #e5e7eb;
  border-color: #9ca3af;
  text-decoration: underline;
}

/* Soon badge paper strip sticker overlay */
.soon-badge-sticker {
  position: absolute;
  top: 220px;
  right: -30px;
  background-color: #f6edd0; /* Warm beige */
  color: #634d19; /* Dark brown text */
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 800;
  padding: 8px 26px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transform: rotate(10deg);
  z-index: 10;
  border: 1px dashed rgba(99, 77, 25, 0.3);
  pointer-events: none;
  white-space: nowrap;
}

/* Global Footer */
.global-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 100;
}


/* RESPONSIVE MEDIA QUERIES */

/* For smaller screens and tablets */
@media (max-width: 992px) {
  .ring-desktop-wrapper {
    max-width: 800px;
  }
  
  .canvas-container-outer {
    width: 480px;
    height: 480px;
  }
  
  .inner-ring-content h1 {
    font-size: 26px;
  }
  
  .inner-ring-content p {
    font-size: 11px;
  }
  
  .ring-label .label-title {
    font-size: 16px;
  }
  
  .ring-label .label-subtitle {
    font-size: 11px;
  }
  
  .label-top { top: 20px; }
  .label-right { right: 20px; }
  .label-bottom-right { bottom: 30px; right: 40px; }
  .label-bottom-left { bottom: 40px; left: 40px; }
  .label-left { left: 20px; }
  
  .solo-split-container {
    gap: 30px;
    padding: 0 20px;
  }
  
  .solo-heading {
    font-size: 40px;
  }
  
  .solo-canvas-outer {
    max-width: 300px;
    height: 300px;
  }

  /* Section 3 tablet pricing overrides */
  .pricing-split-container {
    gap: 30px;
    padding: 0 20px;
  }
  
  .pricing-heading {
    font-size: 40px;
  }
  
  .pricing-canvas-outer {
    max-width: 300px;
    height: 300px;
  }
  
  .pricing-card-box {
    padding: 24px 20px;
    gap: 16px;
  }
  
  .pricing-col:not(:last-child) {
    padding-right: 16px;
  }
  
  .soon-badge-sticker {
    top: 170px;
    right: -15px;
    font-size: 11px;
    padding: 4px 14px;
  }
}

/* Mobile Devices breakpoint (hides 3D, shows button approach) */
@media (max-width: 768px) {
  .ring-desktop-wrapper {
    display: none;
  }
  
  .ring-mobile-wrapper {
    display: flex;
  }
  
  .site-header {
    padding: 16px 20px;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .login-button {
    padding: 6px 16px;
    font-size: 13px;
  }
  
  .scroll-indicator {
    bottom: 20px;
  }
  
  /* Section 2 responsive */
  .snap-section {
    height: auto;
    min-height: 100vh;
    scroll-snap-align: none; /* Disable snap on mobile for better scrolling */
    padding: 80px 20px 60px 20px;
  }
  
  .home-snap-container {
    scroll-snap-type: none; /* Disable scroll-snap globally on mobile */
    overflow-y: auto;
  }
  
  /* Section 2 responsive split layout */
  .solo-split-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 10px;
  }
  
  .solo-left-col, .solo-right-col {
    flex: 0 0 100%;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  
  .solo-heading {
    text-align: center;
    font-size: 38px;
  }
  
  .point-header {
    justify-content: center;
  }
  
  .point-desc {
    text-align: center;
  }
  
  .point-list li {
    align-items: center;
    text-align: center;
  }
  
  .solo-cta-capsule {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }
  
  .cta-left {
    align-items: center;
  }
  
  .btn-signup-free {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
  
  /* Section 3 responsive pricing layout */
  .pricing-split-container {
    flex-direction: column;
    gap: 40px;
    padding: 0 10px;
  }
  
  .pricing-left-col, .pricing-right-col {
    flex: 0 0 100%;
    width: 100%;
    align-items: center;
    text-align: center;
  }
  
  .pricing-heading {
    text-align: center;
    font-size: 38px;
  }
  
  .pricing-card-box {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }
  
  .pricing-col {
    width: 100%;
  }
  
  .pricing-col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 0;
    padding-bottom: 24px;
  }
  
  .col-header, .plan-features {
    align-items: center;
    text-align: center;
  }
  
  .plan-features li {
    justify-content: center;
  }
  
  .soon-badge-sticker {
    top: auto;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%) rotate(5deg);
  }
}
