/* app/static/scss/landing_page_2.scss */
:root {
  /* --- Colors --- */
  --color-bg-sidebar: #FFFFFF;
  --color-bg-main: #F9FAFB;
  --color-bg-card: #FFFFFF;
  --color-bg-page: #F5F5F7;
  --color-text-primary: #111827;
  --color-text-secondary: #6B7280;
  --color-text-light: #FFFFFF;
  --color-text-dark: #111827;
  /* Branding */
  --color-accent-orange: #F97316;
  --color-accent-orange-hover: #EA580C;
  --color-accent-orange-light: #FFF7ED;
  /* Functional Colors */
  --color-border: #E5E7EB;
  --color-border-light: #D2D2D7;
  --color-icon: #9CA3AF;
  --color-error: #DC2626;
  --color-success: #16A34A;
  --color-warning: #ffc107;
  --color-warning-light: #fffbe6;
  --color-warning-dark: #b28400;
  /* --- Typography --- */
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* --- Sizing & Spacing --- */
  --sidebar-width: 256px;
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  /* Legacy Spacing Units */
  --spacing-unit-half: 16px;
  --spacing-unit: 32px;
  --spacing-unit-x2: 64px;
  /* --- Borders & Radius --- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-card: 18px;
  --radius-pill: 999px;
  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-card: 0px 4px 24px rgba(0, 0, 0, 0.04);
  /* --- Transitions --- */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Flexbox Helpers */
/* Text Truncation (Ellipsis) */
/* Scrollbar Styling (for Sidebar/Content areas) */
/* Responsive Breakpoints */
/* --- CSS Variables & Theme --- */
:root {
  --font-body: 'Inter', system-ui, sans-serif;
  --color-primary: #F97316;
  --color-primary-hover: #EA580C;
  --color-bg-light: #F9FAFB;
  --color-bg-alt: #F2F0E9;
  --color-text-main: #111827;
  --color-text-muted: #6B7280;
  --color-border: #E5E7EB;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-lp2: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Base Styling --- */
body, html {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: #ffffff;
  scroll-behavior: smooth;
  line-height: 1.5;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-text-main);
}
.brand .brand-mark {
  color: var(--color-primary);
  font-size: 1.5rem;
}
.brand .brand-name {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav {
  display: flex;
  gap: 32px;
}
@media (max-width: 768px) {
  .nav {
    display: none;
  }
}
.nav a {
  text-decoration: none;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}
.nav a:hover {
  color: var(--color-primary);
}

.header-cta {
  display: flex;
  gap: 12px;
}
@media (max-width: 768px) {
  .header-cta {
    display: none;
  }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text-main);
}
.btn-ghost:hover {
  background: var(--color-bg-light);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* --- Hero Section --- */
.hero {
  padding: 80px 0;
  background: radial-gradient(circle at top right, #FFF7ED 0%, #FFFFFF 60%);
}
.hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .hero .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.hero .badge {
  display: inline-block;
  .hero .badge {
  background: var(--color-accent-orange-light);
  border-radius: var(--radius-pill);
}
  color: var(--color-primary);
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 850;
  letter-spacing: -0.04em;
  margin: 0 0 24px 0;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}
.hero .lead {
  font-size: 1.25rem;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}
.hero .hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .hero .hero-actions {
    justify-content: center;
  }
}

/* Hero Content Card (Visual Flow) */
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lp2);
  border: 1px solid var(--color-border);
}
.hero-card-top {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}
.hero-card-top .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E5E7EB;
}
.hero-card-top .hero-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  margin-left: 8px;
}

.flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-bg-light);
  padding: 12px 16px;
  border-radius: var(--radius-md);
}
.flow-step .flow-icon {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.flow-step .flow-text strong {
  display: block;
  font-size: 0.95rem;
}
.flow-step .flow-text span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.mini-metrics {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}
.mini-metrics .mini-metric {
  display: flex;
  flex-direction: column;
}
.mini-metrics .mini-metric .k {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
}
.mini-metrics .mini-metric .v {
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary);
}

/* --- Sections --- */
.section {
  padding: 100px 0;
}
.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}
.section-head h2 {
  font-size: 2.5rem;
  font-weight: 850;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-head p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: border-color var(--transition);
}
.card:hover {
  border-color: var(--color-primary);
}
.card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.card p {
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- Features Article List --- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature {
  padding: 40px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}
.feature .feature-icon {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.feature .feature-lead {
  font-weight: 700;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.feature ul {
  padding-left: 20px;
}
.feature ul li {
  margin-bottom: 8px;
  color: var(--color-text-muted);
}

/* --- Trust & Manifesto --- */
.trust-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}
@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.trust-box {
  background: var(--color-bg-alt);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.trust-box h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}
.trust-box ul {
  padding: 0;
  list-style: none;
}
.trust-box li {
  margin-bottom: 16px;
  font-weight: 600;
}
.trust-box li strong {
  color: var(--color-primary);
}
.trust-box .fineprint {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 32px;
}

/* --- CTA Section --- */
.cta {
  background: var(--color-text-main);
  color: #fff;
  border-radius: var(--radius-lg);
  margin: 0 24px;
  padding: 80px 0;
}
.cta .cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .cta .cta-inner {
    flex-direction: column;
    text-align: center;
  }
}
.cta h2 {
  color: #fff;
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
}
.cta .cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 320px;
}
@media (max-width: 768px) {
  .cta .cta-form {
    width: 100%;
  }
}
.cta .cta-form .form-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* --- Footer --- */
.site-footer {
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
  margin-top: 80px;
}
.site-footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .site-footer .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}
.site-footer .brand--footer {
  filter: grayscale(1);
  opacity: 0.7;
  margin-bottom: 12px;
}
.site-footer .small {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.site-footer .small a {
  text-decoration: none;
  color: inherit;
}

/* --- Design Rotator --- */
.design-rotator {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #000;
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  z-index: 2000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}
.design-rotator:hover {
  transform: scale(1.05);
}

/* --- Accordion --- */
.accordion .acc-item {
  border-bottom: 1px solid var(--color-border);
}
.accordion .acc-item summary {
  padding: 24px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}
.accordion .acc-item summary:hover {
  color: var(--color-primary);
}
.accordion .acc-item .acc-body {
  padding-bottom: 24px;
  color: var(--color-text-muted);
}

/* --- Language Switcher --- */
.language-switcher-landing {
  display: flex;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
}
.language-switcher-landing a {
  text-decoration: none;
  color: var(--color-text-muted);
}
.language-switcher-landing a.active {
  color: var(--color-text-main);
  text-decoration: underline;
}
.language-switcher-landing .lang-separator {
  opacity: 0.3;
}

/* --- Mobile Fixes --- */
.mobile-sticky-cta {
  display: none;
}
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 24px;
    background: #fff;
    border-top: 1px solid var(--color-border);
    z-index: 1500;
  }
  .mobile-sticky-cta .btn {
    width: 100%;
  }
}

/* Add this to app/static/scss/landing_page_2.scss */
.language-switcher-landing {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.85rem;
}
.language-switcher-landing a {
  text-decoration: none;
  color: var(--color-text-muted);
  transition: opacity 0.2s;
}
.language-switcher-landing a:hover {
  opacity: 0.7;
}
.language-switcher-landing a.active {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.language-switcher-landing .lang-separator {
  opacity: 0.3;
}

.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
}
@media (max-width: 768px) {
  .mobile-sticky-cta {
    display: block;
  }
}

.site-footer .small a {
  transition: color 0.2s;
}
.site-footer .small a:hover {
  color: var(--color-primary);
}

/* --- Hamburger Button Fix --- */
.nav-toggle {
  display: none;
  background: #F3F4F6;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.nav-toggle .hamburger {
  width: 20px;
  height: 2px;
  background: var(--color-text-main);
  position: relative;
}
.nav-toggle .hamburger::before, .nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--color-text-main);
  left: 0;
}
.nav-toggle .hamburger::before {
  top: -6px;
}
.nav-toggle .hamburger::after {
  bottom: -6px;
}
.nav-toggle.is-active .hamburger {
  background: transparent;
}
.nav-toggle.is-active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle.is-active .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* --- Promo Banner --- */
.promo-banner {
  background: #10B981;
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.promo-banner button {
  background: none;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
}

/* --- Footer Links --- */
.site-footer a {
  color: var(--color-text-muted);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* --- FAQ Accordion --- */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}
.accordion details {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 5px 20px;
  transition: all 0.3s;
}
.accordion details summary {
  padding: 15px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  outline: none;
}
.accordion details summary::-webkit-details-marker {
  display: none;
}
.accordion details summary:hover {
  color: var(--color-primary);
}
.accordion details[open] {
  border-color: var(--color-primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.accordion .acc-body {
  padding-bottom: 20px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* Hero background video layer (V1 -> V2) */
.hero {
  position: relative;
  overflow: hidden;
}

/* layer behind content */
.hero .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02); /* avoids edge gaps */
}

.hero .hero-media-overlay {
  position: absolute;
  inset: 0;
  /* tweak to taste */
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.65) 100%
  );
}

/* ensure hero content is above background */
.hero .hero-grid {
  position: relative;
  z-index: 1;
}

.hero .hero-copy h1,
.hero .hero-copy p,
.hero .badge,
.hero .trust-strip {
  color: #fff;
}

.hero .trust-pill {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
}

.hero .btn.btn-ghost {
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

/* Mobile: kill video, keep the look via poster image */
@media (max-width: 768px) {
  .hero {
    padding: 56px 0; /* tighter for mobile */
  }

  .hero .hero-video {
    display: none !important;
  }

  .hero .hero-media {
    background: url("/static/img/hero-poster.png") center/cover no-repeat;
  }

  .hero .hero-media-overlay {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.35) 40%,
      rgba(0,0,0,0.55) 100%
    );
  }
}


@media (prefers-reduced-motion: reduce) {
  .hero .hero-video { display: none; }
  .hero .hero-media {
    background: url("/static/img/hero-poster.png") center/cover no-repeat;
  }
}



/*# sourceMappingURL=landing_page_2.css.map */
