:root {
  color-scheme: light;
  --theme-name: "light";
  --background: #f5f1e8;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --graphite: #111820;
  --graphite-soft: #1b2732;
  --text: #172026;
  --muted: #68727b;
  --line: #d9d0c3;
  --line-strong: #b8aa9a;
  --accent: #1f7a7a;
  --accent-strong: #12575a;
  --cyan: #18c7c7;
  --warm: #d97831;
  --warm-strong: #9f4d22;
  --shadow: 0 24px 70px rgba(17, 24, 32, 0.12);
  --shadow-soft: 0 14px 36px rgba(17, 24, 32, 0.08);
  --radius: 10px;
  --radius-lg: 14px;
  --space-section: 42px;
  --body-grid: rgba(31, 122, 122, 0.045);
  --body-glow-cyan: rgba(24, 199, 199, 0.16);
  --body-glow-warm: rgba(217, 120, 49, 0.14);
  --hero-bg: linear-gradient(135deg, rgba(17, 24, 32, 0.98), rgba(27, 39, 50, 0.94));
  --hero-text: #f7f3eb;
  --hero-muted: rgba(247, 243, 235, 0.78);
  --hero-panel: rgba(255, 253, 248, 0.94);
  --card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 248, 0.88));
  --soft-card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 253, 248, 0.82));
  --input-bg: #ffffff;
  --chip-bg: rgba(255, 255, 255, 0.08);
  --chip-border: rgba(255, 255, 255, 0.14);
  --chip-text: rgba(247, 243, 235, 0.82);
  --theme-toggle-bg: rgba(255, 253, 248, 0.86);
  --theme-toggle-text: #172026;
}

[data-theme="dark"] {
  color-scheme: dark;
  --theme-name: "dark";
  --background: #081014;
  --surface: #111b22;
  --surface-strong: #17232c;
  --graphite: #05090d;
  --graphite-soft: #0d171e;
  --text: #eef6f4;
  --muted: #9fb0b6;
  --line: #29404a;
  --line-strong: #3e5b66;
  --accent: #20a6a2;
  --accent-strong: #66ded7;
  --cyan: #37e4dd;
  --warm: #e58a45;
  --warm-strong: #ffb173;
  --shadow: 0 28px 86px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, 0.26);
  --body-grid: rgba(55, 228, 221, 0.07);
  --body-glow-cyan: rgba(55, 228, 221, 0.14);
  --body-glow-warm: rgba(229, 138, 69, 0.12);
  --hero-bg: linear-gradient(135deg, rgba(5, 9, 13, 0.98), rgba(13, 23, 30, 0.95));
  --hero-text: #f5fbfa;
  --hero-muted: rgba(238, 246, 244, 0.74);
  --hero-panel: rgba(17, 27, 34, 0.94);
  --card-bg: linear-gradient(145deg, rgba(23, 35, 44, 0.96), rgba(17, 27, 34, 0.88));
  --soft-card-bg: linear-gradient(145deg, rgba(23, 35, 44, 0.92), rgba(17, 27, 34, 0.84));
  --input-bg: #0f1a21;
  --chip-bg: rgba(55, 228, 221, 0.09);
  --chip-border: rgba(55, 228, 221, 0.2);
  --chip-text: rgba(238, 246, 244, 0.84);
  --theme-toggle-bg: rgba(17, 27, 34, 0.9);
  --theme-toggle-text: #eef6f4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(var(--body-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--body-grid) 1px, transparent 1px),
    radial-gradient(circle at 12% 0%, var(--body-glow-cyan), transparent 28%),
    radial-gradient(circle at 88% 12%, var(--body-glow-warm), transparent 30%),
    var(--background);
  background-size: 36px 36px, 36px 36px, auto, auto, auto;
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.site-nav {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 50;
  display: flex;
  max-width: calc(100% - 250px);
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: var(--theme-toggle-bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.site-nav-link,
.site-nav-button {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 11px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--theme-toggle-text);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav-button {
  background: linear-gradient(135deg, var(--accent), #1a8b86);
  color: #ffffff;
}

.site-nav-form {
  display: contents;
}

.theme-bar {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 50;
}

.theme-switcher {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 4px;
  background: var(--theme-toggle-bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.theme-option {
  min-height: 32px;
  padding: 0 12px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--theme-toggle-text);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
}

.theme-option[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--accent), #1a8b86);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(18, 87, 90, 0.2);
}

.theme-option:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 10px;
}

.site-footer a {
  font-weight: 800;
}

.site-footer p {
  max-width: 720px;
  margin: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background:
    var(--hero-bg),
    var(--graphite);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  color: var(--hero-text);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(24, 199, 199, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 199, 199, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(110deg, rgba(0, 0, 0, 0.9), transparent 70%);
  content: "";
}

.hero::after {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(217, 120, 49, 0.24), transparent 62%);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
}

.brand-lockup {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 30px;
  color: var(--hero-text);
  text-decoration: none;
}

.brand-lockup img {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 10px 22px rgba(24, 199, 199, 0.22));
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  font-size: 1.15rem;
  line-height: 1.1;
}

.brand-lockup small {
  margin-top: 3px;
  color: var(--hero-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: rgba(24, 199, 199, 0.12);
  border: 1px solid rgba(24, 199, 199, 0.28);
  border-radius: 999px;
  color: #7de5e2;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  margin: 18px 0 0;
  color: var(--warm);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
}

.hero .lead {
  max-width: 760px;
  color: #f2b37b;
}

.intro {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero .intro {
  color: var(--hero-muted);
}

.hero-actions {
  margin-top: 28px;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.chip-list li {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 5px 10px;
  background: var(--chip-bg);
  border: 1px solid var(--chip-border);
  border-radius: 999px;
  color: var(--chip-text);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero-illustration {
  width: min(100%, 560px);
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.3);
}

.hero-stat {
  position: absolute;
  display: grid;
  gap: 2px;
  min-width: 132px;
  padding: 12px 14px;
  background: var(--hero-panel);
  border: 1px solid rgba(24, 199, 199, 0.22);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

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

.hero-stat strong {
  color: var(--text);
  font-size: 1.25rem;
  line-height: 1;
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stat-top {
  top: 36px;
  right: 4px;
}

.hero-stat-bottom {
  left: 2px;
  bottom: 44px;
}

.printer-diagram {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  border: 1px solid rgba(24, 199, 199, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(rgba(247, 243, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 243, 235, 0.055) 1px, transparent 1px),
    rgba(255, 255, 255, 0.035);
  background-size: 28px 28px;
  box-shadow: inset 0 0 46px rgba(24, 199, 199, 0.1), 0 30px 80px rgba(0, 0, 0, 0.22);
}

.diagram-head,
.diagram-nozzle,
.diagram-layer,
.diagram-path,
.diagram-node {
  position: absolute;
}

.diagram-head {
  top: 68px;
  left: 50%;
  width: 120px;
  height: 58px;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cyan), var(--accent), var(--warm));
  clip-path: polygon(10% 0, 90% 0, 78% 100%, 22% 100%);
}

.diagram-nozzle {
  top: 126px;
  left: 50%;
  width: 34px;
  height: 46px;
  transform: translateX(-50%);
  background: #f7f3eb;
  clip-path: polygon(15% 0, 85% 0, 58% 100%, 42% 100%);
}

.diagram-layer {
  left: 58px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(24, 199, 199, 0.92), rgba(247, 243, 235, 0.88), rgba(217, 120, 49, 0.92));
}

.layer-one {
  right: 78px;
  bottom: 100px;
}

.layer-two {
  right: 58px;
  bottom: 78px;
}

.layer-three {
  right: 108px;
  bottom: 56px;
}

.diagram-path {
  left: 66px;
  right: 66px;
  bottom: 134px;
  height: 74px;
  border: 3px solid rgba(24, 199, 199, 0.74);
  border-bottom: 0;
  border-radius: 90px 90px 0 0;
}

.diagram-node {
  width: 14px;
  height: 14px;
  background: var(--warm);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(217, 120, 49, 0.14);
}

.node-one {
  right: 61px;
  bottom: 131px;
}

.node-two {
  left: 61px;
  bottom: 131px;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(24, 199, 199, 0.14);
}

.paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.path {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  padding: 26px;
  background:
    var(--card-bg),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.path::after {
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(24, 199, 199, 0.13), transparent 68%);
  content: "";
}

.path:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 122, 122, 0.35);
  box-shadow: var(--shadow);
}

.path-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.path-icon {
  width: 52px;
  height: 52px;
  padding: 8px;
  background: var(--surface-strong);
  border: 1px solid rgba(31, 122, 122, 0.18);
  border-radius: 16px;
}

.mini-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 3px 9px;
  background: color-mix(in srgb, var(--warm) 12%, var(--surface));
  border: 1px solid rgba(217, 120, 49, 0.24);
  border-radius: 999px;
  color: var(--warm-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.path h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.path p {
  margin: 0;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  background: linear-gradient(135deg, var(--accent), #1a8b86);
  border: 1px solid rgba(24, 199, 199, 0.3);
  border-radius: var(--radius);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(18, 87, 90, 0.18);
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(18, 87, 90, 0.24);
}

.button-disabled {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
  cursor: not-allowed;
}

.button-secondary {
  background: var(--surface);
  border-color: var(--accent);
  color: var(--accent-strong);
  box-shadow: none;
}

.page-header {
  padding: 28px 0 30px;
  border-bottom: 1px solid var(--line);
}

.page-header h1 {
  font-size: clamp(2.4rem, 7vw, 4.8rem);
}

.how-it-works,
.why-section {
  margin-top: var(--space-section);
}

.static-page {
  max-width: 860px;
  margin-top: 28px;
  padding-bottom: 20px;
}

.static-page h2 {
  margin: 28px 0 10px;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.static-page p {
  margin: 0 0 12px;
  color: var(--muted);
}

.static-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--text);
}

.section-heading-stacked {
  display: block;
  margin-bottom: 18px;
}

.section-heading-stacked h2,
.why-section h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.03;
  letter-spacing: 0;
}

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

.step-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  background:
    var(--soft-card-bg),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.step-card::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(24, 199, 199, 0.16), transparent 68%);
  content: "";
}

.step-card img {
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
}

.step-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--warm);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.step-card p {
  margin: 0;
  color: var(--muted);
}

.material-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: var(--space-section);
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(31, 122, 122, 0.08), rgba(217, 120, 49, 0.08)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.material-strip h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.material-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.material-grid span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 13px;
  background: var(--hero-bg), var(--graphite);
  border: 1px solid rgba(24, 199, 199, 0.2);
  border-radius: 999px;
  color: #f7f3eb;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(17, 24, 32, 0.12);
}

.why-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
  background: var(--graphite);
  border-radius: var(--radius-lg);
  color: #f7f3eb;
  box-shadow: var(--shadow);
}

.why-section .eyebrow {
  color: #7de5e2;
}

.why-grid {
  display: grid;
  gap: 14px;
}

.why-grid p {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 18px;
  background: var(--chip-bg);
  border: 1px solid var(--chip-border);
  border-radius: var(--radius);
  color: rgba(247, 243, 235, 0.82);
}

.why-grid strong {
  color: #f7f3eb;
  font-size: 1.05rem;
}

.why-grid span {
  color: rgba(247, 243, 235, 0.74);
}

.job-list,
.profile-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.job-card,
.profile-card,
.detail-panel {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.job-card,
.profile-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.9fr);
  gap: 24px;
}

.job-card h2,
.profile-card h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.job-card p,
.profile-card p {
  margin: 0;
  color: var(--muted);
}

.profile-location {
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-weight: 700;
}

.profile-summary {
  display: grid;
  gap: 16px;
}

.status {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 4px 9px;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 700;
}

.status-angenommen {
  background: #eef8ed;
  border-color: #bddfba;
  color: #286128;
}

.status-abgelehnt {
  background: #f8eeee;
  border-color: #e2bcbc;
  color: #873535;
}

.job-meta,
.detail-list,
.offer-meta {
  display: grid;
  gap: 12px;
  margin: 0;
}

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

.detail-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.job-meta div,
.detail-list div,
.offer-meta div {
  min-width: 0;
}

dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

dd {
  margin: 2px 0 0;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin-top: 24px;
  font-weight: 700;
}

.job-form,
.notice {
  margin-top: 28px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.auth-panel {
  max-width: 760px;
}

.notice-error {
  border-color: color-mix(in srgb, var(--warm) 42%, var(--line));
  background: color-mix(in srgb, var(--warm) 9%, var(--surface));
}

.notice h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.notice p {
  margin: 0;
  color: var(--muted);
}

.notice p + p {
  margin-top: 6px;
}

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

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.field label {
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  background: var(--input-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font: inherit;
}

.field textarea {
  resize: vertical;
}

.field-hint {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 2px 0 18px;
}

.checkbox-field {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  background: var(--input-bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.upload-placeholder {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-top: 4px;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.upload-placeholder strong {
  color: var(--text);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 10px;
  background: color-mix(in srgb, var(--accent) 12%, var(--surface));
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  border-radius: 999px;
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 700;
}

.profile-section {
  margin-top: 28px;
}

.profile-section h2,
.profile-summary h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  letter-spacing: 0;
}

.profile-section h2:not(:first-child) {
  margin-top: 22px;
}

.printer-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.profile-description {
  white-space: pre-line;
}

.content-body {
  white-space: pre-line;
}

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

.content-table {
  width: 100%;
  border-collapse: collapse;
}

.content-table th,
.content-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.content-table th {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.compact-link {
  margin-top: 0;
}

.inline-admin-form {
  max-width: 420px;
}

.muted-text {
  margin: 24px 0 0;
  color: var(--muted);
}

.offers-section {
  margin-top: 28px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 16px;
}

.section-heading h2 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
}

.section-heading.section-heading-stacked {
  display: block;
  margin-bottom: 18px;
}

.offer-list {
  display: grid;
  gap: 16px;
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.8fr);
  gap: 20px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.offer-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 720px) {
  main {
    width: min(100% - 24px, 1040px);
    padding: 76px 0 28px;
  }

  .site-nav,
  .theme-bar {
    position: static;
    margin: 12px 16px 0;
  }

  .site-nav {
    max-width: none;
    flex-wrap: wrap;
    border-radius: 18px;
  }

  .hero {
    padding: 24px;
  }

  .hero-grid,
  .why-section {
    grid-template-columns: 1fr;
  }

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

  .hero-illustration {
    width: min(100%, 360px);
  }

  .hero-stat {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 10px;
  }

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

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

  .material-strip {
    grid-template-columns: 1fr;
  }

  .material-grid {
    justify-content: flex-start;
  }

  .job-card,
  .profile-card,
  .offer-card,
  .detail-list {
    grid-template-columns: 1fr;
  }

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

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

  .section-heading {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 520px) {
  .step-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 18px;
  }

  .brand-lockup {
    margin-bottom: 22px;
  }
}
