:root {
  --ink: #0b1514;
  --ink-soft: #101f1d;
  --panel: #122421;
  --panel-2: #172c27;
  --line: rgba(225, 239, 215, .14);
  --line-strong: rgba(225, 239, 215, .24);
  --paper: #eef1df;
  --muted: #a4b6a3;
  --muted-dark: #5c6d63;
  --moss: #b9db6a;
  --moss-deep: #7da44d;
  --amber: #f5b84f;
  --amber-soft: #ffe3a2;
  --teal: #66d2bf;
  --danger: #ee8b78;
  --display: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --shadow: 0 28px 80px rgba(1, 9, 8, .28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--moss);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(238, 241, 223, .14);
  background: linear-gradient(180deg, rgba(4, 13, 13, .55), transparent);
}

.nav-wrap {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--paper);
  font-size: 19px;
  font-weight: 750;
  letter-spacing: -.045em;
  text-decoration: none;
}
.brand > span:last-child > span { color: var(--moss); }
.brand-mark {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
}
.brand-mark i { position: absolute; display: block; width: 11px; height: 11px; }
.brand-mark i:nth-child(1) { top: 0; left: 0; background: var(--moss); }
.brand-mark i:nth-child(2) { right: 0; bottom: 0; background: var(--teal); }
.brand-mark i:nth-child(3) { right: 0; top: 0; background: var(--amber); opacity: .85; }

.site-nav { display: flex; align-items: center; gap: 27px; }
.site-nav a { color: rgba(238, 241, 223, .72); font-size: 13px; font-weight: 600; letter-spacing: .02em; text-decoration: none; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--paper); }
.site-nav .nav-login { color: var(--paper); }
.nav-user { color: var(--moss); font-family: var(--mono); font-size: 12px; }
.nav-toggle { display: none; border: 1px solid var(--line-strong); padding: 8px 12px; color: var(--paper); background: transparent; }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  padding: 12px 20px;
  color: var(--ink);
  background: var(--moss);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.button:hover, .button:focus-visible { background: #d2ed86; transform: translateY(-2px); }
.button:focus-visible, .site-nav a:focus-visible, .text-link:focus-visible, input:focus-visible, .password-toggle:focus-visible, .nav-toggle:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.button-primary { box-shadow: 0 8px 24px rgba(185, 219, 106, .15); }
.button-ghost { border-color: rgba(238, 241, 223, .3); color: var(--paper); background: rgba(7, 18, 17, .12); }
.button-ghost:hover, .button-ghost:focus-visible { border-color: var(--paper); color: var(--ink); background: var(--paper); }
.button-ghost-dark { border-color: var(--line-strong); color: var(--paper); background: transparent; }
.button-ghost-dark:hover, .button-ghost-dark:focus-visible { border-color: var(--moss); color: var(--ink); background: var(--moss); }
.button-small { min-height: 36px; padding: 9px 13px; font-size: 10px; }
.button-wide { width: 100%; margin-top: 8px; }
.button-danger { color: #26100d; background: var(--danger); }
.button-danger:hover, .button-danger:focus-visible { background: #ffad9b; }

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 0 0 0 5px rgba(185, 219, 106, .11), 0 0 16px rgba(185, 219, 106, .7);
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background-color: #162d2e;
  background-image: url("/assets/forestblocks-hero.png");
  background-position: center;
  background-size: cover;
}
.hero::after { position: absolute; right: 7%; bottom: 30px; width: 130px; height: 1px; background: rgba(238, 241, 223, .35); content: ""; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5, 19, 18, .94) 0%, rgba(5, 19, 18, .77) 34%, rgba(5, 19, 18, .09) 76%), linear-gradient(0deg, rgba(5, 15, 14, .62), transparent 45%); }
.hero-content { position: relative; z-index: 1; display: flex; min-height: 780px; max-width: 1180px; flex-direction: column; align-items: flex-start; justify-content: center; padding-top: 68px; }
.eyebrow, .section-kicker, .hero-note, .hero-scroll, .terminal-label { font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 23px; color: var(--moss); }
h1, h2, h3, p { margin-top: 0; }
.hero h1 { max-width: 730px; margin-bottom: 25px; color: var(--paper); font-family: var(--display); font-size: clamp(56px, 7vw, 94px); font-weight: 400; letter-spacing: -.075em; line-height: .91; }
h1 em, h2 em { color: var(--moss); font-style: italic; }
.hero-lead { max-width: 515px; margin-bottom: 32px; color: rgba(238, 241, 223, .78); font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 44px; color: rgba(238, 241, 223, .56); font-size: 9px; }
.hero-note span { color: var(--amber); font-size: 14px; }
.hero-scroll { position: absolute; z-index: 1; right: 26px; bottom: 38px; display: flex; align-items: center; gap: 10px; color: rgba(238, 241, 223, .58); writing-mode: vertical-rl; transform: rotate(180deg); }
.hero-scroll span { display: block; width: 1px; height: 47px; background: var(--moss); }

.section { padding: 120px 0; }
.section-intro { background: var(--paper); color: var(--ink); }
.section-kicker { display: block; margin-bottom: 16px; color: var(--moss-deep); }
.section-intro .section-kicker, .gallery-section .section-kicker, .steps-section .section-kicker, .workshop-section .section-kicker { color: #6d9142; }
.split-heading, .section-heading { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr); align-items: end; gap: 60px; }
.section h2 { margin-bottom: 0; font-family: var(--display); font-size: clamp(42px, 5vw, 68px); font-weight: 400; letter-spacing: -.07em; line-height: .98; }
.section-intro .split-heading > p, .section-heading > p { max-width: 350px; margin-bottom: 5px; color: var(--muted-dark); font-size: 15px; line-height: 1.8; }
.feature-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 14px; margin-top: 75px; }
.feature-card { position: relative; min-height: 310px; overflow: hidden; border: 1px solid rgba(11, 21, 20, .1); padding: 34px 30px; background: #e5e8d6; }
.feature-card-large { color: var(--paper); background: var(--ink); }
.feature-card::after { position: absolute; right: -30px; bottom: -43px; width: 140px; height: 140px; border: 1px solid currentColor; border-radius: 50%; opacity: .08; content: ""; }
.card-number { position: absolute; top: 27px; right: 28px; color: var(--muted-dark); font-family: var(--mono); font-size: 10px; }
.feature-card-large .card-number { color: var(--moss); }
.feature-icon { display: block; margin: 47px 0 22px; color: #69963e; font-size: 30px; line-height: 1; }
.feature-card-large .feature-icon { color: var(--amber); }
.feature-card h3 { max-width: 220px; margin-bottom: 12px; font-family: var(--display); font-size: 27px; font-weight: 400; letter-spacing: -.04em; line-height: 1; }
.feature-card p { max-width: 285px; margin-bottom: 0; color: var(--muted-dark); font-size: 13px; line-height: 1.7; }
.feature-card-large p { color: rgba(238, 241, 223, .65); }
.text-link { display: inline-flex; align-items: center; gap: 11px; margin-top: 25px; color: #547c31; font-family: var(--mono); font-size: 10px; font-weight: 700; letter-spacing: .09em; text-decoration: none; text-transform: uppercase; }
.text-link span { font-size: 16px; transition: transform .2s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translateX(4px); }
.feature-card-large .text-link { color: var(--moss); }

.gallery-section { background: #dfe4d0; color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 245px 245px; gap: 14px; margin-top: 66px; }
.gallery-grid figure { position: relative; min-width: 0; overflow: hidden; margin: 0; background: #1b302b; }
.gallery-grid .gallery-main { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figure::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 16, 15, .75), transparent 50%); content: ""; pointer-events: none; }
.gallery-grid figcaption { position: absolute; z-index: 1; right: 18px; bottom: 16px; left: 18px; display: flex; align-items: center; gap: 9px; color: var(--paper); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.gallery-grid figcaption span { color: var(--moss); }

.steps-section { background: var(--paper); color: var(--ink); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 76px; border-top: 1px solid rgba(11, 21, 20, .18); }
.step { min-height: 210px; border-right: 1px solid rgba(11, 21, 20, .18); padding: 28px 28px 20px 0; }
.step + .step { padding-left: 28px; }
.step:last-child { border-right: 0; }
.step > span { color: var(--moss-deep); font-family: var(--mono); font-size: 11px; font-weight: 700; }
.step h3 { margin: 39px 0 10px; font-family: var(--display); font-size: 29px; font-weight: 400; letter-spacing: -.04em; }
.step p { max-width: 270px; margin-bottom: 0; color: var(--muted-dark); font-size: 14px; line-height: 1.7; }

.server-section { padding-top: 0; background: var(--paper); }
.server-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; overflow: hidden; background: var(--ink-soft); box-shadow: var(--shadow); }
.server-copy { padding: 65px 58px; }
.server-copy .section-kicker { color: var(--amber); }
.server-copy h2 { color: var(--paper); font-size: clamp(41px, 5vw, 61px); }
.server-copy p { max-width: 450px; margin: 22px 0 28px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.server-copy strong { color: var(--amber-soft); font-family: var(--mono); font-size: 12px; font-weight: 500; }
.server-status { display: flex; align-items: center; gap: 13px; }
.server-status strong { display: block; color: var(--paper); font-family: var(--sans); font-size: 13px; font-weight: 700; }
.server-status small { display: block; color: var(--muted); font-family: var(--mono); font-size: 10px; }
.server-terminal { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 58px; background: radial-gradient(circle at 80% 20%, rgba(102, 210, 191, .14), transparent 35%), linear-gradient(135deg, #1d3831, #0c1b1a); }
.terminal-label { color: var(--teal); }
.server-terminal code { margin: 25px 0 10px; color: var(--paper); font-family: var(--mono); font-size: clamp(20px, 3vw, 32px); letter-spacing: -.06em; }
.server-terminal small { color: var(--muted); font-family: var(--mono); font-size: 10px; }

.workshop-section { background: var(--ink); }
.workshop-card { display: grid; grid-template-columns: 1fr 1fr; overflow: hidden; background: var(--panel); }
.workshop-image { min-height: 440px; overflow: hidden; }
.workshop-image img { width: 100%; height: 100%; object-fit: cover; }
.workshop-copy { display: flex; flex-direction: column; justify-content: center; padding: 55px 62px; }
.workshop-copy .section-kicker { color: var(--amber); }
.workshop-copy h2 { color: var(--paper); font-size: clamp(39px, 4.5vw, 57px); }
.workshop-copy p { max-width: 375px; margin: 25px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.workshop-copy .text-link { color: var(--moss); }

.final-cta { padding: 145px 0 155px; background: var(--ink); text-align: center; }
.final-cta .section-kicker { color: var(--amber); }
.final-cta h2 { margin-bottom: 20px; color: var(--paper); font-size: clamp(56px, 8vw, 100px); }
.final-cta p { color: var(--muted); font-size: 15px; }
.final-cta .button { margin-top: 16px; }

.site-footer { border-top: 1px solid var(--line); padding: 36px 0 42px; background: var(--ink); }
.footer-wrap { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; }
.brand-footer { font-size: 16px; }
.site-footer p { margin: 12px 0 0; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.footer-links a:hover { color: var(--moss); }
.site-footer small { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid var(--line); color: var(--muted-dark); font-family: var(--mono); font-size: 9px; letter-spacing: .05em; }

.auth-section, .state-section, .admin-section { min-height: 760px; padding: 160px 0 100px; background: var(--paper); color: var(--ink); }
.auth-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, 480px); align-items: center; gap: 100px; }
.auth-aside { position: relative; min-height: 390px; padding: 30px 0; }
.auth-aside .section-kicker { color: var(--moss-deep); }
.auth-aside h1 { position: relative; z-index: 1; margin: 0 0 24px; font-family: var(--display); font-size: clamp(59px, 7vw, 92px); font-weight: 400; letter-spacing: -.08em; line-height: .9; }
.auth-aside p { max-width: 335px; color: var(--muted-dark); font-size: 15px; line-height: 1.75; }
.auth-aside-mark { position: absolute; right: 12%; bottom: -30px; color: rgba(125, 164, 77, .15); font-family: var(--display); font-size: 250px; line-height: 1; }
.form-card { border: 1px solid rgba(11, 21, 20, .13); padding: 42px 42px 37px; background: #f9faef; box-shadow: 0 20px 60px rgba(19, 32, 24, .1); }
.form-card .section-kicker { color: var(--moss-deep); }
.form-card h2 { margin: 0 0 7px; font-family: var(--display); font-size: 43px; font-weight: 400; letter-spacing: -.06em; line-height: 1; }
.form-intro { margin-bottom: 28px; color: var(--muted-dark); font-size: 13px; }
.form-card form { display: grid; gap: 8px; }
.form-card label { margin-top: 9px; color: #304137; font-size: 11px; font-weight: 750; letter-spacing: .02em; }
.form-card input { width: 100%; min-height: 47px; border: 1px solid rgba(11, 21, 20, .18); border-radius: 0; padding: 11px 13px; color: var(--ink); background: #f1f4e5; font-size: 14px; }
.form-card input:focus { border-color: var(--moss-deep); background: #fff; }
.password-wrap { position: relative; }
.password-wrap input { padding-right: 76px; }
.password-toggle { position: absolute; top: 50%; right: 10px; border: 0; padding: 5px; color: var(--moss-deep); background: transparent; font-size: 10px; font-weight: 800; transform: translateY(-50%); }
.field-hint { margin: -3px 0 3px; color: var(--muted-dark); font-family: var(--mono); font-size: 9px; }
.form-error { border-left: 3px solid var(--danger); margin: 10px 0 12px; padding: 10px 12px; color: #73372f; background: #fff0eb; font-size: 12px; line-height: 1.5; }
.form-foot { margin: 25px 0 0; color: var(--muted-dark); font-size: 12px; text-align: center; }
.form-foot a { color: var(--moss-deep); font-weight: 750; }

.state-section { display: flex; align-items: center; justify-content: center; min-height: 680px; }
.state-card { max-width: 650px; padding: 40px 0; text-align: center; }
.state-icon { display: grid; width: 68px; height: 68px; place-items: center; margin: 0 auto 30px; border: 1px solid rgba(125, 164, 77, .35); color: var(--moss-deep); font-family: var(--display); font-size: 31px; }
.state-icon-teal { border-color: rgba(62, 157, 146, .35); color: #2c8e83; }
.state-card .section-kicker { color: var(--moss-deep); }
.state-card h1 { margin: 0 0 22px; font-family: var(--display); font-size: clamp(53px, 7vw, 84px); font-weight: 400; letter-spacing: -.08em; line-height: .9; }
.state-card p { max-width: 530px; margin: 0 auto; color: var(--muted-dark); font-size: 15px; line-height: 1.8; }
.state-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; margin-top: 32px; }
.connection-note { display: flex; max-width: 330px; align-items: center; gap: 13px; margin: 28px auto; padding: 15px 18px; border: 1px solid rgba(11, 21, 20, .13); text-align: left; }
.connection-note strong { display: block; color: var(--muted-dark); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.connection-note code { color: var(--ink); font-family: var(--mono); font-size: 12px; }

.admin-section { min-height: 700px; }
.admin-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; }
.admin-heading h1 { margin: 0 0 11px; font-family: var(--display); font-size: clamp(48px, 6vw, 74px); font-weight: 400; letter-spacing: -.075em; line-height: .92; }
.admin-heading h1 em { color: var(--moss-deep); }
.admin-heading p { margin: 0; color: var(--muted-dark); font-size: 14px; }
.admin-badge { display: flex; align-items: center; gap: 10px; padding: 11px 14px; color: var(--moss-deep); border: 1px solid rgba(125, 164, 77, .3); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.queue-card { margin-top: 58px; border: 1px solid rgba(11, 21, 20, .14); background: #f8f9ee; }
.queue-header { display: flex; align-items: center; justify-content: space-between; padding: 27px 30px; border-bottom: 1px solid rgba(11, 21, 20, .12); }
.queue-header h2 { margin: 0; font-family: var(--display); font-size: 31px; font-weight: 400; letter-spacing: -.05em; }
.count-badge { display: grid; min-width: 34px; height: 34px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--moss); font-family: var(--mono); font-size: 11px; }
.queue-list { padding: 0 30px; }
.queue-row { display: grid; grid-template-columns: minmax(220px, 1fr) 190px auto; align-items: center; gap: 18px; padding: 19px 0; border-bottom: 1px solid rgba(11, 21, 20, .09); }
.queue-row:last-child { border-bottom: 0; }
.queue-person { display: flex; align-items: center; gap: 13px; }
.queue-person strong, .queue-person span:not(.avatar) { display: block; }
.queue-person strong { color: var(--ink); font-family: var(--mono); font-size: 13px; }
.queue-person span:not(.avatar) { color: var(--muted-dark); font-size: 12px; }
.avatar { display: grid; width: 35px; height: 35px; place-items: center; color: var(--ink); background: var(--amber); font-family: var(--display); font-size: 18px; }
.queue-row time { color: var(--muted-dark); font-family: var(--mono); font-size: 10px; }
.queue-actions { display: flex; justify-content: flex-end; gap: 7px; }
.queue-actions form { margin: 0; }
.empty-state { padding: 56px 20px; color: var(--muted-dark); text-align: center; }
.empty-icon { display: block; margin-bottom: 12px; color: var(--moss-deep); font-size: 23px; }
.empty-state h3 { margin-bottom: 4px; color: var(--ink); font-family: var(--display); font-size: 28px; font-weight: 400; }
.empty-state p { margin: 0; font-size: 13px; }
.flash { border-left: 3px solid var(--moss-deep); margin-top: 28px; padding: 11px 15px; color: #3f5f28; background: #e9f2d5; font-size: 13px; }
.admin-links { display: flex; gap: 22px; margin-top: 24px; }
.admin-links a { color: var(--moss-deep); font-family: var(--mono); font-size: 10px; letter-spacing: .07em; text-decoration: none; text-transform: uppercase; }
.admin-links a:hover { color: var(--ink); }

.state-404 { background: var(--ink); color: var(--paper); }
.state-404 .state-card { color: var(--paper); }
.state-404 .state-icon { border-color: rgba(185, 219, 106, .4); color: var(--moss); }
.state-404 .section-kicker { color: var(--amber); }
.state-404 h1 { color: var(--paper); }
.state-404 p { color: var(--muted); }

@media (max-width: 850px) {
  .site-nav { gap: 15px; }
  .site-nav > a:not(.nav-login):not(.button), .site-nav .nav-user { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-large { grid-column: 1 / -1; min-height: 270px; }
  .split-heading, .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 230px 180px; }
  .gallery-grid .gallery-main { grid-row: span 2; }
  .server-card, .workshop-card { grid-template-columns: 1fr; }
  .server-terminal { min-height: 260px; }
  .auth-layout { grid-template-columns: 1fr; gap: 38px; }
  .auth-aside { min-height: 0; padding: 0; }
  .auth-aside-mark { right: 5%; bottom: -55px; font-size: 170px; }
  .auth-aside h1 { font-size: clamp(52px, 12vw, 78px); }
  .admin-heading { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 32px, 1180px); }
  .site-header { background: rgba(5, 15, 14, .76); }
  .nav-wrap { min-height: 70px; }
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 70px; right: 16px; left: 16px; display: none; flex-direction: column; align-items: stretch; gap: 0; border: 1px solid var(--line-strong); padding: 8px; background: #10221f; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav > a, .site-nav .nav-user { display: block !important; padding: 11px 10px; }
  .site-nav .button { margin-top: 5px; text-align: center; }
  .hero, .hero-content { min-height: 700px; }
  .hero h1 { font-size: clamp(51px, 14vw, 74px); }
  .hero-lead { font-size: 14px; }
  .hero-scroll { display: none; }
  .section { padding: 80px 0; }
  .section h2 { font-size: 47px; }
  .feature-grid, .gallery-grid { display: flex; flex-direction: column; }
  .feature-card, .feature-card-large { min-height: 265px; }
  .gallery-grid figure, .gallery-grid .gallery-main { height: 260px; }
  .steps-grid { display: block; margin-top: 48px; }
  .step, .step + .step { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(11, 21, 20, .18); padding: 24px 0; }
  .step:last-child { border-bottom: 0; }
  .step h3 { margin-top: 21px; }
  .server-copy, .server-terminal, .workshop-copy { padding: 40px 28px; }
  .workshop-image { min-height: 300px; }
  .final-cta { padding: 95px 0; }
  .footer-wrap { grid-template-columns: 1fr; align-items: start; }
  .footer-links { flex-wrap: wrap; }
  .site-footer small { grid-column: auto; }
  .auth-section, .state-section, .admin-section { min-height: 650px; padding: 118px 0 70px; }
  .form-card { padding: 30px 22px 26px; }
  .form-card h2 { font-size: 39px; }
  .queue-header, .queue-list { padding-right: 18px; padding-left: 18px; }
  .queue-row { grid-template-columns: 1fr; gap: 10px; }
  .queue-actions { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
