@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Source+Sans+3:wght@400;500;600&family=Roboto+Mono:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap");

:root {
  /* Colors */
  --color-primary: #0f81c7;
  --color-primary-dark: #0b6298;
  --color-primary-light: #1b9eee;
  --color-text-heading: #111111;
  --color-text-body: #2a2a2a;
  --color-text-muted: #64748b;
  --color-bg-white: #ffffff;
  --color-bg-light: #f5f7fa;
  --color-bg-dark: #101b22;
  --color-border: #e2e8f0;

  /* Status Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;

  /* Typography */
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --font-mono: "Roboto Mono", monospace;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background-color: var(--color-bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-text-heading);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

.text-primary {
  color: var(--color-primary);
}

/* Icons */
.icon {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

/* Layout */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  text-align: center;
}
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
}
.btn-primary:hover {
  background-color: var(--color-primary-dark);
}
.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn-secondary:hover {
  background-color: rgba(15, 129, 199, 0.05);
}
.btn-outline {
  background-color: transparent;
  color: var(--color-text-body);
  border: 1px solid var(--color-border);
}
.btn-outline:hover {
  background-color: #f1f5f9;
}
.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
}
.brand svg {
  width: 32px;
  height: 32px;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-heading);
  letter-spacing: -0.5px;
}

.main-nav {
  display: none;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.login-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-text-muted);
}
.login-link:hover {
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .main-nav {
    display: block;
  }
}

/* Hero */
.hero {
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto 48px;
}
.hero-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 60px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-actions {
    flex-direction: row;
  }
}

.hero-visual {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.dashboard-mockup {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #f1f5f9, #cbd5e1);
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.dashboard-mockup .icon {
  font-size: 64px;
  color: rgba(148, 163, 184, 0.5);
}
.hero-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-color: rgba(15, 129, 199, 0.05);
  filter: blur(60px);
  border-radius: 50%;
  z-index: 1;
}

/* Trust Bar */
.trust-bar {
  padding: 48px 0;
  background-color: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.trust-title {
  text-align: center;
  font-size: 14px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.trust-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-text-muted);
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.trust-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  color: var(--color-text-heading);
}
@media (min-width: 768px) {
  .trust-logos {
    gap: 64px;
  }
}

/* Sections */
.section {
  padding: 96px 0;
}
.section-bg-white {
  background-color: var(--color-bg-white);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-size: 32px;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
}
@media (min-width: 768px) {
  .section-title {
    font-size: 40px;
  }
}

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

.card {
  background-color: var(--color-bg-white);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.card:hover {
  border-color: rgba(15, 129, 199, 0.5);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(15, 129, 199, 0.1);
  color: var(--color-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.card-title {
  font-size: 20px;
  margin-bottom: 12px;
}
.card-text {
  color: var(--color-text-muted);
  font-size: 14px;
}

/* Feature Rows */
.feature-row {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  margin-bottom: 96px;
}
.feature-row:last-child {
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .feature-row {
    flex-direction: row;
    gap: 64px;
  }
  .feature-row.reverse {
    flex-direction: row-reverse;
  }
}
.feature-content {
  flex: 1;
}
.feature-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.feature-title {
  font-size: 32px;
  margin-bottom: 24px;
}
.feature-desc {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.feature-list {
  list-style: none;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 600;
}
.feature-list .icon {
  color: var(--color-primary);
  font-size: 20px;
}
.feature-visual {
  flex: 1;
  width: 100%;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 250px;
  gap: 16px;
}
@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
  }
  .bento-large {
    grid-column: span 2;
    grid-row: span 1;
  }
  .bento-tall {
    grid-column: span 1;
    grid-row: span 2;
  }
}

.bento-item {
  background-color: var(--color-bg-white);
  border-radius: 16px;
  border: 1px solid var(--color-border);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.bento-item-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  border: none;
}
.bento-item-primary .card-icon {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--color-bg-white);
}
.bento-item-primary .card-text {
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
.site-footer {
  background-color: var(--color-bg-dark);
  color: #94a3b8;
  padding: 80px 0 0;
}
.cta-banner {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-bottom: 64px;
}
.cta-title {
  color: var(--color-bg-white);
  font-size: 24px;
  margin-bottom: 16px;
}
.cta-text {
  font-size: 18px;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-bg-white);
  margin-bottom: 24px;
}
.footer-brand svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}
.footer-brand span {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}
.footer-desc {
  margin-bottom: 32px;
  max-width: 300px;
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg-white);
}
.social-links a:hover {
  background-color: var(--color-primary);
}
.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-title {
  color: var(--color-bg-white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 16px;
}
.footer-links a:hover {
  color: var(--color-primary);
}
.footer-bottom {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 14px;
}

/* Utility */
.mb-24 {
  margin-bottom: 24px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mt-24 {
  margin-top: 24px;
}

/* Legal Pages */
.legal-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
}
.legal-header {
  margin-bottom: 40px;
}
.legal-card {
  background-color: var(--color-bg-white);
  padding: 48px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
}
.legal-section {
  margin-bottom: 40px;
}
.legal-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  margin-bottom: 16px;
}
.legal-section-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(15, 129, 199, 0.1);
  color: var(--color-primary);
  border-radius: 8px;
}
.legal-text {
  margin-bottom: 16px;
}
.legal-list {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
}
.legal-list li {
  margin-bottom: 8px;
}

/* Jobs Pages */
.filters-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.job-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-white);
  margin-bottom: 16px;
  transition: all 0.2s;
}
.job-item:hover {
  border-color: var(--color-primary);
  background-color: rgba(15, 129, 199, 0.05);
}
.job-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.job-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.job-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Audit Terminal */
.audit-terminal {
  background-color: #111111;
  border-radius: 12px;
  padding: 16px;
  font-family: var(--font-mono);
  color: var(--color-success);
  font-size: 14px;
  border: 1px solid #333;
}
.audit-header {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.audit-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.audit-dot.red {
  background-color: var(--color-error);
}
.audit-dot.yellow {
  background-color: var(--color-warning);
}
.audit-dot.green {
  background-color: var(--color-success);
}
.audit-line {
  margin-bottom: 4px;
}
.audit-time {
  color: #64748b;
}

/* Page Header */
.page-header {
  text-align: center;
  padding: 64px 24px;
}
.page-label {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(15, 129, 199, 0.1);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.page-title {
  font-size: 40px;
  margin-bottom: 16px;
}
.page-subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background-color: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq-item:hover {
  border-color: rgba(15, 129, 199, 0.3);
}
.faq-summary {
  padding: 24px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-text-heading);
}
.faq-summary::-webkit-details-marker {
  display: none;
}
.faq-summary::after {
  content: "keyboard_arrow_down";
  font-family: "Material Symbols Outlined";
  font-size: 24px;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-summary::after {
  transform: rotate(180deg);
}
.faq-content {
  padding: 0 24px 24px;
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
}
.faq-content p {
  margin-bottom: 12px;
}
.faq-content p:last-child {
  margin-bottom: 0;
}
