:root {
  --md-ink: #0b0d0c;
  --md-ink-soft: #353a37;
  --md-muted: #747b76;
  --md-canvas: #f0f1ec;
  --md-paper: #fff;
  --md-soft: #f7f8f5;
  --md-line: rgba(11,13,12,.1);
  --md-line-strong: rgba(11,13,12,.17);
  --md-primary: #0f766e;
  --md-primary-hover: #0b625c;
  --md-primary-soft: #e8f2f0;
  --md-gutter: clamp(20px,5vw,80px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--md-canvas); }
body.md-site {
  margin: 0;
  color: var(--md-ink);
  background: var(--md-canvas);
  font-family: "Geist", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.md-site a { color: inherit; }
.md-site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 72px;
  padding: 0 var(--md-gutter);
  align-items: center;
  gap: 24px;
  background: rgba(240,241,236,.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
}
.md-site-brand { display: inline-flex; width: fit-content; align-items: center; gap: 10px; font-size: 14px; font-weight: 750; text-decoration: none; }
.md-site-brand__mark { display: grid; width: 34px; height: 34px; place-items: center; color: #fff; font-size: 10px; border-radius: 9px; background: var(--md-primary); }
.md-site-nav__links { display: flex; align-items: center; gap: 28px; }
.md-site-nav__links a,.md-site-link { color: var(--md-muted); font-size: 12px; font-weight: 600; text-decoration: none; }
.md-site-nav__links a:hover,.md-site-link:hover { color: var(--md-ink); }
.md-site-nav__actions { display: flex; justify-content: flex-end; align-items: center; gap: 16px; }
.md-site-btn { display: inline-flex; min-height: 48px; padding: 0 20px; align-items: center; justify-content: center; gap: 14px; color: #fff !important; font-size: 13px; font-weight: 680; text-decoration: none; border-radius: 10px; background: var(--md-ink); }
.md-site-btn:hover { background: var(--md-primary); }
.md-site-btn--small { min-height: 40px; padding: 0 15px; font-size: 11px; }
.md-site-text-link { color: var(--md-ink-soft); font-size: 13px; font-weight: 650; text-decoration: none; }
.md-site-text-link:hover { color: var(--md-primary); }
.md-kicker { display: block; color: var(--md-muted); font-size: 10px; font-weight: 720; letter-spacing: .1em; text-transform: uppercase; }
.md-hero {
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(540px,1.18fr);
  min-height: calc(100vh - 72px);
  padding: clamp(56px,8vh,104px) var(--md-gutter) 72px;
  align-items: center;
  gap: clamp(48px,7vw,110px);
}
.md-hero__copy h1 { margin: 18px 0 24px; font-size: clamp(62px,7.2vw,104px); font-weight: 470; letter-spacing: -.065em; line-height: .9; }
.md-hero__copy > p { max-width: 520px; margin: 0; color: var(--md-muted); font-size: 17px; line-height: 1.65; }
.md-hero__actions { display: flex; margin-top: 32px; align-items: center; gap: 22px; }
.md-hero__trust { display: flex; margin-top: 42px; flex-wrap: wrap; gap: 9px 22px; color: var(--md-muted); font-size: 10px; font-weight: 620; }
.md-hero__trust span { display: inline-flex; align-items: center; gap: 7px; }
.md-hero__trust span::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--md-primary); }
.md-product-frame { overflow: hidden; border: 1px solid var(--md-line-strong); border-radius: 16px; background: var(--md-paper); box-shadow: 0 40px 90px rgba(11,13,12,.12); }
.md-product-frame__bar { display: flex; height: 52px; padding: 0 18px; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--md-line); }
.md-product-frame__brand { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 700; }
.md-product-frame__brand i { width: 8px; height: 8px; border-radius: 50%; background: var(--md-primary); }
.md-product-frame__status { color: var(--md-primary); font-size: 9px; font-weight: 700; }
.md-product-frame__body { display: grid; grid-template-columns: 116px minmax(0,1fr); min-height: 520px; }
.md-product-nav { display: flex; padding: 22px 12px; flex-direction: column; gap: 5px; background: var(--md-soft); border-right: 1px solid var(--md-line); }
.md-product-nav span { padding: 10px 10px; color: var(--md-muted); font-size: 9px; font-weight: 620; border-radius: 7px; }
.md-product-nav span.is-active { color: var(--md-primary); background: var(--md-primary-soft); }
.md-product-stage { padding: 34px 36px; background: var(--md-canvas); }
.md-product-stage__meta { color: var(--md-muted); font-size: 9px; }
.md-product-stage h2 { margin: 18px 0 34px; font-size: clamp(30px,3.4vw,50px); font-weight: 500; letter-spacing: -.05em; line-height: 1; }
.md-product-signals { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.md-product-signals div { padding: 15px 0; border-top: 1px solid var(--md-line-strong); }
.md-product-signals strong,.md-product-signals span { display: block; }
.md-product-signals strong { font-size: 24px; font-weight: 560; }
.md-product-signals span { margin-top: 5px; color: var(--md-muted); font-size: 8px; }
.md-product-work { display: flex; margin-top: 34px; padding: 20px; align-items: end; justify-content: space-between; gap: 20px; border-radius: 11px; background: #fff; }
.md-product-work small,.md-product-work strong,.md-product-work span { display: block; }
.md-product-work small { color: var(--md-primary); font-size: 8px; font-weight: 720; letter-spacing: .08em; text-transform: uppercase; }
.md-product-work strong { margin-top: 9px; font-size: 15px; }
.md-product-work span { margin-top: 5px; color: var(--md-muted); font-size: 9px; }
.md-product-work button { min-height: 40px; padding: 0 14px; color: #fff; font: inherit; font-size: 9px; font-weight: 700; border: 0; border-radius: 8px; background: var(--md-ink); }
.md-flow-strip { display: flex; min-height: 86px; padding: 0 var(--md-gutter); align-items: center; justify-content: center; flex-wrap: wrap; gap: 16px 28px; color: var(--md-muted); font-size: 11px; font-weight: 650; border-top: 1px solid var(--md-line); border-bottom: 1px solid var(--md-line); background: rgba(255,255,255,.34); }
.md-flow-strip i { color: var(--md-line-strong); font-style: normal; }
.md-section { padding: clamp(84px,12vw,160px) var(--md-gutter); }
.md-section--paper { background: var(--md-paper); }
.md-section-head { display: grid; grid-template-columns: 1fr 1.4fr; margin-bottom: 72px; gap: 30px 70px; }
.md-section-head .md-kicker { grid-column: 1/-1; }
.md-section-head h2,.md-os-copy h2,.md-partner-section h2,.md-final-cta h2 { margin: 0; font-size: clamp(42px,5.2vw,72px); font-weight: 480; letter-spacing: -.055em; line-height: .98; }
.md-section-head p { margin: 0; max-width: 570px; color: var(--md-muted); font-size: 16px; line-height: 1.65; }
.md-capability-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--md-line-strong); }
.md-capability-grid article { min-height: 310px; padding: 34px 36px 30px 0; border-bottom: 1px solid var(--md-line); }
.md-capability-grid article:nth-child(2n) { padding-left: 36px; border-left: 1px solid var(--md-line); }
.md-capability-number { color: var(--md-primary); font-size: 10px; font-weight: 700; }
.md-capability-grid h3 { margin: 44px 0 12px; font-size: 25px; font-weight: 590; letter-spacing: -.035em; }
.md-capability-grid p { max-width: 520px; margin: 0; color: var(--md-muted); font-size: 14px; line-height: 1.65; }
.md-capability-meta { display: block; margin-top: 34px; color: var(--md-ink-soft); font-size: 10px; font-weight: 650; }
.md-os-section { display: grid; grid-template-columns: minmax(0,.85fr) minmax(440px,1.15fr); gap: clamp(60px,10vw,150px); align-items: center; }
.md-os-copy > p { max-width: 540px; margin: 26px 0 0; color: var(--md-muted); font-size: 16px; line-height: 1.65; }
.md-os-copy .md-kicker { margin-bottom: 20px; }
.md-os-copy ul { margin: 48px 0 0; padding: 0; list-style: none; }
.md-os-copy li { display: grid; grid-template-columns: 38px 1fr; padding: 16px 0; align-items: start; border-bottom: 1px solid var(--md-line); }
.md-os-copy li > span { color: var(--md-primary); font-size: 10px; }
.md-os-copy li strong,.md-os-copy li small { display: block; }
.md-os-copy li strong { font-size: 13px; }
.md-os-copy li small { margin-top: 4px; color: var(--md-muted); font-size: 11px; }
.md-os-panel { overflow: hidden; border: 1px solid var(--md-line-strong); border-radius: 15px; background: #fff; box-shadow: 0 34px 80px rgba(11,13,12,.09); }
.md-os-panel__head { display: flex; padding: 18px 20px; justify-content: space-between; color: var(--md-muted); font-size: 10px; border-bottom: 1px solid var(--md-line); }
.md-os-panel__head strong { color: var(--md-ink); }
.md-os-panel__focus { padding: 32px; background: var(--md-primary-soft); }
.md-os-panel__focus small,.md-os-panel__focus strong,.md-os-panel__focus span { display: block; }
.md-os-panel__focus small { color: var(--md-primary); font-size: 9px; font-weight: 700; text-transform: uppercase; }
.md-os-panel__focus strong { max-width: 390px; margin-top: 18px; font-size: 30px; font-weight: 530; letter-spacing: -.04em; line-height: 1.08; }
.md-os-panel__focus p { color: var(--md-muted); font-size: 12px; }
.md-os-panel__focus span { margin-top: 24px; color: var(--md-primary); font-size: 11px; font-weight: 700; }
.md-os-panel__rows div { display: grid; grid-template-columns: 52px 1fr auto; min-height: 68px; padding: 0 22px; align-items: center; gap: 14px; border-bottom: 1px solid var(--md-line); }
.md-os-panel__rows div:last-child { border-bottom: 0; }
.md-os-panel__rows span { color: var(--md-muted); font-size: 10px; }
.md-os-panel__rows strong { font-size: 12px; }
.md-os-panel__rows small { color: var(--md-primary); font-size: 8px; font-weight: 700; }
.md-partner-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; color: #fff; background: var(--md-ink); }
.md-partner-section .md-kicker { margin-bottom: 20px; color: rgba(255,255,255,.5); }
.md-partner-section__body > p { max-width: 600px; margin: 0; color: rgba(255,255,255,.58); font-size: 16px; line-height: 1.7; }
.md-partner-points { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 48px; }
.md-partner-points span { padding: 18px 0; color: rgba(255,255,255,.82); font-size: 12px; border-top: 1px solid rgba(255,255,255,.14); }
.md-partner-points span:nth-child(2n) { padding-left: 20px; border-left: 1px solid rgba(255,255,255,.14); }
.md-final-cta { padding: clamp(100px,14vw,190px) var(--md-gutter); text-align: center; background: #fff; }
.md-final-cta .md-kicker { margin-bottom: 22px; }
.md-final-cta h2 { max-width: 900px; margin: 0 auto; }
.md-final-cta p { max-width: 590px; margin: 28px auto 34px; color: var(--md-muted); font-size: 16px; line-height: 1.6; }
.md-final-cta > div { display: flex; justify-content: center; align-items: center; gap: 24px; }
.md-site-footer { display: grid; grid-template-columns: 1fr 1fr 1fr; padding: 32px var(--md-gutter); align-items: center; gap: 20px; color: var(--md-muted); font-size: 10px; border-top: 1px solid var(--md-line); }
.md-site-footer p { text-align: center; }
.md-site-footer > span { text-align: right; }
.md-site-footer nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; font-size: 10px; }
.md-site-footer nav a { color: var(--md-muted); text-decoration: none; }
.md-site-footer nav button { padding: 0; color: var(--md-muted); font: inherit; cursor: pointer; border: 0; background: transparent; }

.md-proof { display: grid; grid-template-columns: repeat(3,1fr); padding: 0 var(--md-gutter); border-top: 1px solid var(--md-line); border-bottom: 1px solid var(--md-line); background: var(--md-paper); }
.md-proof div { min-height: 150px; padding: 34px 28px; border-right: 1px solid var(--md-line); }
.md-proof div:last-child { border-right: 0; }
.md-proof strong,.md-proof span { display: block; }
.md-proof strong { font-size: 34px; font-weight: 520; letter-spacing: -.05em; }
.md-proof span { max-width: 210px; margin-top: 14px; color: var(--md-muted); font-size: 11px; line-height: 1.5; }
.md-editorial { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 680px; background: #151817; }
.md-editorial figure { min-height: 540px; margin: 0; overflow: hidden; }
.md-editorial img { width: 100%; height: 100%; object-fit: cover; }
.md-editorial__copy { display: flex; padding: clamp(48px,7vw,110px); flex-direction: column; justify-content: center; color: #fff; }
.md-editorial__copy .md-kicker { color: #72b8ae; }
.md-editorial__copy h2 { margin: 22px 0; font-size: clamp(38px,4.7vw,68px); font-weight: 480; letter-spacing: -.055em; line-height: 1; }
.md-editorial__copy p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; }
.md-editorial__copy .md-site-text-link { margin-top: 28px; color: #fff; }
.md-choice { padding: clamp(70px,10vw,150px) var(--md-gutter); background: var(--md-paper); }
.md-choice__head { max-width: 760px; }
.md-choice__head h2 { margin: 20px 0 52px; font-size: clamp(38px,5vw,68px); font-weight: 480; letter-spacing: -.055em; line-height: 1; }
.md-choice__grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--md-line-strong); }
.md-choice__grid a { display: flex; min-height: 230px; padding: 26px 28px; flex-direction: column; color: inherit; text-decoration: none; border-right: 1px solid var(--md-line); }
.md-choice__grid a:last-child { border-right: 0; }
.md-choice__grid a:hover { background: var(--md-soft); }
.md-choice__grid span { color: var(--md-primary); font-size: 10px; }
.md-choice__grid strong { margin: auto 0 20px; font-size: 24px; font-weight: 540; letter-spacing: -.035em; }
.md-choice__grid small { color: var(--md-muted); font-size: 11px; }

.md-cookie[hidden] { display: none; }
.md-cookie { position: fixed; right: 22px; bottom: 22px; z-index: 100; display: grid; grid-template-columns: 1fr auto; width: min(680px,calc(100vw - 44px)); padding: 24px; gap: 28px; color: var(--md-ink); border: 1px solid var(--md-line-strong); border-radius: 14px; background: rgba(255,255,255,.97); box-shadow: 0 24px 80px rgba(11,13,12,.18); backdrop-filter: blur(16px); }
.md-cookie h2 { margin: 8px 0; font-size: 24px; font-weight: 560; letter-spacing: -.04em; }
.md-cookie p { max-width: 480px; margin: 0; color: var(--md-muted); font-size: 11px; line-height: 1.55; }
.md-cookie a { display: inline-block; margin-top: 9px; color: var(--md-ink); font-size: 10px; }
.md-cookie__actions { display: flex; min-width: 145px; flex-direction: column; justify-content: center; gap: 10px; }
.md-cookie__actions .md-site-btn { min-height: 42px; }
.md-cookie__actions .md-site-text-link { margin: 0; font-size: 10px; border: 0; background: transparent; cursor: pointer; }

.md-subpage { min-height: 65vh; }
.md-subhero { padding: clamp(80px,12vw,180px) var(--md-gutter); border-bottom: 1px solid var(--md-line); }
.md-subhero h1 { max-width: 1020px; margin: 24px 0; font-size: clamp(58px,9vw,126px); font-weight: 450; letter-spacing: -.07em; line-height: .9; }
.md-subhero p { max-width: 670px; margin: 0 0 34px; color: var(--md-muted); font-size: 16px; line-height: 1.65; }
.md-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); background: var(--md-paper); }
.md-detail-grid article { min-height: 430px; padding: clamp(40px,6vw,90px); border-right: 1px solid var(--md-line); border-bottom: 1px solid var(--md-line); }
.md-detail-grid article span { color: var(--md-primary); font-size: 10px; font-weight: 680; text-transform: uppercase; letter-spacing: .08em; }
.md-detail-grid h2 { max-width: 560px; margin: 60px 0 18px; font-size: clamp(34px,4vw,58px); font-weight: 480; letter-spacing: -.055em; line-height: 1; }
.md-detail-grid p { max-width: 500px; color: var(--md-muted); line-height: 1.65; }
.md-manifest { padding: clamp(70px,10vw,160px) var(--md-gutter); background: #151817; color: #fff; }
.md-manifest > p { max-width: 1050px; margin: 0; font-size: clamp(36px,5.5vw,78px); letter-spacing: -.055em; line-height: 1.04; }
.md-manifest div { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 90px; gap: 24px; }
.md-manifest strong { padding-top: 18px; font-size: 12px; border-top: 1px solid rgba(255,255,255,.25); }
.md-legal { max-width: 850px; min-height: 65vh; padding: clamp(80px,10vw,150px) var(--md-gutter); }
.md-legal h1 { margin: 22px 0 70px; font-size: clamp(58px,8vw,110px); font-weight: 460; letter-spacing: -.065em; }
.md-legal h2 { margin: 44px 0 10px; font-size: 18px; font-weight: 620; }
.md-legal p { color: var(--md-muted); line-height: 1.7; }
.md-legal__note { margin-top: 60px; padding: 18px; font-size: 11px; border-left: 2px solid var(--md-primary); background: var(--md-primary-soft); }

/* Login shares the public product language. */
body.app-shell.md-login-shell { margin: 0; color: var(--md-ink); background: var(--md-canvas) !important; font-family: "Geist", system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
.main.login-main .content.content--login { width: 100%; min-height: 100dvh; height: auto; padding: 0 !important; }
.md-login { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(420px,.85fr); width: 100%; min-height: 100dvh; background: var(--md-canvas); }
.md-login__story { display: flex; padding: 44px clamp(32px,6vw,90px); flex-direction: column; justify-content: space-between; }
.md-login__back { color: var(--md-muted); font-size: 11px; font-weight: 620; text-decoration: none; }
.md-login__brand { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 750; }
.md-login__brand-mark { display: grid; width: 34px; height: 34px; place-items: center; color: #fff; font-size: 10px; letter-spacing: -.02em; border-radius: 9px; background: var(--md-ink); }
.md-login__story-main { max-width: 680px; padding: 70px 0; }
.md-login__story-main .md-kicker { margin-bottom: 20px; }
.md-login__story-main h1 { margin: 0; font-size: clamp(48px,6vw,82px); font-weight: 470; letter-spacing: -.06em; line-height: .96; }
.md-login__story-main > p { max-width: 520px; margin: 26px 0 0; color: var(--md-muted); font-size: 15px; line-height: 1.65; }
.md-login__system { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 50px; gap: 16px; }
.md-login__system div { padding-top: 16px; border-top: 1px solid var(--md-line-strong); }
.md-login__system strong,.md-login__system span { display: block; }
.md-login__system strong { font-size: 12px; }
.md-login__system span { margin-top: 5px; color: var(--md-muted); font-size: 9px; }
.md-login__legal { color: var(--md-muted); font-size: 9px; }
.md-login__panel { display: flex; padding: 44px clamp(30px,5vw,76px); flex-direction: column; align-items: center; justify-content: center; background: #fff; }
.md-login-card { width: min(100%,430px); }
.md-login-card__eyebrow { color: var(--md-primary); font-size: 10px; font-weight: 720; letter-spacing: .09em; text-transform: uppercase; }
.md-login-card h2 { margin: 12px 0 8px; font-size: 34px; font-weight: 560; letter-spacing: -.045em; }
.md-login-card__intro { margin: 0 0 34px; color: var(--md-muted); font-size: 13px; line-height: 1.55; }
.md-login-alert { margin-bottom: 18px; padding: 12px 14px; color: #b42318; font-size: 12px; border-radius: 8px; background: #fff1f0; }
.md-login-alert--success { color: #15704a; background: #edf7f1; }
.md-login-field { display: block; margin-bottom: 18px; }
.md-login-field > span { display: block; margin-bottom: 7px; color: var(--md-ink-soft); font-size: 11px; font-weight: 650; }
.md-login-input-wrap { display: flex; min-height: 50px; align-items: center; border-bottom: 1px solid var(--md-line-strong); }
.md-login-input-wrap:focus-within { border-bottom-color: var(--md-primary); }
.md-login-input-wrap input { width: 100%; padding: 0; color: var(--md-ink); font: inherit; font-size: 15px; border: 0; outline: 0; background: transparent; }
.md-login-password-toggle { display: grid; width: 40px; height: 40px; place-items: center; color: var(--md-muted); cursor: pointer; border: 0; border-radius: 8px; background: transparent; }
.md-login-password-toggle:hover { color: var(--md-ink); background: var(--md-soft); }
.md-login-password-toggle svg { width: 16px; height: 16px; }
.md-login-password-toggle svg * { fill: none; stroke: currentColor; stroke-width: 1.7; }
.md-login-submit { display: flex; width: 100%; min-height: 50px; margin-top: 28px; padding: 0 18px; align-items: center; justify-content: space-between; color: #fff; font: inherit; font-size: 13px; font-weight: 680; cursor: pointer; border: 0; border-radius: 9px; background: var(--md-ink); }
.md-login-submit:hover { background: var(--md-primary); }
.md-login-help { margin: 20px 0 0; color: var(--md-muted); font-size: 10px; line-height: 1.5; text-align: center; }
.md-login-demo { margin-top: 18px; padding: 13px; color: var(--md-muted); font-size: 10px; border-radius: 8px; background: var(--md-soft); }
.md-login-demo { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.md-login-demo strong,.md-login-demo span { display: block; }
.md-login-demo strong { margin-bottom: 3px; color: var(--md-ink); font-size: 11px; }
.md-login-demo button { padding: 7px 9px; color: var(--md-ink); font: inherit; font-weight: 680; white-space: nowrap; cursor: pointer; border: 1px solid var(--md-line); border-radius: 7px; background: #fff; }
.md-login-help span { color: var(--md-ink); font-weight: 680; }
.md-login-help p { margin: 4px 0 0; }
.md-login__mobile-back { display: none; }

@media (max-width: 1050px) {
  .md-site-nav { grid-template-columns: 1fr auto; }
  .md-site-nav__links { display: none; }
  .md-hero { grid-template-columns: 1fr; min-height: auto; }
  .md-hero__copy { max-width: 720px; }
  .md-product-frame { width: min(100%,820px); }
  .md-section-head,.md-os-section,.md-partner-section { grid-template-columns: 1fr; }
  .md-os-panel { width: min(100%,720px); }
  .md-login { grid-template-columns: 1fr 440px; }
}
@media (max-width: 760px) {
  .md-site-nav { height: 62px; }
  .md-site-nav__actions .md-site-link { display: none; }
  .md-hero { padding-top: 56px; }
  .md-hero__copy h1 { font-size: clamp(58px,20vw,82px); }
  .md-hero__actions { align-items: flex-start; flex-direction: column; }
  .md-product-frame__body { grid-template-columns: 1fr; min-height: 0; }
  .md-product-nav { display: none; }
  .md-product-stage { padding: 26px 22px; }
  .md-product-signals { gap: 8px; }
  .md-product-work { align-items: flex-start; flex-direction: column; }
  .md-flow-strip { justify-content: flex-start; }
  .md-section-head { margin-bottom: 48px; }
  .md-capability-grid { grid-template-columns: 1fr; }
  .md-capability-grid article,.md-capability-grid article:nth-child(2n) { min-height: 0; padding: 30px 0; border-left: 0; }
  .md-capability-grid h3 { margin-top: 28px; }
  .md-partner-points { grid-template-columns: 1fr; }
  .md-partner-points span:nth-child(2n) { padding-left: 0; border-left: 0; }
  .md-final-cta > div { flex-direction: column; }
  .md-site-footer { grid-template-columns: 1fr; text-align: left; }
  .md-site-footer p,.md-site-footer > span { text-align: left; }
  .md-site-footer nav { justify-content: flex-start; }
  .md-proof,.md-choice__grid,.md-detail-grid,.md-manifest div { grid-template-columns: 1fr; }
  .md-proof div { min-height: 120px; border-right: 0; border-bottom: 1px solid var(--md-line); }
  .md-editorial { grid-template-columns: 1fr; }
  .md-editorial figure { min-height: 420px; }
  .md-editorial__copy { padding: 50px 20px 70px; }
  .md-choice__grid a { min-height: 180px; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--md-line); }
  .md-cookie { right: 12px; bottom: 12px; grid-template-columns: 1fr; width: calc(100vw - 24px); padding: 20px; gap: 18px; }
  .md-cookie__actions { min-width: 0; }
  .md-subhero { padding-top: 76px; }
  .md-subhero h1 { font-size: 58px; }
  .md-detail-grid article { min-height: 330px; padding: 42px 20px; border-right: 0; }
  .md-detail-grid h2 { margin-top: 46px; }
  .md-login { grid-template-columns: 1fr; }
  .md-login__story { min-height: 330px; padding: 24px 20px 34px; }
  .md-login__story-main { padding: 50px 0 10px; }
  .md-login__story-main h1 { font-size: 48px; }
  .md-login__system,.md-login__legal { display: none; }
  .md-login__panel { padding: 42px 20px 50px; align-items: flex-start; }
  .md-login__mobile-back { display: block; margin-top: 28px; color: var(--md-muted); font-size: 10px; text-align: center; }
}

/* Home hero — immersive handwerk + software composition. */
.md-site--home .md-site-nav {
  color: #fff;
  background: #151817;
  border-bottom-color: rgba(255,255,255,.08);
}
.md-site--home .md-site-nav__links a,
.md-site--home .md-site-link { color: rgba(255,255,255,.62); }
.md-site--home .md-site-nav__links a:hover,
.md-site--home .md-site-link:hover { color: #fff; }
.md-site--home .md-site-nav .md-site-btn { color: var(--md-ink) !important; background: #fff; }
.md-site--home .md-site-nav .md-site-btn:hover { color: #fff !important; background: var(--md-primary); }
.md-hero--cinematic {
  position: relative;
  isolation: isolate;
  min-height: min(920px,calc(100vh - 72px));
  padding-top: clamp(70px,9vh,120px);
  padding-bottom: 96px;
  color: #fff;
  background-color: #151817;
  background-image: url("/assets/images/public/meisterdirekt-workshop-v1.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.md-hero--cinematic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,rgba(8,12,11,.94) 0%,rgba(8,12,11,.78) 39%,rgba(8,12,11,.2) 72%,rgba(8,12,11,.08) 100%),
    linear-gradient(0deg,rgba(8,12,11,.56) 0%,transparent 46%);
}
.md-hero--cinematic::after {
  content: "MEISTERDIREKT · HANDWERK OS";
  position: absolute;
  right: var(--md-gutter);
  bottom: 28px;
  z-index: 0;
  color: rgba(255,255,255,.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}
.md-hero--cinematic .md-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 700px;
  align-self: center;
}
.md-hero--cinematic .md-kicker { color: #73c5b9; }
.md-hero--cinematic .md-hero__copy h1 {
  max-width: 9ch;
  margin-top: 24px;
  font-size: clamp(64px,7vw,108px);
  font-weight: 470;
  line-height: .88;
}
.md-hero--cinematic .md-hero__copy > p {
  max-width: 590px;
  color: rgba(255,255,255,.7);
  font-size: 17px;
}
.md-hero--cinematic .md-hero__actions .md-site-btn {
  color: var(--md-ink) !important;
  background: #fff;
}
.md-hero--cinematic .md-hero__actions .md-site-btn:hover {
  color: #fff !important;
  background: var(--md-primary);
}
.md-hero--cinematic .md-site-text-link { color: rgba(255,255,255,.82); }
.md-hero--cinematic .md-site-text-link:hover { color: #fff; }
.md-hero--cinematic .md-hero__trust { color: rgba(255,255,255,.58); }
.md-hero--cinematic .md-hero__trust span::before { background: #73c5b9; }
.md-hero--cinematic .md-product-frame {
  position: relative;
  z-index: 2;
  width: min(100%,720px);
  align-self: end;
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 42px 110px rgba(0,0,0,.36);
  color: var(--md-ink);
}
.md-hero--cinematic .md-product-frame__body { min-height: 470px; }

@media (max-width: 1050px) {
  .md-hero--cinematic {
    grid-template-columns: 1fr;
    min-height: auto;
    background-position: 62% center;
  }
  .md-hero--cinematic::before {
    background: linear-gradient(90deg,rgba(8,12,11,.95) 0%,rgba(8,12,11,.7) 62%,rgba(8,12,11,.28) 100%);
  }
  .md-hero--cinematic .md-product-frame { width: min(100%,820px); margin-top: 28px; }
}

@media (max-width: 760px) {
  .md-site--home .md-site-nav { height: 62px; }
  .md-hero--cinematic {
    padding: 64px 20px 58px;
    background-position: 68% top;
  }
  .md-hero--cinematic::before {
    background: linear-gradient(180deg,rgba(8,12,11,.9) 0%,rgba(8,12,11,.82) 48%,rgba(8,12,11,.96) 100%);
  }
  .md-hero--cinematic::after { display: none; }
  .md-hero--cinematic .md-hero__copy h1 { max-width: 8ch; font-size: clamp(56px,17vw,78px); }
  .md-hero--cinematic .md-hero__copy > p { font-size: 15px; }
  .md-hero--cinematic .md-hero__actions { align-items: stretch; }
  .md-hero--cinematic .md-hero__actions .md-site-btn { width: 100%; }
  .md-hero--cinematic .md-product-frame { margin-top: 12px; }
  .md-hero--cinematic .md-product-frame__body { min-height: 0; }
}
