:root {
  --bg: #f5f8fc;
  --bg-soft: #edf3fa;
  --surface: rgba(255,255,255,.9);
  --surface-strong: #ffffff;
  --surface-deep: #e8eff8;
  --border: rgba(15,23,42,.08);
  --border-strong: rgba(15,23,42,.14);
  --text: #132033;
  --muted: #5a6b81;
  --muted-2: #73849a;
  --accent: #0d7af5;
  --accent-2: #6d4cff;
  --accent-3: #15b6a1;
  --accent-soft: rgba(13,122,245,.1);
  --success-bg: #eaf8f1;
  --success-text: #196544;
  --error-bg: #fff3f3;
  --error-text: #9a1f1f;
  --shadow: 0 20px 48px rgba(15,23,42,.08);
  --shadow-soft: 0 12px 28px rgba(15,23,42,.06);
  --radius-lg: 32px;
  --radius: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --container: 1180px;
  --transition: .25s ease;
}

html[data-theme="dark"] {
  --bg: #09111d;
  --bg-soft: #101b2c;
  --surface: rgba(15,25,40,.9);
  --surface-strong: #101a2a;
  --surface-deep: #132138;
  --border: rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.14);
  --text: #f4f7fb;
  --muted: #9eb1c7;
  --muted-2: #7f92aa;
  --accent: #71a8ff;
  --accent-2: #9b7bff;
  --accent-3: #54e6d1;
  --accent-soft: rgba(113,168,255,.16);
  --success-bg: rgba(25,101,68,.22);
  --success-text: #bdf5d8;
  --error-bg: rgba(154,31,31,.22);
  --error-text: #ffd3d3;
  --shadow: 0 24px 62px rgba(0,0,0,.34);
  --shadow-soft: 0 12px 28px rgba(0,0,0,.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(13,122,245,.08), transparent 24%),
    radial-gradient(circle at top right, rgba(109,76,255,.08), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, #ffffff 26%, var(--bg) 100%);
}
html[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(84,230,209,.08), transparent 24%),
    radial-gradient(circle at top right, rgba(155,123,255,.11), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, #0b1320 26%, var(--bg) 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
code { padding: .15rem .4rem; border-radius: 10px; background: var(--surface-deep); }

.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.narrow { max-width: 860px; }
.center-text { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.brand, .footer-brand { display: inline-flex; align-items: center; gap: .9rem; }
.brand strong, .brand small, .footer-brand strong, .footer-brand small { display: block; }
.brand strong, .footer-brand strong { font-size: .98rem; letter-spacing: .14em; }
.brand small, .footer-brand small { color: var(--muted); font-size: .8rem; }
.brand-mark {
  width: 48px; height: 48px; border-radius: 16px;
  display: grid; place-items: center; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: var(--shadow-soft);
}
.nav-toggle {
  display: none; width: 48px; height: 48px; padding: .65rem;
  border-radius: 14px; border: 1px solid var(--border); background: var(--surface);
}
.nav-toggle span { display:block; height:2px; margin:5px 0; background: var(--text); border-radius:999px; }
.nav-panel, .nav-links, .nav-actions { display:flex; align-items:center; }
.nav-panel { gap: 1rem; }
.nav-links { gap: 1.15rem; }
.nav-links a, .site-footer a { color: var(--muted); transition: color var(--transition), transform var(--transition); }
.nav-links a:hover, .site-footer a:hover { color: var(--text); transform: translateY(-1px); }
.nav-links a.active { color: var(--text); }
.nav-actions { gap: .7rem; }
.theme-toggle, .lang-toggle, .button {
  border: 1px solid transparent; border-radius: 999px;
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  min-height: 46px; padding: .92rem 1.2rem; transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}
.theme-toggle, .lang-toggle {
  background: var(--surface); color: var(--text); border-color: var(--border); box-shadow: var(--shadow-soft);
}
.theme-toggle:hover, .lang-toggle:hover, .button:hover { transform: translateY(-2px); }
.button {
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-weight: 700; box-shadow: var(--shadow-soft);
}
.button-secondary { background: var(--surface-strong); color: var(--text); border-color: var(--border); }
.button-ghost { background: transparent; color: var(--text); border-color: var(--border); box-shadow:none; }
.button-sm { min-height: 42px; padding: .75rem 1rem; font-size: .92rem; }
.theme-label, .lang-label { font-weight: 600; }

.hero-section, .page-shell, .case-hero { padding: 4.4rem 0 3rem; }
.page-compact { min-height: 56vh; display:flex; align-items:center; }
.hero-grid, .split-grid, .contact-layout, .overview-grid, .two-column-grid, .three-col-grid, .project-grid, .service-grid, .process-grid, .trust-grid {
  display:grid; gap:1.25rem;
}
.hero-grid { grid-template-columns: minmax(0,1.04fr) minmax(360px,.96fr); align-items:center; gap:2rem; }
.hero-copy h1, .page-shell h1, .case-hero h1 {
  margin:0; font-size: clamp(2.45rem, 3.8vw, 3.85rem); line-height:1.05; letter-spacing:-.04em;
}
.lead {
  margin: 1.25rem 0 0; max-width: 62ch; color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.14rem);
}
.eyebrow {
  display:inline-flex; align-items:center; gap:.5rem; margin:0 0 1rem;
  color: var(--accent); font-size:.82rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase;
}
.eyebrow::before {
  content:""; width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.hero-actions { display:flex; flex-wrap:wrap; gap:.85rem; margin-top:1.7rem; }
.chip-row, .chip-cloud {
  display:flex; flex-wrap:wrap; gap:.75rem; margin-top:1.25rem;
}
.chip-row span, .chip-cloud span {
  display:inline-flex; align-items:center; min-height:42px;
  padding:.62rem 1rem; border-radius:999px; background: var(--surface);
  border:1px solid var(--border); box-shadow: var(--shadow-soft);
}
.hero-visual { display:grid; gap:1rem; align-self:center; }
.hero-collage { display:grid; grid-template-columns:1.15fr .85fr; gap:1rem; }
.card, .collage-card, .spotlight-card, .project-card, .cta-card, .contact-panel {
  background: var(--surface); border:1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.collage-card { overflow:hidden; min-height: 230px; }
.collage-card.large { grid-row: span 2; min-height: 470px; }
.collage-card img, .project-card img, .image-shell img { width:100%; height:100%; object-fit:cover; }
.spotlight-card { padding:1.35rem; }
.spotlight-topline, .project-meta { display:flex; align-items:center; justify-content:space-between; gap:.8rem; color: var(--muted); font-size:.92rem; }
.pill {
  display:inline-flex; align-items:center; padding:.4rem .78rem; border-radius:999px;
  background: var(--accent-soft); color: var(--accent); font-weight:700;
}
.metric-grid {
  display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.95rem; margin-top:1rem;
}
.metric-grid article, .process-mini, .image-shell { padding:1rem; border-radius: 18px; background: var(--surface-deep); border: 1px solid var(--border); }
.metric-grid strong { display:block; margin-bottom:.35rem; font-size:1.08rem; }
.metric-grid span { color: var(--muted); }
.trust-strip { padding: 0 0 1rem; }
.trust-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.trust-grid article { padding:1.2rem 1.3rem; }
.trust-grid strong { display:block; margin-bottom:.4rem; }
.trust-grid span { color: var(--muted); }
.section-block { padding: 2rem 0 4rem; }
.alt-surface { background: linear-gradient(180deg, transparent 0%, color-mix(in srgb, var(--bg-soft) 78%, transparent) 18%, transparent 100%); }
.section-heading { margin-bottom: 1.6rem; max-width: 760px; }
.section-heading h2 { margin:0 0 .75rem; font-size: clamp(1.95rem, 3vw, 3rem); line-height:1.12; }
.section-heading p { margin:0; color: var(--muted); }
.service-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.service-card, .service-detail, .gallery-note, .contact-card, .cta-card, .process-card, .three-col-grid .card, .overview-grid .card, .contact-panel { padding: 1.5rem; }
.service-card h3, .service-detail h2, .project-copy h3, .contact-card h2, .cta-card h2, .three-col-grid h2, .contact-panel h3 { margin: .75rem 0 .55rem; }
.service-card p, .service-detail p, .project-copy p, .contact-card p, .three-col-grid p, .overview-grid p, .contact-panel p { color: var(--muted); }
.service-card ul, .overview-grid ul { margin: 1rem 0 0; padding-left: 1.15rem; color: var(--muted); }
.service-card li, .overview-grid li { margin-bottom:.45rem; }
.icon-badge, .process-card span, .process-mini span {
  width: 52px; height: 52px; border-radius: 16px; display:grid; place-items:center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color:#fff; font-weight:800;
}
.process-card span, .process-mini span { width: 42px; height:42px; border-radius:999px; margin-bottom:1rem; }
.two-column-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.three-col-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.split-grid { grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); align-items:start; }
.project-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
.project-card { overflow:hidden; display:flex; flex-direction:column; }
.project-card img { aspect-ratio: 16 / 10; }
.project-copy { padding:1.25rem; }
.project-copy h3 { margin:.5rem 0; font-size:1.22rem; }
.project-copy p { margin:0; }
.gallery-note { color: var(--muted); }
.process-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.compact-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.contact-layout { grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr); align-items:start; gap: 1.5rem; }
.contact-sidebar { display:grid; gap:1.25rem; }
.contact-card-head { margin-bottom: 1rem; }
.contact-form { display:grid; gap:1rem; margin-top:1rem; }
.form-grid-two { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:1rem; }
.contact-form label { display:grid; gap:.45rem; }
.contact-form span { font-weight:600; }
.contact-form input, .contact-form textarea {
  width:100%; padding:.95rem 1rem; border-radius:16px; border:1px solid var(--border);
  background: var(--surface-strong); color: var(--text); outline:none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: color-mix(in srgb, var(--accent) 60%, var(--border)); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 14%, transparent); }
.field-validation { color: #b42318; font-size:.92rem; font-weight:500; }
html[data-theme="dark"] .field-validation { color: #ffb4b4; }
.form-alert { margin-bottom:1rem; padding:.95rem 1rem; border-radius:16px; font-weight:600; }
.form-alert.success { background: var(--success-bg); color: var(--success-text); }
.form-alert.error { background: var(--error-bg); color: var(--error-text); }
.contact-panel { display:grid; gap: 1rem; }
.contact-method-list { display:grid; gap: .85rem; }
.contact-method {
  display:grid;
  gap:.2rem;
  padding: .95rem 1rem;
  border-radius: 18px;
  background: var(--surface-deep);
  border: 1px solid var(--border);
}
.contact-method strong { color: var(--text); font-size: 1rem; word-break: break-word; }
.contact-method-label { color: var(--muted); font-size: .86rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.secondary-panel .process-grid { gap: .9rem; }
.honeypot { position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }
.case-hero .image-shell { padding:0; overflow:hidden; min-height: 340px; }
.overview-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.site-footer {
  padding: 2rem 0 1.4rem; border-top:1px solid var(--border);
  background: color-mix(in srgb, var(--bg-soft) 56%, transparent);
}
.footer-grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr); gap:1.5rem; }
.footer-copy { max-width: 420px; color: var(--muted); }
.footer-columns { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:1rem; }
.footer-columns h4 { margin:0 0 .8rem; }
.footer-columns a { display:block; margin-bottom:.5rem; }
.footer-bottom { margin-top:1.4rem; padding-top:1rem; border-top:1px solid var(--border); color: var(--muted); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 1080px) {
  .hero-grid, .split-grid, .contact-layout, .footer-grid { grid-template-columns: 1fr; }
  .service-grid, .three-col-grid, .project-grid, .process-grid, .trust-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 860px) {
  .nav-toggle { display:inline-block; }
  .nav-panel {
    position:absolute; top: calc(100% + .75rem); left:1rem; right:1rem;
    padding: 1rem; border-radius: 20px; border:1px solid var(--border);
    background: var(--surface-strong); box-shadow: var(--shadow);
    display:flex; flex-direction:column; align-items:stretch; gap:1rem;
    opacity:0; visibility:hidden; transform: translateY(-8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  }
  .nav-panel.open { opacity:1; visibility:visible; transform: translateY(0); }
  .nav-links, .nav-actions { flex-direction:column; align-items:stretch; }
  .service-grid, .two-column-grid, .three-col-grid, .project-grid, .process-grid, .compact-grid, .trust-grid, .overview-grid, .form-grid-two { grid-template-columns: 1fr; }
  .hero-collage { grid-template-columns: 1fr 1fr; }
  .collage-card.large { grid-row: span 1; min-height: 240px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 1.2rem), var(--container)); }
  .hero-section, .page-shell, .case-hero { padding: 3.2rem 0 2rem; }
  .nav-wrap { min-height: 76px; }
  .hero-actions, .nav-actions { flex-direction:column; }
  .button, .theme-toggle, .lang-toggle, .button-secondary, .button-ghost { width:100%; }
  .metric-grid { grid-template-columns:1fr; }
  .hero-collage { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr; }
}

body { overflow-x: hidden; }
.card, .project-card, .contact-card, .contact-panel, .cta-card,
.service-card, .service-detail, .process-card, .process-mini,
.overview-grid .card, .three-col-grid .card { min-width: 0; }
.hero-copy h1, .page-shell h1, .case-hero h1 { text-wrap: balance; }
.section-heading h2, .cta-card h2, .contact-card h2, .contact-panel h3 { text-wrap: balance; }
.lead, .section-heading p, .contact-card p, .contact-panel p { text-wrap: pretty; }
.nav-links a { font-weight: 600; }
.nav-actions .button-sm { white-space: nowrap; }
.chip-row span, .chip-cloud span { line-height: 1.25; }
.card, .contact-panel, .contact-card, .cta-card { backdrop-filter: blur(8px); }
.project-card { transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border-strong); }
.contact-layout { align-items: stretch; }
.contact-card, .contact-sidebar { height: 100%; }
.contact-card { padding: clamp(1.25rem, 2vw, 2rem); }
.contact-panel { padding: clamp(1.15rem, 2vw, 1.65rem); }
.contact-card-head { max-width: 720px; }
.contact-method { transition: transform var(--transition), border-color var(--transition), background var(--transition); }
.contact-method:hover { transform: translateY(-2px); border-color: var(--border-strong); background: var(--surface-strong); }
.contact-method.static:hover { transform: none; }
.form-alert { border: 1px solid color-mix(in srgb, currentColor 18%, transparent); }
.contact-form button { justify-self: start; min-width: 190px; }
.field-validation:empty { display: none; }
.case-hero .image-shell img { min-height: 340px; }
.footer-columns a { line-height: 1.45; }
@media (max-width: 1180px) {
  .nav-links { gap: .85rem; }
  .nav-actions { gap: .5rem; }
  .theme-label { display: none; }
}
@media (max-width: 1080px) {
  .contact-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .nav-links a, .nav-actions > * { width: 100%; justify-content: center; }
  .contact-sidebar { grid-template-columns: 1fr; }
  .contact-form button { justify-self: stretch; }
  .project-copy { padding: 1.15rem; }
}
@media (max-width: 640px) {
  .brand small { max-width: 180px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .hero-copy h1, .page-shell h1, .case-hero h1 { font-size: clamp(2.05rem, 10vw, 2.8rem); }
  .section-heading h2 { font-size: clamp(1.65rem, 8vw, 2.25rem); }
  .contact-card, .contact-panel, .cta-card, .service-card, .service-detail, .gallery-note, .three-col-grid .card, .overview-grid .card { padding: 1.15rem; }
  .chip-row, .chip-cloud { gap: .55rem; }
  .chip-row span, .chip-cloud span { min-height: 38px; padding: .55rem .82rem; font-size: .92rem; }
}


.differentiators-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.differentiators-grid > .card {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.45rem 1.5rem 1.6rem;
  min-height: 100%;
}
.differentiators-grid h3 {
  margin: 0;
  font-size: clamp(1.18rem, 1.8vw, 1.85rem);
  line-height: 1.22;
}
.differentiators-grid p:last-child { margin: 0; }
.section-heading { max-width: 860px; }
.section-heading p { color: var(--muted); }
.trust-grid article, .service-card, .project-card, .process-card { height: 100%; }
.project-copy { display: grid; gap: .55rem; }
.project-meta { align-self: start; }
@media (max-width: 860px) {
  .differentiators-grid { grid-template-columns: 1fr; }
}

.hero-copy { display:flex; flex-direction:column; justify-content:center; min-height:100%; }


.hero-copy .lead { max-width: 760px; }
.hero-copy h1 { margin: 0 0 1rem; }
.hero-copy .eyebrow { margin-bottom: 1.1rem; }
.hero-copy .chip-row { margin-top: 1.4rem; }
@media (max-width: 1080px) {
  .hero-grid { min-height: auto; }
}




.hero-section {
  min-height: auto;
  display: block;
  padding: 2.1rem 0 3.25rem;
}

.hero-grid {
  align-items: start;
}

.hero-copy {
  align-self: start;
  padding-top: 1.5rem;
  transform: none;
}

.hero-visual {
  align-self: start;
  padding-top: 0.2rem;
  transform: none;
}

.hero-copy .eyebrow {
  margin-top: 0;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  margin-top: 0;
}

.hero-copy .lead {
  max-width: 680px;
}

@media (min-width: 1081px) {
  .hero-section {
    padding-top: 1.65rem;
  }

  .hero-copy {
    padding-top: 0.9rem;
  }
}

@media (max-width: 1080px) {
  .hero-section {
    padding: 2.5rem 0 3.5rem;
  }

  .hero-copy,
  .hero-visual {
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 2rem 0 3rem;
  }
}

.hero-section {
  padding: 1.6rem 0 3.1rem;
}

.hero-grid {
  align-items: start;
  gap: clamp(1.75rem, 3vw, 2.75rem);
}

.hero-copy {
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 0;
  padding-top: clamp(.15rem, .9vw, .65rem);
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lead {
  margin-top: 0;
}

.hero-copy h1 {
  margin-bottom: .95rem;
}

.hero-copy .lead {
  max-width: 44rem;
}

.hero-visual {
  align-self: start;
  padding-top: .15rem;
}

.service-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-grid-large {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid > .card:not(.service-card) {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: .9rem;
  height: 100%;
  padding: 1.55rem;
}

.service-grid > .card:not(.service-card) > * {
  margin: 0;
}

.service-grid > .card:not(.service-card) h3 {
  font-size: clamp(1.2rem, 1.55vw, 1.6rem);
  line-height: 1.22;
}

.service-grid > .card:not(.service-card) p {
  color: var(--muted);
  line-height: 1.7;
}

.trust-grid > .card,
.three-col-grid > .card,
.overview-grid > .card,
.gallery-note {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}

.trust-grid > .card > *,
.three-col-grid > .card > *,
.overview-grid > .card > *,
.gallery-note > * {
  margin: 0;
}

.services-detail-grid .service-detail:last-child:nth-child(odd) {
  grid-column: span 2;
}

@media (max-width: 1180px) {
  .service-grid-four,
  .project-grid-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .hero-section {
    padding: 2rem 0 3.1rem;
  }

  .hero-copy,
  .hero-visual {
    padding-top: 0;
  }
}

@media (max-width: 860px) {
  .service-grid-four,
  .project-grid-large {
    grid-template-columns: 1fr;
  }

  .services-detail-grid .service-detail:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding: 1.65rem 0 2.7rem;
  }

  .service-grid > .card:not(.service-card) {
    padding: 1.2rem;
  }
}



body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.brand strong,
.footer-brand strong,
.button,
.nav-links a,
.theme-label,
.lang-label {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
}

.brand strong,
.footer-brand strong {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand small,
.footer-brand small {
  font-size: 0.86rem;
  letter-spacing: -0.01em;
}

.nav-links a {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.hero-copy h1,
.page-shell h1,
.case-hero h1 {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(2.9rem, 4.55vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.section-heading h2,
.service-card h3,
.service-detail h2,
.project-copy h3,
.contact-card h2,
.cta-card h2,
.three-col-grid h2,
.contact-panel h3,
.differentiators-grid h3 {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  letter-spacing: -0.045em;
}

.hero-section.hero-section-refined {
  padding: 1.7rem 0 2.2rem;
}

.hero-grid.hero-grid-refined {
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: clamp(2rem, 3vw, 3.35rem);
}

.hero-copy {
  padding-top: 0.35rem;
}

.hero-copy .lead {
  max-width: 40rem;
  font-size: clamp(1.04rem, 1.32vw, 1.24rem);
  line-height: 1.72;
}

.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.hero-proof-card {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface) 92%, white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.hero-proof-card strong,
.hero-band-card strong {
  display: block;
  margin-bottom: 0.28rem;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 1.02rem;
  letter-spacing: -0.03em;
}

.hero-proof-card span,
.hero-band-card span {
  color: var(--muted);
}

.hero-copy .chip-row {
  margin-top: 1rem;
}

.hero-stage {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  opacity: 0.9;
  z-index: 0;
}

.hero-orb-a {
  width: 180px;
  height: 180px;
  top: 12px;
  right: 44px;
  background: radial-gradient(circle, rgba(109, 76, 255, .24), rgba(109, 76, 255, 0));
}

.hero-orb-b {
  width: 220px;
  height: 220px;
  bottom: 44px;
  left: 20px;
  background: radial-gradient(circle, rgba(13, 122, 245, .22), rgba(13, 122, 245, 0));
}

.hero-dashboard-shell {
  position: relative;
  z-index: 1;
  margin: 26px 24px 0 54px;
  padding: 1.2rem;
  border-radius: 32px;
  background: color-mix(in srgb, var(--surface-strong) 94%, white);
  border: 1px solid color-mix(in srgb, var(--border-strong) 80%, white);
  box-shadow: 0 32px 72px rgba(13, 24, 44, 0.12);
}

.hero-board-top,
.hero-board-footer,
.hero-kpi-grid,
.hero-board-main {
  position: relative;
  z-index: 1;
}

.hero-board-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
}

.window-dots {
  display: inline-flex;
  gap: 0.4rem;
}

.window-dots span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 72%, white);
}

.window-dots span:nth-child(2) {
  background: color-mix(in srgb, var(--accent-2) 72%, white);
}

.window-dots span:nth-child(3) {
  background: color-mix(in srgb, var(--accent-3) 72%, white);
}

.board-caption {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.board-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(13, 122, 245, .12), rgba(109, 76, 255, .14));
  color: var(--accent);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.hero-kpi {
  padding: 1rem 1rem 0.95rem;
  border-radius: 22px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-deep) 92%, white), color-mix(in srgb, var(--surface) 92%, white));
  border: 1px solid var(--border);
}

.hero-kpi-primary {
  background: linear-gradient(135deg, rgba(13, 122, 245, .96), rgba(109, 76, 255, .92));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 32px rgba(13, 122, 245, 0.18);
}

.hero-kpi span,
.hero-kpi small {
  display: block;
  font-size: 0.85rem;
}

.hero-kpi span,
.hero-kpi small,
.hero-panel header span,
.hero-footer-item span,
.hero-board-footer span,
.hero-mini-list .mini-label {
  color: var(--muted);
}

.hero-kpi strong {
  display: block;
  margin: 0.18rem 0 0.16rem;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  letter-spacing: -0.05em;
}

.hero-kpi-primary span,
.hero-kpi-primary small {
  color: rgba(255, 255, 255, 0.85);
}

.hero-board-main {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.75fr);
  gap: 0.9rem;
}

.hero-side-stack {
  display: grid;
  gap: 0.9rem;
}

.hero-panel {
  padding: 1rem;
  border-radius: 24px;
  background: color-mix(in srgb, var(--surface-deep) 86%, white);
  border: 1px solid var(--border);
}

.hero-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.hero-panel header strong,
.hero-board-footer strong,
.hero-floating-card strong {
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  letter-spacing: -0.03em;
}

.hero-chart-lines {
  min-height: 230px;
  padding: 0.4rem 0.2rem 0;
  color: rgba(19, 32, 51, 0.1);
}

.hero-chart-lines svg {
  width: 100%;
  height: auto;
}

.hero-donut-wrap {
  display: grid;
  gap: 0.9rem;
  align-items: center;
  justify-items: center;
  min-height: 208px;
}

.hero-donut {
  width: 140px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: conic-gradient(var(--accent) 0 38%, var(--accent-2) 38% 68%, var(--accent-3) 68% 100%);
  position: relative;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.hero-donut::after {
  content: "";
  position: absolute;
  inset: 21px;
  background: color-mix(in srgb, var(--surface-strong) 96%, white);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--border);
}

.hero-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.hero-legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: inline-block;
}

.legend-blue { background: var(--accent); }
.legend-purple { background: var(--accent-2); }
.legend-teal { background: var(--accent-3); }

.hero-mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.hero-mini-list li {
  padding: 0.78rem 0.85rem;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface-strong) 90%, white);
  border: 1px solid var(--border);
}

.hero-mini-list .mini-label {
  display: block;
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.hero-mini-list strong {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.98rem;
}

.hero-board-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.9rem;
}

.hero-board-footer article {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: color-mix(in srgb, var(--surface) 92%, white);
  border: 1px solid var(--border);
}

.hero-board-footer strong,
.hero-board-footer span {
  display: block;
}

.hero-floating-card {
  position: absolute;
  z-index: 2;
  width: min(250px, 44%);
  padding: 1rem 1rem 0.95rem;
  border-radius: 22px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--surface-strong) 95%, white), color-mix(in srgb, var(--surface) 92%, white));
  border: 1px solid color-mix(in srgb, var(--border-strong) 80%, white);
  box-shadow: 0 20px 36px rgba(13, 24, 44, 0.12);
}

.hero-floating-card-top {
  top: 58px;
  right: -6px;
}

.hero-floating-card-bottom {
  bottom: 22px;
  left: -4px;
}

.floating-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  margin-bottom: 0.48rem;
  background: linear-gradient(135deg, rgba(13, 122, 245, .12), rgba(21, 182, 161, .12));
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-floating-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.hero-floating-card small {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.hero-band-card {
  padding: 1.15rem 1.15rem 1.08rem;
  border-radius: 22px;
  background: color-mix(in srgb, var(--surface) 92%, white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 1180px) {
  .hero-grid.hero-grid-refined {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .hero-dashboard-shell {
    margin: 22px 0 0;
  }

  .hero-floating-card-top {
    right: 14px;
  }

  .hero-floating-card-bottom {
    left: 14px;
  }

  .hero-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hero-proof-grid,
  .hero-kpi-grid,
  .hero-board-footer,
  .hero-band {
    grid-template-columns: 1fr;
  }

  .hero-board-main {
    grid-template-columns: 1fr;
  }

  .hero-floating-card {
    position: static;
    width: 100%;
    margin-top: 0.9rem;
  }

  .hero-stage {
    display: grid;
    gap: 0.9rem;
  }

  .hero-dashboard-shell {
    order: 1;
  }
}

@media (max-width: 640px) {
  .hero-section.hero-section-refined {
    padding: 1.2rem 0 2rem;
  }

  .hero-copy h1,
  .page-shell h1,
  .case-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.25rem);
  }

  .hero-proof-card,
  .hero-band-card,
  .hero-panel,
  .hero-kpi,
  .hero-board-footer article {
    padding: 0.95rem;
  }

  .hero-dashboard-shell {
    padding: 0.95rem;
    border-radius: 26px;
  }

  .hero-board-top {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero-chart-lines {
    min-height: 170px;
  }

  .hero-donut {
    width: 118px;
  }
}


/* Final refinement pass: shorter hero, aligned cards, softer typography */
body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6,
.brand strong,
.footer-brand strong,
.button,
.nav-links a,
.theme-label,
.lang-label,
.eyebrow,
.board-pill,
.floating-label,
.hero-proof-card strong,
.hero-band-card strong {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
}

.brand strong,
.footer-brand strong {
  letter-spacing: 0.06em;
}

.nav-links a,
.button,
.theme-label,
.lang-label {
  letter-spacing: -0.015em;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.hero-copy h1,
.page-shell h1,
.case-hero h1 {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(2.75rem, 4.15vw, 4.35rem);
  line-height: 1.01;
  letter-spacing: -0.055em;
}

.section-heading h2,
.service-card h3,
.service-detail h2,
.project-copy h3,
.contact-card h2,
.cta-card h2,
.three-col-grid h2,
.contact-panel h3,
.differentiators-grid h3,
.overview-grid h3,
.trust-grid strong {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  letter-spacing: -0.035em;
}

.hero-section.hero-section-refined {
  padding: 1.35rem 0 2rem;
}

.hero-grid.hero-grid-refined {
  align-items: start;
  gap: clamp(1.6rem, 2.6vw, 2.6rem);
}

.hero-stage {
  min-height: 520px;
}

.hero-dashboard-shell {
  margin: 18px 18px 0 36px;
  padding: 1rem;
  border-radius: 28px;
}

.hero-orb-a {
  width: 148px;
  height: 148px;
  top: 8px;
  right: 32px;
}

.hero-orb-b {
  width: 180px;
  height: 180px;
  bottom: 28px;
  left: 12px;
}

.hero-board-top {
  padding-bottom: 0.75rem;
}

.hero-kpi-grid {
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero-kpi {
  padding: 0.85rem 0.9rem 0.8rem;
}

.hero-kpi strong {
  font-family: "Montserrat", "Inter", system-ui, sans-serif;
  font-size: clamp(1.28rem, 1.7vw, 1.7rem);
}

.hero-board-main {
  grid-template-columns: minmax(0, 1.18fr) minmax(210px, 0.82fr);
  align-items: start;
  gap: 0.75rem;
}

.hero-panel {
  padding: 0.9rem;
  border-radius: 22px;
}

.hero-panel-wide {
  align-self: start;
}

.hero-chart-lines {
  min-height: 160px;
  padding-top: 0.2rem;
}

.hero-donut-wrap {
  min-height: 160px;
  gap: 0.7rem;
}

.hero-donut {
  width: 118px;
}

.hero-mini-list {
  gap: 0.6rem;
}

.hero-mini-list li {
  padding: 0.72rem 0.78rem;
}

.hero-board-footer {
  gap: 0.7rem;
  margin-top: 0.75rem;
}

.hero-board-footer article {
  padding: 0.82rem 0.9rem;
}

.hero-floating-card {
  width: min(220px, 40%);
  padding: 0.85rem 0.9rem;
}

.hero-floating-card-top {
  top: 36px;
  right: -8px;
}

.hero-floating-card-bottom {
  bottom: 14px;
  left: -6px;
}

.hero-proof-grid,
.hero-band,
.service-grid,
.trust-grid,
.overview-grid,
.three-col-grid,
.differentiators-grid,
.project-grid,
.process-grid {
  align-items: stretch;
}

.hero-proof-card,
.hero-band-card,
.service-card,
.trust-grid article,
.overview-grid > .card,
.three-col-grid > .card,
.differentiators-grid > .card,
.project-card,
.process-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.differentiators-grid > .card,
.service-card,
.trust-grid article,
.overview-grid > .card,
.three-col-grid > .card {
  gap: 0.75rem;
}

.differentiators-grid > .card .eyebrow,
.service-card .eyebrow,
.overview-grid .eyebrow,
.three-col-grid .eyebrow {
  margin: 0;
  min-height: 1.1rem;
}

.differentiators-grid h3,
.service-card h3,
.overview-grid h3,
.three-col-grid h2,
.trust-grid strong {
  margin: 0;
}

.differentiators-grid p,
.service-card p,
.overview-grid p,
.three-col-grid p,
.trust-grid span {
  margin: 0;
}

.differentiators-grid h3 {
  font-size: clamp(1.14rem, 1.55vw, 1.55rem);
  line-height: 1.24;
}

.service-card h3,
.overview-grid h3,
.three-col-grid h2 {
  line-height: 1.24;
}

.service-card ul,
.overview-grid ul {
  margin-top: auto;
  padding-top: 0.35rem;
}

@media (max-width: 1180px) {
  .hero-stage {
    min-height: auto;
  }

  .hero-dashboard-shell {
    margin: 0;
  }

  .hero-floating-card-top,
  .hero-floating-card-bottom {
    inset: auto;
  }
}

@media (max-width: 860px) {
  .hero-floating-card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-copy h1,
  .page-shell h1,
  .case-hero h1 {
    font-size: clamp(2.3rem, 10.4vw, 3rem);
  }

  .eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
  }

  .hero-chart-lines {
    min-height: 132px;
  }
}


/* Microsoft-inspired type system: Segoe UI Variable / Segoe UI */
:root {
  --font-sans: "Segoe UI Variable", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Segoe UI Variable Display", "Segoe UI Variable", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

body,
button,
input,
textarea {
  font-family: var(--font-sans);
  letter-spacing: 0;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.brand strong,
.footer-brand strong,
.button,
.nav-links a,
.theme-label,
.lang-label,
.eyebrow,
.board-pill,
.floating-label,
.hero-proof-card strong,
.hero-band-card strong,
.hero-kpi strong,
.hero-panel header strong,
.hero-board-footer strong,
.hero-floating-card strong,
.section-heading h2,
.service-card h3,
.service-detail h2,
.project-copy h3,
.contact-card h2,
.cta-card h2,
.three-col-grid h2,
.contact-panel h3,
.differentiators-grid h3,
.overview-grid h3,
.trust-grid strong {
  font-family: var(--font-display);
}

.brand strong,
.footer-brand strong {
  font-weight: 700;
  letter-spacing: 0.075em;
}

.brand small,
.footer-brand small {
  font-weight: 400;
  letter-spacing: 0;
}

.nav-links a,
.theme-label,
.lang-label {
  font-weight: 600;
  letter-spacing: 0;
}

.button {
  font-weight: 600;
  letter-spacing: 0;
}

.hero-copy h1,
.page-shell h1,
.case-hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.7rem, 4.05vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading h2,
.contact-card h2,
.cta-card h2 {
  font-weight: 700;
  letter-spacing: -0.035em;
}

.service-card h3,
.service-detail h2,
.project-copy h3,
.three-col-grid h2,
.contact-panel h3,
.differentiators-grid h3,
.overview-grid h3,
.trust-grid strong {
  font-weight: 650;
  letter-spacing: -0.025em;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.lead,
.section-heading p,
.hero-proof-card span,
.hero-band-card span,
.service-card p,
.service-card li,
.differentiators-grid p,
.trust-grid span,
.overview-grid p,
.contact-panel p,
.project-copy p {
  font-weight: 400;
  letter-spacing: 0;
}

.hero-section.hero-section-refined {
  padding-top: 1.25rem;
}

.hero-stage {
  min-height: 500px;
}

.hero-dashboard-shell {
  margin: 12px 16px 0 34px;
  border-radius: 26px;
}

.hero-chart-lines {
  min-height: 145px;
}

.hero-donut-wrap {
  min-height: 145px;
}

.hero-donut {
  width: 108px;
}

.hero-floating-card-top {
  top: 28px;
}

.hero-floating-card-bottom {
  bottom: 10px;
}

.differentiators-grid > .card,
.service-card,
.trust-grid article,
.overview-grid > .card,
.three-col-grid > .card,
.hero-proof-card,
.hero-band-card {
  justify-content: flex-start;
}

.differentiators-grid > .card .eyebrow,
.service-card .eyebrow,
.overview-grid .eyebrow,
.three-col-grid .eyebrow,
.card > .eyebrow {
  line-height: 1.3;
}

@media (max-width: 640px) {
  .hero-copy h1,
  .page-shell h1,
  .case-hero h1 {
    font-size: clamp(2.2rem, 9.6vw, 2.9rem);
    letter-spacing: -0.04em;
  }

  .eyebrow {
    font-size: 0.73rem;
    letter-spacing: 0.06em;
  }

  .hero-chart-lines {
    min-height: 120px;
  }
}


.brand.wordmark,
.footer-brand.wordmark {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  line-height: 1;
  color: #6D7890;
  min-width: max-content;
}

.wordmark-main {
  display: block;
  font-family: "Montserrat", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  color: #6D7890;
  letter-spacing: 0.34em;
  font-size: clamp(1.18rem, 1.42vw, 1.5rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark-sub {
  display: block;
  font-family: "Montserrat", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  color: #6D7890;
  letter-spacing: 0.66em;
  font-size: clamp(0.78rem, 0.92vw, 0.98rem);
  line-height: 1;
  margin-top: 0.55rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer .wordmark-main {
  font-size: clamp(1rem, 1.22vw, 1.28rem);
}

.site-footer .wordmark-sub {
  font-size: clamp(0.68rem, 0.82vw, 0.86rem);
}

.brand-mark {
  display: none;
}

.hero-stage {
  min-height: 430px;
}

.hero-dashboard-shell {
  margin: 0;
  padding: 1rem;
}

.hero-board-main {
  grid-template-columns: minmax(0, 1.28fr) minmax(210px, 0.72fr);
  align-items: stretch;
}

.hero-side-stack {
  align-content: stretch;
}

.hero-panel-donut {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.hero-panel-donut .hero-donut-wrap {
  min-height: 0;
  flex: 1;
  align-content: center;
}

.hero-chart-lines {
  min-height: 150px;
}

.hero-donut {
  width: 112px;
}

.hero-floating-card,
.hero-panel-mini {
  display: none;
}

.hero-board-footer {
  margin-top: 0.75rem;
}

.hero-board-footer article {
  min-height: 92px;
}

.differentiators-grid > .card,
.service-card,
.trust-grid article,
.overview-grid > .card,
.three-col-grid > .card,
.gallery-note,
.hero-proof-card,
.hero-band-card {
  justify-content: flex-start;
}

.differentiators-grid > .card .eyebrow,
.three-col-grid > .card .eyebrow,
.overview-grid > .card .eyebrow,
.service-card .eyebrow,
.card > .eyebrow {
  min-height: 1.1rem;
  margin: 0 0 0.15rem;
}

.differentiators-grid h3,
.service-card h3,
.three-col-grid h2,
.overview-grid h3,
.trust-grid strong,
.hero-proof-card strong,
.hero-band-card strong {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .hero-stage {
    min-height: auto;
  }

  .wordmark-main {
    font-size: clamp(1.05rem, 2vw, 1.35rem);
  }

  .wordmark-sub {
    font-size: clamp(0.68rem, 1.5vw, 0.88rem);
  }
}

@media (max-width: 860px) {
  .brand.wordmark {
    min-width: 0;
  }

  .wordmark-main {
    letter-spacing: 0.22em;
  }

  .wordmark-sub {
    letter-spacing: 0.42em;
  }

  .hero-board-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wordmark-main {
    font-size: 0.96rem;
    letter-spacing: 0.16em;
  }

  .wordmark-sub {
    font-size: 0.62rem;
    letter-spacing: 0.33em;
    margin-top: 0.42rem;
  }

  .hero-chart-lines {
    min-height: 128px;
  }
}


.brand.wordmark,
.footer-brand.wordmark {
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  gap: 1.15rem;
  line-height: 1;
  color: #6D7890;
  white-space: nowrap;
  min-width: 0;
}

.wordmark-main {
  display: inline-block;
  font-family: "Montserrat", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  color: #6D7890;
  letter-spacing: 0.3em;
  font-size: clamp(1.08rem, 1.28vw, 1.36rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.wordmark-sub {
  display: inline-block;
  font-family: "Montserrat", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  color: #6D7890;
  letter-spacing: 0.7em;
  font-size: clamp(0.72rem, 0.86vw, 0.92rem);
  line-height: 1;
  margin-top: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-footer .wordmark-main {
  font-size: clamp(0.98rem, 1.12vw, 1.18rem);
}

.site-footer .wordmark-sub {
  font-size: clamp(0.66rem, 0.76vw, 0.78rem);
}

@media (max-width: 1180px) {
  .brand.wordmark,
  .footer-brand.wordmark {
    gap: 0.9rem;
  }

  .wordmark-main {
    letter-spacing: 0.3em;
    font-size: clamp(0.86rem, 1.55vw, 1.12rem);
  }

  .wordmark-sub {
    letter-spacing: 0.7em;
    font-size: clamp(0.54rem, 1.1vw, 0.76rem);
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .brand.wordmark,
  .footer-brand.wordmark {
    gap: 0.48rem;
  }

  .wordmark-main {
    letter-spacing: 0.3em;
    font-size: 0.66rem;
  }

  .wordmark-sub {
    letter-spacing: 0.7em;
    font-size: 0.43rem;
    margin-top: 0;
  }
}


/* Brand and homepage refinement */
.brand.wordmark,
.footer-brand.wordmark {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  color: #6D7890;
  white-space: nowrap;
  line-height: 1;
  min-width: 0;
}

.wordmark-main,
.wordmark-sub {
  display: inline-block;
  font-family: "Montserrat", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  color: #6D7890;
  font-size: clamp(0.74rem, 0.86vw, 0.92rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}

.wordmark-main {
  font-weight: 600;
  letter-spacing: 0.3em;
}

.wordmark-sub {
  font-weight: 500;
  letter-spacing: 0.7em;
}

.site-footer .wordmark-main,
.site-footer .wordmark-sub {
  font-size: clamp(0.68rem, 0.78vw, 0.86rem);
}

.hero-stage {
  min-height: 410px;
}

.hero-dashboard-shell {
  margin: 0;
}

.hero-kpi-grid,
.hero-board-main,
.hero-board-footer {
  gap: 0.72rem;
}

.hero-chart-lines {
  min-height: 142px;
}

.hero-donut-wrap {
  min-height: 148px;
}

.hero-donut {
  width: 106px;
}

.hero-board-footer article {
  min-height: 86px;
}

.complementary-section {
  padding-top: 1.5rem;
}

.complementary-section .three-col-grid > .card {
  min-height: 100%;
}

@media (max-width: 1180px) {
  .wordmark-main,
  .wordmark-sub {
    font-size: clamp(0.62rem, 1.04vw, 0.78rem);
  }

  .brand.wordmark,
  .footer-brand.wordmark {
    gap: 0.62rem;
  }

  .hero-stage {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .hero-stage {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .wordmark-main,
  .wordmark-sub {
    font-size: 0.5rem;
  }

  .brand.wordmark,
  .footer-brand.wordmark {
    gap: 0.38rem;
  }

  .hero-chart-lines {
    min-height: 118px;
  }
}


/* Final brand wordmark adjustment */
.brand.wordmark,
.footer-brand.wordmark {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.95rem;
  color: #6D7890;
  white-space: nowrap;
  line-height: 1;
}

.wordmark-main,
.wordmark-sub,
.site-footer .wordmark-main,
.site-footer .wordmark-sub {
  display: inline-block;
  font-family: "Montserrat", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  color: #6D7890;
  font-size: clamp(0.66rem, 0.78vw, 0.84rem);
  line-height: 1;
  letter-spacing: 0.7em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}

.wordmark-main {
  font-weight: 600;
}

.wordmark-sub {
  font-weight: 500;
}

@media (max-width: 1180px) {
  .brand.wordmark,
  .footer-brand.wordmark {
    gap: 0.7rem;
  }

  .wordmark-main,
  .wordmark-sub,
  .site-footer .wordmark-main,
  .site-footer .wordmark-sub {
    font-size: clamp(0.52rem, 0.9vw, 0.7rem);
    letter-spacing: 0.58em;
  }
}

@media (max-width: 640px) {
  .brand.wordmark,
  .footer-brand.wordmark {
    gap: 0.36rem;
  }

  .wordmark-main,
  .wordmark-sub,
  .site-footer .wordmark-main,
  .site-footer .wordmark-sub {
    font-size: 0.43rem;
    letter-spacing: 0.38em;
  }
}
