/* Sterient Technology — main stylesheet
 * Dark, modern, IBM Plex Sans
 * Brand accents: red #FF3B30 (i), teal #5DCAA5 (trust signals), green #1d9e75 (CTA)
 */

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

body {
  font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  background: #0a0a0f;
  color: #e5e5ec;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

:root {
  --bg-base: #0a0a0f;
  --bg-elevated: #15151c;
  --bg-deep: #0d0d13;
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #a0a0ad;
  --text-tertiary: #888;
  --text-muted: #666;
  --accent-red: #FF3B30;
  --accent-teal: #5DCAA5;
  --accent-green: #1d9e75;
  --accent-green-dark: #04342C;
  --accent-purple: #AFA9EC;
  --accent-blue: #85B7EB;
  --accent-amber: #EF9F27;
  --accent-coral: #F0997B;
  --accent-pink: #ED93B1;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

/* Top nav */
.nav {
  background: var(--bg-base);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1120px;
  margin: 0 auto;
  border-bottom: 0.5px solid var(--border-subtle);
}
.nav-logo {
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: #ffffff;
}
.nav-logo .accent-i { color: var(--accent-red); }
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
}
.nav-links a {
  color: var(--text-secondary);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a.active { color: #fff; font-weight: 500; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-signin {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}
.nav-signin:hover { color: #fff; }
.nav-signin.active { color: #fff; font-weight: 500; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  transition: opacity 0.15s ease, transform 0.05s ease;
  white-space: nowrap;
}
.btn:hover { opacity: 0.9; }
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent-green);
  color: var(--accent-green-dark);
}
.btn-secondary {
  background: transparent;
  border: 0.5px solid var(--border-strong);
  color: #e5e5ec;
}
.btn-small {
  padding: 7px 13px;
  font-size: 13px;
}

/* Standalone brand mark block above the hero */
.brand-mark {
  padding: 80px 24px 16px;
  text-align: center;
}
.brand-mark-wordmark {
  font-size: 80px;
  font-weight: 300;
  letter-spacing: 3px;
  margin: 0;
  color: #ffffff;
  line-height: 1;
}
.brand-mark-wordmark .accent-i { color: var(--accent-red); }

/* Hero (sits below the brand mark) */
.hero {
  padding: 24px 24px 48px;
  text-align: center;
}
.hero-wordmark {
  font-size: clamp(64px, 14vw, 160px);
  font-weight: 300;
  letter-spacing: 0.04em;
  margin: 0 0 48px;
  color: #ffffff;
  line-height: 1;
}
.hero-wordmark .accent-i { color: var(--accent-red); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(29, 158, 117, 0.12);
  border: 0.5px solid rgba(29, 158, 117, 0.4);
  border-radius: 999px;
  font-size: 12px;
  color: var(--accent-teal);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: #fff;
  line-height: 1.1;
}
.hero p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

/* Page hero (subpages, left-aligned) */
.page-hero { padding: 56px 24px 48px; }
.page-hero .eyebrow {
  font-size: 12px;
  color: var(--accent-teal);
  letter-spacing: 2px;
  margin: 0 0 12px;
}
.page-hero h1 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -1px;
  margin: 0 0 18px;
  color: #fff;
  line-height: 1.15;
  max-width: 640px;
}
.page-hero p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 0 24px;
  line-height: 1.65;
}
.page-hero-actions {
  display: flex;
  gap: 10px;
}

/* Partner strip */
.partner-strip {
  margin: 0 0 40px;
  padding: 28px;
  background: var(--bg-deep);
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
}
.partner-strip-inner { width: 100%; }
.partner-strip-label {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-align: center;
  margin: 0 0 16px;
}
.partner-strip-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
  opacity: 0.7;
  flex-wrap: wrap;
}
.partner-strip-logos span {
  font-size: 14px;
  font-weight: 500;
  color: #e5e5ec;
}

/* Section */
.section { padding: 8px 24px 48px; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
.section-head .eyebrow,
.section .eyebrow {
  font-size: 12px;
  color: var(--accent-teal);
  letter-spacing: 1px;
  margin: 0 0 4px;
}
.section-head h2,
.section h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}
.section-head a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color 0.15s ease;
}
.section-head a:hover { color: #fff; }

/* Category section header */
.category-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.category-head i { font-size: 18px; }
.category-head .label {
  font-size: 11px;
  letter-spacing: 2px;
  margin: 0;
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

/* Cards */
.card {
  background: var(--bg-elevated);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
}
.card-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.card-icon i { font-size: 20px; }
.card-title {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}
.card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
  flex-grow: 1;
}
.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.card-tag {
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 4px;
}

/* Stats band */
.stats {
  margin: 0 24px 48px;
  padding: 28px;
  background: var(--bg-elevated);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.container > .stats {
  margin-left: 0;
  margin-right: 0;
}
.stats .stat-value {
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 4px;
}
.stats .stat-value.accent { color: var(--accent-teal); }
.stats .stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  margin: 0;
}

/* CTA block */
.cta-block {
  margin: 0 24px 24px;
  padding: 32px;
  background: var(--bg-elevated);
  border: 0.5px solid rgba(29, 158, 117, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.container > .cta-block {
  margin-left: 0;
  margin-right: 0;
}
.cta-block h3 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 6px;
  color: #fff;
}
.cta-block p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}

/* Footer */
.footer {
  padding: 20px 0;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px 0;
  border-top: 0.5px solid var(--border-subtle);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Color tokens for icon backgrounds */
.bg-teal { background: rgba(29, 158, 117, 0.15); color: var(--accent-teal); }
.bg-purple { background: rgba(127, 119, 221, 0.15); color: var(--accent-purple); }
.bg-blue { background: rgba(55, 138, 221, 0.15); color: var(--accent-blue); }
.bg-amber { background: rgba(239, 159, 39, 0.15); color: var(--accent-amber); }
.bg-coral { background: rgba(216, 90, 48, 0.15); color: var(--accent-coral); }
.bg-pink { background: rgba(212, 83, 126, 0.15); color: var(--accent-pink); }

/* Tag color variants */
.tag-teal { background: rgba(29, 158, 117, 0.12); color: var(--accent-teal); }
.tag-purple { background: rgba(127, 119, 221, 0.15); color: var(--accent-purple); }
.tag-blue { background: rgba(55, 138, 221, 0.15); color: var(--accent-blue); }
.tag-amber { background: rgba(239, 159, 39, 0.15); color: var(--accent-amber); }
.tag-coral { background: rgba(216, 90, 48, 0.15); color: var(--accent-coral); }
.tag-pink { background: rgba(212, 83, 126, 0.15); color: var(--accent-pink); }
.tag-neutral { background: rgba(255, 255, 255, 0.06); color: var(--text-secondary); }

/* Text colors */
.text-teal { color: var(--accent-teal); }
.text-purple { color: var(--accent-purple); }
.text-blue { color: var(--accent-blue); }
.text-amber { color: var(--accent-amber); }
.text-coral { color: var(--accent-coral); }
.text-pink { color: var(--accent-pink); }
.text-red { color: var(--accent-red); }

/* Forms */
.form-card {
  background: var(--bg-elevated);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.form-field {
  margin-bottom: 14px;
}
.form-field label,
.form-row label {
  font-size: 12px;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 6px;
}
.form-field label .optional {
  color: var(--text-muted);
  font-weight: 400;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-deep);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  transition: border-color 0.15s ease;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-teal);
}
.form-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.5;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #555;
}
.form-input:disabled,
.form-select:disabled,
.form-textarea:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.form-helper {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
}
.form-error-banner {
  background: rgba(255, 59, 48, 0.08);
  border: 0.5px solid rgba(255, 59, 48, 0.4);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 22px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.form-error-banner i { font-size: 20px; color: var(--accent-red); flex-shrink: 0; margin-top: 1px; }
.form-error-banner p { margin: 0; }
.form-error-banner .title {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 4px;
}
.form-error-banner .desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.form-info-banner {
  background: rgba(29, 158, 117, 0.08);
  border: 0.5px solid rgba(29, 158, 117, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin-bottom: 22px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.form-info-banner i { font-size: 16px; color: var(--accent-teal); flex-shrink: 0; }
.form-info-banner p {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}
.form-field-error label { color: var(--accent-red); }
.form-field-error .form-input,
.form-field-error .form-select,
.form-field-error .form-textarea {
  border-color: rgba(255, 59, 48, 0.5);
}
.form-error-msg {
  font-size: 11px;
  color: var(--accent-red);
  margin: 6px 0 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.form-success-hint {
  font-size: 11px;
  color: var(--accent-teal);
  margin: 6px 0 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.btn-submitting {
  background: rgba(29, 158, 117, 0.4);
  color: rgba(4, 52, 44, 0.6);
  cursor: not-allowed;
}
.form-submitting-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.4);
  backdrop-filter: blur(1px);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.form-submitting-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.spinner {
  width: 36px;
  height: 36px;
  animation: spin 1s linear infinite;
  transform-origin: center;
}
@keyframes spin { 100% { transform: rotate(360deg); } }
.spinner circle.track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 2.5;
}
.spinner path.progress {
  fill: none;
  stroke: var(--accent-teal);
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* Sign-in specific */
.signin-wrap {
  padding: 80px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 540px;
}
.signin-card-wrap { width: 100%; max-width: 400px; }
.signin-heading {
  text-align: center;
  margin-bottom: 32px;
}
.signin-heading .wordmark {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0 0 14px;
  color: #ffffff;
  line-height: 1;
}
.signin-heading h1 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
  color: #fff;
}
.signin-heading p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
}
.signin-card {
  background: var(--bg-elevated);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.signin-submit-btn {
  width: 100%;
  padding: 12px 14px;
  background: var(--accent-green);
  color: var(--accent-green-dark);
  border: none;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.signin-submit-btn:hover { opacity: 0.9; }
.signin-submit-btn:disabled {
  background: rgba(29, 158, 117, 0.4);
  color: rgba(4, 52, 44, 0.6);
  cursor: not-allowed;
}
.signin-meta {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
  margin: 20px 0 0;
}
.signin-meta a { color: var(--accent-teal); }
.signin-terms {
  font-size: 11px;
  color: #555;
  text-align: center;
  margin: 24px 0 0;
  line-height: 1.5;
}
.signin-terms a { color: #888; }

/* Filter pills */
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-pill {
  font-size: 12px;
  padding: 6px 12px;
  background: transparent;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s ease;
}
.filter-pill:hover { color: #fff; border-color: rgba(255, 255, 255, 0.25); }
.filter-pill.active {
  background: var(--bg-elevated);
  color: #e5e5ec;
}

/* How-it-works steps */
.how-it-works {
  background: var(--bg-elevated);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(29, 158, 117, 0.15);
  color: var(--accent-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
}
.step-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.step-eyebrow .label {
  font-size: 11px;
  color: var(--accent-teal);
  letter-spacing: 1px;
  margin: 0;
}
.step-title {
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 4px;
  color: #fff;
}
.step-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.5;
}

/* Success page */
.success-hero {
  padding: 80px 24px 60px;
  text-align: center;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(29, 158, 117, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.success-icon i { font-size: 36px; color: var(--accent-teal); }
.success-hero .eyebrow {
  font-size: 12px;
  color: var(--accent-teal);
  letter-spacing: 2px;
  margin: 0 0 12px;
}
.success-hero h1 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1px;
  margin: 0 0 16px;
  color: #fff;
  line-height: 1.15;
}
.success-hero .lead {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 12px;
  line-height: 1.65;
}
.success-hero .echo {
  font-size: 14px;
  color: var(--text-tertiary);
  margin: 0 0 40px;
}
.success-hero .echo .email { color: var(--accent-teal); }
.success-next {
  background: var(--bg-elevated);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 600px;
  margin: 0 auto;
}
.success-next .eyebrow {
  font-size: 11px;
  color: var(--accent-teal);
  letter-spacing: 2px;
  margin: 0 0 16px;
}
.success-step {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.success-step:last-child { margin-bottom: 0; }
.success-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}
.success-step-title {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 2px;
  color: #fff;
}
.success-step-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

/* Two-column form layout (contact page) */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-channel {
  background: var(--bg-elevated);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.contact-channel .head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.contact-channel .head .icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-channel .head .icon i { font-size: 16px; }
.contact-channel .head .label {
  font-size: 11px;
  letter-spacing: 1px;
  margin: 0;
}
.contact-channel .value {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 4px;
}
.contact-channel .meta {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0;
}

/* SLA tier card */
.tier-card {
  background: var(--bg-elevated);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
}
.tier-card.featured {
  border: 2px solid var(--accent-teal);
}
.tier-badge {
  position: absolute;
  top: -10px;
  left: 24px;
  padding: 3px 10px;
  background: var(--accent-green);
  color: var(--accent-green-dark);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 4px;
}
.tier-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  margin: 0 0 10px;
}
.tier-card h3 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 6px;
  color: #fff;
}
.tier-card .tier-desc {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 0 0 18px;
  line-height: 1.55;
}
.tier-specs {
  border-top: 0.5px solid var(--border-subtle);
  padding-top: 16px;
}
.tier-spec {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.tier-spec:last-child { margin-bottom: 0; }
.tier-spec .key {
  font-size: 12px;
  color: var(--text-tertiary);
}
.tier-spec .val {
  font-size: 12px;
  color: #fff;
}

/* Partner tier badge */
.partner-card {
  background: var(--bg-elevated);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
}
.partner-card .head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.partner-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: #fff;
}
.partner-badge {
  font-size: 10px;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  border-radius: 4px;
  letter-spacing: 0.5px;
}
.partner-card p {
  font-size: 12px;
  color: var(--text-tertiary);
  margin: 0;
  line-height: 1.5;
}

/* Avatar bubble (about page) */
.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1f1f28;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  flex-shrink: 0;
}

/* Service card with detailed body */
.service-card {
  background: var(--bg-elevated);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 6px;
  color: #fff;
}
.service-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 14px;
  line-height: 1.55;
  flex-grow: 1;
}

/* Value card with icon side-by-side (about page principles) */
.principle-card {
  background: var(--bg-elevated);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.principle-card .card-icon { margin-bottom: 14px; }
.principle-card h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 6px;
  color: #fff;
}
.principle-card p {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.55;
}

/* Story card (about page) */
.story-card {
  background: var(--bg-elevated);
  border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.story-card .eyebrow {
  font-size: 11px;
  color: var(--accent-teal);
  letter-spacing: 2px;
  margin: 0 0 12px;
}
.story-card h2 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 12px;
  color: #fff;
}
.story-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0 0 10px;
}
.story-card p:last-child { margin: 0; }

/* Mobile responsive */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .grid-3, .grid-4, .stats { grid-template-columns: 1fr 1fr; }
  .grid-2, .contact-layout { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .cta-block { flex-direction: column; align-items: flex-start; }
  .hero h1, .page-hero h1 { font-size: 32px; }
  .brand-mark { padding: 56px 24px 8px; }
  .brand-mark-wordmark { font-size: 55px; letter-spacing: 2px; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .stats, .steps-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1, .page-hero h1 { font-size: 26px; }
  .nav-logo { font-size: 20px; }
  .brand-mark { padding: 40px 24px 8px; }
  .brand-mark-wordmark { font-size: 36px; letter-spacing: 1px; }
}
