/* ============================================
   RASTE WEBSITE — Design System
   Colors: #0D0E12 (bg), #69DAFF (cyan), #FFA44C (orange), #2FF801 (green)
   Font: Inter (Google Fonts)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0D0E12;
  color: #E8E8ED;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
  display: block;
}

/* --- CSS Custom Properties --- */
:root {
  --bg-primary: #0D0E12;
  --bg-card: #15161B;
  --bg-card-hover: #1C1D24;
  --bg-glass: rgba(21, 22, 27, 0.7);
  --cyan: #69DAFF;
  --cyan-glow: rgba(105, 218, 255, 0.3);
  --orange: #FFA44C;
  --orange-glow: rgba(255, 164, 76, 0.3);
  --green: #2FF801;
  --green-glow: rgba(47, 248, 1, 0.3);
  --text-primary: #E8E8ED;
  --text-secondary: #8E8E93;
  --text-muted: #5A5A5F;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-width: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(13, 14, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 44px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.nav-wordmark {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-cta {
  padding: 10px 24px;
  background: var(--cyan);
  color: #0D0E12 !important;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: var(--transition);
}

.nav-cta:hover {
  background: #8AE4FF;
  box-shadow: 0 0 24px var(--cyan-glow);
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 40px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(13, 14, 18, 0.3) 0%,
      rgba(13, 14, 18, 0.6) 50%,
      rgba(13, 14, 18, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  padding: 60px 40px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 75%);
  border-radius: var(--radius-xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cyan);
  margin-bottom: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: 2px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, #A78BFA 50%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--cyan);
  color: #0D0E12;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary:hover {
  background: #8AE4FF;
  box-shadow: 0 4px 30px var(--cyan-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

/* --- Section Commons --- */
section {
  padding: 80px 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Features Grid --- */
.features-section {
  position: relative;
  background: url('features_bg.png') center center / cover no-repeat;
}

.features-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(13, 14, 18, 0.85) 0%,
      rgba(13, 14, 18, 0.7) 50%,
      rgba(13, 14, 18, 0.9) 100%);
  z-index: 0;
}

.features-section>.features {
  position: relative;
  z-index: 1;
}

.features {
  max-width: var(--max-width);
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:nth-child(2)::before {
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.feature-card:nth-child(3)::before {
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  margin-bottom: 0;
  margin-right: 16px;
  object-fit: cover;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
}

.feature-card p {
  width: 100%;
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- How It Works --- */
.how-it-works {
  max-width: var(--max-width);
  margin: 0 auto;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--orange));
  opacity: 0.3;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.step:nth-child(1) .step-number {
  background: linear-gradient(135deg, rgba(105, 218, 255, 0.15), rgba(105, 218, 255, 0.05));
  border: 2px solid rgba(105, 218, 255, 0.3);
  color: var(--cyan);
}

.step:nth-child(2) .step-number {
  background: linear-gradient(135deg, rgba(47, 248, 1, 0.15), rgba(47, 248, 1, 0.05));
  border: 2px solid rgba(47, 248, 1, 0.3);
  color: var(--green);
}

.step:nth-child(3) .step-number {
  background: linear-gradient(135deg, rgba(255, 164, 76, 0.15), rgba(255, 164, 76, 0.05));
  border: 2px solid rgba(255, 164, 76, 0.3);
  color: var(--orange);
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* --- Platforms Section --- */
.platforms {
  max-width: var(--max-width);
  margin: 0 auto;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  transition: var(--transition);
}

.platform-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.platform-icon {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.platform-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.platform-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.platform-info p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.platform-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(105, 218, 255, 0.1);
  border: 1px solid rgba(105, 218, 255, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

a.platform-badge:hover {
  transform: scale(1.05);
  background: var(--cyan);
  color: #0D0E12;
  box-shadow: 0 0 15px rgba(105, 218, 255, 0.4);
}

/* --- CTA Banner --- */
.cta-section {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-banner {
  background: linear-gradient(135deg, #141520 0%, #1A1B2E 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, var(--cyan-glow) 0%, transparent 50%);
  opacity: 0.15;
  animation: rotate-glow 20s linear infinite;
}

@keyframes rotate-glow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  position: relative;
  z-index: 1;
}

/* --- Footer --- */
.footer {
  padding: 60px 40px 32px;
  border-top: 1px solid var(--border);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}

.footer-brand span {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- What Raste Does (Split Layout) --- */
.what-raste-does {
  max-width: var(--max-width);
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.split-text .accent-bar {
  width: 48px;
  height: 4px;
  background: var(--cyan);
  border-radius: 2px;
  margin-bottom: 24px;
}

.split-text .lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.value-props {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-prop {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.value-prop-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(105, 218, 255, 0.08);
  border: 1px solid rgba(105, 218, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.value-prop p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* --- Infographic Section --- */
.infographic-section {
  max-width: var(--max-width);
  margin: 0 auto;
}

.infographic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.infographic-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.infographic-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
  letter-spacing: -0.5px;
}

.infographic-element-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-md);
}

.infographic-element-img.pipeline-img {
  max-width: 420px;
}

.infographic-element-img.card-img {
  max-width: 240px;
}

.analogy-cards-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.analogy-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 480px;
}

.infographic-badge-img {
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* --- App Showcase --- */
.app-showcase {
  max-width: var(--max-width);
  margin: 0 auto;
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.showcase-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.showcase-image img {
  width: 100%;
  border-radius: var(--radius-lg);
}

.showcase-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.showcase-text .accent-bar {
  width: 48px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 24px;
}

.showcase-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.showcase-bullets .bullet-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* --- Founder Section --- */
.founder-section {
  max-width: var(--max-width);
  margin: 0 auto;
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.founder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #A78BFA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: #0D0E12;
  flex-shrink: 0;
}

.founder-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border-hover);
}

.founder-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.founder-title {
  font-size: 0.85rem;
  color: var(--cyan);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.founder-credentials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.credential-badge {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(105, 218, 255, 0.08);
  border: 1px solid rgba(105, 218, 255, 0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(13, 14, 18, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding: 40px 20px;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    letter-spacing: 1px;
  }

  section {
    padding: 60px 20px;
  }

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

  .feature-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 24px 20px;
    gap: 0;
  }

  .feature-card .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    margin-right: 14px;
  }

  .feature-card h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
  }

  .feature-card p {
    width: 100%;
    margin-top: 12px;
    font-size: 0.88rem;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .steps-container::before {
    display: none;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .cta-banner {
    padding: 48px 28px;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .split-image {
    order: -1;
  }



  .showcase-layout {
    grid-template-columns: 1fr;
  }

  .founder-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .founder-credentials {
    justify-content: center;
  }
}

/* --- Why Use Raste? Section --- */
.why-raste {
  max-width: var(--max-width);
  margin: 0 auto;
}

.why-raste-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.why-raste-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-raste-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: var(--transition);
}

.why-raste-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.why-raste-card:hover::before {
  opacity: 1;
}

.why-raste-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.why-raste-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.why-raste-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.why-raste-solution {
  text-align: center;
  padding: 32px 40px;
  background: linear-gradient(135deg, rgba(105, 218, 255, 0.06), rgba(47, 248, 1, 0.04));
  border: 1px solid rgba(105, 218, 255, 0.12);
  border-radius: var(--radius-lg);
}

.solution-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}



.solution-text strong {
  color: var(--cyan);
}

.solution-bullets {
  list-style: none;
  text-align: left;
  max-width: 900px;
  margin: 20px auto 30px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-bullets li {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 32px;
  position: relative;
}

.solution-bullets li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: -2px;
  color: var(--cyan);
  font-size: 1.5rem;
}

.solution-examples {
  list-style: none;
  counter-reset: solution-counter;
  text-align: left;
  max-width: 840px;
  margin: 20px auto 0;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.solution-examples li {
  counter-increment: solution-counter;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-left: 32px;
  position: relative;
}

.solution-examples li::before {
  content: counter(solution-counter) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--cyan);
}

.solution-examples li strong {
  color: var(--green);
  font-weight: 700;
}

.solution-examples li strong.cost-bad {
  color: #FF4D4D;
}

/* --- Founder Card Link --- */
.founder-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.founder-card-link:hover .founder-card {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.more-info-btn {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cyan);
  transition: var(--transition);
}

.founder-card-link:hover .more-info-btn {
  color: #8AE4FF;
}

/* --- Footer Contact Link --- */
.footer-contact-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cyan);
  transition: var(--transition);
}

.footer-contact-link:hover {
  color: #8AE4FF;
}

/* --- Dashboard Preview Section --- */
.dashboard-preview-section {
  padding-bottom: 40px;
}

.dashboard-preview {
  max-width: var(--max-width);
  margin: 0 auto;
}

.dashboard-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(105, 218, 255, 0.06);
  border: 1px solid var(--border);
}

.dashboard-screenshot {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

.dashboard-fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  z-index: 2;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(13, 14, 18, 0.3) 20%,
      rgba(13, 14, 18, 0.65) 40%,
      rgba(13, 14, 18, 0.88) 60%,
      rgba(13, 14, 18, 0.97) 80%,
      rgba(13, 14, 18, 1) 100%);
  pointer-events: none;
}

.dashboard-cta {
  text-align: center;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.dashboard-cta-link {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.3px;
  transition: var(--transition);
  padding: 8px 0;
}

.dashboard-cta-link:hover {
  color: #8AE4FF;
  transform: translateX(4px);
}

/* --- Dashboard Full Page --- */
.dashboard-full-section {
  padding: 60px 40px 80px;
}

.dashboard-full-section.dashboard-full-alt {
  background: rgba(255, 255, 255, 0.01);
}

.dashboard-full-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.dashboard-full-header {
  text-align: center;
  margin-bottom: 48px;
}

.dashboard-full-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(105, 218, 255, 0.04);
}

.dashboard-full-image img {
  width: 100%;
  display: block;
}

/* --- Mobile App Wrapper --- */
.mobile-app-wrapper {
  max-width: 450px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(105, 218, 255, 0.06);
}

.mobile-app-wrapper img {
  width: 100%;
  display: block;
}

.app-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.app-screenshot-grid .mobile-app-wrapper {
  max-width: 100%;
}

@media (max-width: 1024px) {
  .app-screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .app-screenshot-grid {
    grid-template-columns: 1fr;
  }
}

/* --- Why Raste Responsive --- */
@media (max-width: 900px) {
  .why-raste-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-raste-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .why-raste-card {
    padding: 20px 14px;
  }

  .why-raste-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .why-raste-card h3 {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .why-raste-card p {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}

/* --- Infographic Responsive --- */
@media (max-width: 900px) {
  .infographic-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .infographic-element-img.pipeline-img {
    max-width: 360px;
  }
  
  .infographic-element-img.card-img {
    max-width: 200px;
  }
  
  .analogy-cards-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .infographic-element-img.pipeline-img {
    max-width: 100%;
  }
  
  .infographic-element-img.card-img {
    max-width: 160px;
  }
  
  .infographic-badge-img {
    max-width: 200px;
  }
}

/* ============================================
   REQUEST DEMO PAGE
   ============================================ */

/* --- Demo Hero --- */
.demo-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.demo-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  opacity: 0.12;
  pointer-events: none;
}

.demo-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.demo-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 16px;
  letter-spacing: -1px;
}

/* --- Demo Form Section --- */
.demo-form-section {
  padding: 0 40px 100px;
}

.demo-form-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.demo-form-info {
  padding: 40px 0;
}

.demo-form-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.demo-form-info .lead {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.demo-form-info .accent-bar {
  width: 48px;
  height: 4px;
  background: var(--cyan);
  border-radius: 2px;
  margin-bottom: 24px;
}

/* --- Demo Benefits --- */
.demo-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.demo-benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(105, 218, 255, 0.08);
  border: 1px solid rgba(105, 218, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.demo-benefit span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* --- Demo Form Card --- */
.demo-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.demo-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent);
}

/* --- Form Elements --- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group-full {
  margin-bottom: 28px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--orange);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: rgba(105, 218, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(105, 218, 255, 0.1);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238E8E93' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--bg-card);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* --- Submit Button --- */
.demo-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
}

/* --- Success Confirmation --- */
.demo-success {
  max-width: 560px;
  margin: 0 auto;
}

.demo-success-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(47, 248, 1, 0.08);
  border: 2px solid rgba(47, 248, 1, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.demo-success-content h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.demo-success-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* --- Demo Page Responsive --- */
@media (max-width: 900px) {
  .demo-form-container {
    grid-template-columns: 1fr;
  }

  .demo-form-info {
    padding: 0;
  }
}

@media (max-width: 600px) {
  .demo-hero {
    padding: 120px 24px 40px;
  }

  .demo-form-section {
    padding: 0 16px 60px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .demo-form {
    padding: 32px 24px;
  }

  .demo-success-content {
    padding: 40px 24px;
  }
}

/* ============================================
   ABOUT FOUNDER PAGE
   ============================================ */

/* --- Founder Hero --- */
.founder-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.founder-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  opacity: 0.12;
  pointer-events: none;
}

.founder-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.founder-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 16px;
  letter-spacing: -1px;
}

/* --- Founder Profile Section --- */
.founder-profile-section {
  padding: 0 40px 80px;
}

.founder-profile {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

/* --- Profile Card --- */
.founder-left-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.founder-profile-card {
  background: linear-gradient(160deg, #1a1b22 0%, #0d0e12 50%, #111218 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 420px;
}

.founder-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.founder-photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 24px 28px;
  background: linear-gradient(to top, rgba(13, 14, 18, 0.95) 0%, rgba(13, 14, 18, 0.6) 50%, transparent 100%);
  text-align: center;
}

.founder-photo-overlay .founder-role {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.founder-photo-overlay .founder-credentials-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.founder-photo-overlay .credential-badge-lg {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(105, 218, 255, 0.12);
  border: 1px solid rgba(105, 218, 255, 0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.5px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.founder-social-links {
  display: flex;
  justify-content: center;
  gap: 12px 20px;
  flex-wrap: wrap;
  padding: 20px 16px;
}

.founder-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.founder-social-link:hover {
  color: var(--cyan);
}

.founder-social-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Tooltip for social links */
.founder-social-link[data-tooltip] {
  position: relative;
}

.founder-social-link[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cyan);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.founder-social-link[data-tooltip]::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--border-hover);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 10;
}

.founder-social-link[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.founder-social-link[data-tooltip]:hover::before {
  opacity: 1;
}

.founder-avatar-large {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan) 0%, var(--orange) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 800;
  color: #0D0E12;
  margin: 0 auto 20px;
}

.founder-profile-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.founder-role {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.founder-credentials-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.credential-badge-lg {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(105, 218, 255, 0.08);
  border: 1px solid rgba(105, 218, 255, 0.2);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.5px;
}

/* --- Timeline --- */
.founder-timeline {
  position: relative;
  padding-left: 40px;
}

.founder-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan), var(--green), var(--orange));
  opacity: 0.3;
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -40px;
  top: 6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid var(--marker-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-marker::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--marker-color);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.timeline-org {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.timeline-org h3 {
  font-size: 1.3rem;
  font-weight: 800;
}

.timeline-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
}

.timeline-role {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 12px;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Founder Why Section --- */
.founder-why-section {
  padding: 80px 40px 100px;
  background: linear-gradient(180deg, transparent 0%, rgba(21, 22, 27, 0.5) 100%);
}

.founder-why {
  max-width: var(--max-width);
  margin: 0 auto;
}

.founder-why h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.founder-why .accent-bar {
  width: 48px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 24px;
}

.founder-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.founder-why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}

.founder-why-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.founder-why-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.founder-why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.founder-why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Founder Page Responsive --- */
@media (max-width: 900px) {
  .founder-profile {
    grid-template-columns: 1fr;
  }

  .founder-profile-card {
    position: static;
  }

  .founder-why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .founder-hero {
    padding: 120px 24px 40px;
  }

  .founder-profile-section {
    padding: 0 16px 60px;
  }

  .founder-why-section {
    padding: 60px 16px 80px;
  }

  .timeline-content {
    padding: 24px 20px;
  }
}

/* ============================================
   CAREERS PAGE
   ============================================ */

/* --- Careers Hero --- */
.careers-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.careers-hero::before {
  content: '';
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  opacity: 0.1;
  pointer-events: none;
}

.careers-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.careers-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 16px;
  letter-spacing: -1px;
}

/* --- Culture Values --- */
.careers-values-section {
  padding: 0 40px 80px;
}

.careers-values {
  max-width: var(--max-width);
  margin: 0 auto;
}

.careers-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.careers-value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
}

.careers-value-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.careers-value-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.careers-value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.careers-value-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Roles Section --- */
.careers-roles-section {
  padding: 80px 40px 40px;
}

.careers-roles {
  max-width: 800px;
  margin: 0 auto;
}

/* --- Role Card Accordion --- */
.role-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.role-card:hover {
  border-color: var(--border-hover);
}

.role-card.open {
  border-color: rgba(105, 218, 255, 0.25);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
}

.role-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  transition: var(--transition);
}

.role-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.role-header-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.role-dept {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
}

.role-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.role-meta {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.role-tag {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  color: var(--text-muted);
}

.role-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--text-secondary);
}

.role-card.open .role-toggle {
  transform: rotate(180deg);
  background: rgba(105, 218, 255, 0.1);
  color: var(--cyan);
}

/* --- Role Details (Accordion Body) --- */
.role-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.role-card.open .role-details {
  max-height: 800px;
}

.role-details-inner {
  padding: 0 32px 32px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.role-section {
  margin-bottom: 24px;
}

.role-section:last-of-type {
  margin-bottom: 28px;
}

.role-section h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.role-section p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.role-section ul {
  list-style: none;
  padding: 0;
}

.role-section ul li {
  position: relative;
  padding-left: 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 8px;
}

.role-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.6;
}

.role-apply-btn {
  display: inline-flex;
  margin-top: 4px;
}

/* --- Careers Page Responsive --- */
@media (max-width: 900px) {
  .careers-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .careers-hero {
    padding: 120px 24px 40px;
  }

  .careers-values-section {
    padding: 0 16px 60px;
  }

  .careers-roles-section {
    padding: 60px 16px 20px;
  }

  .role-header {
    padding: 20px 20px;
  }

  .role-details-inner {
    padding: 0 20px 24px;
    padding-top: 20px;
  }
}

/* ============================================
   WHAT WE DO / FEATURES / HOW IT WORKS PAGES
   Shared styles for dedicated content pages
   ============================================ */

/* --- Page Hero (reusable across pages) --- */
.page-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
  opacity: 0.1;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  margin-top: 16px;
  letter-spacing: -1px;
}

/* --- What We Do Sections --- */
.wwd-section {
  padding: 80px 40px;
}

.wwd-dark {
  background: linear-gradient(180deg, rgba(21, 22, 27, 0.6) 0%, transparent 100%);
}

.wwd-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- Stats Row --- */
.wwd-stat-row {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}

.wwd-stat {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
}

.wwd-stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 6px;
}

.wwd-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- Problem List --- */
.wwd-problem-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wwd-problem-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.wwd-problem-item:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

.wwd-problem-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 164, 76, 0.08);
  border: 1px solid rgba(255, 164, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wwd-problem-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.wwd-problem-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Pillar Cards --- */
.wwd-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.wwd-pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
}

.wwd-pillar-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.wwd-pillar-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(105, 218, 255, 0.12);
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.wwd-pillar-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.wwd-pillar-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* --- Fit Grid --- */
.wwd-fit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wwd-fit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.wwd-fit-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.wwd-fit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(105, 218, 255, 0.08);
  border: 1px solid rgba(105, 218, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.wwd-fit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.wwd-fit-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Demo Video --- */
.demo-video-wrapper {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.demo-video {
  width: 100%;
  display: block;
  border-radius: var(--radius-lg);
}

/* --- Content Pages Responsive --- */
@media (max-width: 900px) {
  .page-hero {
    padding: 120px 24px 40px;
  }

  .wwd-section .split-layout {
    grid-template-columns: 1fr;
  }

  .wwd-pillars-grid {
    grid-template-columns: 1fr;
  }

  .wwd-fit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wwd-stat-row {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .wwd-section {
    padding: 60px 16px;
  }

  .wwd-fit-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   FEATURES PAGE
   ============================================ */

/* --- Feature Section --- */
.feat-section {
  padding: 80px 40px;
}

.feat-section-alt {
  background: linear-gradient(180deg, rgba(21, 22, 27, 0.5) 0%, transparent 100%);
}

.feat-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.feat-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feat-split-reverse {
  direction: rtl;
}

.feat-split-reverse>* {
  direction: ltr;
}

/* --- Feature Badge --- */
.feat-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.feat-badge-cyan {
  background: rgba(105, 218, 255, 0.08);
  border: 1px solid rgba(105, 218, 255, 0.2);
  color: var(--cyan);
}

.feat-badge-green {
  background: rgba(47, 248, 1, 0.08);
  border: 1px solid rgba(47, 248, 1, 0.2);
  color: var(--green);
}

.feat-badge-orange {
  background: rgba(255, 164, 76, 0.08);
  border: 1px solid rgba(255, 164, 76, 0.2);
  color: var(--orange);
}

/* --- Feature Text --- */
.feat-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.feat-lead {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* --- Feature Detail Items --- */
.feat-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feat-detail-item {
  padding: 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.feat-detail-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.feat-detail-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feat-detail-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --- Feature Visual Cards --- */
.feat-visual-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.feat-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.feat-visual-cyan::before {
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.feat-visual-green::before {
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.feat-visual-orange::before {
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

/* --- Safety Grade Display --- */
.feat-grade-display {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.feat-grade-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

.feat-grade-a {
  background: rgba(47, 248, 1, 0.1);
  border: 2px solid rgba(47, 248, 1, 0.3);
  color: var(--green);
}

.feat-grade-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.feat-grade-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* --- Metric Rows --- */
.feat-metric-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feat-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.feat-metric-val {
  font-weight: 700;
  font-size: 0.85rem;
}

.feat-val-good {
  color: var(--green);
}

.feat-val-warn {
  color: var(--orange);
}

.feat-val-bad {
  color: #FF6B6B;
}

/* --- Health Bars --- */
.feat-health-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.feat-health-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.feat-health-id {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: monospace;
}

.feat-health-bars {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
}

.feat-health-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.feat-health-bar-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.feat-health-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}

.feat-fill-good {
  background: var(--green);
}

.feat-fill-warn {
  background: var(--orange);
}

.feat-health-alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(255, 164, 76, 0.06);
  border: 1px solid rgba(255, 164, 76, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.feat-health-alert svg {
  flex-shrink: 0;
  margin-top: 1px;
}

/* --- Cost Summary Card --- */
.feat-cost-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.feat-cost-title {
  font-size: 0.95rem;
  font-weight: 700;
}

.feat-cost-period {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.feat-cost-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.feat-cost-stat {
  text-align: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-sm);
}

.feat-cost-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
}

.feat-cost-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.feat-cost-risks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feat-cost-risk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.feat-risk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.feat-risk-high {
  background: #FF6B6B;
}

.feat-risk-med {
  background: var(--orange);
}

.feat-risk-low {
  background: var(--green);
}

/* --- Features Page Responsive --- */
@media (max-width: 900px) {

  .feat-split,
  .feat-split-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .feat-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .feat-section {
    padding: 60px 16px;
  }

  .feat-visual-card {
    padding: 24px 20px;
  }

  .feat-cost-stats {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HOW IT WORKS (TUTORIAL) PAGE
   ============================================ */

/* --- Tutorial Sections --- */
.tut-section {
  padding: 80px 40px;
}

.tut-section-alt {
  background: linear-gradient(180deg, rgba(21, 22, 27, 0.5) 0%, transparent 100%);
}

.tut-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- Setup Steps --- */
.tut-setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.tut-setup-grid::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--orange));
  opacity: 0.2;
}

.tut-setup-step {
  text-align: center;
  position: relative;
}

.tut-setup-number {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  position: relative;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid var(--step-color);
  color: var(--step-color);
}

.tut-setup-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tut-setup-step p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 300px;
  margin: 0 auto;
}

/* --- Capability Card --- */
.tut-capability {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  transition: var(--transition);
}

.tut-capability:hover {
  border-color: var(--border-hover);
}

.tut-cap-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.tut-cap-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--cap-color);
  color: var(--cap-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tut-cap-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.tut-cap-header h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.tut-cap-question {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-left: 68px;
}

/* --- Capability Grid (Analyze / Get) --- */
.tut-cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tut-cap-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}

.tut-cap-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: 0.5px;
}

.tut-cap-card ul {
  list-style: none;
  padding: 0;
}

.tut-cap-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 10px;
}

.tut-cap-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0.5;
}

.tut-cap-card ul li:last-child {
  margin-bottom: 0;
}

/* --- Summary Section --- */
.tut-summary {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.tut-summary .accent-bar {
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  border-radius: 2px;
  margin: 0 auto 24px;
}

.tut-summary h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.tut-summary-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
}

.tut-summary-grid {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.tut-summary-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--item-color);
  transition: var(--transition);
}

.tut-summary-item:hover {
  border-color: var(--item-color);
  background: var(--bg-card-hover);
}

.tut-summary-icon {
  font-size: 1.1rem;
}

/* --- Tutorial Page Responsive --- */
@media (max-width: 900px) {
  .tut-setup-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tut-setup-grid::before {
    display: none;
  }

  .tut-cap-grid {
    grid-template-columns: 1fr;
  }

  .tut-cap-question {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .tut-section {
    padding: 60px 16px;
  }

  .tut-capability {
    padding: 32px 24px;
  }

  .tut-cap-card {
    padding: 20px 16px;
  }
}