html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

.home-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: rgba(26, 31, 46, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.home-navbar-logo {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.home-navbar-logo-img {
  height: 16px;
  width: auto;
}

.home-navbar-buttons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.home-navbar-btn {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Plain text link — used for Pricing and Sign In */
.home-navbar-btn--link {
  background: transparent;
  color: #9ca3af;
}

.home-navbar-btn--link:hover {
  color: #f3f4f6;
}

/* Green CTA button — Sign Up */
.home-navbar-btn--primary {
  background: #cbe724;
  color: #1f2937;
  font-weight: 500;
}

.home-navbar-btn--primary:hover {
  background: #b5cf1f;
}

/* VideoBannerSection.css - Fullscreen Video Background with Container Pattern */

.video-banner-section {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: #000;
}

/* Video background */
.video-banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: overlay;
  z-index: 2;
}

/* Content wrapper - centers content vertically */
.video-banner-content-wrapper {
  position: relative;
  z-index: 3;
  flex: 1 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

/* Container pattern from claude.md */
.video-banner-content-wrapper .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.video-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-banner-title {
  font-family: "Rubik", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 110%;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

.video-banner-title--highlight {
  color: #cbe724;
}

.video-banner-subtitle {
  font-family: "Rubik", sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: #ffffff;
  line-height: 110%;
  margin: 0 0 40px 0;
  max-width: 100%;
}

.video-banner-subtitle strong {
  font-weight: 500;
  color: #cbe724;
}

/* CTA buttons */
.video-banner-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}

.video-banner-button {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 16px 48px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.video-banner-button--primary {
  background-color: #cbe724;
  color: #1f2937;
}

.video-banner-button--secondary {
  background-color: #1f2937;
  color: #cbe724;
}

.video-banner-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .video-banner-content {
    padding: 0 16px;
    align-items: flex-start;
    text-align: left;
  }

  .video-banner-title {
    font-size: 28px;
  }

  .video-banner-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .video-banner-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .video-banner-button {
    width: 100%;
    max-width: 100%;
  }
}

.section-press {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 64px auto;
  padding: 0 20px;
}

.section-press-title {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-size: 48px;
  font-weight: 800;
  color: #1f2937;
  text-align: center;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.press-logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  width: 100%;
  max-width: 800px;
}

.press-logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.press-logo-item:hover {
  opacity: 0.8;
}

.press-logo-image {
  max-width: 200px;
  max-height: 80px;
  object-fit: contain;
  border-radius: 10px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .section-press {
    margin: 32px;
    padding: 0;
    align-items: flex-start;
  }
  
  .section-press-title {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: left;
  }
  
  .press-logos-container {
    gap: 32px;
    justify-content: flex-start;
  }
  
  .press-logo-image {
    max-width: 150px;
    max-height: 60px;
  }
} 
/* ============================================
   SECTION MODELS CAROUSEL - HORIZONTAL
   ============================================ */

.section-models-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 64px auto 64px;
}

.section-models-carousel__wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
}

/* This creates the infinite horizontal scrolling effect */
.section-models-carousel__track {
  display: flex;
  gap: 60px;
  will-change: transform;
}

/* Each model item contains logo + name */
.section-models-carousel__item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.section-models-carousel__logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.section-models-carousel__name {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #9ca3af;
  white-space: nowrap;
}

/* ============================================
   MOBILE RESPONSIVENESS
   ============================================ */

@media (max-width: 768px) {
  .section-models-carousel {
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .section-models-carousel__track {
    gap: 40px;
  }

  .section-models-carousel__logo {
    width: 28px;
    height: 28px;
  }

  .section-models-carousel__name {
    font-size: 16px;
  }
}

/* ============================================
   SECTION BENEFITS - 3 COLUMN GRID
   ============================================ */

.section-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-top: 0;
  padding: 0;
}

.section-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px;
  gap: 60px;
  width: 100%;
  justify-items: center;
}

.section-benefits__item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
}

.section-benefits__icon {
  font-size: 24px;
  color: #cbe724;
  flex-shrink: 0;
  margin-top: 4px;
}

.section-benefits__text {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
}

/* ============================================
   MOBILE RESPONSIVENESS
   ============================================ */

@media (max-width: 768px) {
  .section-benefits {
    margin-top: 12px;
    padding: 0 16px;
  }

  .section-benefits__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: start;
  }

  .section-benefits__item {
    gap: 16px;
  }

  .section-benefits__icon {
    font-size: 20px;
  }

  .section-benefits__text {
    font-size: 16px;
  }
}

.section-showcase {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  background-color: #0f1419;
  padding: 80px 0;
}

.section-showcase-title {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-showcase-subtitle {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  gap: 24px;
  width: 100%;
  margin-bottom: 48px;
}

.showcase-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #1f2937;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  /* Ensure container maintains size during video loading with <source> tags on iOS */
  contain: layout style;
}

.showcase-video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.showcase-video-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #121820;
  z-index: 1;
}

.showcase-video-loading-text {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  color: #ffffff;
}

.showcase-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-select: none;
          user-select: none;
  /* pointer-events: none; */ /* disables any click events on the video */
  -webkit-user-drag: none;
  /* Fix for iOS Safari when using <source> tags */
  display: block;
  transform: translateZ(0);
}

.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.video-play-icon {
  font-size: 36px;
  color: #ffffff;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.showcase-video-container:hover .video-play-icon {
  opacity: 0.8;
}

.showcase-load-more {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  background-color: #cbe724;
  border: none;
  border-radius: 10px;
  padding: 16px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: none; /* Hidden but not deleted */
}

.showcase-load-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .section-showcase {
    padding: 48px 0;
  }
  
  .section-showcase-title {
    align-self: flex-start;
    font-size: 32px;
    text-align: left;
    margin-bottom: 16px;
  }

  .section-showcase-subtitle {
    font-size: 14px;
    text-align: left;
    align-self: flex-start;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 32px;
  }
  
  .showcase-grid {
    /* Use flexbox instead of grid on mobile for better iOS compatibility */
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
  }
  
  .showcase-load-more {
    width: 100%;
    padding: 14px 20px;
  }
  
  /* iOS Safari specific fix for video elements with <source> tags */
  .showcase-video {
    /* Force proper video sizing on iOS */
    transform: translate3d(0, 0, 0);
    /* Prevent layout shifts during video loading */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  
  /* Fix for iOS Safari flexbox item alignment */
  .showcase-video-container {
    /* Ensure proper flex item behavior */
    flex-shrink: 0;
    /* Prevent overflow issues */
    min-height: 0;
    min-width: 0;
    /* Force proper positioning */
    position: relative;
    z-index: 1;
  }
}
.section-features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  height: auto;
  margin: 0 auto 0 auto;
  padding-top: 40px;
}

.section-features-title {
  font-family: 'Rubik', sans-serif;
  font-style: normal;
  font-size: 60px;
  font-weight: 800;
  color: #f3f4f6;
  text-align: center;
  margin-bottom: 32px;
  text-transform: uppercase;
  white-space: pre-line;
}

.section-features-statement {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  color: #9ca3af;
  line-height: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 32px auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 24px;
  gap: 24px;
  width: 100%;
  padding: 0 20px;
}

.feature-card {
  padding: 32px;
  border-radius: 8px;
  background-color: #1f2937;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.icon-wrapper {
  margin-bottom: 16px;
}

.card-icon {
  font-size: 32px;
  color: #cbe724;
}

.card-title {
  font-family: 'Rubik', sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.card-description {
  font-family: 'Rubik', sans-serif;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: #9ca3af;
}

/* Download card specific styles */
.download-card {
  margin-top: 24px;
  width: calc(100% - 64px);
  padding: 24px 32px;
}

.download-card-content {
  display: flex;
  align-items: center;
}

.download-card .icon-wrapper {
  margin-bottom: 0;
  margin-right: 24px;
  flex-shrink: 0;
}

.download-text {
  flex-grow: 1;
}

.download-text .card-title,
.download-text .card-description {
  margin-bottom: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .section-features {
    margin-top: 0;
    padding-top: 40px;
    width: 100%;
    margin-bottom: 0;
  }

  .section-features-title {
    text-align: left;
    font-size: 32px;
    margin-bottom: 16px;
  }

  .section-features-statement {
    font-size: 14px;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 16px;
    padding: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .feature-card {
    padding: 24px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-description {
    font-size: 14px;
    line-height: 20px;
  }

  /* Make download card look like others on mobile */
  .download-text {
    margin-top: -20px;
  }

  .download-card {
    width: calc(100% - 48px);
    padding: 24px;
    margin-top: 16px;
  }

  .download-card-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-card .icon-wrapper {
    margin-right: 0;
    margin-bottom: 16px;
  }

  .download-text .card-title {
    margin-bottom: 12px;
  }
}

/* --- Static row of grouped icons --- */
.features-icons-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
  margin: 0 auto 40px auto;
  max-width: 1100px;
}

.features-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.features-group-label {
  font-family: 'Rubik', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.features-group-icons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.features-divider {
  width: 1px;
  min-width: 1px;
  height: 56px;
  background-color: #2d3748;
}

.features-icon-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* opacity: 0.7; */
  transition:
    opacity 0.3s,
    transform 0.3s;
}

.features-icon-btn--active {
  opacity: 1;
  transform: scale(1.2);
}

.features-icon {
  font-size: 32px;
  color: #9ca3af;
  background: #1a1f2e;
  border-radius: 50%;
  padding: 12px;
  box-shadow: none;
  transition: all 0.3s ease;
  overflow: visible;
}

/* Tooltip shown on icon hover */
.features-icon-btn {
  position: relative;
}

.features-icon-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #1f2937;
  color: #f3f4f6;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.features-icon-btn:hover .features-icon-tooltip {
  opacity: 1;
}

.features-icon-btn--active .features-icon {
  color: #1f2937;
  background: #cbe724;
  box-shadow:
    0 0 12px rgba(85, 85, 83, 0.4),
    0 0 20px rgba(203, 231, 36, 0.2);
}

/* Progress bar under active icon during auto-cycle */
.features-icon-progress {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #1a1f2e;
  border-radius: 2px;
  overflow: hidden;
}

.features-icon-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: #cbe724;
  border-radius: 2px;
  animation: progressFill 5s linear forwards;
}

@keyframes progressFill {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* --- Selected feature info --- */
.features-selected-info {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 24px auto;
  text-align: center;
}

.features-selected-title {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #cbe724;
  display: inline;
  margin: 0;
}

.features-selected-title::after {
  content: ' - ';
  font-weight: 400;
  color: #9ca3af;
}

.features-selected-description {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #6b7280;
  display: inline;
  margin: 0;
}

/* --- Screenshot/preview container --- */
.features-screenshot-demo {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 970 / 647;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Ambient glow on left and right sides of the iPad screenshot */
.features-screenshot-glow {
  position: absolute;
  top: 10%;
  width: 35%;
  height: 80%;
  z-index: 0;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  background: rgba(203, 231, 36, 0.3);
}

.features-screenshot-glow--left {
  left: -5%;
  animation: glowDriftLeft 20s ease-in-out infinite;
}

.features-screenshot-glow--right {
  right: -5%;
  animation: glowDriftRight 25s ease-in-out infinite;
}

@keyframes glowDriftLeft {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-30px, -40px) scale(1.1);
  }
  50% {
    transform: translate(20px, 30px) scale(0.95);
  }
  75% {
    transform: translate(-15px, 20px) scale(1.05);
  }
}

@keyframes glowDriftRight {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(35px, 25px) scale(1.08);
  }
  50% {
    transform: translate(-25px, -35px) scale(0.92);
  }
  75% {
    transform: translate(18px, -20px) scale(1.12);
  }
}

.features-screenshot-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  color: #9ca3af;
  background: transparent;
  z-index: 1;
}

.features-screenshot {
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}

.features-screenshot--loaded {
  opacity: 1;
}

/* Remove old scroll/fade styles */
.features-icons-scroll,
.features-icons-list,
.features-icons-fade,
.features-icons-fade--left,
.features-icons-fade--right,
.features-icons-list--center {
  display: none !important;
}

@media (max-width: 768px) {
  .features-icons-row {
    gap: 12px;
    width: 100%;
    margin: 0 auto 8px auto;
    padding: 8px 0;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .features-icons-row::-webkit-scrollbar {
    display: none;
  }

  .features-group {
    flex: 0 0 auto;
    min-width: -webkit-fit-content;
    min-width: fit-content;
    align-items: flex-start;
  }

  .features-group-label {
    font-size: 9px;
    white-space: nowrap;
    align-self: flex-start;
  }

  .features-group-icons {
    gap: 4px;
    flex-wrap: nowrap;
  }

  .features-divider {
    height: 48px;
    flex-shrink: 0;
    margin: 0 4px;
  }

  .features-icon-btn {
    padding: 8px;
    flex-shrink: 0;
  }

  .features-icon {
    font-size: 24px;
    padding: 10px;
  }

  .features-icon-btn--active {
    transform: scale(1.1);
  }

  .features-icon-tooltip {
    display: none;
  }

  .features-selected-info {
    margin-bottom: 16px;
  }

  .features-selected-title {
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    display: block;
  }

  .features-selected-title::after {
    content: '';
  }

  .features-selected-description {
    font-size: 14px;
    padding: 0;
    text-align: left;
    display: block;
    margin-top: 4px;
  }

  .features-screenshot-demo {
    padding: 0 16px;
  }

  .features-screenshot-loading {
    font-size: 14px;
  }
}

/* Main section container */
.section-previz {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 64px auto;
}

/* Section title styling */
.section-previz-title {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-size: 48px;
  font-weight: 800;
  color: #1f2937;
  text-align: center;
  margin-bottom: 48px;
  text-transform: uppercase;
}

/* Video container with classy styling - 16:9 aspect ratio */
.previz-video-demo {
  width: 100%;
  max-width: 1100px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  margin: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #f3f4f6;
  overflow: hidden;
  cursor: pointer;
}

/* Loading state overlay */
.previz-video-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  color: #6b7280;
  background: #f3f4f6;
  z-index: 1;
}

/* Video element styling */
.previz-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 10px;
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}

/* Loaded video state */
.previz-video--loaded {
  opacity: 1;
}

/* Play button overlay */
.previz-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.previz-play-icon {
  font-size: 36px;
  color: #ffffff;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.previz-video-demo:hover .previz-play-icon {
  opacity: 0.8;
}

.previz-unmute-text {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  opacity: 0.1;
  transition: opacity 0.3s;
  text-align: center;
  padding: 12px 24px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
}

.previz-video-demo:hover .previz-unmute-text {
  opacity: 0.5;
}

/* Carousel navigation arrows */
.previz-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 18px;
}

.previz-carousel__nav:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.previz-carousel__nav:active {
  transform: translateY(-50%) scale(0.95);
}

.previz-carousel__nav--prev {
  left: 20px;
}

.previz-carousel__nav--next {
  right: 20px;
}

/* Carousel dots navigation */
.previz-carousel__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.previz-carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #1f2937;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  opacity: 0.6;
}

.previz-carousel__dot:hover {
  opacity: 0.9;
  transform: scale(1.2);
}

.previz-carousel__dot--active {
  background-color: #cbe724;
  width: 32px;
  border-radius: 6px;
  opacity: 1;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .section-previz {
    margin: 32px auto;
    width: 100%;
  }

  .section-previz-title {
    font-size: 32px;
    margin-bottom: 24px;
    text-align: left;
    align-self: flex-start;
  }

  .previz-video-demo {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
  }

  .previz-video-loading {
    font-size: 14px;
  }

  .previz-video {
    border-radius: 8px;
  }

  /* Smaller carousel controls on mobile */
  .previz-carousel__nav {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .previz-carousel__nav--prev {
    left: 10px;
  }

  .previz-carousel__nav--next {
    right: 10px;
  }

  .previz-carousel__dots {
    bottom: 10px;
    gap: 8px;
  }

  .previz-carousel__dot {
    width: 8px;
    height: 8px;
  }

  .previz-carousel__dot--active {
    width: 24px;
  }
} 
.section-three {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 64px auto;
  background-color: transparent;
}

.pricing-title {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-size: 48px;
  font-weight: 800;
  color: #f3f4f6;
  text-align: center;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* Subtitle + explore pricing button on the same line */
.pricing-subtitle-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-subtitle {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  color: #9ca3af;
  margin: 0;
}

.pricing-container {
  width: 100%;
  max-width: 1200px;
  padding: 0 1rem;
}

.pricing-cards-wrapper {
  display: flex;
  gap: 24px;
  justify-content: center;
  /* flex-wrap: wrap; Allows cards to wrap on smaller screens */
}

.pricing-card {
  background-color: #1a1f2e;
  border-radius: 16px;
  padding: 24px;
  border: 4px solid transparent;
  flex: 1 1;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .pricing-card:hover {
    border-color: #cbe724;
    box-shadow: inset 0 0 8px #cbe724;
  }
}

.pricing-card.highlighted {
  border-color: #cbe724;
  box-shadow: inset 0 0 8px #cbe724;
}

.plan-header {
  text-align: left;
  margin-bottom: 24px;
}

.plan-name {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 600;
  color: #cbe724;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.early-bird-badge {
  border: 1px solid #cbe724;
  color: #cbe724;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  vertical-align: middle;
}

.price-container {
  display: flex;
  align-items: flex-end;
  justify-content: left;
  gap: 8px;
}

.original-price {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  color: #ffffff;
  -webkit-text-decoration: line-through solid #ffffff 2px;
          text-decoration: line-through solid #ffffff 2px;
}

.discounted-price {
  color: #cbe724;
}

/* This forces the euro sign to use a system font with proper two-bar glyph (Rubik renders it as single-bar epsilon) */
.euro-sign {
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.price {
  font-family: "Rubik", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: -6px;
}

.period {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-family: "Rubik", sans-serif;
}

.period-label {
  font-size: 16px;
  color: #9ca3af;
}

.period-billing {
  font-size: 13px;
  color: #6b7280;
}

.price-divider {
  border: none;
  border-top: 1px solid rgba(203, 231, 36, 0.2);
  margin: 16px 0;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.features-list li {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  color: #9ca3af;
  margin-bottom: 16px;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.features-list li .feature-check-icon {
  color: #cbe724;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-subtext {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: #9ca3af;
}

.feature-highlight {
  color: #cbe724;
  font-weight: 400;
}

.concurrent-note {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  color: #9ca3af;
  text-align: left;
  margin-bottom: 16px;
  font-style: italic;
}

.plan-context {
  margin: 24px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(203, 231, 36, 0.2);
}

.plan-context-text {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  color: #cbe724;
  font-weight: 600;
  margin-bottom: 8px;
}

.plan-capacity-text {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  color: #9ca3af;
  font-style: italic;
}

.subscribe-button {
  width: 100%;
  background-color: #cbe724;
  color: #1f2937;
  border: none;
  border-radius: 10px;
  padding: 16px;
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(172, 242, 33, 0.2);
}

.price-lock-note {
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  color: #9ca3af;
  text-align: left;
  margin-top: 12px;
  margin-bottom: 0;
  font-style: italic;
}

/* Explore pricing link — inline text link to /pricing page */
.explore-pricing-link {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #f3f4f6;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.explore-pricing-link:hover {
  color: #cbe724;
}

.best-value-badge {
  position: absolute;
  top: 16px;
  left: 24px;
  border: 1px solid;
  color: #cbe724;
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.beta-badge {
  position: absolute;
  top: 16px;
  left: 24px;
  border: 1px solid;
  color: red;
  font-family: "Rubik", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.soon-badge {
  background-color: #cbe724;
  color: #1f2937;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 4px;
  border-radius: 4px;
  margin-left: 8px;
}

.pricing-card {
  position: relative; /* Added for absolute positioning of badges */
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-three {
    margin-top: 0;
    width: 100%;
  }

  .pricing-title {
    align-self: flex-start;
    font-size: 32px;
    text-align: left;
    margin-bottom: 16px;
  }

  .pricing-subtitle-row {
    flex-wrap: wrap;
    margin-bottom: 32px;
    align-self: flex-start;
  }

  .pricing-subtitle {
    font-size: 14px;
    text-align: left;
  }

  .pricing-container {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pricing-container::-webkit-scrollbar {
    display: none;
  }

  .pricing-cards-wrapper {
    flex-wrap: wrap;
  }

  .pricing-card {
    flex: auto;
    width: 100%
  }

  .plan-header {
    text-align: left;
  }

  .price-container {
    justify-content: left;
  }

  .features-list li {
    padding: 0;
  }

  .best-value-badge,
  .beta-badge {
    font-size: 10px;
    padding: 3px 6px;
  }
}

.section-four {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  background-color: #0f1419;
  padding: 80px 0;
}

.section-four-title {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 110%;
  text-transform: uppercase;
}

.section-four-faq-container {
  background-color: transparent;
  border-radius: 10px;
  padding: 0px 16px;
  width: 100%;
  max-width: 800px;
  margin-top: 32px; /* 64px */
}

.section-four-faq-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: border-color 0.3s ease;
  background-color: rgba(255, 255, 255, 0.05);
}

.section-four-faq-item:hover {
  border-color: #cbe724;
}

.section-four-faq-text {
  font-family: "Rubik", sans-serif;
  font-weight: 500;
  color: #ffffff;
}

.section-four-faq-number {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #cbe724;
  margin-right: 16px;
}

.section-four-faq-answer {
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #9ca3af;
  margin-left: 40px;
  margin-right: 40px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.section-four-faq-item.open .section-four-faq-answer {
  max-height: 300px;
  padding-top: 16px;
}

/* MOBILE */
@media (max-width: 768px) {
  .section-four {
    padding: 48px 0;
    width: 100%;
  }

  .section-four-title {
    font-size: 32px;
    text-align: left;
    padding: 0;
    margin-top: 0;
    margin-bottom: 32px;
  }

  .section-four-subtitle {
    font-size: 18px;
    text-align: left;
    padding: 0 16px;
    margin-bottom: 32px;
  }

  .section-four-faq-container {
    margin-top: 32px;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    width: 100%;
    border-radius: 10px;
  }

  .section-four-faq-question {
    font-size: 16px;
  }

  .section-four-faq-number {
    font-size: 16px;
  }

  .section-four-faq-item.open .section-four-faq-answer {
    font-size: 14px;
    margin-left: 0;
  }
}

.section-five {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin-top: 64px;
}

.section-five-title {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #1f2937;
  line-height: 110%;
  text-transform: uppercase;
}

.section-five-subtitle {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  color: #1f2937;
  line-height: 110%;
  padding: 0 40px;
  margin-top: -8px;
}

.sf-options-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-radius: 10px;
  margin-top: 64px;
  margin-bottom: 32px;
}

.sf-option {
  flex: 1 1;
  display: flex;
  align-items: flex-start;
  text-align: left;
}

.sf-option-number-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 150px;
  height: 160px;
  border-radius: 10px;
  margin-bottom: 0;
  margin-right: 24px;
}

.sf-option-content {
  flex-grow: 1;
}

.sf-option-gray .sf-option-number-container {
  background-color: #1f2937;
}

.sf-option-accent .sf-option-number-container {
  background-color: #cbe724;
}

.sf-option-number {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-size: 50px;
  font-weight: 700;
  margin: 0;
  margin-top: 24px;
}

.sf-option-number-text {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-size: 30px;
  font-weight: 700;
  margin-top: 16px;
}

.sf-option-title {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.sf-option-description {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  margin-top: 16px;
}

.sf-option-gray .sf-option-number,
.sf-option-gray .sf-option-number-text {
  color: #9ca3af;
}

.sf-option-gray .sf-option-title,
.sf-option-gray .sf-option-description {
  color: #9ca3af;
}

.sf-option-accent .sf-option-number,
.sf-option-accent .sf-option-number-text {
  color: #1f2937;
}

.sf-option-accent .sf-option-title,
.sf-option-accent .sf-option-description {
  color: #1f2937;
}

.sf-buttons {
  display: flex;
  gap: 20px;
  margin-top: 0;
  margin-bottom: 60px;
}

.sf-button {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  border: none;
  background-color: #cbe724;
  border-radius: 10px;
  margin-top: 32px;
  margin-bottom: 0;
  padding: 0 60px;
  height: 50px;
  cursor: pointer;
}

.sf-button.secondary {
  color: #cbe724;
  background-color: #1f2937;
}

.sf-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.sf-button.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.animated-text {
  position: relative;
  display: inline-block;
  color: inherit;
  transition: color 0.4s ease;
  padding: 0 12px;
}

.animated-text::before {
  content: "";
  position: absolute;
  left: -6px;
  right: -6px;
  top: 0;
  bottom: 0;
  border-radius: 10px;
  background-color: #cbe724;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.animated-text.animate::before {
  transform: scaleX(1);
}

.animated-char {
  display: inline-block;
  color: inherit;
  transition: color 0.4s ease;
}

.animated-char.space {
  width: 0.3em;
}

.animated-text.animate .animated-char {
  animation: changeColor 0.2s forwards;
}

@keyframes changeColor {
  from {
    color: inherit;
  }
  to {
    color: #1f2937;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .section-five {
    margin-top: 32px;
    width: 100%;
  }

  .section-five-title {
    font-size: 32px;
    text-align: left;
    padding: 0;
    margin-top: 0;
    margin-bottom: 32px;
  }

  .section-five-subtitle {
    font-size: 18px;
    text-align: left;
    padding: 0;
    margin-bottom: 32px;
    width: 100%;
  }

  .sf-options-container {
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
    padding: 0;
  }

  .sf-option {
    width: 100%;
    padding: 16px;
  }

  .sf-option.sf-option-gray,
  .sf-option.sf-option-accent {
    padding: 0;
  }

  .sf-option-number-container {
    width: 100px;
    height: 140px;
    margin: 0;
  }

  .sf-option-content {
    padding: 0 0 0 16px;
  }

  .sf-option-title {
    margin: 0 0 8px;
  }

  .sf-option-description {
    margin: 0;
  }

  .sf-buttons {
    width: 100%;
    flex-direction: column;
  }

  .sf-button {
    width: 100%;
    height: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 0;
  }

  .sf-button.secondary {
    margin-top: 0;
  }
}

/* SectionCTA - Final CTA before footer */

.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 64px auto;
  padding: 0;
  text-align: center;
}

.section-cta__title {
  font-family: "Rubik", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #f3f4f6;
  line-height: 1.2;
  margin: 0 0 24px 0;
  text-transform: uppercase;
}

.section-cta__subtitle {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #9ca3af;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 0 40px 0;
}

.section-cta__buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}

.section-cta__button {
  font-family: "Rubik", sans-serif;
  font-size: 18px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 16px 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.section-cta__button--primary {
  background-color: #cbe724;
  color: #1f2937;
}

.section-cta__button--secondary {
  background-color: #2d3748;
  color: #cbe724;
}

.section-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .section-cta {
    margin: 48px auto;
    align-items: flex-start;
    text-align: left;
  }

  .section-cta__title {
    font-size: 32px;
  }

  .section-cta__subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .section-cta__buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .section-cta__button {
    width: 100%;
    max-width: 100%;
  }
}

.footer {
  width: 100%;
  background-color: #1a1f2e;
  color: #ffffff;
  padding: 24px 0 24px;
  font-family: "Rubik", sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 0;
  gap: 40px;
}

.footer-section {
  flex: 1 1;
  min-width: 200px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
}

.footer-logo-img {
  height: 20px;
  width: auto;
}

.footer-description {
  color: #9ca3af;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-social-media-icons {
  display: flex;
  margin: -24px 0;
  margin-left: -8px;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  color: #9ca3af; /* temporary */
}

.footer-links a,
.footer-links span {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover,
.footer-links span:hover {
  color: #cbe724;
}

.footer-beta {
  background-color: #cbe724;
  color: #1f2937;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 4px;
  border-radius: 4px;
  margin-top: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(156, 163, 175, 0.2);
  padding: 0 24px 0;
  margin-top: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  color: #9ca3af;
  font-size: 14px;
}

.footer-version {
  color: #6b7280;
  font-size: 12px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 32px;
  }

  .footer-section {
    width: 100%;
  }

  .footer-bottom {
    display: block;
    align-items: flex-start;
  }

  .footer-social-media-icons {
    display: flex;
    margin: -24px 0;
    margin-left: 0;
  }
}

/* Redirect overlay — shown briefly for logged-in users before navigating to projects */
.home-redirect-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0f1419;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: homeRedirectFadeIn 0.3s ease;
}

.home-redirect-overlay__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.home-redirect-overlay__spinner {
    width: 32px;
    height: 32px;
    border: 3px solid #2d3748;
    border-top: 3px solid #cbe724;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.home-redirect-overlay__text {
    font-family: 'Rubik', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #9ca3af;
    margin: 0;
}

@keyframes homeRedirectFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.signin-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background-color: #0f1419;
}

.signin-demo-section {
  background-color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.signin-demo-content {
  max-width: 480px;
  text-align: center;
}

.signin-demo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 16px;
}

.signin-logo-img {
  height: 32px;
  width: auto;
}

.signin-demo-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #9ca3af;
  padding: 0 16px;
  margin: 0 0 16px;
}

.demo-video-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.demo-video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Sign In form side */
.signin-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.signin-form-container {
  width: 100%;
  max-width: 400px;
}

.signin-title {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 600;
  color: #f3f4f6;
  margin: 0 0 32px;
  text-align: center;
}

/* Subtle hint line when joining via invite */
.signin-invite-hint {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #cbe724;
  margin: 0 0 32px;
  text-align: center;
}

.signin-error {
  color: #ef4444;
  font-size: 14px;
  margin-bottom: 16px;
  text-align: center;
}

/* This styles the clickable sign-up link inside the error message */
.signin-error__link {
  color: #cbe724;
  cursor: pointer;
  text-decoration: underline;
  font-weight: 500;
}

.signin-error__link:hover {
  opacity: 0.8;
}

/* Google sign-in button */
.signin-google-btn {
  width: 100%;
  padding: 12px;
  background-color: #1a1f2e;
  border: 1px solid #2d3748;
  border-radius: 8px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #f3f4f6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s ease;
}

.signin-google-btn:hover {
  background-color: #2d3748;
}

.signin-google-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.signin-google-icon {
  flex-shrink: 0;
}

/* "or" divider */
.signin-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.signin-divider__line {
  flex: 1 1;
  height: 1px;
  background-color: #2d3748;
}

.signin-divider__text {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  color: #9ca3af;
  text-transform: lowercase;
}

.signin-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signin__form-group {
  width: 100%;
  margin-bottom: 0;
}

.signin-input {
  width: 100%;
  padding: 12px;
  background-color: #1a1f2e;
  border: 1px solid #2d3748;
  border-radius: 8px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  color: #f3f4f6;
  box-sizing: border-box;
}

.signin-input::placeholder {
  color: #9ca3af;
}

.signin-input:focus {
  outline: none;
  border-color: #cbe724;
}

.signin-submit-btn {
  width: 100%;
  padding: 12px;
  background-color: #cbe724;
  border: none;
  border-radius: 8px;
  color: #1f2937;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0;
}

.signin-submit-btn:hover {
  background-color: #1f2937;
  color: #cbe724;
  transition: all 0.3s ease;
}

.signin-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.signin-forgot-password {
  margin-top: 0;
}

.signin-signup-link,
.signin-forgot-password {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 8px;
  color: #9ca3af;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
}

.signin-signup-link {
  margin-top: 0;
  margin-bottom: 0;
}

.signin-signup-link span,
.signin-forgot-password span {
  font-weight: 500;
  color: #cbe724;
  cursor: pointer;
}

.signin-signup-link span:hover,
.signin-forgot-password span:hover {
  text-decoration: underline;
}

.signin__password-wrapper {
  position: relative;
  width: 100%;
}

.signin__password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.signin__password-toggle:hover {
  color: #cbe724;
}

.signin-reset-success {
  color: #10b981;
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .signin-page {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .signin-demo-section {
    padding: 24px;
  }

  .signin-demo-title {
    font-size: 40px;
  }

  .signin-demo-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .demo-video-container {
    max-width: 380px;
    margin: 0 auto;
  }

  .signin-form-side {
    padding: 24px;
  }

  .signin-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.signup-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background-color: #0f1419;
}

/* Demo Side Styles */
.signup-demo-side {
  background-color: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.demo-content {
  max-width: 480px;
  text-align: center;
}

.signup-demo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 16px;
}

.signup-logo-img {
  height: 32px;
  width: auto;
}

.signup-demo-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #9ca3af;
  padding: 0 16px;
  margin: 0 0 16px;
}

.demo-video-container {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.demo-video {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Form Side Styles */
.signup-form-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.signup-form-container {
  width: 100%;
  max-width: 400px;
}

.signup-title {
  font-family: "Rubik", sans-serif;
  font-style: normal;
  font-size: 32px;
  font-weight: 600;
  color: #f3f4f6;
  margin: 0 0 32px;
  text-align: center;
}

/* Google sign-up button */
.signup-google-btn {
  width: 100%;
  padding: 12px;
  background-color: #1a1f2e;
  border: 1px solid #2d3748;
  border-radius: 8px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #f3f4f6;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s ease;
}

.signup-google-btn:hover {
  background-color: #2d3748;
}

.signup-google-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.signup-google-icon {
  flex-shrink: 0;
}

/* "or" divider */
.signup-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}

.signup-divider__line {
  flex: 1 1;
  height: 1px;
  background-color: #2d3748;
}

.signup-divider__text {
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  color: #9ca3af;
  text-transform: lowercase;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.signup__form-group {
  width: 100%;
  margin-bottom: 0;
}

.signup-input {
  width: 100%;
  padding: 12px;
  background-color: #1a1f2e;
  border: 1px solid #2d3748;
  border-radius: 8px;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  color: #f3f4f6;
  box-sizing: border-box;
}

.signup-input::placeholder {
  color: #9ca3af;
}

.signup-input:focus {
  outline: none;
  border-color: #cbe724;
}

.signup__password-wrapper {
  position: relative;
  width: 100%;
}

.signup__password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

.signup__password-toggle:hover {
  color: #cbe724;
}

.signup-button {
  width: 100%;
  padding: 12px;
  background-color: #cbe724;
  border: none;
  border-radius: 8px;
  color: #1f2937;
  font-family: "Rubik", sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
}

.signup-button:hover {
  background-color: #1f2937;
  color: #cbe724;
  transition: all 0.3s ease;
}

.signup-error {
  color: #ef4444;
  text-align: center;
  margin-bottom: 16px;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
}

.signup-login-link {
  text-align: center;
  margin-top: 24px;
  color: #9ca3af;
  font-family: "Rubik", sans-serif;
  font-size: 14px;
}

/* Subtle hint line when joining via invite */
.signup-invite-hint {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #cbe724;
  margin: 0 0 32px;
  text-align: center;
}

.signin-link {
  color: #cbe724;
  cursor: pointer;
  font-weight: 500;
}

.signin-link:hover {
  text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .signup-page {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .signup-demo-side {
    padding: 24px;
  }

  .signup-demo-title {
    font-size: 36px;
  }

  .signup-demo-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .demo-video-container {
    max-width: 380px;
    margin: 0 auto;
  }

  .signup-form-side {
    padding: 24px;
  }

  .signup-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.legal-page {
  font-family: "Rubik", sans-serif;
  color: #1f2937;
  background-color: #f3f4f6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-page-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  flex: 1 1;
}

.legal-page-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}

.legal-page-updated {
  font-size: 14px;
  color: #6b7280;
  text-align: center;
  margin-bottom: 32px;
}

.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 8px;
}

.legal-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 20px;
}

.legal-section p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.legal-section ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-section a {
  color: #cbe724;
  text-decoration: none;
  transition: -webkit-text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease;
  transition: text-decoration 0.3s ease, -webkit-text-decoration 0.3s ease;
}

.legal-section a:hover {
  text-decoration: underline;
}

.legal-page-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.legal-page-link {
  color: #1f2937;
  background-color: #cbe724;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.legal-page-link:hover {
  background-color: #b3cc1c;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .legal-page-container {
    margin: 20px;
    padding: 24px;
    border-radius: 8px;
  }

  .legal-page-title {
    font-size: 24px;
  }

  .legal-section h2 {
    font-size: 20px;
  }

  .legal-section h3 {
    font-size: 16px;
  }

  .legal-page-navigation {
    flex-direction: column;
    gap: 12px;
  }

  .legal-page-link {
    display: block;
    text-align: center;
  }
}

.about-page {
  font-family: "Rubik", sans-serif;
  color: #f3f4f6;
  background-color: #0f1419;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.about-page__content {
  max-width: 800px;
  width: 100%;
  margin: 40px auto;
  padding: 0 24px;
  flex: 1 1;
}

/* Manifesto */
.about-page__manifesto {
  margin-bottom: 64px;
}

.about-page__manifesto-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 32px;
  padding-bottom: 8px;
  border-bottom: 2px solid #cbe724;
  display: inline-block;
}

.about-page__manifesto-hook {
  font-size: 1.4rem;
  font-weight: 600;
  color: #cbe724;
  margin-bottom: 24px;
}

.about-page__manifesto-beliefs {
  margin-bottom: 24px;
}

.about-page__manifesto-belief {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #9ca3af;
  margin-bottom: 4px;
}

.about-page__manifesto-but {
  font-size: 1.15rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-bottom: 24px;
  margin-top: 8px;
}

.about-page__manifesto-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #9ca3af;
  margin-bottom: 20px;
}

/* Mission quote — stands out from body text */
.about-page__manifesto-mission {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  color: #f3f4f6;
  margin-bottom: 8px;
}

.about-page__manifesto-commitment {
  font-size: 1.05rem;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 24px;
}

.about-page__manifesto-closing {
  margin-top: 40px;
}

.about-page__manifesto-closing p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #9ca3af;
  margin-bottom: 4px;
}

.about-page__manifesto-closing-final {
  font-size: 1.2rem;
  font-weight: 600;
  color: #f3f4f6;
  margin-top: 8px;
}

/* CTA section */
.about-page__cta {
  text-align: left;
  padding: 40px 0;
  border-top: 1px solid #2d3748;
}

.about-page__cta-text {
  font-size: 1.1rem;
  color: #9ca3af;
  margin-bottom: 16px;
  font-style: italic;
}

/* "let's talk" inline link — green + underline */
.about-page__cta-talk {
  color: #cbe724;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.about-page__cta-talk:hover {
  color: #b3cc1c;
}

.about-page__cta-home {
  display: block;
  color: #6b7280;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.about-page__cta-home:hover {
  color: #cbe724;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .about-page__content {
    margin: 20px auto;
    padding: 0 20px;
  }

  .about-page__manifesto-title {
    font-size: 1.5rem;
  }

  .about-page__manifesto-hook {
    font-size: 1.2rem;
  }
}

/* THIS IS THE MAIN LAYOUT FOR ALL PAGES */
body {
  overflow-x: hidden;
  margin: 0;
  font-family: "Rubik", sans-serif;
  font-style: normal;
  background-color: #0f1419;
  color: #f3f4f6;
}

.content-container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  /* new */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.full-width.page {
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .content-container {
    width: calc(100% - 48px);
  }
}

