/* ========================================
   FullProof Systems — Static Site Styles
   Derived from source design tokens & components
   ======================================== */

/* Self-hosted fonts — matches Next.js font config in styles/fonts.ts */
@font-face {
  font-family: 'Instrument Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('fonts/instrument-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---- Theme Tokens ---- */

:root {
  /* Light Mode (tweakcn Fullproof Theme) */
  --background: #f6f1ea;
  --foreground: #09090b;
  --card: #fbfaf8;
  --primary: #314855;
  --secondary: #f5930a;
  --secondary-foreground: #000000;
  --muted: #efece7;
  --muted-foreground: #70695c;
  --border: #e4e4e7;
  --input: #e4e4e7;
  --ring: #f5930a;

  /* Derived surface colors (light) */
  --navbar-bg: rgba(246, 241, 234, 0.95);
  --card-surface: rgba(251, 250, 248, 0.5);
  --card-surface-strong: rgba(251, 250, 248, 0.7);
  --card-border: rgba(255, 171, 26, 0.25);
  --gold-subtle: rgba(255, 171, 26, 0.6);
  --gold-faint: rgba(255, 171, 26, 0.1);
  --text-body: rgba(9, 9, 11, 0.85);
  --text-dim: rgba(9, 9, 11, 0.7);
  --text-dimmer: rgba(9, 9, 11, 0.6);
  --footer-bg: rgba(228, 221, 212, 0.95);
  --input-bg: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.08);
  --logo-filter: none;
  --gold-text: var(--primary);
  --btn-bg: #EFA625;
  --btn-hover-bg: #f5930a;

  /* Semantic aliases */
  --color-bg: var(--background);
  --color-text: var(--foreground);
  --color-border: var(--border);

  /* Typography */
  --ff-sans: 'Instrument Sans', system-ui, -apple-system, sans-serif;

  --max-width: 72rem;
  --nav-height: 80px;
}

/* Dark Mode */
[data-theme="dark"] {
  --background: #09090b;
  --foreground: #fafafa;
  --card: #09090b;
  --primary: #f59b00;
  --secondary: #EFA625;
  --secondary-foreground: #ffffff;
  --muted: #27272a;
  --muted-foreground: #a1a1aa;
  --border: #27272a;
  --input: #27272a;
  --ring: #f5930a;

  --navbar-bg: rgba(9, 9, 11, 0.95);
  --card-surface: rgba(39, 39, 42, 0.3);
  --card-surface-strong: rgba(39, 39, 42, 0.5);
  --card-border: rgba(245, 155, 0, 0.3);
  --gold-subtle: rgba(245, 155, 0, 0.6);
  --gold-faint: rgba(245, 155, 0, 0.1);
  --text-body: rgba(250, 250, 250, 0.9);
  --text-dim: rgba(250, 250, 250, 0.7);
  --text-dimmer: rgba(250, 250, 250, 0.6);
  --footer-bg: rgba(20, 26, 35, 0.95);
  --input-bg: #18181b;
  --shadow-color: rgba(0, 0, 0, 0.3);
  --logo-filter: none;
  --gold-text: var(--secondary);
  --btn-bg: #f5930a;
  --btn-hover-bg: #EFA625;
}

/* System preference fallback (when no data-theme is set explicitly) */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --background: #09090b;
    --foreground: #fafafa;
    --card: #09090b;
    --primary: #f59b00;
    --secondary: #EFA625;
    --secondary-foreground: #ffffff;
    --muted: #27272a;
    --muted-foreground: #a1a1aa;
    --border: #27272a;
    --input: #27272a;
    --ring: #f5930a;

    --navbar-bg: rgba(9, 9, 11, 0.95);
    --card-surface: rgba(39, 39, 42, 0.3);
    --card-surface-strong: rgba(39, 39, 42, 0.5);
    --card-border: rgba(245, 155, 0, 0.3);
    --gold-subtle: rgba(245, 155, 0, 0.6);
    --gold-faint: rgba(245, 155, 0, 0.1);
    --text-body: rgba(250, 250, 250, 0.9);
    --text-dim: rgba(250, 250, 250, 0.7);
    --text-dimmer: rgba(250, 250, 250, 0.6);
    --footer-bg: rgba(20, 26, 35, 0.95);
    --input-bg: #18181b;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --logo-filter: none;
    --gold-text: var(--secondary);
    --btn-bg: #f5930a;
    --btn-hover-bg: #EFA625;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--ff-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.navbar { z-index: 50; }
.hero,
.site-footer {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--secondary);
}

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

/* ---- Text Highlights ---- */

.text-gradient-gold {
  color: var(--gold-text);
  display: inline-block;
  line-height: 1.2;
}

/* ---- Navigation ---- */
/* Source: HomePage.tsx nav, bg-[#1F2A36]/95, h-20 (80px) */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: var(--navbar-bg);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  height: var(--nav-height);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.8;
}

/* Source: h-8 w-auto md:h-10 */
.logo-img {
  height: 32px;
  width: auto;
  filter: var(--logo-filter);
}

@media (min-width: 769px) {
  .logo-img {
    height: 40px;
  }
}

/* Source: text-sm font-semibold text-[#1C1C1C] bg-[#EFA625] hover:bg-[#D89520] */
.nav-cta {
  background: var(--btn-bg);
  color: var(--secondary-foreground) !important;
  padding: 8px 24px;
  border-radius: 6px;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}

.nav-cta:hover {
  background: var(--btn-hover-bg) !important;
  color: var(--secondary-foreground) !important;
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .nav-cta {
    padding: 6px 14px;
    font-size: 0.75rem !important;
  }
}

/* ---- Hero Section ---- */
/* Source: min-h-[100svh], text-center, pt-32 md:pt-36 */

.nav-spacer {
  height: var(--nav-height);
}

.hero {
  text-align: center;
}

.hero .container {
  background: var(--gold-faint);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 48px 32px;
}

/* Source: font-bold text-4xl sm:text-5xl md:text-6xl lg:text-7xl leading-tight tracking-tight */
.hero-title {
  font-family: var(--ff-sans);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  font-size: 2.25rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 3rem; }
}
@media (min-width: 768px) {
  .hero-title { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 4.5rem; }
}

.hero-title .line-ivory {
  display: block;
  color: var(--foreground);
}

.hero-title .line-gold {
  display: block;
  margin-top: 8px;
}

/* Source: text-lg sm:text-xl md:text-2xl text-[#eaedf0] */
.hero-subtitle {
  color: var(--color-text);
  margin-bottom: 32px;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.25rem; }
}
@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.5rem; }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* ---- Scroll Down Indicator ---- */

.hero-scroll-down {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--secondary);
  background: rgba(212, 175, 55, 0.08);
  margin-top: 20px;
  color: var(--secondary);
  transition: all 0.3s;
  opacity: 1;
}

.hero-scroll-down:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(212, 175, 55, 0.18);
}

.hero-scroll-down svg {
  width: 24px;
  height: 24px;
}

.hero-scroll-down.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-features-spacer {
  height: 88px;
}
@media (min-width: 640px) {
  .hero-features-spacer { height: 106px; }
}


/* ---- Shared Section Styles (non-hero) ---- */

.section-heading {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 32px;
}

@media (min-width: 640px) {
  .section-heading { font-size: 3rem; }
}
@media (min-width: 768px) {
  .section-heading { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .section-heading { font-size: 4.5rem; }
}

.section-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.stat-headline {
  text-align: center;
  margin-bottom: 32px;
}

.stat-number {
  display: block;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-sub {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.stat-tagline {
  display: block;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .stat-number { font-size: 7rem; }
  .stat-sub { font-size: 1.5rem; }
  .stat-tagline { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
  .stat-number { font-size: 9rem; }
  .stat-sub { font-size: 1.75rem; }
  .stat-tagline { font-size: 2.75rem; }
}

.section-subheading {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 16px;
}

.section-subheading-light {
  font-weight: 400;
  color: var(--text-body);
}

@media (min-width: 768px) {
  .section-subheading { font-size: 1.75rem; }
}

.section-list {
  list-style: disc;
  max-width: 80%;
  margin: 0 auto 32px;
  padding-left: 1.5em;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.625;
  color: var(--color-text);
}

.section-list-wrap {
  text-align: center;
  margin-bottom: 32px;
}

.section-list-centered {
  list-style: disc;
  max-width: none;
  display: inline-block;
  text-align: left;
  padding-left: 1.5em;
  margin: 0;
}

.section-list-centered li::marker {
  color: var(--secondary);
  font-size: 1.4em;
}

.section-list li {
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .section-list { font-size: 1.375rem; }
}

.section-body {
  font-size: 1.175rem;
  font-weight: 500;
  line-height: 1.625;
  color: var(--color-text);
  margin-bottom: 32px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-body { font-size: 1.3rem; }
}

.section-body:last-child {
  margin-bottom: 0;
}

/* Shared section wrapper — base padding for all non-hero content sections */
.page-section {
  padding: 44px 24px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .page-section { padding: 53px 24px; }
}

.page-section .container {
  max-width: 80rem;
}

/* ---- Section Separator ---- */

.section-separator {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-subtle), transparent);
  opacity: 0.4;
}

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--btn-bg);
  color: var(--secondary-foreground);
  padding: 14px 36px;
}

.btn-primary:hover {
  background: var(--btn-hover-bg);
  color: var(--secondary-foreground);
  transform: translateY(-2px);
}

/* ---- Our Story ---- */

.our-story {
  padding: 32px 16px;
}

@media (min-width: 768px) {
  .our-story { padding: 48px 24px; }
}

/* ---- FAQ Accordion ---- */

.faq .container {
  max-width: 80%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--secondary);
  margin-left: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-question:hover {
  color: var(--secondary);
}

.faq-answer {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--color-text);
  padding: 0 0 20px;
}

@media (min-width: 768px) {
  .faq-question { font-size: 1.25rem; }
  .faq-answer { font-size: 1.125rem; }
}

/* ---- Testimonials ---- */

.carousel {
  position: relative;
  overflow: hidden;
  padding: 0 16px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel-track .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  margin: 0 8px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--card-surface-strong);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
  background: var(--card-surface);
  border-color: var(--secondary);
}

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

.carousel-btn-prev { left: 0; }
.carousel-btn-next { right: 0; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--card-border);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.carousel-dot.active {
  background: var(--secondary);
}

/* Source: Quote icon - w-8 h-8 mb-4, color rgba(245, 155, 0, 0.6) */
.quote-icon {
  width: 32px;
  height: 32px;
  color: var(--gold-subtle);
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: color 0.3s;
}


/* Source: bg-[#1F2A36]/90 rounded-xl p-6 border border-[#4F5C69]/30 */
.testimonial-card {
  background: var(--card-surface-strong);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}


/* Source: text-[#FAFAF7]/90 text-base md:text-lg leading-relaxed */
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--text-body);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .testimonial-quote { font-size: 1.125rem; }
}

/* Source: font-semibold text-base text-[#FAFAF7] group-hover:text-[#EFA625] */
.testimonial-author {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 600;
  margin-top: auto;
}

/* Source: text-sm text-[#FAFAF7]/60 */
.testimonial-company {
  font-size: 0.875rem;
  color: var(--text-dimmer);
  margin-top: 4px;
}

/* ---- Features ---- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 16px;
}

/* Source: bg-[#1F2A36]/30 backdrop-blur-sm rounded-2xl p-8 border border-[#4F5C69]/30, min-h-[300px], flex-col items-center */
.feature-card {
  background: var(--card-surface);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: auto;
}

/* Highlighted "During" card — visually 25% larger than siblings */
.feature-card-highlight {
  transform: scale(1.08);
  z-index: 2;
  border-color: var(--secondary);
  box-shadow:
    0 8px 32px rgba(245, 155, 0, 0.25),
    0 0 20px rgba(245, 155, 0, 0.1);
}

@media (max-width: 768px) {
  .feature-card-highlight {
    transform: scale(1.03);
  }
}

/* Source: h-24 flex items-center justify-center, no background on container */
.feature-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: transparent;
}

.feature-icon svg {
  width: 64px;
  height: 64px;
  color: var(--secondary);
}

.feature-label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 8px;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.625;
}

@media (min-width: 768px) {
  .feature-title { font-size: 1.25rem; }
  .feature-text { font-size: 1.125rem; }
}
@media (min-width: 1024px) {
  .feature-title { font-size: 1.35rem; }
}

/* ---- CTA / Request Demo ---- */

.cta .container {
  max-width: 72rem;
}

/* Source: max-w-3xl, rounded-2xl p-6 sm:p-8 border border-[#EFA625]/40 bg-[#1F2A36]/50 */
.demo-form-wrapper {
  max-width: 48rem;
  margin: 0 auto;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 24px;
  background: var(--card-surface-strong);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 20px 25px -5px var(--shadow-color);
}

@media (min-width: 640px) {
  .demo-form-wrapper { padding: 32px; }
}

.demo-form {
  max-width: 100%;
}

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

/* Source: text-[var(--brand-ivory)] */
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  margin-bottom: 6px;
}

/* Source: text-[var(--brand-gold)] */
.form-group label .required {
  color: var(--secondary);
}

/* Source: bg-[var(--brand-charcoal)] border-[var(--brand-gold)]/30 text-[var(--brand-ivory)] placeholder:text-[var(--brand-warm-gray)] */
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--input-bg);
  border: 1px solid var(--input);
  border-radius: 8px;
  color: var(--foreground);
  font-family: var(--ff-sans);
  font-size: 1rem;
  transition: border-color 0.2s;
}

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

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

.form-group textarea {
  resize: vertical;
}

.demo-form .btn {
  margin-top: 8px;
}

/* ---- Page Header (subpages) ---- */

.page-header {
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .page-header {
    padding-top: calc(var(--nav-height) + 64px);
    padding-bottom: 40px;
  }
}

.page-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .page-title { font-size: 3rem; }
}
@media (min-width: 768px) {
  .page-title { font-size: 3.75rem; }
}
@media (min-width: 1024px) {
  .page-title { font-size: 4.5rem; }
}

/* ---- Page Content (subpages) ---- */

.page-content {
  padding: 24px 24px 48px;
  position: relative;
  z-index: 1;
}

.page-content .container {
  max-width: 80rem;
}

.content-body {
  max-width: 56rem;
  margin: 0 auto;
}

.content-body p {
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--text-body);
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .content-body p { font-size: 1.25rem; }
}

.content-body ul {
  padding-left: 1.5em;
  margin-bottom: 24px;
  list-style: disc;
}

.content-body ul ul {
  margin-bottom: 0;
  margin-top: 8px;
}

.content-body li {
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--text-body);
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .content-body li { font-size: 1.25rem; }
}

/* ---- Bottom CTA ---- */

.join-cta .container {
  background: var(--primary);
  color: #ffffff;
  border: 1px solid var(--secondary);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(245, 155, 0, 0.25),
    0 0 20px rgba(245, 155, 0, 0.1);
}

.join-cta .section-heading,
.join-cta .text-gradient-gold {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
}

.join-cta .section-body {
  color: rgba(255, 255, 255, 0.85);
}

.join-cta .btn-primary {
  background: var(--secondary);
  color: #000000;
}

.join-cta .btn-primary:hover {
  background: #ffffff;
  color: var(--primary);
}

/* ---- Footer ---- */
/* Source: Footer.tsx - bg-[#1C1C1C]/70, border-t border-slate-700/50, py-16, max-w-6xl */

.site-footer {
  position: relative;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: var(--footer-bg);
}

.footer-inner {
  position: relative;
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 32px 24px;
  max-width: 72rem;
  margin: 0 auto;
}

/* Source: h-[74px] w-auto, mb-12 */
.footer-logo {
  margin-bottom: 24px;
}

.footer-logo .logo-img {
  height: 74px;
  margin: 0 auto;
}

/* Source: gap-8 mb-12 */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

/* Source: text-[#eaedf0] hover:text-[#EFA625] */
.footer-links a {
  font-size: 1rem;
  color: var(--color-text);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--secondary);
}

/* Source: text-xs text-[#FAFAF7] leading-relaxed, max-w-4xl */
.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--color-text);
  line-height: 1.625;
  max-width: 56rem;
  margin: 0 auto;
}

/* Source: text-sm, mt-8 */
.footer-copyright {
  font-size: 0.875rem;
  color: var(--color-text);
  margin-top: 32px;
}

/* ---- Theme Toggle ---- */

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--muted);
  border-radius: 9999px;
  padding: 3px;
  margin-top: 16px;
}

.theme-toggle button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--muted-foreground);
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.theme-toggle button:hover {
  color: var(--foreground);
}

.theme-toggle button.active {
  background: var(--background);
  color: var(--foreground);
  box-shadow: 0 1px 3px var(--shadow-color);
}

.theme-toggle button svg {
  width: 16px;
  height: 16px;
}

/* ---- Team Cards ---- */

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

.team-card {
  background: var(--card-surface);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.team-card-header {
  padding: 32px 32px 24px;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 8px;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 2px solid var(--card-border);
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.team-role {
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary);
}

.team-card-body {
  padding: 24px 32px 32px;
}

.team-card-body p {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--text-body);
  margin-bottom: 16px;
}

.team-card-body p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .team-name { font-size: 1.75rem; }
  .team-role { font-size: 1.125rem; }
  .team-card-body p { font-size: 1.125rem; }
}

/* ---- Recognition ---- */

.recognition-card {
  background: var(--card-surface);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 40px;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.recognition-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 24px;
}

.recognition-card .section-body {
  max-width: 100%;
}

.recognition-link {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--secondary) !important;
  transition: opacity 0.2s;
}

.recognition-link:hover {
  opacity: 0.8;
  color: var(--secondary) !important;
}

@media (min-width: 768px) {
  .recognition-title { font-size: 1.75rem; }
  .recognition-card { padding: 48px; }
}

/* ---- Responsive ---- */

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

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

  .carousel-track .testimonial-card {
    flex: 0 0 calc(100% - 16px);
  }

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