/* =========================================================
   BEYOND STEPS — About Me V0.1
   Eigene CSS-Datei für /html/about-me.html
   ========================================================= */

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/inter-v19-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter/inter-v19-latin-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("../assets/fonts/source-sans-3/source-sans-3-v19-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Bruno Ace SC";
  src: url("../assets/fonts/bruno-ace-sc/bruno-ace-sc-v7-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Michroma";
  src: url("../assets/fonts/michroma/michroma-v21-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-brand: "Bruno Ace SC", sans-serif;
  --font-brand-sub: "Michroma", sans-serif;
  --font-body: "Source Sans 3", sans-serif;
  --font-ui: "Inter", sans-serif;

  --color-bg: #02060a;
  --color-text-main: #c9edf3;
  --color-text-strong: #e6f8fb;
  --color-text-soft: rgba(201, 237, 243, 0.84);
  --color-text-faint: rgba(159, 203, 213, 0.68);
  --color-gold: rgba(209, 171, 97, 0.86);
  --color-gold-soft: rgba(209, 171, 97, 0.38);
  --color-gold-faint: rgba(209, 171, 97, 0.12);
  --color-cyan-soft: rgba(73, 181, 199, 0.18);
  --color-link-hover: rgba(240, 221, 171, 0.96);

  --page-padding-x: 54px;
  --page-padding-y: 38px;
  --page-width: 1320px;
  --section-gap: 132px;
  --panel-radius: 24px;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-text-main);
  background: var(--color-bg);
  font-family: var(--font-body);
}

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

.about-page {
  position: relative;
  min-height: 100svh;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.40) 38%, rgba(0, 0, 0, 0.22) 68%, rgba(0, 0, 0, 0.38) 100%),
    radial-gradient(circle at 28% 42%, rgba(55, 92, 104, 0.16) 0%, rgba(55, 92, 104, 0) 42%),
    url("../assets/img/backgrounds/bg-general-hd.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  filter: brightness(0.78) saturate(0.98);
}

.page-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 50% 55%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.44) 74%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding: var(--page-padding-y) var(--page-padding-x) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-logo-link {
  display: inline-flex;
  text-decoration: none;
}

.site-logo {
  width: 66px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.28));
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.legal-nav a {
  color: rgba(163, 222, 232, 0.78);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--color-link-hover);
  text-shadow: 0 0 12px rgba(220, 194, 136, 0.20);
}

.site-logo-link:focus-visible,
.site-nav a:focus-visible,
.legal-nav a:focus-visible,
.about-button:focus-visible {
  outline: 1px solid rgba(220, 194, 136, 0.72);
  outline-offset: 4px;
}

.about-hero,
.about-section {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding-left: var(--page-padding-x);
  padding-right: var(--page-padding-x);
}

.about-hero {
  min-height: calc(100svh - 104px);
  display: block;
  padding-top: 75px;
  padding-bottom: 96px;
}

.about-hero__header {
  width: min(100%, 980px);
}

.about-hero__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  align-items: start;
  gap: clamp(42px, 7vw, 118px);
  margin-top: 76px;
  isolation: isolate;
}

.about-hero__stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -42px;
  left: 50%;
  width: 100vw;
  height: calc(100% + 88px);
  transform: translateX(-50%);
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
    rgba(7, 18, 26, 0.14)
    rgba(9, 24, 34, 0.24)
    rgba(9, 24, 34, 0.18)
    rgba(7, 18, 26, 0.06)
    );

  border-top: 1px solid rgba(209, 171, 97, 0.06);
  border-bottom: 1px solid rgba(73, 181, 199, 0.04);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about-hero__stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -42px;
  left: 50%;
  width: 100vw;
  height: calc(100% + 88px);
  transform: translateX(-50%);
  pointer-events: none;

  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(209, 171, 97, 0.055) 0%,
      rgba(209, 171, 97, 0) 34%
    );
}

.about-hero__copy,
.about-hero__portrait {
  position: relative;
  z-index: 1;
}

.about-kicker {
  margin: 0;
  color: rgba(209, 171, 97, 0.86);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.62rem, 0.7vw, 0.82rem);
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.about-hero__title,
.section-heading h2 {
  margin: 12px 0 0;
  font-family: var(--font-brand);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.06em;
  color: transparent;
  background: linear-gradient(90deg, #d8f4f8 0%, #95dce7 36%, #49b5c7 72%, #276871 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.about-hero__title {
  font-size: clamp(2.1rem, 3.2vw, 3.8rem);
  max-width: none;
  white-space: nowrap;
}

.section-heading h2 {
  font-size: clamp(1.65rem, 2.2vw, 2.95rem);
}

.about-line {
  display: block;
  width: 820px;
  max-width: 72%;
  height: 1px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-gold-soft) 52%, rgba(209, 171, 97, 0) 100%);
  box-shadow: 0 0 10px rgba(209, 171, 97, 0.08);
}

.about-hero__subline {
  margin: 16px 0 0;
  color: rgba(214, 239, 244, 0.90);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.78rem, 0.95vw, 1.08rem);
  line-height: 1.32;
  letter-spacing: 0.11em;
}

.about-hero__text {
  display: grid;
  gap: 15px;
  width: min(100%, 720px);
  margin-top: 0;
  padding-left: 55px;
}

.about-hero__text p,
.future-copy p,
.contact-stage p {
  margin: 0;
  color: rgba(222, 242, 247, 0.88);
  font-size: clamp(1.08rem, 1.25vw, 1.42rem);
  line-height: 1.48;
  letter-spacing: 0.004em;
  text-wrap: pretty;
}

.about-hero__text p {
  font-size: clamp(0.98rem, 1.05vw, 1.18rem);
  line-height: 1.52;
}

.about-hero__portrait {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 17px;
  border: 1px solid rgba(209, 171, 97, 0.28);
  background: linear-gradient(180deg, rgba(7, 19, 28, 0.84) 0%, rgba(5, 15, 23, 0.92) 100%);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  isolation: isolate;
}

.about-hero__portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 80% 16%, rgba(209, 171, 97, 0.12) 0%, rgba(209, 171, 97, 0) 30%);
}

.about-hero__portrait {
  width: min(100%, 270px);
  justify-self: start;
  transform: translateX(25px);
  align-self: start;
}

.about-hero__portrait img {
  width: 100%;
  height: 310px;
  min-height: 0;
  object-fit: cover;
  object-position: center top;
}

.about-section {
  padding-top: 0;
  padding-bottom: var(--section-gap);
}

.section-heading {
  width: min(100%, 880px);
}

.section-heading__subline {
  margin: 18px 0 0;
  max-width: 760px;
  color: rgba(201, 237, 243, 0.72);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.68rem, 0.78vw, 0.88rem);
  line-height: 1.45;
  letter-spacing: 0.08em;
}

.origin-track {
  position: relative;
  display: grid;
  gap: 24px;
  width: min(100%, 980px);
  margin-top: 58px;
  margin-left: 55px;
}

.origin-track::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(209, 171, 97, 0) 0%,
    rgba(209, 171, 97, 0.68) 20%,
    rgba(209, 171, 97, 0.24) 80%,
    rgba(209, 171, 97, 0) 100%
  );
}

.origin-item {
  position: relative;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 34px;
  padding: 10px 0 10px 28px;
}

.origin-item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(216, 193, 138, 0.92);
  box-shadow: 0 0 14px rgba(216, 193, 138, 0.20);
}

.origin-item__label {
  margin: 0;
  color: rgba(238, 230, 202, 0.92);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.86rem, 0.96vw, 1.08rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.origin-item__content {
  display: grid;
  gap: 0px;
}

.origin-item__terms {
  margin: 0;
  color: rgba(204, 230, 236, 0.86);
  font-size: clamp(1rem, 1.08vw, 1.2rem);
  line-height: 1.36;
}

.origin-item__meaning {
  margin: 0;
  max-width: 620px;
  color: rgba(159, 203, 213, 0.66);
  font-size: clamp(0.78rem, 0.84vw, 0.94rem);
  line-height: 1.32;
}


/* =========================================================
   02 — Wie ich arbeite
   Prozessspur statt Kartenblock
   ========================================================= */

.workflow-stage {
  position: relative;
  width: min(100%, 1120px);
  margin-top: 58px;
  margin-left: 55px;
  padding: 34px 0 32px;
  isolation: isolate;
}

.workflow-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -24px;
  left: 50%;
  width: 100vw;
  height: calc(100% + 48px);
  transform: translateX(-50%);
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(7, 18, 26, 0.14) 0%,
      rgba(9, 24, 34, 0.24) 36%,
      rgba(9, 24, 34, 0.18) 68%,
      rgba(7, 18, 26, 0.06) 100%
    );

  border-top: 1px solid rgba(209, 171, 97, 0.06);
  border-bottom: 1px solid rgba(73, 181, 199, 0.04);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.workflow-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -24px;
  left: 50%;
  width: 100vw;
  height: calc(100% + 48px);
  transform: translateX(-50%);
  pointer-events: none;

  background:
    radial-gradient(
      circle at 74% 42%,
      rgba(209, 171, 97, 0.055) 0%,
      rgba(209, 171, 97, 0) 34%
    );
}

.workflow-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 1080px);
}

.workflow-track::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 34px;
  right: 34px;
  height: 1px;
  z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(209, 171, 97, 0.52) 0%,
    rgba(209, 171, 97, 0.28) 44%,
    rgba(209, 171, 97, 0.08) 100%
  );
}

.workflow-step {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 13px;
  min-height: 138px;
  padding: 0 26px 0 0;
}

.workflow-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(209, 171, 97, 0.48);
  background: rgba(5, 15, 23, 0.86);
  box-shadow:
    0 0 16px rgba(209, 171, 97, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: rgba(238, 230, 202, 0.92);
  font-family: var(--font-ui);
  font-size: 0.62rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.workflow-step h3 {
  margin: 0;
  color: rgba(231, 245, 248, 0.96);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.82rem, 0.92vw, 1.02rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.08em;
}

.workflow-step p {
  margin: 0;
  max-width: 180px;
  color: rgba(159, 203, 213, 0.70);
  font-size: clamp(0.82rem, 0.88vw, 0.98rem);
  line-height: 1.42;
}

.workflow-step:hover .workflow-step__number {
  border-color: rgba(226, 194, 124, 0.70);
  box-shadow:
    0 0 18px rgba(209, 171, 97, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.workflow-step:hover h3,
.workflow-step:hover p {
  color: rgba(232, 245, 248, 0.94);
}


.future-stage {
  position: relative;
  width: min(100%, 980px);
  margin-top: 58px;
  margin-left: 55px;
  padding: 38px 4px;
  isolation: isolate;
}

.future-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -24px;
  left: 50%;
  width: 100vw;
  height: calc(100% + 48px);
  transform: translateX(-50%);
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(7, 18, 26, 0.14) 0%,
      rgba(9, 24, 34, 0.24) 36%,
      rgba(9, 24, 34, 0.18) 68%,
      rgba(7, 18, 26, 0.06) 100%
    );

  border-top: 1px solid rgba(209, 171, 97, 0.06);
  border-bottom: 1px solid rgba(73, 181, 199, 0.04);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.future-stage::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -24px;
  left: 50%;
  width: 100vw;
  height: calc(100% + 48px);
  transform: translateX(-50%);
  pointer-events: none;

  background:
    radial-gradient(
      circle at 74% 42%,
      rgba(209, 171, 97, 0.055) 0%,
      rgba(209, 171, 97, 0) 34%
    );
}

.future-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(100%, 840px);
}

.future-copy p {
  margin: 0;
  color: rgba(222, 242, 247, 0.86);
  font-size: clamp(0.98rem, 1.05vw, 1.18rem);
  line-height: 1.54;
  letter-spacing: 0.004em;
  text-wrap: pretty;
}

.future-copy p:first-child {
  color: rgba(232, 245, 248, 0.94);
}


/* =========================================================
   04 — Was mich ausmacht
   Persönlicher Zusammenarbeitsblock
   ========================================================= */

.person-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 52px;
}

.person-item {
  position: relative;
  min-height: 178px;
  padding: 22px 18px 20px;
  overflow: hidden;
  border-top: 1px solid rgba(209, 171, 97, 0.32);
  border-bottom: 1px solid rgba(73, 181, 199, 0.10);
  background:
    linear-gradient(
      180deg,
      rgba(7, 18, 26, 0.18) 0%,
      rgba(7, 18, 26, 0.08) 100%
    );
}

.person-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 84% 18%,
      rgba(209, 171, 97, 0.07) 0%,
      rgba(209, 171, 97, 0) 34%
    );
}

.person-item h3,
.person-item p {
  position: relative;
  z-index: 1;
}

.person-item h3 {
  margin: 0;
  min-height: 66px;
  color: rgba(238, 230, 202, 0.92);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.72rem, 0.78vw, 0.92rem);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.08em;
}

.person-item h3::after {
  content: "";
  display: block;
  width: 160px;
  height: 1px;
  margin-top: 13px;
  background: linear-gradient(
    90deg,
    rgba(209, 171, 97, 0.72) 0%,
    rgba(209, 171, 97, 0) 100%
  );
}

.person-item p {
  margin: 26px 0 0;
  color: rgba(204, 230, 236, 0.76);
  font-size: clamp(0.80rem, 0.86vw, 0.98rem);
  line-height: 1.46;
}

.person-item:hover h3 {
  color: rgba(244, 233, 201, 0.98);
}

.person-item:hover p {
  color: rgba(222, 242, 247, 0.90);
}

.about-contact {
  padding-bottom: 118px;
}

.contact-stage {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100%, 760px);
  margin-top: 22px;
}

.about-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  margin-top: 46px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(209, 171, 97, 0.42);
  background: linear-gradient(180deg, rgba(10, 24, 35, 0.82) 0%, rgba(7, 18, 27, 0.94) 100%);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    inset 0 0 0 1px rgba(32, 96, 110, 0.16);
  color: rgba(232, 245, 247, 0.96);
  font-family: var(--font-brand-sub);
  font-size: clamp(0.84rem, 0.9vw, 0.98rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.about-button:hover,
.about-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(226, 194, 124, 0.64);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 0 16px rgba(206, 172, 107, 0.12);
  color: rgba(244, 233, 201, 0.98);
}

.contact-stage__note {
  margin-top: 12px !important;
  padding-left: 24px;
  color: rgba(165, 194, 201, 0.72) !important;
  font-family: var(--font-ui);
  font-size: 0.72rem !important;
  line-height: 1.3 !important;
  letter-spacing: 0.04em !important;
}

.site-footer {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding: 0 var(--page-padding-x) 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.privacy-note {
  margin: 0;
  color: var(--color-text-faint);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  line-height: 1;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.legal-nav {
  display: inline-flex;
  align-items: center;
  gap: 28px;
}

@media (max-width: 1120px) {
  :root {
    --page-padding-x: 18px;
    --page-padding-y: 20px;
    --section-gap: 84px;
  }

  .page-bg {
    background-position: 74% center;
  }

  .site-header {
    align-items: flex-start;
  }

  .site-logo {
    width: 34px;
  }

  .site-nav {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .site-nav a {
    font-size: 0.68rem;
  }

  .about-hero {
    min-height: auto;
    padding-top: 55px;
    padding-bottom: 78px;
  }

  .about-hero__stage {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 46px;
  }

  .about-hero__title {
    font-size: clamp(1.65rem, 8.6vw, 2.55rem);
    letter-spacing: 0.035em;
    white-space: nowrap;
  }

  .section-heading h2 {
    font-size: clamp(1.26rem, 7.2vw, 2rem);
    letter-spacing: 0.045em;
  }

  .about-line {
    width: min(280px, 72%);
    margin-top: 12px;
  }

  .about-hero__text {
    gap: 14px;
    margin-top: 0;
    padding-left: 0;
  }

  .about-hero__text p,
  .future-copy p,
  .contact-stage p {
    font-size: 1rem;
    line-height: 1.54;
  }

  .about-hero__text p {
    font-size: 0.92rem;
  }

  .about-hero__portrait {
    width: min(100%, 320px);
    justify-self: start;
    border-radius: 18px;
  }

  .about-hero__portrait img {
    height: auto;
    min-height: 0;
    max-height: 520px;
  }

  .origin-track,
  .future-copy,
  .person-grid {
    margin-top: 34px;
  }

  .section-heading__subline {
    margin-top: 14px;
    font-size: 0.68rem;
    line-height: 1.48;
  }

  .origin-track {
    gap: 18px;
    margin-top: 36px;
    margin-left: 0;
  }

  .origin-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0 14px 24px;
  }

  .origin-item__terms {
    font-size: 0.96rem;
  }

  .origin-item__meaning {
    font-size: 0.82rem;
    line-height: 1.48;
  }

  .origin-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 0 14px 24px;
  }

  .origin-item p {
    font-size: 0.98rem;
  }

  .future-stage {
    margin-left: 0;
    margin-top: 36px;
    padding: 28px 0;
  }

  .future-copy {
    width: 100%;
    gap: 16px;
  }

  .future-copy p {
    font-size: 0.92rem;
    line-height: 1.54;
  }


.workflow-stage {
  margin-left: 0;
  margin-top: 36px;
  padding: 28px 0;
}

.workflow-track {
  grid-template-columns: 1fr;
  gap: 22px;
  width: 100%;
  padding-left: 24px;
}

.workflow-track::before {
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  width: 1px;
  height: auto;
  background: linear-gradient(
    180deg,
    rgba(209, 171, 97, 0) 0%,
    rgba(209, 171, 97, 0.52) 18%,
    rgba(209, 171, 97, 0.22) 82%,
    rgba(209, 171, 97, 0) 100%
  );
}

  .workflow-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 5px 14px;
    min-height: auto;
    padding: 0;
  }

  .workflow-step__number {
    grid-row: 1 / span 2;
    width: 32px;
    height: 32px;
    font-size: 0.58rem;
  }

  .workflow-step h3 {
    font-size: 0.82rem;
  }

  .workflow-step p {
    max-width: 100%;
    font-size: 0.82rem;
    line-height: 1.44;
  }

  .person-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
  }

  .person-item {
    min-height: auto;
    padding: 18px 0 16px;
    background: transparent;
  }

  .person-item h3 {
    font-size: 0.82rem;
  }

  .person-item p {
    margin-top: 18px;
    font-size: 0.82rem;
    line-height: 1.48;
  }

  .about-contact {
    padding-bottom: 82px;
  }

  .about-button {
    width: 100%;
    min-width: 0;
    margin-top: 28px;
    padding: 13px 18px;
    font-size: 0.82rem;
  }

  .contact-stage__note {
    padding-left: 0;
    font-size: 0.68rem !important;
  }

  .site-footer {
    padding: 0 18px 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .privacy-note,
  .legal-nav a {
    font-size: 0.67rem;
  }

  .legal-nav {
    gap: 18px;
    flex-wrap: wrap;
  }
}
