/* ABC Favorit font */
@font-face {
  font-family: 'ABC Favorit';
  src: url('/fonts/ABCFavorit-Regular.woff2') format('woff2'),
       url('/fonts/ABCFavorit-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ABC Favorit';
  src: url('/fonts/ABCFavorit-RegularItalic.woff2') format('woff2'),
       url('/fonts/ABCFavorit-RegularItalic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'ABC Favorit';
  src: url('/fonts/ABCFavorit-Medium.woff2') format('woff2'),
       url('/fonts/ABCFavorit-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'ABC Favorit';
  src: url('/fonts/ABCFavorit-Bold.woff2') format('woff2'),
       url('/fonts/ABCFavorit-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --color-bg-dark: #1a1520;
  --color-bg-darker: #120e17;
  --color-purple: #2d2438;
  --color-purple-light: #3d3248;
  --color-cream: #f5f0e8;
  --color-cream-dark: #ebe5db;
  --color-text-light: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.7);
  --color-text-dark: #1a1520;
  --color-text-gray: #6b6370;
  --color-accent: #c4b5a0;
  --container-max: 1200px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'ABC Favorit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--color-text-dark);
  background: var(--color-bg-darker);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'ABC Favorit', 'EB Garamond', 'Times New Roman', serif;
  font-weight: 400;
  line-height: 1.3;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-text-light);
  color: var(--color-bg-dark);
  border-radius: 6px;
}

.btn-primary:hover {
  background: var(--color-cream);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--color-text-light);
  border-radius: 8px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-white {
  color: #fff;
  border-color: #fff;
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.2);
}

.section-label {
  font-size: 13px;
  color: var(--color-text-gray);
  margin-bottom: 12px;
  font-family: 'ABC Favorit', 'Inter', sans-serif;
  font-style: italic;
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background-color 0.3s ease;
}

.header.dark {
  background: rgba(18, 14, 23, 0.9);
  backdrop-filter: blur(10px);
  color: var(--color-text-light);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-icon {
  width: 24px;
  height: 24px;
}

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

.nav a:not(.btn) {
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.nav a:not(.btn):hover {
  opacity: 1;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  background: var(--color-bg-dark);
  padding: 80px 0 48px;
  color: var(--color-text-light);
}

.footer .stripe-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(8.33% - 1px),
    rgba(255, 255, 255, 0.04) calc(8.33% - 1px),
    rgba(255, 255, 255, 0.04) 8.33%
  );
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
}

.footer-logo {
  width: 72px;
  height: 72px;
  margin-top: 10px;
}

.footer-title {
  font-family: 'ABC Favorit', 'EB Garamond', serif;
  font-size: clamp(56px, 10vw, 96px);
  font-weight: 400;
  font-style: normal;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-left {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--color-text-light);
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   STRIPE BACKGROUND
   ============================================ */
.stripe-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(8.33% - 1px),
    rgba(0, 0, 0, 0.06) calc(8.33% - 1px),
    rgba(0, 0, 0, 0.06) 8.33%
  );
  pointer-events: none;
}

.stripe-bg.dark {
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent calc(8.33% - 1px),
    rgba(255, 255, 255, 0.04) calc(8.33% - 1px),
    rgba(255, 255, 255, 0.04) 8.33%
  );
}

/* ============================================
   HOME PAGE
   ============================================ */
.home-hero {
  background: var(--color-bg-darker);
  color: var(--color-text-light);
  padding: 140px 0 100px;
}

.home-hero .container {
  text-align: center;
}

.home-hero .hero-label {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.home-hero .hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.home-hero .hero-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: left;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.product-card h2 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}

.product-description {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-image {
  border-radius: 8px;
  overflow: hidden;
  height: 280px;
  margin-top: auto;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.02);
}

/* About Section */
.about {
  background: var(--color-cream);
  color: var(--color-text-dark);
  padding: 100px 0;
}

.about-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.about-intro {
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  color: var(--color-text-gray);
}

.about-intro em {
  font-style: normal;
}

.about-lead {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--color-text-dark);
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-gray);
  margin-bottom: 20px;
}

.about-content p:last-child {
  font-weight: 500;
  color: var(--color-text-dark);
  margin-bottom: 0;
}

/* CTA Section */
.cta {
  position: relative;
  background: var(--color-bg-darker);
  color: var(--color-text-light);
  padding: 100px 0;
  text-align: center;
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.cta .pill {
  display: inline-block;
  padding: 4px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  font-size: 0.85em;
}

.cta p {
  color: var(--color-text-muted);
  font-size: 16px;
  max-width: 450px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ============================================
   MIRA PAGE
   ============================================ */
.mira-hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--color-bg-darker);
  color: var(--color-text-light);
  overflow: hidden;
}

.mira-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mira-hero .hero-label {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.mira-hero .hero-title {
  font-size: clamp(48px, 8vw, 96px);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mira-hero .hero-subtitle {
  font-size: clamp(18px, 3vw, 24px);
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.mira-hero .hero-divider {
  width: 100px;
  height: 0.5px;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 auto 40px;
}

.mira-hero .hero-tagline {
  font-family: 'EB Garamond', serif;
  font-size: clamp(32px, 5vw, 40px);
  color: var(--color-text-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero-demo {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.5);
}

/* Problem Section */
.problem {
  position: relative;
  padding: var(--section-padding) 0;
  background: var(--color-cream);
}

.problem-layout {
  display: flex;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.problem-sidebar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 8px;
  flex-shrink: 0;
}

.section-label.large {
  font-size: 18px;
}

.dashed-line {
  width: 95px;
  height: auto;
}

.problem-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 32px;
  color: var(--color-text-dark);
}

.problem-content p {
  color: var(--color-text-gray);
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.problem-content .highlight {
  color: var(--color-text-dark);
  font-weight: 500;
  margin-top: 24px;
}

/* How It Works */
.how-it-works {
  position: relative;
  padding: var(--section-padding) 0;
  background: var(--color-cream-dark);
}

.how-it-works .section-label.center {
  text-align: center;
}

.how-it-works h2 {
  text-align: center;
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 64px;
  color: var(--color-text-dark);
}

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

.step-card {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 32px 24px;
  background: transparent;
}

.step-number {
  display: block;
  font-size: 13px;
  color: var(--color-text-gray);
  margin-bottom: 24px;
  font-family: 'ABC Favorit', 'Inter', sans-serif;
  font-style: italic;
}

.step-card h3 {
  font-family: 'ABC Favorit', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--color-text-dark);
}

.step-card p {
  font-size: 14px;
  color: var(--color-text-gray);
  line-height: 1.7;
}

/* Features */
.features {
  position: relative;
  padding: var(--section-padding) 0;
  background: var(--color-cream);
}

.label-with-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.features .section-label {
  margin-bottom: 0;
}

.feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feature:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-content {
  max-width: 500px;
}

.feature h3 {
  font-family: 'ABC Favorit', 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-text-dark);
}

.feature p {
  font-size: 14px;
  color: var(--color-text-gray);
  line-height: 1.6;
}

.feature-visual {
  display: flex;
  align-items: center;
}

.dot-single {
  width: 48px;
  height: 48px;
  background: var(--color-bg-dark);
  border-radius: 50%;
}

.crescent-large {
  width: 100px;
  height: 100px;
  background: var(--color-bg-dark);
  border-radius: 50%;
  clip-path: inset(0 0 0 40%);
}

.dots-grid-2x4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.dot-small {
  width: 32px;
  height: 32px;
  background: var(--color-bg-dark);
  border-radius: 50%;
}

.two-dots-mixed {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.dot-large {
  width: 56px;
  height: 56px;
  background: var(--color-bg-dark);
  border-radius: 50%;
}

/* ============================================
   CARL PAGE
   ============================================ */
.carl-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 100px;
  background: var(--color-bg-darker);
  color: var(--color-text-light);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.carl-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
}

.carl-hero .hero-label {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.carl-hero .hero-title {
  font-size: clamp(48px, 8vw, 96px);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.carl-hero .hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto 80px;
  line-height: 1.5;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--color-text-light);
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Use Cases */
.use-cases {
  padding: var(--section-padding) 0;
  background: var(--color-bg-darker);
  color: var(--color-text-light);
}

.use-cases h2 {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 64px;
  text-align: center;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.use-case {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px;
}

.use-case h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

.use-case p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-hero {
  background: var(--color-bg-darker);
  color: var(--color-text-light);
  padding: 140px 0 80px;
  text-align: center;
}

.blog-hero .hero-label {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.blog-hero .hero-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  margin-bottom: 16px;
}

.blog-hero .hero-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* Featured Post */
.featured {
  background: var(--color-bg-darker);
  padding: 0 0 80px;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 48px;
  color: var(--color-text-light);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.featured-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-content h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 16px;
  line-height: 1.2;
}

.featured-content p {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.featured-image {
  border-radius: 12px;
  overflow: hidden;
  max-height: 350px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-card:hover .featured-image img {
  transform: scale(1.02);
}

.post-category {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.post-date {
  font-size: 13px;
  color: #000;
  font-style: italic;
}

.featured-card .post-date {
  color: #fff;
}

/* Posts Grid */
.posts {
  background: var(--color-cream);
  padding: 80px 0;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  justify-items: center;
}

.post-card {
  display: flex;
  flex-direction: column;
  background: var(--color-cream-dark);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 32px;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 340px;
  width: 100%;
  text-align: left;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.15);
}

.post-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.3;
}

.post-card p {
  font-size: 14px;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.post-card .post-category {
  color: var(--color-text-gray);
}

/* Newsletter */
.newsletter {
  background: var(--color-bg-darker);
  padding: 100px 0;
}

.newsletter-content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.newsletter p {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ============================================
   CAREERS PAGE
   ============================================ */
.careers-hero {
  background: var(--color-bg-darker);
  color: var(--color-text-light);
  padding: 140px 0 80px;
  text-align: center;
}

.careers-hero .hero-label {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.careers-hero .hero-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.careers-hero .hero-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-title {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 48px;
}

/* Values Section */
.values {
  background: var(--color-bg-darker);
  color: var(--color-text-light);
  padding: 80px 0 100px;
}

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

.value-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px;
}

.value-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  background: var(--color-cream);
  color: var(--color-text-dark);
  padding: 100px 0;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}

.benefits-header h2 {
  font-size: clamp(28px, 3vw, 36px);
  position: sticky;
  top: 120px;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.benefit-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.benefit-desc {
  font-size: 14px;
  color: var(--color-text-gray);
}

/* Roles Section */
.roles {
  background: var(--color-cream-dark);
  color: var(--color-text-dark);
  padding: 100px 0;
}

.roles-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.role-card {
  display: block;
  background: var(--color-cream);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.role-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.15);
}

.role-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 12px;
}

.role-header h3 {
  font-size: 22px;
  font-weight: 500;
}

.role-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-gray);
}

.separator {
  opacity: 0.5;
}

.role-description {
  font-size: 15px;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.role-requirements {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.requirement {
  font-size: 12px;
  padding: 6px 12px;
  background: var(--color-cream-dark);
  border-radius: 100px;
  color: var(--color-text-gray);
}

.apply-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.role-card:hover .apply-link {
  text-decoration: underline;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .benefits-header h2 {
    position: static;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  .nav {
    display: none;
  }

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

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

  .home-hero {
    padding: 120px 0 80px;
  }

  .home-hero .hero-subtitle {
    margin-bottom: 40px;
  }

  .problem-layout {
    flex-direction: column;
    gap: 24px;
  }

  .dashed-line {
    display: none;
  }

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

  .feature {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

  .carl-hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 32px;
  }

  .carl-hero .hero-subtitle {
    margin-bottom: 48px;
  }

  .featured-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }

  .featured-image {
    order: -1;
  }

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

  .blog-hero,
  .careers-hero {
    padding: 120px 0 60px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .role-header {
    flex-direction: column;
  }

  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-nav-left {
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* Blog Post Page */
.blog-post-hero {
  padding: 160px 0 50px;
  background: var(--color-bg-dark);
}

.back-link {
  display: inline-block;
  color: var(--color-cream);
  opacity: 0.7;
  text-decoration: none;
  margin-bottom: 32px;
  transition: opacity 0.2s;
}

.back-link:hover {
  opacity: 1;
}

.blog-post-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.2;
  max-width: 900px;
  margin-bottom: 12px;
}

.blog-post-date {
  font-size: 0.9rem;
  color: var(--color-cream);
  opacity: 0.6;
  margin-bottom: 16px;
}

.blog-post-subheading {
  font-size: 1.25rem;
  color: var(--color-cream);
  opacity: 0.8;
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.blog-post-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.blog-post-buttons .btn {
  padding: 14px 28px;
}

.blog-post-content {
  padding: 80px 0;
  background: var(--color-cream);
}

.blog-post-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-bg-dark);
  text-align: left;
}

.blog-post-body p {
  margin-bottom: 1.5em;
}

.blog-post-body h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin: 1.25em 0 0.75em;
}

.blog-post-body h2:first-child {
  margin-top: 0;
}

.blog-post-body a:not(.btn) {
  color: #2563eb;
  text-decoration: underline;
}

.blog-post-body a:not(.btn):hover {
  color: #1d4ed8;
}

.blog-post-body h3 {
  font-size: 1.25rem;
  margin: 1.5em 0 0.75em;
}

.blog-post-body hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2em 0;
}

.blog-post-body .btn {
  display: inline-block;
  margin: 0.5em 0;
}

.blog-post-body .btn-primary {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}

.blog-post-body .btn-primary:hover {
  background: var(--color-purple);
}

/* Get Started Form */
.form-hero {
  padding: 160px 0 60px;
  background: var(--color-bg-dark);
  text-align: center;
}

.form-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--color-cream);
  margin-bottom: 16px;
}

.form-subtitle {
  font-size: 1.25rem;
  color: var(--color-cream);
  opacity: 0.8;
}

.form-section {
  padding: 80px 0;
  background: var(--color-cream);
}

.interest-form {
  max-width: 560px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-bg-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-bg-dark);
}

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

.btn-full {
  width: 100%;
  margin-top: 16px;
}

.form-status {
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  display: none;
}

.form-status.success {
  display: block;
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
