/* NoodlePanda Design System & Styling */

:root {
  /* Brand Color Palette */
  --color-bamboo-green: #3E8E4F;
  --color-bamboo-green-glow: rgba(62, 142, 79, 0.15);
  --color-panda-black: #1C1C1C;
  --color-noodle-cream: #FAF3E2;
  --color-noodle-yellow: #F2C94C;
  --color-soft-sage: #A9C9A4;
  --color-steam-white: #FFFFFF;
  
  /* Text and UI */
  --text-dark: #1C1C1C;
  --text-muted: #4F4F4F;
}

/* Local font integration */
@font-face {
  font-family: 'Quicksand-Local-Bold';
  src: url('Quicksand-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--color-panda-black);
  background-color: var(--color-noodle-cream);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Floating Glassmorphism Navbar Wrapper */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 20px;
  z-index: 1000;
  pointer-events: none; /* Allows clicks to pass through wrapper */
}

/* Navbar */
.navbar {
  pointer-events: auto; /* Re-enable clicks inside navbar */
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 10px 24px;
  
  /* Glassmorphism styling */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px) saturate(190%);
  -webkit-backdrop-filter: blur(14px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 100px;
  box-shadow: 
    0 4px 30px rgba(0, 0, 0, 0.03),
    0 1px 3px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.06),
    0 1px 5px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transform: translateY(2px);
}

/* Logo in Nav */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo-icon {
  height: 28px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: 'Quicksand', 'Quicksand-Local-Bold', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--color-panda-black);
}

.nav-logo-text .accent-green {
  color: var(--color-bamboo-green);
}

/* Navbar Links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s ease;
}

.nav-link.active {
  color: var(--color-bamboo-green);
  background-color: var(--color-bamboo-green-glow);
  font-weight: 600;
}

.nav-link:hover:not(.active) {
  color: var(--color-bamboo-green);
  background-color: rgba(62, 142, 79, 0.05);
}

/* Nav CTA Button */
.btn-secondary {
  display: inline-block;
  background-color: var(--color-panda-black);
  color: var(--color-steam-white);
  padding: 8px 20px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.15), 
    0 2px 8px rgba(28, 28, 28, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
  background-color: var(--color-bamboo-green);
  border-color: var(--color-bamboo-green);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2), 
    0 4px 12px rgba(62, 142, 79, 0.25);
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 100px 24px;
  box-sizing: border-box;
  
  /* Background Image + Soft Cream Fade to blend beautifully */
  background-image: 
    linear-gradient(to bottom, rgba(250, 243, 226, 0.1) 0%, rgba(250, 243, 226, 0.5) 40%, rgba(250, 243, 226, 0.95) 90%, rgba(250, 243, 226, 1) 100%), 
    url('mainbackground.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-container {
  max-width: 840px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

/* Logo in Middle (RIVET Style) */
.hero-logo-container {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  max-width: 320px;
  width: 85%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 25px rgba(28, 28, 28, 0.06));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-logo:hover {
  transform: scale(1.03) rotate(-1deg);
}

/* Title Tagline */
.hero-title {
  font-family: 'Quicksand', 'Quicksand-Local-Bold', sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-panda-black);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

/* Strikethrough Correction Line */
.strikethrough {
  position: relative;
  color: #7d7d7d;
  display: inline-block;
  font-weight: 600;
}

.strikethrough::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  top: 50%;
  height: clamp(4px, 0.8vw, 8px);
  background-color: var(--color-noodle-yellow);
  transform: rotate(-5deg) translateY(-50%);
  border-radius: 4px;
  opacity: 0.9;
}

/* Serif Value Highlight */
.serif-value {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--color-bamboo-green);
  margin-left: 2px;
  display: inline-block;
}

/* Description Text */
.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 660px;
  margin: 0 auto 40px auto;
  opacity: 0.95;
}

/* Primary CTA Button */
.hero-cta-wrapper {
  display: flex;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-bamboo-green);
  color: var(--color-steam-white);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 36px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 
    inset 0 1.5px 0 rgba(255, 255, 255, 0.25), 
    0 4px 16px rgba(62, 142, 79, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  background-color: var(--color-noodle-yellow);
  color: var(--color-panda-black);
  border-color: var(--color-noodle-yellow);
  box-shadow: 
    inset 0 1.5px 0 rgba(255, 255, 255, 0.4), 
    0 8px 24px rgba(242, 201, 76, 0.35);
  transform: translateY(-2px);
}

/* CTA Arrow animation */
.arrow-icon {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover .arrow-icon {
  transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar-wrapper {
    padding: 16px 12px;
  }
  .navbar {
    padding: 8px 16px;
    width: 100%;
  }
  .nav-logo-text {
    font-size: 17px;
  }
  .nav-logo-icon {
    height: 24px;
  }
  .btn-secondary {
    padding: 6px 14px;
    font-size: 12px;
  }
  .mobile-br {
    display: block;
  }
}

@media (min-width: 769px) {
  .mobile-br {
    display: none;
  }
}

/* ============================================ */
/* SHOWCASE SECTION                             */
/* ============================================ */

.showcase-section {
  position: relative;
  padding: 80px 24px 100px;
  background-color: var(--color-noodle-cream);
  overflow: hidden;
}

.showcase-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 72px;
}

/* Left: Plugin Maker Panel Recreation */
.showcase-panel {
  flex: 1.2;
  min-width: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 25px 80px rgba(0, 0, 0, 0.25),
    0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-frame {
  display: flex;
  height: 700px;
  background: #0a0a0a;
}

/* Sidebar */
.panel-sidebar {
  width: 200px;
  background: #111111;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #888;
  cursor: default;
  transition: all 0.2s;
  text-decoration: none;
}

.sidebar-item.active-item {
  color: #F2C94C;
  background: rgba(242, 201, 76, 0.08);
  border-left: 2px solid #F2C94C;
}

.sidebar-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sidebar-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #555;
  padding: 16px 20px 6px;
  font-family: 'Inter', sans-serif;
}

.sidebar-badge {
  background: #F2C94C;
  color: #000;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 6px;
  border-radius: 8px;
  margin-left: auto;
  font-family: 'Inter', sans-serif;
}

.sidebar-bottom {
  margin-top: auto;
  padding: 16px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #888;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3E8E4F;
  box-shadow: 0 0 6px rgba(62, 142, 79, 0.5);
}

.status-version {
  font-size: 11px;
  color: #555;
  margin-top: 2px;
  font-family: 'Inter', sans-serif;
}

/* Main Content Area */
.panel-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-image: url('Assets/pluginmakerbackgroundimage.png');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 32px 28px 24px;
}

.panel-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}

.panel-main > * {
  position: relative;
  z-index: 1;
}

.pm-header-text {
  text-align: center;
  margin-bottom: 4px;
}

.pm-header-text h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 700;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.45) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.pm-header-text p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #999;
}

.pm-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 6px 16px;
  margin: 14px auto 20px;
  width: fit-content;
}

.pm-pill svg {
  width: 14px;
  height: 14px;
  color: #fff;
}

.pm-pill span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

/* Chat Area */
.pm-chat-area {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 16px;
  padding-right: 4px;
}

.pm-chat-area::-webkit-scrollbar {
  width: 4px;
}

.pm-chat-area::-webkit-scrollbar-track {
  background: transparent;
}

.pm-chat-area::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}

/* Message Bubbles */
.pm-msg {
  margin-bottom: 12px;
  animation: msgFadeIn 0.4s ease forwards;
  opacity: 0;
}

.pm-msg.visible {
  opacity: 1;
}

@keyframes msgFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.pm-msg-user {
  display: flex;
  justify-content: flex-end;
}

.pm-msg-user .pm-bubble {
  background: rgba(62, 142, 79, 0.2);
  border: 1px solid rgba(62, 142, 79, 0.3);
  border-radius: 16px 16px 4px 16px;
  padding: 10px 16px;
  max-width: 85%;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #ddd;
  line-height: 1.5;
}

.pm-msg-ai {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pm-ai-avatar {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pm-bubble-ai {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px 16px 16px 16px;
  padding: 16px 20px;
  max-width: 95%;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
}

/* Thinking State */
.pm-thinking-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.pm-thinking-line img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

.thinking-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  background: linear-gradient(
    90deg,
    #555 0%,
    #555 35%,
    #ffffff 50%,
    #555 65%,
    #555 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerWave 1.8s ease-in-out infinite;
}

@keyframes shimmerWave {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* Live Step Lines */
.pm-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #d5d5d5;
}

.pm-step .step-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.step-icon.spinning {
  animation: spin 1s linear infinite;
}

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

/* "Worked for X seconds" toggle */
.pm-worked-toggle {
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #888;
  padding: 0;
  transition: color 0.2s;
}

.pm-worked-toggle:hover {
  color: #bbb;
}

.pm-worked-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.pm-worked-toggle.expanded svg {
  transform: rotate(90deg);
}

/* Worked steps inside expandable */
.pm-worked-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 0 4px;
}

.worked-step {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #d5d5d5;
}

.worked-step .step-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-icon.done {
  color: #3E8E4F;
}

/* Expandable */
.pm-expandable {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
  width: 100%;
}

.pm-expandable.open {
  max-height: 400px;
}

.pm-expand-toggle {
  background: none;
  border: none;
  color: #666;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  cursor: pointer;
  padding: 2px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
  margin-left: 23px;
}

.pm-expand-toggle:hover {
  color: #aaa;
}

.pm-expand-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.3s;
}

.pm-expand-toggle.expanded svg {
  transform: rotate(90deg);
}

.pm-expand-content {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 4px 0 4px 23px;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 11px;
  color: #888;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-all;
}

.pm-expand-content .code-green { color: #3E8E4F; }
.pm-expand-content .code-yellow { color: #F2C94C; }
.pm-expand-content .code-white { color: #ddd; }
.pm-expand-content .code-gray { color: #666; }

/* Response Lines — bullet point style */
.pm-response-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
  animation: msgFadeIn 0.3s ease forwards;
  opacity: 0;
}

.pm-response-line.visible {
  opacity: 1;
}

.pm-response-line .response-bullet {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #3E8E4F;
  margin-top: 3px;
}

.pm-response-line code {
  background: rgba(255, 255, 255, 0.08);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: #F2C94C;
}

.pm-response-line strong {
  color: #fff;
}

/* Install Box */
.pm-install-box {
  background: rgba(62, 142, 79, 0.08);
  border: 2px solid rgba(62, 142, 79, 1);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  animation: msgFadeIn 0.4s ease forwards;
  opacity: 0;
}

.pm-install-box.visible {
  opacity: 1;
}

.pm-install-box p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #bbb;
  flex: 1;
}

.pm-install-btn {
  background: #3E8E4F;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pm-install-btn:hover {
  background: #4aa85d;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(62, 142, 79, 0.3);
}

.pm-install-btn svg {
  width: 14px;
  height: 14px;
}

/* Input Bar */
.pm-input-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 16px;
  gap: 10px;
  margin-top: auto;
}

.pm-input-text {
  flex: 1;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #999;
  background: none;
  border: none;
  outline: none;
  cursor: default;
  user-select: none;
}

.pm-send-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #3E8E4F;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.pm-send-btn:hover {
  background: #4aa85d;
  transform: scale(1.05);
}

.pm-send-btn svg {
  width: 16px;
  height: 16px;
  color: #fff;
}

.pm-send-btn:disabled {
  background: #333;
  cursor: not-allowed;
  transform: none;
}

/* Right Side Text */
.showcase-text {
  flex: 0.7;
  min-width: 0;
}

.showcase-text h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--color-panda-black);
  line-height: 1.2;
  margin-bottom: 16px;
}

.showcase-text h2 .text-green {
  color: #3E8E4F;
}

.showcase-text > p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.showcase-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.showcase-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.showcase-features li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #3E8E4F;
  margin-top: 1px;
}

.showcase-features li strong {
  color: var(--color-panda-black);
}

/* Responsive Showcase */
@media (max-width: 1100px) {
  .showcase-inner {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .showcase-section {
    padding: 60px 16px 80px;
  }
  .showcase-inner {
    flex-direction: column;
    gap: 36px;
  }
  .showcase-panel {
    width: 100%;
    max-width: 100%;
  }
  .panel-sidebar {
    display: none;
  }
  .panel-frame {
    height: 560px;
  }
  .showcase-text {
    text-align: center;
  }
  .showcase-features {
    align-items: center;
  }
  .showcase-features li {
    text-align: left;
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .showcase-section {
    padding: 40px 10px 60px;
  }
  .panel-frame {
    height: 500px;
  }
  .pm-header-text h2 {
    font-size: 16px;
  }
  .pm-header-text p {
    font-size: 11px;
  }
  .pm-bubble-ai {
    padding: 12px 14px;
    font-size: 13px;
  }
  .pm-input-bar {
    padding: 8px 10px;
  }
  .pm-input-text {
    font-size: 12px;
  }
  .pm-response-line {
    font-size: 12px;
  }
  .pm-install-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 12px;
  }
  .showcase-text h2 {
    font-size: 1.4rem;
  }
  .showcase-text > p {
    font-size: 14px;
  }
  .showcase-features li {
    font-size: 13px;
  }
}

/* ============================================ */
/* FEATURES SECTION (NoodlePanda Pro)           */
/* ============================================ */

/* ============================================ */
/* INTRODUCING PRO SECTION                      */
/* ============================================ */

.pro-section {
  position: relative;
  padding: 100px 24px;
  background-color: var(--color-steam-white);
  border-top: 1px solid rgba(169, 201, 164, 0.15);
  border-bottom: 1px solid rgba(169, 201, 164, 0.15);
  overflow: hidden;
}

.pro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.pro-content {
  flex: 1.2;
  min-width: 0;
}

.pro-title {
  font-family: 'Quicksand', 'Quicksand-Local-Bold', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-panda-black);
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.pro-title .accent-green {
  color: var(--color-bamboo-green);
}

.pro-text {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pro-text p {
  margin: 0;
}

.pro-text code {
  background-color: var(--color-noodle-cream);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  color: var(--color-bamboo-green);
  font-weight: 500;
}

.pro-image-container {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Custom dashboard widget styles matching ASCII structure */
.pro-dashboard-widget {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 420px;
}

.widget-top-row {
  display: flex;
  gap: 16px;
  width: 100%;
}

.widget-card {
  background-color: var(--color-steam-white);
  border: 1px solid rgba(169, 201, 164, 0.22);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(28, 28, 28, 0.02);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.widget-card.card-half {
  flex: 1;
}

.widget-card.card-full {
  width: 100%;
}

.card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.card-value {
  font-family: 'Quicksand', 'Quicksand-Local-Bold', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-panda-black);
  line-height: 1.1;
}

.card-value.green {
  color: var(--color-bamboo-green);
}

.card-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.latency-values {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2px;
}

.latency-current {
  font-family: 'Quicksand', 'Quicksand-Local-Bold', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-panda-black);
}

.latency-badge {
  background-color: rgba(62, 142, 79, 0.08);
  color: var(--color-bamboo-green);
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.widget-graph-container {
  margin-top: 16px;
  position: relative;
  width: 100%;
}

.widget-svg-graph {
  width: 100%;
  height: 90px;
  display: block;
  overflow: visible;
}

.graph-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
}

.pulse-dot {
  transform-origin: center;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { r: 5px; stroke-width: 2px; opacity: 1; }
  50% { r: 7px; stroke-width: 3px; opacity: 0.7; }
  100% { r: 5px; stroke-width: 2px; opacity: 1; }
}

/* Mini Terminal Console Widget Styles */
.widget-terminal-card {
  background-color: var(--color-steam-white) !important;
  border-color: rgba(169, 201, 164, 0.25) !important;
  padding: 14px 16px !important;
  display: flex;
  flex-direction: column;
  gap: 10px !important;
  box-shadow: 0 10px 30px rgba(28, 28, 28, 0.02) !important;
}

.widget-terminal-header {
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid rgba(169, 201, 164, 0.12);
  padding-bottom: 8px;
}

.terminal-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.terminal-dot.red {
  background-color: #ff5f56;
}

.terminal-dot.yellow {
  background-color: #ffbd2e;
}

.terminal-dot.green {
  background-color: #27c93f;
}

.terminal-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8.5px;
  color: var(--text-muted);
  margin-left: auto;
  text-transform: lowercase;
}

.widget-terminal-body {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.term-line {
  white-space: nowrap;
}

.term-line.cmd {
  color: var(--color-panda-black);
}

.term-line.cmd .prompt {
  color: var(--color-bamboo-green);
  font-weight: 700;
}

.term-line.res {
  color: var(--color-panda-black);
}

.term-line.res .label {
  color: var(--text-muted);
}

.term-line.success {
  color: var(--color-bamboo-green);
  font-weight: 700;
  margin-top: 2px;
}

/* Responsive Pro Section */
@media (max-width: 900px) {
  .pro-section {
    padding: 80px 24px;
  }
  
  .pro-container {
    flex-direction: column;
    gap: 50px;
  }
  
  .pro-image-container {
    width: 100%;
    max-width: 360px;
    order: -1; /* Mascot on top on mobile */
  }
  
  .pro-title {
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .pro-section {
    padding: 60px 16px;
  }
  
  .pro-text {
    font-size: 14.5px;
    gap: 16px;
  }
}

/* ============================================ */
/* PLANS SECTION (Premium Redesign)             */
/* ============================================ */

.plans-section {
  position: relative;
  padding: 120px 24px;
  background-color: var(--color-noodle-cream);
  overflow: hidden;
}

.plans-container {
  max-width: 1200px;
  margin: 0 auto;
}

.plans-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.plans-badge {
  display: inline-block;
  background-color: rgba(62, 142, 79, 0.08);
  color: var(--color-bamboo-green);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.plans-header h2 {
  font-family: 'Quicksand', 'Quicksand-Local-Bold', sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-panda-black);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.plans-header p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Pricing Toggle Switcher */
.pricing-toggle {
  display: flex;
  justify-content: center;
  background-color: var(--color-steam-white);
  border: 1px solid rgba(169, 201, 164, 0.25);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 50px;
  box-shadow: 0 4px 15px rgba(28, 28, 28, 0.02);
}

.pricing-toggle .toggle-btn {
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing-toggle .toggle-btn.active {
  background-color: var(--color-bamboo-green);
  color: var(--color-steam-white);
  box-shadow: 0 4px 10px rgba(62, 142, 79, 0.15);
}

.pricing-toggle .toggle-btn:hover:not(.active) {
  color: var(--color-panda-black);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  max-width: 1140px;
  margin: 0 auto;
}

.plan-card {
  background-color: var(--color-steam-white);
  border: 1px solid rgba(169, 201, 164, 0.25);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(28, 28, 28, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(28, 28, 28, 0.08);
  border-color: rgba(62, 142, 79, 0.35);
}

.plan-image-wrapper {
  width: 100%;
  padding: 40px 32px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(169, 201, 164, 0.12);
  position: relative;
}

#plan-snack .plan-image-wrapper {
  background: linear-gradient(180deg, rgba(169, 201, 164, 0.06) 0%, rgba(255, 255, 255, 0) 100%);
}

#plan-pro .plan-image-wrapper {
  background: linear-gradient(180deg, rgba(242, 201, 76, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

#plan-enterprise .plan-image-wrapper {
  background: linear-gradient(180deg, rgba(28, 28, 28, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

.plan-card img {
  max-width: 85%;
  max-height: 44px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.03));
}

.plan-price {
  padding: 30px 32px 16px;
  font-family: 'Quicksand', 'Quicksand-Local-Bold', sans-serif;
  border-bottom: 1px dashed rgba(169, 201, 164, 0.15);
  margin-bottom: 24px;
}

.price-val {
  font-size: 38px;
  font-weight: 700;
  color: var(--color-panda-black);
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 14.5px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  margin-left: 4px;
}

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

.plan-features li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-features li svg {
  width: 17px;
  height: 17px;
  color: var(--color-bamboo-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li.disabled {
  color: #9b9b9b;
}

.plan-features li.disabled svg {
  color: #cccccc;
}

.plan-cta {
  padding: 0 32px 36px;
}

.btn-plan-primary {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--color-bamboo-green);
  color: var(--color-steam-white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14.5px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 
    inset 0 1.5px 0 rgba(255, 255, 255, 0.25), 
    0 4px 12px rgba(62, 142, 79, 0.25);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-plan-primary:hover {
  background-color: var(--color-noodle-yellow);
  color: var(--color-panda-black);
  border-color: var(--color-noodle-yellow);
  box-shadow: 
    inset 0 1.5px 0 rgba(255, 255, 255, 0.4), 
    0 6px 18px rgba(242, 201, 76, 0.35);
  transform: translateY(-2px);
}

.btn-plan-secondary {
  display: block;
  width: 100%;
  text-align: center;
  background-color: var(--color-panda-black);
  color: var(--color-steam-white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14.5px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.15), 
    0 4px 12px rgba(28, 28, 28, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.btn-plan-secondary:hover {
  background-color: var(--color-bamboo-green);
  border-color: var(--color-bamboo-green);
  box-shadow: 
    inset 0 1px 0 rgba(255, 255, 255, 0.2), 
    0 6px 18px rgba(62, 142, 79, 0.25);
  transform: translateY(-2px);
}

.plan-card.recommended {
  border: 2px solid var(--color-bamboo-green);
  box-shadow: 0 15px 45px rgba(62, 142, 79, 0.08);
}

.plan-card.recommended:hover {
  box-shadow: 0 25px 60px rgba(62, 142, 79, 0.16);
}

.recommended-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--color-bamboo-green);
  color: var(--color-steam-white);
  padding: 5px 14px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(62, 142, 79, 0.25);
}

/* ============================================ */
/* FOOTER SECTION                               */
/* ============================================ */

.footer {
  background-color: var(--color-panda-black);
  color: #999;
  padding: 80px 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo-big {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-big-logo-img {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand-icon {
  width: 28px;
  height: 28px;
}

.footer-logo span {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-steam-white);
}

.footer-logo .accent-green {
  color: var(--color-bamboo-green);
}

.footer-brand p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-group strong {
  color: var(--color-steam-white);
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-links-group a {
  color: #888;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-group a:hover {
  color: var(--color-bamboo-green);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
}

/* ============================================ */
/* MODAL POP-UPS                                */
/* ============================================ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 16px;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--color-steam-white);
  border: 1px solid rgba(169, 201, 164, 0.2);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-backdrop.active .modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
  z-index: 10;
}

.modal-close-btn:hover {
  color: var(--color-panda-black);
  transform: scale(1.05);
}

.modal-close-btn svg {
  width: 20px;
  height: 20px;
}

.modal-header {
  margin-bottom: 24px;
}

.modal-header h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-panda-black);
  margin-bottom: 6px;
}

.modal-header p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-panda-black);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid rgba(169, 201, 164, 0.35);
  background-color: var(--color-noodle-cream);
  color: var(--color-panda-black);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-bamboo-green);
  box-shadow: 0 0 0 3px rgba(62, 142, 79, 0.12);
}

.modal-submit-btn {
  background-color: var(--color-bamboo-green);
  color: var(--color-steam-white);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 8px;
  box-shadow: 
    inset 0 1.5px 0 rgba(255, 255, 255, 0.25), 
    0 4px 14px rgba(62, 142, 79, 0.2);
}

.modal-submit-btn:hover {
  background-color: #4aa85d;
  box-shadow: 
    inset 0 1.5px 0 rgba(255, 255, 255, 0.3), 
    0 6px 18px rgba(62, 142, 79, 0.3);
  transform: translateY(-2px);
}

.modal-submit-btn:disabled {
  background-color: #999;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-status {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  text-align: center;
  margin-top: 6px;
  line-height: 1.4;
}

.form-status.success {
  color: var(--color-bamboo-green);
}

.form-status.error {
  color: #d9534f;
}

/* Documentation Terms/Privacy Modal Specifics */
.doc-modal-card {
  max-width: 600px;
}

.doc-modal-content {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 8px;
}

.doc-modal-content h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-panda-black);
  margin: 20px 0 8px;
}

.doc-modal-content h4:first-of-type {
  margin-top: 0;
}

.doc-modal-content p {
  margin-bottom: 12px;
}

/* Responsive Grid and Footer */
@media (max-width: 992px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .plans-section {
    padding: 80px 24px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  
  .plan-card {
    border-radius: 20px;
  }
  
  .footer {
    text-align: center;
  }
  
  .footer-container {
    align-items: center;
  }
  
  .footer-logo-big {
    justify-content: center;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  
  .footer-links-group {
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .plans-section {
    padding: 60px 16px;
  }
  
  .plans-header {
    margin-bottom: 40px;
  }
  
  .plan-price {
    padding: 20px 24px 16px;
  }
  
  .plan-features {
    padding: 0 24px 24px;
  }
  
  .plan-cta {
    padding: 0 24px 28px;
  }
  
  .modal-card {
    padding: 30px 20px;
  }
}

/* ============================================ */
/* SCROLL REVEAL ANIMATIONS                     */
/* ============================================ */

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered entry delays */
.delay-1 {
  transition-delay: 0.15s;
}

.delay-2 {
  transition-delay: 0.3s;
}

.delay-3 {
  transition-delay: 0.45s;
}

/* ============================================ */
/* SLIDE TO SUBMIT COMPONENT                    */
/* ============================================ */

.slide-to-submit-container {
  position: relative;
  width: 100%;
  height: 52px;
  background-color: rgba(62, 142, 79, 0.08);
  border: 1px solid rgba(169, 201, 164, 0.35);
  border-radius: 50px;
  overflow: hidden;
  user-select: none;
  margin-top: 16px;
  transition: border-color 0.3s, background-color 0.3s;
}

.slide-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-text {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--color-bamboo-green);
  pointer-events: none;
  transition: opacity 0.2s, color 0.3s;
}

.slide-handle {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 44px;
  height: 44px;
  background-color: var(--color-bamboo-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-steam-white);
  cursor: grab;
  box-shadow: 0 4px 10px rgba(62, 142, 79, 0.3);
  transition: transform 0.1s ease, background-color 0.3s;
  z-index: 2;
}

.slide-handle:active {
  cursor: grabbing;
}

.slide-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

/* Completed & Submitting States */
.slide-to-submit-container.submitting {
  background-color: rgba(62, 142, 79, 0.15);
}

.slide-to-submit-container.submitting .slide-text {
  color: var(--color-bamboo-green);
}

.slide-to-submit-container.success-state {
  background-color: var(--color-bamboo-green);
  border-color: var(--color-bamboo-green);
}

.slide-to-submit-container.success-state .slide-text {
  color: var(--color-steam-white);
}

.slide-to-submit-container.success-state .slide-handle {
  background-color: var(--color-steam-white);
  color: var(--color-bamboo-green);
  box-shadow: none;
}
