/* [project]/app/globals.css [app-client] (css) */
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: .25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}

@layer base {
  *, :after, :before, ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }

  html, :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji");
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }

  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }

  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }

  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }

  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }

  b, strong {
    font-weight: bolder;
  }

  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }

  small {
    font-size: 80%;
  }

  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }

  sub {
    bottom: -.25em;
  }

  sup {
    top: -.5em;
  }

  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }

  :-moz-focusring {
    outline: auto;
  }

  progress {
    vertical-align: baseline;
  }

  summary {
    display: list-item;
  }

  ol, ul, menu {
    list-style: none;
  }

  img, svg, video, canvas, audio, iframe, embed, object {
    vertical-align: middle;
    display: block;
  }

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

  button, input, select, optgroup, textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }

  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }

  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }

  ::file-selector-button {
    margin-inline-end: 4px;
  }

  ::placeholder {
    opacity: 1;
  }

  @supports (not ((-webkit-appearance: -apple-pay-button))) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }

    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }

  textarea {
    resize: vertical;
  }

  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }

  ::-webkit-datetime-edit {
    display: inline-flex;
  }

  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }

  ::-webkit-datetime-edit {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }

  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }

  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }

  :-moz-ui-invalid {
    box-shadow: none;
  }

  button, input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }

  ::file-selector-button {
    appearance: button;
  }

  ::-webkit-inner-spin-button {
    height: auto;
  }

  ::-webkit-outer-spin-button {
    height: auto;
  }

  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}

@layer components;

@layer utilities {
  .start {
    inset-inline-start: var(--spacing);
  }

  .table {
    display: table;
  }
}

:root {
  --bg: #41566d;
  --bg-2: #51677f;
  --surface: #5c748d;
  --surface-2: #6b839a;
  --line: #ffffff1f;
  --text: #f4f7fb;
  --muted: #d3dce7;
  --primary: #6e7dff;
  --primary-2: #5967dd;
  --accent: #8fd4ff;
  --radius: 22px;
  --shadow: 0 18px 44px #0000002e;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
  color: var(--text);
  background: radial-gradient(circle at top, #8fd4ff29, #0000 28%), linear-gradient(#607a95 0%, #566f89 34%, #4b6279 100%);
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  flex-direction: column;
  min-height: 100vh;
  display: flex;
}

.site-main {
  flex: 1;
  width: min(1240px, 100% - 32px);
  margin: 0 auto;
  padding: 28px 0 48px;
}

.site-header {
  z-index: 30;
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
}

.site-header--public {
  background: #546c84db;
}

.site-header--portal {
  background: #fffffff2;
}

.site-header__inner {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: min(1240px, 100% - 32px);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
}

.brand-wrap {
  flex-direction: column;
  display: flex;
}

.brand {
  letter-spacing: -.02em;
  font-size: 1.35rem;
  font-weight: 700;
}

.site-header--public .brand {
  color: #fff;
}

.site-header--portal .brand {
  color: #0b1f33;
}

.site-nav {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.site-nav__link {
  border-radius: 12px;
  padding: 10px 12px;
  font-size: .95rem;
}

.site-header--public .site-nav__link {
  color: #d3daea;
}

.site-header--public .site-nav__link:hover {
  color: #fff;
  background: #ffffff0d;
}

.site-header--portal .site-nav__link {
  color: #5b6474;
}

.site-header--portal .site-nav__link:hover {
  color: #0f172a;
  background: #f0f4f9;
}

.header-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.lang-switch {
  border: 1px solid var(--line);
  background: #ffffff08;
  border-radius: 999px;
  display: inline-flex;
  overflow: hidden;
}

.site-header--portal .lang-switch {
  background: #fff;
  border-color: #dbe3ee;
}

.lang-switch__item {
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: 0;
  padding: 8px 10px;
  font-size: .84rem;
}

.lang-switch button.lang-switch__item {
  font: inherit;
  appearance: none;
  margin: 0;
}

.lang-switch button.lang-switch__item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  z-index: 1;
}

.lang-switch__item--active {
  background: var(--primary);
  color: #fff;
}

.button {
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  font-size: .95rem;
  transition: all .2s;
  display: inline-flex;
}

.button--primary {
  background: linear-gradient(135deg, var(--primary) 0%, #8ea0ff 100%);
  color: #fff;
}

.button--primary:hover {
  filter: brightness(1.05);
}

.button--ghost {
  color: #fff;
  background: none;
  border-color: #ffffff29;
}

.button--ghost:hover {
  background: #ffffff0d;
}

.site-header--portal .button--ghost, .site-footer--portal .button--ghost {
  color: #0f172a;
  border-color: #dbe3ee;
}

.site-header--portal .button--ghost:hover, .site-footer--portal .button--ghost:hover {
  background: #f0f4f9;
}

.page .button:not(.button--primary):not(.button--ghost) {
  color: #0f172a;
  background: #fff;
  border-color: #dbe3ee;
}

.page .button:not(.button--primary):not(.button--ghost):hover {
  background: #f0f4f9;
}

.page {
  gap: 24px;
  display: grid;
}

.page-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  display: flex;
}

.page-title {
  color: #0f172a;
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
}

.page-subtitle {
  color: #5b6474;
  margin: 8px 0 0;
  line-height: 1.5;
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

.metric-card, .panel, .form-card {
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 18px;
  box-shadow: 0 10px 24px #0b1f330f;
}

.metric-card {
  padding: 18px;
}

.metric-card__label {
  color: #5b6474;
  margin: 0;
  font-size: .9rem;
}

.metric-card__value {
  color: #0b1f33;
  margin: 8px 0 0;
  font-size: 2rem;
  font-weight: 700;
}

.panel {
  padding: 18px;
}

.panel__header {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  display: flex;
}

.panel__title {
  color: #0f172a;
  margin: 0;
  font-size: 1.15rem;
}

.panel__subtitle {
  color: #5b6474;
  margin: 6px 0 0;
  font-size: .92rem;
}

.section-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

.stack-list {
  gap: 12px;
  display: grid;
}

.stack-item {
  background: #f0f4f9;
  border: 1px solid #dbe3ee;
  border-radius: 14px;
  padding: 14px;
}

.stack-item__title {
  color: #0f172a;
  margin: 0 0 8px;
  font-weight: 700;
}

.stack-item__meta {
  color: #5b6474;
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
}

.table-wrap {
  overflow-x: auto;
}

.table {
  border-collapse: collapse;
  background: #fff;
  width: 100%;
}

.table th, .table td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #dbe3ee;
  padding: 12px 10px;
}

.table th {
  color: #5b6474;
  font-size: .9rem;
  font-weight: 700;
}

.badge {
  border: 1px solid #0000;
  border-radius: 999px;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 10px;
  font-size: .82rem;
  font-weight: 700;
  display: inline-flex;
}

.badge--active, .badge--live, .badge--validated, .badge--done, .badge--resolved {
  color: #146534;
  background: #eaf8ef;
}

.badge--planned, .badge--building, .badge--review, .badge--info, .badge--open {
  color: #1447a6;
  background: #eaf2ff;
}

.badge--new, .badge--warning, .badge--at-risk, .badge--paused, .badge--parked, .badge--on-hold {
  color: #9a6700;
  background: #fff5df;
}

.badge--critical, .badge--rejected, .badge--inactive, .badge--external, .badge--blocked {
  color: #a52121;
  background: #fdeaea;
}

.form-card {
  padding: 20px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

.form-field {
  gap: 8px;
  display: grid;
}

.form-field--full {
  grid-column: 1 / -1;
}

.label {
  color: #0f172a;
  font-size: .92rem;
  font-weight: 700;
}

.input, .select, .textarea {
  color: #0f172a;
  width: 100%;
  font: inherit;
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  padding: 12px 14px;
}

.textarea {
  resize: vertical;
  min-height: 120px;
}

.form-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
  display: flex;
}

.note {
  color: #5b6474;
  margin: 0;
  font-size: .92rem;
  line-height: 1.5;
}

.empty-state {
  color: #5b6474;
  background: #f0f4f9;
  border: 1px dashed #dbe3ee;
  border-radius: 14px;
  padding: 20px;
}

.kpi-line {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  display: flex;
}

.public-page {
  gap: 22px;
  display: grid;
}

.hero-dark, .contact-dark, .legal-card {
  box-shadow: var(--shadow);
  background: linear-gradient(#5c748df0 0%, #4e647af5 100%);
  border: 1px solid #ffffff1c;
  border-radius: 24px;
}

.hero-dark {
  background: radial-gradient(circle at 0 0, #8fd4ff2e, #0000 26%), linear-gradient(#67809afa 0%, #546c84fa 100%);
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 24px;
  padding: 26px;
  display: grid;
}

.hero-dark__content, .hero-dark__image, .showcase-block__content, .showcase-block__image {
  min-width: 0;
}

.hero-dark__eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .84rem;
  font-weight: 700;
}

.hero-dark__title {
  letter-spacing: -.035em;
  max-width: 720px;
  margin: 14px 0 0;
  font-size: 3.2rem;
  line-height: 1.05;
}

.hero-dark__text {
  color: #cfdaea;
  max-width: 560px;
  margin: 16px 0 0;
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-dark__actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  display: flex;
}

.showcase-block {
  box-shadow: var(--shadow);
  background: linear-gradient(#263042e0 0%, #1c2432eb 100%);
  border: 1px solid #ffffff12;
  border-radius: 24px;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: 18px;
  padding: 22px;
  display: grid;
}

.showcase-block__title {
  letter-spacing: -.03em;
  color: #f1f5f9;
  margin-top: 10px;
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1.08;
}

.showcase-block__text {
  color: #c0ccde;
  margin-top: 8px;
  font-size: .98rem;
  line-height: 1.65;
}

.showcase-block .public-image--fallback {
  min-height: 200px;
}

.technology-grid-section {
  box-shadow: var(--shadow);
  background: linear-gradient(#263042e0 0%, #1c2432eb 100%);
  border: 1px solid #ffffff12;
  border-radius: 24px;
  gap: 20px;
  padding: 22px;
  display: grid;
}

.technology-grid-section__header {
  max-width: 760px;
}

.technology-grid-section__eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .84rem;
  font-weight: 700;
}

.technology-grid-section__title {
  letter-spacing: -.03em;
  margin: 10px 0 0;
  font-size: 2rem;
  line-height: 1.08;
}

.technology-grid-section__text {
  color: #c0ccde;
  margin: 10px 0 0;
  line-height: 1.7;
}

.technology-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

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

.tech-card {
  background: linear-gradient(#374458d1 0%, #2b3749e0 100%);
  border: 1px solid #ffffff12;
  border-radius: 20px;
  overflow: hidden;
}

.tech-card__image {
  padding: 10px 10px 0;
}

.tech-card__image .public-image, .tech-card__image .public-image--fallback {
  border-radius: 14px;
  min-height: 150px;
  max-height: 190px;
}

.tech-card__body {
  padding: 14px 14px 16px;
}

.tech-card__title {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.tech-card__text {
  color: #c0ccde;
  margin: 8px 0 0;
  font-size: .92rem;
  line-height: 1.55;
}

.tech-card--link {
  text-decoration: none;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  display: block;
}

.tech-card--link:hover {
  border-color: #8fd4ff47;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px #0003;
}

.tech-card__link {
  color: var(--accent);
  margin-top: 12px;
  font-size: .9rem;
  font-weight: 700;
  display: inline-flex;
}

.public-image {
  object-fit: cover;
  background: #111827;
  border: 1px solid #ffffff14;
  border-radius: 18px;
  width: 100%;
  height: 100%;
  min-height: 240px;
  max-height: 380px;
}

.hero-dark .public-image, .hero-dark .public-image--fallback {
  min-height: 320px;
  max-height: 420px;
}

.public-image--fallback {
  text-align: center;
  color: #e8eef8;
  background: radial-gradient(circle at 0 0, #7a6bff38, #0000 30%), linear-gradient(#2a3344 0%, #202836 100%);
  border: 1px solid #ffffff14;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  min-height: 240px;
  padding: 24px;
  font-size: 1.02rem;
  font-weight: 700;
  display: flex;
}

.contact-dark {
  text-align: center;
  padding: 24px;
}

.contact-dark__title {
  letter-spacing: -.03em;
  margin: 0;
  font-size: 2rem;
  line-height: 1.08;
}

.contact-dark__text {
  color: #c0ccde;
  max-width: 640px;
  margin: 12px auto 0;
  line-height: 1.7;
}

.contact-dark__actions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  display: flex;
}

.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  display: grid;
}

.legal-card {
  padding: 20px;
}

.legal-card h2 {
  margin: 0;
  font-size: 1.2rem;
}

.legal-card p {
  color: #c0ccde;
  margin: 10px 0 0;
  line-height: 1.68;
}

.site-footer {
  margin-top: 20px;
}

.site-footer--public {
  background: #141a24d6;
  border-top: 1px solid #ffffff12;
}

.site-footer--portal {
  background: #fff;
  border-top: 1px solid #dbe3ee;
}

.site-footer__inner {
  width: min(1240px, 100% - 32px);
  margin: 0 auto;
  padding: 24px 0;
}

.site-footer__grid {
  grid-template-columns: 1.2fr .8fr .9fr;
  gap: 24px;
  display: grid;
}

.site-footer__row {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  display: flex;
}

.site-footer__brand {
  font-size: 1rem;
  font-weight: 700;
}

.site-footer--public .site-footer__brand {
  color: #fff;
}

.site-footer__heading {
  color: #fff;
  margin-bottom: 10px;
  font-size: .95rem;
  font-weight: 700;
}

.site-footer__muted {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: .92rem;
  line-height: 1.6;
}

.site-footer__links {
  flex-wrap: wrap;
  gap: 16px;
  display: flex;
}

.site-footer__links--column {
  gap: 8px;
  display: grid;
}

.site-footer--public .site-footer__links a {
  color: #d3daea;
}

.site-footer--public .site-footer__links a:hover {
  color: #fff;
}

.site-footer__bottom {
  color: var(--muted);
  border-top: 1px solid #ffffff12;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  font-size: .9rem;
  display: flex;
}

.site-footer__portal-row {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.site-footer--portal .site-footer__muted, .site-footer--portal .site-footer__brand {
  color: #0f172a;
}

.site-footer--portal .site-footer__heading, .site-footer--portal .site-footer__links a {
  color: #0b2a4a;
}

.site-footer--portal .site-footer__links a:hover {
  color: #0f172a;
}

.site-footer--portal .site-footer__portal-row .site-footer__muted {
  color: #5b6474;
}

.site-footer--portal .site-footer__bottom {
  color: #2b3f56;
  border-top: 1px solid #dbe3ee;
}

.login-page {
  place-items: center;
  min-height: 70vh;
  display: grid;
}

.login-card {
  width: min(460px, 100%);
  box-shadow: var(--shadow);
  background: linear-gradient(#5c748df0 0%, #4e647af5 100%);
  border: 1px solid #ffffff1c;
  border-radius: 24px;
  padding: 28px;
}

.login-eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .84rem;
  font-weight: 700;
}

.login-title {
  margin: 14px 0 0;
  font-size: 2rem;
}

.login-text {
  color: #cfdaea;
  margin: 10px 0 0;
  line-height: 1.6;
}

.login-form {
  gap: 14px;
  margin-top: 20px;
  display: grid;
}

.login-error {
  color: #ffd3d3;
  margin: 0;
  font-size: .92rem;
}

.portal-protected {
  gap: 18px;
  display: grid;
}

.portal-userbar {
  background: #fff;
  border: 1px solid #dbe3ee;
  border-radius: 16px;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  display: flex;
  box-shadow: 0 10px 24px #0b1f330f;
}

.portal-userbar__subline {
  color: #5b6474;
  margin-top: 4px;
  font-size: .9rem;
}

.portal-protected {
  color: #e5e7eb;
  background: #1e293b;
  border-radius: 20px;
  min-height: 100vh;
  padding: 16px;
}

.portal-protected .portal-userbar {
  background: #334155;
  border-color: #475569;
}

.portal-protected .portal-userbar strong {
  color: #f8fafc;
}

.portal-protected .portal-userbar__subline {
  color: #94a3b8;
}

.portal-protected .page-title, .portal-protected .panel__title, .portal-protected .stack-item__title, .portal-protected .label {
  color: #f8fafc;
}

.portal-protected .page-subtitle, .portal-protected .panel__subtitle, .portal-protected .metric-card__label, .portal-protected .stack-item__meta, .portal-protected .note, .portal-protected .empty-state {
  color: #cbd5e1;
}

.portal-protected .metric-card, .portal-protected .panel, .portal-protected .form-card, .portal-protected .table {
  background: #334155;
  border-color: #475569;
  box-shadow: 0 10px 24px #00000040;
}

.portal-protected .metric-card__value {
  color: #f8fafc;
}

.portal-protected .stack-item {
  background: #3c4d63;
  border-color: #475569;
}

.portal-protected .table th, .portal-protected .table td {
  border-bottom-color: #475569;
}

.portal-protected .table th {
  color: #94a3b8;
}

.portal-protected .input, .portal-protected .select, .portal-protected .textarea {
  color: #f8fafc;
  background: #3c4d63;
  border-color: #475569;
}

.portal-protected .input::placeholder, .portal-protected .textarea::placeholder {
  color: #94a3b8;
}

@media (max-width: 1100px) {
  .hero-dark, .showcase-block, .cards-4, .section-grid, .form-grid, .site-footer__grid, .legal-grid {
    grid-template-columns: 1fr;
  }

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

  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .hero-dark__title {
    font-size: 2.7rem;
  }
}

@media (max-width: 700px) {
  .hero-dark, .showcase-block, .technology-grid-section, .contact-dark, .legal-card {
    padding: 16px;
  }

  .hero-dark__title {
    font-size: 2.05rem;
    line-height: 1.08;
  }

  .technology-grid {
    grid-template-columns: 1fr;
  }

  .technology-grid-section__title {
    font-size: 1.6rem;
  }

  .contact-dark__title {
    font-size: 1.55rem;
  }

  .tech-card__image .public-image, .tech-card__image .public-image--fallback {
    min-height: 180px;
    max-height: 240px;
  }

  .public-image, .public-image--fallback {
    min-height: 200px;
    max-height: 280px;
  }

  .hero-dark .public-image, .hero-dark .public-image--fallback {
    min-height: 240px;
    max-height: 320px;
  }

  .cards-4 {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/