

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

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

:root {
  --c-bg:       #F4F5F7;
  --c-fg:       #0D1F3C;
  --c-muted:    #6B7A99;
  --c-accent:   #00C2A8;
  --c-surface:  #FFFFFF;
  --c-dark:     #0D1F3C;
  --c-dark-2:   #132847;
  --c-border:   #DDE2EC;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 7rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --font-display: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
}

html { font-size: 16px; background: var(--c-bg); }
body {
  font-family: var(--font-body); color: var(--c-fg);
  background: var(--c-bg); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.t-display { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.0; letter-spacing: -0.01em; text-transform: uppercase; }
.t-h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 3.5vw, 3rem); line-height: 1.05; text-transform: uppercase; }
.t-h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.3rem, 2.5vw, 2rem); line-height: 1.1; text-transform: uppercase; }
.t-h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1rem, 1.5vw, 1.3rem); text-transform: uppercase; }
.t-body { font-family: var(--font-body); font-size: clamp(0.9rem, 1.1vw, 1rem); line-height: 1.7; }
.t-small { font-size: 0.8rem; line-height: 1.5; letter-spacing: 0.05em; }
.text-muted  { color: var(--c-muted); }
.text-accent { color: var(--c-accent); }
.text-surface { color: var(--c-surface); }

.container { width: 100%; max-width: 1100px; margin-inline: auto; padding-inline: var(--space-4); }
.section { padding-block: var(--space-6); }

.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-1);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-accent); margin-bottom: var(--space-2);
}
.eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--c-accent); }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,31,60,0.97); backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,194,168,0.15);
  padding-block: var(--space-2);
}
.site-header .container { display: flex; align-items: center; }
.site-logo { display: flex; align-items: center; gap: var(--space-2); }
.site-logo img { width: 38px; height: 38px; }
.site-logo .brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 1.3rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--c-surface);
}
.site-logo .brand-name span { color: var(--c-accent); }

.page-hero {
  background: var(--c-dark);
  padding-top: calc(var(--space-5) + 70px);
  padding-bottom: var(--space-5);
  position: relative;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg,
    rgba(0,194,168,0.03) 0px, rgba(0,194,168,0.03) 1px,
    transparent 1px, transparent 80px
  );
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 10; }
.page-hero-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-accent); margin-bottom: var(--space-2); display: flex; align-items: center; gap: var(--space-1); }
.page-hero-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--c-accent); }
.page-hero h1 { color: var(--c-surface); }
.page-hero p { margin-top: var(--space-2); color: rgba(244,245,247,0.6); max-width: 55ch; font-size: 1rem; line-height: 1.7; }

.aux-section { background: var(--c-surface); }
.aux-section + .aux-section { background: var(--c-bg); }
.aux-section + .aux-section + .aux-section { background: var(--c-surface); }

.content-block { max-width: 760px; }
.content-block + .content-block { margin-top: var(--space-5); }
.content-block h2 { margin-bottom: var(--space-2); }
.content-block p, .content-block li { font-size: 0.95rem; line-height: 1.75; color: var(--c-muted); }
.content-block p + p { margin-top: var(--space-2); }
.content-block ul, .content-block ol { padding-left: 1.5rem; margin-top: var(--space-2); display: flex; flex-direction: column; gap: var(--space-1); }
.content-block ul li { list-style-type: disc; }
.content-block ol li { list-style-type: decimal; }
.content-block a { color: var(--c-accent); text-decoration: underline; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin-top: var(--space-4); }
.value-card {
  background: var(--c-dark-2);
  border: 1px solid rgba(0,194,168,0.12);
  border-radius: var(--radius-md);
  padding: var(--space-4);
}
.value-card .v-icon {
  width: 44px; height: 44px; background: rgba(0,194,168,0.12);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-2);
}
.value-card .v-icon svg { width: 22px; height: 22px; stroke: var(--c-accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { color: var(--c-surface); margin-bottom: var(--space-1); }
.value-card p { font-size: 0.875rem; color: rgba(244,245,247,0.5); line-height: 1.6; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-4); margin-top: var(--space-4); }
.team-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: var(--space-2);
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--c-dark);
  border: 3px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem;
  color: var(--c-accent);
}
.team-name { font-weight: 700; font-size: 1rem; }
.team-role { font-size: 0.8rem; color: var(--c-muted); }

.site-footer { background: var(--c-dark); color: var(--c-surface); padding-block: var(--space-4); }
.site-footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-2); }
.footer-copyright { font-size: 0.8rem; color: rgba(244,245,247,0.3); }
.footer-legal { display: flex; gap: var(--space-3); }
.footer-legal a { font-size: 0.8rem; color: rgba(244,245,247,0.45); transition: color 0.15s; }
.footer-legal a:hover { color: var(--c-accent); }

.policy-notice {
  display: inline-flex; align-items: center; gap: var(--space-1);
  background: rgba(0,194,168,0.08);
  border: 1px solid rgba(0,194,168,0.2);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem; color: var(--c-accent); letter-spacing: 0.04em;
  margin-bottom: var(--space-3);
}

.btn {
  display: inline-flex; align-items: center; gap: var(--space-1);
  font-family: var(--font-body); font-weight: 600; font-size: 0.875rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.75rem 1.75rem; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--c-accent); color: var(--c-dark); border-color: var(--c-accent); }
.btn-outline-dark { background: transparent; color: var(--c-fg); border-color: var(--c-fg); }
.btn-outline { background: transparent; color: var(--c-fg); border-color: var(--c-muted); }
.btn-ghost { background: transparent; border: 1px solid var(--c-muted); color: var(--c-fg); padding: 0.65rem 1.5rem; }

.cookie-banner {
  position: fixed; bottom: var(--space-3); left: var(--space-3); right: var(--space-3);
  background: var(--c-dark); border-top: 2px solid var(--c-accent);
  border-radius: var(--radius-md); padding: var(--space-4);
  z-index: 1000; box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  max-width: 900px; margin-inline: auto;
}
.cookie-banner.hidden { display: none; }
.cookie-content { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-4); }
.cookie-title { font-size: 0.95rem; font-weight: 600; color: var(--c-surface); margin-bottom: var(--space-2); }
.cookie-text { font-size: 0.85rem; color: rgba(244,245,247,0.7); line-height: 1.5; }
.cookie-text a { color: var(--c-accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: var(--space-2); flex-shrink: 0; }

.cookie-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000; padding: var(--space-3);
}
.cookie-modal.hidden { display: none; }
.cookie-modal-content {
  background: var(--c-surface); border-radius: var(--radius-lg);
  max-width: 520px; width: 100%;
  box-shadow: 0 20px 80px rgba(0,0,0,0.3);
}
.cookie-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) var(--space-4) var(--space-3);
  border-bottom: 1px solid var(--c-muted);
}
.cookie-modal-header h2 { font-size: 1.3rem; color: var(--c-fg); margin: 0; }
.btn-close {
  background: none; border: none; font-size: 1.8rem; color: var(--c-muted);
  cursor: pointer; padding: 0; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.btn-close:hover { color: var(--c-fg); }

.cookie-modal-body {
  padding: var(--space-4); max-height: 400px; overflow-y: auto;
}
.cookie-modal-body > p {
  font-size: 0.9rem; color: var(--c-muted); margin-bottom: var(--space-3);
}

.cookie-category {
  margin-bottom: var(--space-3); padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--c-muted);
}
.cookie-category:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.cookie-checkbox-label {
  display: flex; align-items: flex-start; gap: var(--space-2);
  cursor: pointer; user-select: none;
}
.cookie-checkbox {
  margin-top: 4px; cursor: pointer; accent-color: var(--c-accent);
  flex-shrink: 0; width: 18px; height: 18px;
}
.cookie-checkbox:disabled { opacity: 0.5; cursor: not-allowed; }

.cookie-checkbox-label strong {
  display: block; font-size: 0.95rem; color: var(--c-fg); margin-bottom: 4px;
}
.cookie-checkbox-label p {
  font-size: 0.8rem; color: var(--c-muted); margin: 0; line-height: 1.4;
}

.cookie-modal-footer {
  padding: var(--space-4); border-top: 1px solid var(--c-muted);
  display: flex; gap: var(--space-2); justify-content: flex-end;
}

@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .container { padding-inline: var(--space-2); }
  .section { padding-block: var(--space-5); }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer .container { flex-direction: column; align-items: flex-start; }
}

.policy-notice { color: #111111 !important; }

/* wh-contrast-fix */
/* Auto-injected: text color did not meet 4.5:1 against declared background (state-aware). */
.policy-notice { color: #111111 !important; }

/* wh-fix-hub: cookie banner sits on dark (--c-dark) bg — restore light button text.
   Beats global !important .btn-ghost contrast override via higher specificity. */
.cookie-banner .btn-ghost { color: var(--c-surface) !important; border: 1px solid rgba(0,194,168,0.55) !important; }
.cookie-banner .btn-outline { color: var(--c-surface) !important; border-color: var(--c-surface) !important; }

/* wh-fix-hub: pricing section is dark-themed (section--dark => white text);
   .pricing bg override made it light -> white heading vanished. Pin bg dark + keep card text readable. */
.pricing.section--dark { background: var(--c-dark) !important; }
.pricing-card:not(.featured) { color: var(--c-fg); }
