@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap");

:root {
  --color-text: #fff;
  --color-bg: #fff;
  --color-overlay: #000;
  --color-overlay-text: #fff;
  --grid-padding: 2rem;
  --grid-gap: 1rem;
  --transition-timing: cubic-bezier(0.65, 0.05, 0.36, 1);
  --transition-duration: 640ms;
  --font-primary: "Inter", sans-serif;
  --font-secondary: "JetBrains Mono", monospace;
}

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

body {
  overflow-x: hidden;
  color: var(--color-text);
  font-family: var(--font-primary);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Modern Preloader Styles */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--color-overlay);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.terminal-preloader {
  width: 90%;
  max-width: 800px;
  height: auto;
  max-height: 500px;
  padding: 1rem 0;
  position: relative;
  overflow: hidden;
  display: block;
  opacity: 1;
}

.terminal-container {
  position: relative;
  height: 350px;
  margin-top: 30px;
  overflow: hidden;
  padding: 10px;
}

.terminal-line {
  position: absolute;
  font-size: 0.9rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  left: 0;
  padding-left: 10px;
  text-indent: 0;
  margin-left: 0;
  opacity: 1;
  font-family: var(--font-primary);
  font-weight: 300;
}

.terminal-line .highlight,
.terminal-line .faded {
  display: inline-block;
  padding-left: 0;
  margin-left: 0;
  text-indent: 0;
}

.terminal-line span {
  padding-left: 0;
  margin-left: 0;
  text-indent: 0;
  font-family: var(--font-primary);
}

.highlight {
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.faded {
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.border-top,
.border-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 0.75rem;
  color: #fff;
  align-items: center;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.border-top {
  top: 0;
}

.border-bottom {
  bottom: 0;
}

.progress-line {
  position: absolute;
  top: 135px;
  left: 0;
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  margin-left: 0;
  text-indent: 0;
}

.progress-label {
  font-weight: 400;
  margin-right: 10px;
  font-size: 0.9rem;
  padding-left: 0;
  margin-left: 0;
  text-indent: 0;
  color: #fff;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.progress-container {
  width: 200px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background-color: #fff;
  transition: none;
}

/* Grid System */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--grid-gap);
  width: 100%;
}

/* Header Styles */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 10;
}

.primary-nav {
  pointer-events: all;
  padding: var(--grid-padding);
  width: 100%;
}

.brand {
  grid-column: 1 / span 6;
}

.brand a {
  font-size: 1.75rem;
  font-weight: 400;
  color: white;
}

.menu-toggle {
  grid-column: 12 / span 1;
  text-align: right;
}

/* Overlay Menu */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: var(--color-overlay);
  -webkit-clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
          clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 20;
}

.overlay-header {
  padding: var(--grid-padding);
  width: 100%;
  position: relative;
  z-index: 30;
}

.overlay-brand {
  grid-column: 1 / span 6;
}

.overlay-brand a {
  font-size: 1.75rem;
  font-weight: 400;
}

.close-toggle {
  grid-column: 12 / span 1;
  text-align: right;
}

.overlay a,
.overlay p {
  color: var(--color-overlay-text);
}

.text-reveal {
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.brand .text-reveal,
.menu-toggle .text-reveal,
.overlay-brand .text-reveal,
.close-toggle .text-reveal {
  cursor: pointer;
}

/* Navigation Menu */
.nav-menu {
  padding: 15vh var(--grid-padding) 1rem;
  position: relative;
  z-index: 30;
}

.nav-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}

.nav-item {
  margin-bottom: 0.25rem;
  text-align: left;
}

.nav-link {
  font-size: 3rem;
  line-height: 1.2;
  display: inline-block;
  position: relative;
  padding-right: 2em;
  text-align: left;
}

/* New SplitText styles */
.shift-effect {
  position: relative;
}

.shift-effect:before {
  content: "■";
  font-size: 0.25em;
  position: absolute;
  left: -4em;
  top: 50%;
  color: inherit;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.6s var(--transition-timing),
    opacity 0.4s var(--transition-timing), left 0.6s var(--transition-timing);
}

.shift-effect:hover:before {
  opacity: 1;
  transform: translateY(-50%) rotate(1080deg);
  left: 0.5em;
}

/* Character-based animation styles */
.char {
  display: inline-block;
  transform-origin: center;
}

/* Footer */
.overlay-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--grid-padding);
  z-index: 30;
}

.copyright {
  grid-column: 1 / span 6;
}

.social-links {
  grid-column: 7 / span 6;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}

/* Featured Image */
.featured-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-image: url("https://assets.codepen.io/7558/bw-spheres-002.jpg");
  background-size: cover;
  background-position: center;
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  z-index: 25;
  opacity: 0.9;
}

/* Background Image */
.background-image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("https://assets.codepen.io/7558/bw-spheres-001.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* Scroll Text */
.scroll-text {
  position: fixed;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 5;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.scroll-text:hover {
  transform: translateY(-5px);
  color: rgba(255, 255, 255, 0.8);
}

.scroll-text:after {
  content: "↓";
  display: block;
  font-size: 1.5rem;
  margin-top: 0.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Quote Section */
.quote-section {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  z-index: 5;
  color: white;
  max-width: 640px;
}

.quote-section h2 {
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 400;
}

/* Title line animation */
.title-line {
  display: block;
  overflow: hidden;
}

.title-line span {
  display: inline-block;
  transform: translateY(100%);
}

@media (max-width: 900px) {
  .nav-link {
    font-size: 2rem;
  }

  .featured-image {
    width: 100%;
    opacity: 0.3;
  }

  .quote-section {
    max-width: 300px;
  }

  .quote-section h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
}

/* Initially hide the content while preloader is active */
.content-container {
  opacity: 0;
  visibility: hidden;
}

/* Fallback: Show content after 8 seconds even if JS fails */
.content-container {
  animation: revealContent 0.3s ease forwards 8s;
}

/* Immediate fallback for users with JS disabled */
.no-js .content-container {
  opacity: 1 !important;
  visibility: visible !important;
  animation: none !important;
}

@keyframes revealContent {
  to {
    opacity: 1;
    visibility: visible;
  }
}

/* Ensure consistent black background coverage during scroll */
.content-container {
  --bg-overlay-opacity: 0;
}

.content-container::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  z-index: 0;
  pointer-events: none;
  opacity: var(--bg-overlay-opacity);
  transition: opacity 0.2s ease;
}

/* ===== SCROLL CONTENT SECTIONS ===== */

.scroll-content {
  position: relative;
  z-index: 2;
  background: #000;
  color: white;
  margin-top: 100vh; /* Push below the hero section */
  min-height: 100vh; /* Ensure full coverage */
}

.scroll-section {
  min-height: 100vh;
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
}

/* Problem Section - Black background */
.problem-section {
  background: #000;
  color: white;
}

/* Story Section - Black background */
.story-section {
  background: #000;
  color: white;
}

/* How It Works Section - White background for contrast */
.how-it-works-section {
  background: #fff;
  color: #000;
}

/* Final CTA - Black background */
.final-cta-section {
  background: #000;
  color: white;
}

/* ===== PROBLEM SECTION - ASYMMETRICAL LAYOUT ===== */

.problem-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 10rem 6rem 8rem 6rem;
  position: relative;
  min-height: 100vh;
}

.problem-text {
  width: 60%;
  margin-left: 8%;
  position: relative;
  z-index: 2;
}

.problem-text h2 {
  font-size: 5rem;
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 4rem;
  color: white;
  letter-spacing: -0.02em;
}

.problem-details p {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
}

.solution-intro {
  color: white !important;
  font-weight: 400;
  border-left: 3px solid rgba(255, 255, 255, 0.6);
  padding-left: 3rem;
  margin-top: 5rem !important;
  font-size: 1.8rem !important;
  line-height: 1.4 !important;
}

/* Email Stack - Floating Asymmetrical */
.email-stack {
  position: absolute;
  right: 5%;
  top: 15%;
  width: 35%;
  z-index: 1;
}

.email-preview {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(20px);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.email-preview:nth-child(1) {
  transform: rotate(-8deg) translateX(-20px);
  z-index: 4;
}

.email-preview:nth-child(2) {
  transform: rotate(3deg) translateX(40px) translateY(-30px);
  z-index: 3;
}

.email-preview:nth-child(3) {
  transform: rotate(-2deg) translateX(-10px) translateY(-60px);
  z-index: 2;
}

.email-preview:nth-child(4) {
  transform: rotate(6deg) translateX(30px) translateY(-90px);
  z-index: 1;
  opacity: 0.7;
}

.email-preview:hover {
  transform: rotate(0deg) translateX(0) translateY(0) scale(1.02);
  z-index: 10;
}

.email-header {
  font-weight: 500;
  color: white;
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.email-snippet {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
}

.email-counter {
  position: absolute;
  bottom: -3rem;
  right: 15%;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  font-size: 1rem;
  transform: rotate(-5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===== STORY SECTION - VERTICAL MAGAZINE LAYOUT ===== */

.story-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 12rem 6rem;
  position: relative;
}

.story-text {
  width: 80%;
  margin: 0 auto 8rem auto;
  text-align: center;
}

.story-text h2 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.0;
  margin-bottom: 6rem;
  color: white;
  letter-spacing: -0.02em;
}

.story-timeline {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  position: relative;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 15%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.story-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}

.story-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.story-item:nth-child(even) .story-timeline::before {
  right: 15%;
  left: auto;
}

.story-time {
  flex-shrink: 0;
  width: 25%;
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: white;
  font-weight: 300;
  letter-spacing: -0.02em;
  position: relative;
}

.story-time::after {
  content: '';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
}

.story-item:nth-child(even) .story-time::after {
  left: -2rem;
  right: auto;
}

.story-content {
  flex: 1;
  max-width: 60%;
}

.story-content p {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.story-content em {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.story-results {
  list-style: none;
  padding: 0;
  margin-top: 2.5rem;
}

.story-results li {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: white;
  font-weight: 400;
}

/* Briefly Interface Mock - Floating */
.story-visual {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 35%;
  z-index: 2;
}

.briefed-interface {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(30px);
  transform: rotate(-2deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.briefed-interface:hover {
  transform: rotate(0deg) scale(1.02);
}

.interface-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.interface-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  letter-spacing: -0.01em;
}

.interface-status {
  background: rgba(34, 197, 94, 0.8);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.brief-section {
  margin-bottom: 2rem;
}

.brief-section h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.brief-section p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 300;
}

/* ===== HOW IT WORKS SECTION ===== */

.how-it-works-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 12rem 6rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 6rem;
  align-items: center;
}

.before-section,
.after-section {
  text-align: center;
}

.before-section h3,
.after-section h3 {
  font-size: 1.5rem;
  color: #000;
  margin-bottom: 3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.email-chaos {
  background: #f8f9fa;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.chaos-item {
  padding: 0.8rem;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #666;
  text-align: left;
}

.chaos-item:last-child {
  background: #fff3cd;
  border-color: #ffeaa7;
  color: #856404;
  font-weight: 500;
}

.brief-preview {
  background: #000;
  color: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  min-height: 200px;
  text-align: left;
}

.brief-header {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: white;
}

.brief-content p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.time-indicator {
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.transform-arrow {
  font-size: 4rem;
  color: rgba(0, 0, 0, 0.3);
  font-weight: 300;
}

/* Removed demo visual styles - now using bold statement approach */

/* ===== FINAL CTA SECTION - ASYMMETRICAL ===== */

.final-cta-container {
  max-width: 1800px;
  margin: 0 auto;
  padding: 15rem 6rem 12rem 6rem;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.final-cta-text {
  width: 70%;
  margin-left: 5%;
}

.final-cta-text h2 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 0.9;
  margin-bottom: 6rem;
  color: white;
  letter-spacing: -0.03em;
}

.final-cta-action {
  margin-top: 6rem;
  position: relative;
}

.final-cta-link {
  color: white;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 400;
  border-bottom: 3px solid white;
  padding-bottom: 1rem;
  transition: all 0.4s ease;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}

.final-cta-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.5);
  transition: width 0.4s ease;
}

.final-cta-link:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(10px);
}

.final-cta-link:hover::after {
  width: 100%;
}

/* Removed old CTA styles - now using minimal final CTA */

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1400px) {
  .problem-container,
  .story-container,
  .how-it-works-container,
  .final-cta-container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  
  .problem-text,
  .final-cta-text {
    width: 80%;
    margin-left: 5%;
  }
  
  .email-stack,
  .story-visual {
    width: 40%;
    right: 3%;
  }
}

@media (max-width: 1024px) {
  .problem-container {
    padding: 8rem 3rem;
  }
  
  .problem-text {
    width: 100%;
    margin-left: 0;
  }
  
  .problem-text h2 {
    font-size: 4rem;
  }
  
  .email-stack {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    margin-top: 4rem;
  }
  
  .story-container {
    padding: 8rem 3rem;
  }
  
  .story-visual {
    position: relative;
    width: 100%;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 4rem;
  }
  
  .story-item {
    flex-direction: column;
    text-align: left;
    gap: 2rem;
  }
  
  .story-item:nth-child(even) {
    flex-direction: column;
    text-align: left;
  }
  
  .story-time {
    width: auto;
  }
  
  .story-content {
    max-width: 100%;
  }
  
  /* HOW IT WORKS RESPONSIVE */
  .how-it-works-container {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 10rem 3rem;
  }
  
  .transform-arrow {
    transform: rotate(90deg);
    font-size: 3rem;
  }
  
  .final-cta-text {
    width: 100%;
    margin-left: 0;
  }
  
  .final-cta-text h2 {
    font-size: 4rem;
  }
}

@media (max-width: 768px) {
  .problem-container,
  .story-container,
  .how-it-works-container {
    padding: 6rem 2rem;
  }
  
  .final-cta-container {
    padding: 10rem 2rem;
  }
  
  .problem-text h2,
  .story-text h2 {
    font-size: 3rem;
  }
  
  .final-cta-text h2 {
    font-size: 3.5rem;
  }
  
  .problem-details p,
  .story-content p {
    font-size: 1.4rem;
  }
  
  .email-preview {
    transform: rotate(0deg) !important;
    margin-bottom: 1rem !important;
  }
  
  /* HOW IT WORKS MOBILE */
  .email-chaos,
  .brief-preview {
    min-height: 150px;
  }
  
  .final-cta-link {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .problem-container,
  .story-container,
  .how-it-works-container {
    padding: 4rem 1rem;
  }
  
  .final-cta-container {
    padding: 8rem 1rem;
  }
  
  .problem-text h2,
  .story-text h2 {
    font-size: 2.5rem;
  }
  
  .final-cta-text h2 {
    font-size: 3rem;
  }
  
  .problem-details p,
  .story-content p {
    font-size: 1.2rem;
  }
  
  .final-cta-link {
    font-size: 1.4rem;
  }
  
  .story-time {
    font-size: 2rem;
  }
  
  /* HOW IT WORKS MOBILE */
  .chaos-item {
    font-size: 0.8rem;
    padding: 0.6rem;
  }
  
  .brief-content p {
    font-size: 0.8rem;
  }
}

.section-mockup {
  position: relative;
  padding: 6rem 0 6rem 0;
  background: #000;
  overflow: visible;
}
.section-mockup-container {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}
.section-mockup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) {
  .section-mockup-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
.section-mockup-text {
  color: #fff;
  max-width: 546px;
  margin: 2rem auto 0 auto;
}
.section-mockup-text h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .section-mockup-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
  }
}
.section-mockup-text p {
  color: #868f97;
  font-size: 1rem;
  line-height: 1.6;
}
.section-mockup-image {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 2rem auto 0 auto;
  min-height: 317px;
}
@media (min-width: 768px) {
  .section-mockup-image {
    max-width: 471px;
    min-height: 500px;
  }
}
.section-mockup-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  filter: blur(2px);
  z-index: 0;
  top: 10%;
  left: -20%;
  right: auto;
  bottom: auto;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.section-mockup-main {
  position: relative;
  width: 100%;
  height: 405px;
  background-size: cover;
  background-position: center;
  border-radius: 32px;
  z-index: 1;
  overflow: hidden;
  background-color: rgba(255,255,255,0.04);
  backdrop-filter: blur(15px) brightness(100%);
  border: 0;
  margin-top: 0;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 768px) {
  .section-mockup-main {
    height: 637px;
  }
}
.section-mockup-gradient {
  position: absolute;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  z-index: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0) 100%);
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 8rem 2rem 8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.story-headline {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.story-subtext {
  font-size: 1.7rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 3rem;
  font-weight: 400;
  max-width: 600px;
}
.story-visual {
  width: 100%;
  height: 340px;
  border-radius: 24px;
  margin-top: 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  opacity: 0.95;
  transition: transform 0.7s cubic-bezier(0.65,0.05,0.36,1), opacity 0.7s cubic-bezier(0.65,0.05,0.36,1);
}
.placeholder-image {
  background-color: #222;
  background-blend-mode: multiply;
}
.howitworks-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.howitworks-step {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: transform 0.5s cubic-bezier(0.65,0.05,0.36,1), opacity 0.5s cubic-bezier(0.65,0.05,0.36,1);
  opacity: 0.92;
}
.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.step-text {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}
@media (max-width: 900px) {
  .story-content {
    padding: 4rem 1rem;
  }
  .story-headline {
    font-size: 2.2rem;
  }
  .story-visual {
    height: 180px;
  }
  .howitworks-step {
    min-width: 120px;
    padding: 1rem 1.2rem;
  }
}

/* Reverse layout for alternating sections */
@media (min-width: 768px) {
  .section-mockup-grid.reverse-layout {
    grid-template-columns: 1fr 1fr;
  }
  
  .section-mockup-grid.reverse-layout .section-mockup-text {
    order: 2;
  }
  
  .section-mockup-grid.reverse-layout .section-mockup-image {
    order: 1;
  }
}

/* Responsive fixes for section visibility and layout */
@media (max-width: 768px) {
  .section-mockup {
    padding: 4rem 0;
    min-height: auto;
  }
  
  .section-mockup-container {
    padding: 0 1rem;
    max-width: none;
  }
  
  .section-mockup-text h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .section-mockup-text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .section-mockup {
    padding: 3rem 0;
  }
  
  .section-mockup-container {
    padding: 0 0.75rem;
  }
  
  .section-mockup-text h2 {
    font-size: 1.75rem;
  }
  
  .section-mockup-text p {
    font-size: 0.9rem;
  }
}

/* Horizontal Story Section */
#horizontal-story {
  height: 100vh;
  overflow: hidden;
  display: flex;
  left: 0;
  background: #000;
  color: white;
  position: relative;
}

.horizontal-wrap {
  height: 100vh;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  width: 500vw; /* 5 slides × 100vw each */
}

.story-slide {
  min-width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10vw;
  position: relative;
  transition: background-color 0.5s ease;
  z-index: 1;
}

.story-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  z-index: -1;
}

.slide-content {
  max-width: 600px;
  text-align: center;
  z-index: 10;
  position: relative;
}

.slide-content h2 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.1;
  font-family: var(--font-primary);
  z-index: 10;
  position: relative;
}

.slide-content h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: var(--font-secondary);
  z-index: 10;
  position: relative;
}

.slide-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-weight: 300;
  z-index: 10;
  position: relative;
}

.visual-element {
  margin-top: 2rem;
  z-index: 5;
  position: relative;
}

/* Email Stack Visual */
.email-stack {
  position: relative;
  width: 300px;
  margin: 0 auto;
}

.email-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: #868f97;
  transform-origin: center;
  animation: emailPile 2s ease-in-out infinite alternate;
  backdrop-filter: blur(10px);
  font-weight: 300;
}

.email-card:nth-child(1) { transform: rotate(-2deg) translateY(0px); }
.email-card:nth-child(2) { transform: rotate(1deg) translateY(-5px); }
.email-card:nth-child(3) { transform: rotate(-1deg) translateY(-10px); }

.email-counter {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ef4444;
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  animation: pulse 1.5s ease-in-out infinite;
  font-family: var(--font-secondary);
}

/* Tab Chaos Visual */
.tab-chaos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.browser-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px 8px 0 0;
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  color: #868f97;
  position: relative;
  margin-bottom: 4px;
  backdrop-filter: blur(10px);
  font-weight: 300;
}

.browser-tab.active {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.stress-indicator {
  font-size: 1rem;
  color: #ef4444;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: shake 0.5s ease-in-out infinite;
  font-family: var(--font-secondary);
}

/* Briefly Interface Visual */
.briefly-interface {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 2rem;
  max-width: 300px;
  margin: 0 auto;
  backdrop-filter: blur(15px);
}

.processing {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ai-icon {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  position: relative;
  animation: spin 2s linear infinite;
}

.ai-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.processing-text {
  color: #868f97;
  font-size: 0.9rem;
  font-weight: 400;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #06b6d4, #3b82f6);
  border-radius: 2px;
  animation: progressFill 3s ease-in-out infinite;
}

/* Meeting Brief Visual */
.meeting-brief {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 2rem;
  max-width: 350px;
  margin: 0 auto;
  text-align: left;
  backdrop-filter: blur(15px);
}

.brief-header {
  font-size: 1.1rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brief-item {
  margin-bottom: 1rem;
  color: #868f97;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.4;
}

.success-indicator {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #10b981;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-secondary);
}

/* Transformation Visual */
.transformation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.before, .after {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  font-weight: 500;
  color: white;
  backdrop-filter: blur(10px);
}

.before {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

.after {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.arrow {
  font-size: 1.5rem;
  color: #868f97;
  font-weight: 300;
}

.benefit {
  width: 100%;
  text-align: center;
  margin-top: 1.5rem;
  color: #10b981;
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-secondary);
}

/* Animations */
@keyframes emailPile {
  0% { transform: rotate(-2deg) translateY(0px); }
  100% { transform: rotate(-2deg) translateY(-3px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

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

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

/* Responsive Design for Horizontal Story */
@media (max-width: 768px) {
  .slide-content h2 {
    font-size: 2.5rem;
  }
  
  .slide-content h3 {
    font-size: 1.2rem;
  }
  
  .slide-content p {
    font-size: 1rem;
  }
  
  .transformation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .arrow {
    transform: rotate(90deg);
  }
}

/* Parallax Showcase Section */
.parallax-showcase {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.parallax-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  width: 70vw;
  height: 70vh;
  margin: 0 auto;
  z-index: 1;
}

.parallax-item {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 16px;
}

.parallax-item img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
}

.parallax-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.parallax-item:nth-child(2) {
  grid-column: 3;
  grid-row: 2;
}

.parallax-item:nth-child(3) {
  grid-column: 2;
  grid-row: 3;
}

/* Speed Control Section */
.speed-control {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4rem;
  align-items: center;
  min-height: 100vh;
  padding: 4rem 0;
}

.speed-text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.content-border {
  border-left: solid 1px rgba(255, 255, 255, 0.2);
  padding: 0.5rem 2rem;
}

.content-border h2 {
  font-size: 2.5rem;
  font-weight: 300;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.content-border p {
  color: #868f97;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
}

.speed-bars {
  flex: 1 1 500px;
  display: flex;
  width: 100%;
  height: 60vh;
  align-items: flex-end;
  gap: 1rem;
}

.speed-bar {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  text-align: center;
  flex: 1 0 auto;
  font-size: 0.9rem;
  justify-self: flex-end;
  font-weight: 300;
  color: #868f97;
  padding: 1rem 0.5rem;
  transition: all 0.3s ease;
}

.speed-bar:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Parallax Hero Section */
.parallax-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #000;
}

.parallax-slab {
  position: relative;
  height: 500px;
  width: 100%;
  max-width: 1200px;
  max-height: 500px;
  overflow: hidden;
  border-radius: 32px;
}

.parallax-slab img {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 180%;
  object-fit: cover;
}

/* Staggered Section */
.staggered-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 4rem;
  min-height: 100vh;
  padding: 4rem 0;
}

.staggered-text {
  flex: 1 1 300px;
}

.staggered-demo {
  flex: 1 1 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.staggered-demo h3 {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 6vw, 80px);
  font-weight: 300;
  letter-spacing: 0.03em;
  color: white;
}

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

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

.feature-icon {
  font-size: 1.5rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: #868f97;
  line-height: 1.5;
}

/* Pricing Teaser Section */
.pricing-teaser-content {
  text-align: center;
  color: white;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-header h2 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.pricing-header p {
  font-size: 1.2rem;
  color: #868f97;
  margin-bottom: 3rem;
}

.pricing-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card-preview {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card-preview:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card-preview.featured {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #868f97;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-features span {
  color: #868f97;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.5rem;
}

.plan-features span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 600;
}

.pricing-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.cta-button-primary {
  background: #fff;
  color: #000;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.cta-button-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Final CTA Section */
.final-cta-section {
  padding: 8rem 0;
}

.final-cta-content {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-content h2 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.2;
}

.final-cta-content > p {
  font-size: 1.3rem;
  color: #868f97;
  margin-bottom: 3rem;
  line-height: 1.6;
}

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

.cta-button-large {
  background: #fff;
  color: #000;
  padding: 1.25rem 3rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-button-outline {
  background: transparent;
  color: white;
  padding: 1.25rem 3rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.final-cta-note p {
  font-size: 0.9rem;
  color: #868f97;
  margin: 0;
}

/* Enhanced CTA Benefits Styling */
.cta-benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cta-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.cta-benefit-icon {
  color: #10b981;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.cta-benefit-text {
  color: #d1d5db;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cta-benefits {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .cta-benefit {
    justify-content: center;
  }
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto 3rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .final-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .final-cta-content h2 {
    font-size: 2.5rem;
  }
  
  .pricing-header h2 {
    font-size: 2.2rem;
  }
  
  
  .features-list {
    gap: 1.5rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .pain-points-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .story-transition {
    flex-direction: column;
    gap: 1rem;
  }
  
  .transition-line {
    height: 1px;
    width: 60px;
  }
  
  .story-header h2 {
    font-size: 2.2rem;
  }
  
  .pain-point-content h3 {
    font-size: 1.2rem;
  }
}

/* ==== CONFERENCE STYLE STORY SECTION ==== */
.conference-top {
  width: 100%;
  margin: 0 auto !important;
  display: flex;
  justify-content: center;
}

.conference-wrapper {
  display: inline-block;
  text-align: center;
}

.res-title,
.subwords div {
  font-size: clamp(20px, 5vw, 95px);
}

.title {
  letter-spacing: 4px;
  margin-bottom: 0;
  line-height: 0.8;
  padding-bottom: 0;
}

.subwords {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-weight: 300 !important;
}

.subwords span {
  font-size: 35%;
  display: block;
}

/* === GREEN (#BAFF00) === */
.txt-g {
  color: #baff00;
}

.bg-g {
  background-color: #baff00;
}

.border-g {
  border: solid #baff00;
}

/* === BLUE (#00FFF6) === */
.txt-b {
  color: #00fff6;
}

.bg-b {
  background-color: #00fff6;
}

.border-b {
  border: solid #00fff6;
}

.panel-container {
  display: flex;
  width: auto;
  height: 100vh;
  white-space: nowrap;
}

.panel {
  position: relative;
  width: auto;
  min-width: max-content;
  height: 100vh;
  overflow: visible;
  display: flex;
  color: #333;
  text-align: left;
  flex-shrink: 0;
  white-space: nowrap;
}

/* Typography classes for conference section */
.ns {
  font-family: var(--font-primary);
  font-weight: 400;
}

.ns-bold {
  font-family: var(--font-primary);
  font-weight: 700;
}

/* Override styles for smooth wrapper */
#smooth-wrapper {
  width: 100%;
  overflow-x: hidden;
}

#smooth-content {
  width: 100%;
}

/* Main container for conference section */
.main-container-tw {
  width: 100%;
  position: relative;
}

/* Fix for Tailwind classes */
.container-fluid {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.p-3 {
  padding: 0.75rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.w-full {
  width: 100%;
}

.h-screen {
  height: 100vh;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

.bg-fixed {
  background-attachment: fixed;
}

.rounded-full {
  border-radius: 9999px;
}

.uppercase {
  text-transform: uppercase;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.no-wrap {
  white-space: nowrap;
}

.gap-16 {
  gap: 4rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.max-w-\[600px\] {
  max-width: 600px;
}

.max-w-\[1200px\] {
  max-width: 1200px;
}

.max-w-\[75px\] {
  max-width: 75px;
}

.max-w-\[80vw\] {
  max-width: 80vw;
}

.max-w-\[50vw\] {
  max-width: 50vw;
}

.w-\[90vw\] {
  width: 90vw;
}

.h-\[70vh\] {
  height: 70vh;
}

.text-\[50vw\] {
  font-size: 50vw;
}

.px-\[10vw\] {
  padding-left: 10vw;
  padding-right: 10vw;
}

.pl-\[20vw\] {
  padding-left: 20vw;
}

.min-w-screen {
  min-width: 100vw;
}

.leading-none {
  line-height: 1;
}

.fill-white {
  fill: white;
}

.top-\[-90px\] {
  top: -90px;
}

.pt-\[100px\] {
  padding-top: 100px;
}

.pb-32 {
  padding-bottom: 8rem;
}

.border-b-5 {
  border-bottom-width: 5px;
}

.border-5 {
  border-width: 5px;
}

.rounded-b-\[70px\] {
  border-bottom-left-radius: 70px;
  border-bottom-right-radius: 70px;
}

.overflow-hidden {
  overflow: hidden;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

/* ==== OWL PARALLAX SECTION ==== */
.owl-parallax-wrapper * {
  margin: 0px; 
  padding: 0px; 
  box-sizing: border-box;
}

.owl-parallax-wrapper {
  background-color: #000; 
  padding: 40px;
}

.owl-parallax-wrapper section {
  width: 100%; 
  max-width: 960px; 
  margin: 0 auto;
}


.owl-parallax-wrapper .title {
  color: #fff; 
  font-size: 70px; 
  line-height: 98px; 
  font-family: var(--font-primary); 
  font-weight: 600;
  padding-top: 60px; 
  padding-bottom: 40px; 
  width: 90%; 
  background-color: transparent; 
  margin: 40px auto; 
  overflow: hidden; 
  box-sizing: border-box; 
  font-kerning: none;
}

.owl-parallax-wrapper .title span {
  color: #ffffff;
  overflow: hidden;
}

.owl-parallax-wrapper img {
  width: 100%;
}

.owl-parallax-wrapper .cluster {
  position: relative;
  width: 100%;
  max-width: 874px;
  height: 792px;
  margin: 100px auto;
  background-color: transparent;
  padding-bottom: 100px;
}

.owl-parallax-wrapper .clusterPieces {
  position: absolute;
}

.owl-parallax-wrapper .circle {
  width: 100%;
  max-width: 360px;
  height: 360px;
  border-radius: 50%;
  background-color: #fff;
  left: 214px;
  bottom: 0;
  z-index: 1;
}

.owl-parallax-wrapper .dotsBlue {
  width: 100%;
  height: auto;
  max-width: 494px;
  max-height: 434px;
  z-index: 3;
  left: 0;
  top: 80px;
}

.owl-parallax-wrapper .owlHorned {
  width: 100%;
  height: auto;
  max-width: 450px;
  max-height: 700px;
  top: 0;
  right: 0;
  z-index: 2;
}

.owl-parallax-wrapper .owlHorned img {
  width: 100%;
  height: auto;
  display: block;
}

.owl-parallax-wrapper .owlBurrowing {
  width: 100%;
  height: auto;
  max-width: 674px;
  max-height: 700px;
  top: 162px;
  right: 0;
  z-index: 1;
}

.owl-parallax-wrapper .owlBurrowing img {
  width: 100%;
  height: auto;
  display: block;
}

.owl-parallax-wrapper .caption {
  font-family: var(--font-secondary);
  font-size: 14px;
  line-height: 16px;
  color: #fff;
  text-align: right;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.owl-parallax-wrapper .caption span {
  color: #ffffff;
}

.owl-parallax-wrapper .dotsWhite {
  width: 100%;
  height: auto;
  max-width: 310px;
  max-height: 588px;
  z-index: 2;
  left: 0;
  top: 400px;
}

.owl-parallax-wrapper .triangle {
  width: 100%;
  max-width: 448px;
  height: 446px;
  left: -28px;
  top: 0;
  z-index: 3;
}

.owl-parallax-wrapper .clusterBurrowing {
  max-width: 874px;
  height: 996px;
}

.owl-parallax-wrapper .spcr300 {
  padding-bottom: 300px;
}

/* Responsive breakpoints */
@media screen and (max-width: 1025px) {
  .owl-parallax-wrapper .title {
    font-size: 60px;
    line-height: 74px;
    padding-left: 40px;
  }
  
  .owl-parallax-wrapper .cluster {
    max-width: 600px;
    height: 550px;
    margin: 20px auto;
  }
  
  .owl-parallax-wrapper .dotsBlue {
    max-width: 340px;
    left: 0;
    top: 56px;
  }
  
  .owl-parallax-wrapper .owlHorned {
    max-width: 310px;
  }
  
  .owl-parallax-wrapper .circle {
    max-width: 246px;
    height: 246px;
    left: 146px;
    top: 300px;
  }
  
  .owl-parallax-wrapper .caption {
    bottom: 38px;
    right: 0;
  }
  
  .owl-parallax-wrapper .clusterBurrowing {
    max-width: 600px;
    height: 678px;
  }
  
  .owl-parallax-wrapper .dotsWhite {
    max-width: 216px;
    left: 0;
    top: 275px;
  }
  
  .owl-parallax-wrapper .owlBurrowing {
    max-width: 460px;
    top: 112px;
  }
  
  .owl-parallax-wrapper .triangle {
    max-width: 307px;
    height: 304px;
    left: -14px;
  }
  
  .owl-parallax-wrapper .captionBurrowing {
    top: 605px;
  }
}

@media screen and (max-width: 640px) {
  .owl-parallax-wrapper .title {
    font-size: 44px;
    line-height: 61px;
  }
  
  .owl-parallax-wrapper .cluster {
    max-width: 480px;
    height: 436px;
  }
  
  .owl-parallax-wrapper .dotsBlue {
    max-width: 274px;
    left: 20%;
    top: 45px;
    transform: translateX(-50%);
  }
  
  .owl-parallax-wrapper .owlHorned, 
  .owl-parallax-wrapper .owlBurrowing {
    max-width: 248px;
  }
  
  .owl-parallax-wrapper .circle {
    max-width: 196px;
    height: 196px;
    left: 50%;
    top: 240px;
    transform: translateX(-50%);
  }
  
  .owl-parallax-wrapper .caption {
    bottom: 25px;
    right: 0;
  }
  
  .owl-parallax-wrapper .clusterBurrowing {
    max-width: 480px;
    height: 542px;
  }
  
  .owl-parallax-wrapper .dotsWhite {
    max-width: 174px;
    left: 15%;
    top: 220px;
    transform: translateX(-50%);
  }
  
  .owl-parallax-wrapper .owlBurrowing {
    max-width: 369px;
    top: 88px;
  }
  
  .owl-parallax-wrapper .triangle {
    max-width: 240px;
    height: 240px;
    left: 10%;
    transform: translateX(-50%);
  }
  
  .owl-parallax-wrapper .captionBurrowing {
    top: 482px;
  }
}

@media screen and (max-width: 540px) {
  .owl-parallax-wrapper .title {
    font-size: 34px;
    line-height: 51px;
    padding-left: 0px;
  }
  
  .owl-parallax-wrapper .clusterPieces {
    position: relative;
  }
  
  .owl-parallax-wrapper .cluster {
    max-width: 320px;
    height: 530px;
  }
  
  .owl-parallax-wrapper .dotsBlue {
    display: none;
  }
  
  .owl-parallax-wrapper .owlHorned {
    max-width: 320px;
    top: 0;
  }
  
  .owl-parallax-wrapper .circle {
    display: none;
  }
  
  .owl-parallax-wrapper .caption {
    float: right;
    bottom: 0;
  }
  
  .owl-parallax-wrapper .clusterBurrowing {
    max-width: 320px;
    height: 268px;
  }
  
  .owl-parallax-wrapper .dotsWhite {
    display: none;
  }
  
  .owl-parallax-wrapper .owlBurrowing {
    max-width: 320px;
    top: 0;
  }
  
  .owl-parallax-wrapper .triangle {
    display: none;
  }
  
  .owl-parallax-wrapper .captionBurrowing {
    float: right;
    top: 0;
  }
}

/* ==== LOOPING WORDS SECTION ==== */
.cloneable {
  padding: var(--grid-padding, 2rem);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  background-color: #000;
}

.looping-words {
  height: 2.7em;
  padding-left: .1em;
  padding-right: .1em;
  font-size: 11vw;
  line-height: .9;
  position: relative;
}

.looping-words__list {
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  flex-flow: column;
  align-items: center;
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-weight: 700;
  list-style: none;
  display: flex;
  position: relative;
  color: #fff;
}

.looping-words__fade {
  background-image: linear-gradient(180deg, #000 5%, transparent 40%, transparent 60%, #000 95%);
  pointer-events: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.looping-words__selector {
  pointer-events: none;
  width: 100%;
  height: .9em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.looping-words__edge {
  border-top: .035em solid #fff;
  border-left: .035em solid #fff;
  width: .125em;
  height: .125em;
  position: absolute;
  top: 0;
  left: 0;
}

.looping-words__edge.is--2 {
  left: auto;
  right: 0;
  transform: rotate(90deg);
}

.looping-words__edge.is--3 {
  inset: auto 0 0 auto;
  transform: rotate(180deg);
}

.looping-words__edge.is--4 {
  top: auto;
  bottom: 0;
  transform: rotate(270deg);
}

.looping-words__containers {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.looping-words__p {
  margin: 0;
}