:root {
  --bg: #eef5ff;
  --bg-soft: #f7faff;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --panel-dark: rgba(10, 44, 104, 0.96);
  --panel-dark-2: rgba(16, 58, 130, 0.96);
  --line: rgba(28, 73, 145, 0.12);
  --line-strong: rgba(28, 73, 145, 0.22);
  --text: #163056;
  --muted: #60718f;
  --blue: #205bb7;
  --blue-strong: #123f8f;
  --green: #8abf3d;
  --green-strong: #6fa72b;
  --orange: #f2a11c;
  --orange-strong: #d88a0c;
  --danger: #cb4c5b;
  --ok: #2f9f69;
  --shadow-soft: 0 18px 48px rgba(20, 53, 108, 0.08);
  --shadow-strong: 0 28px 84px rgba(20, 53, 108, 0.14);
  --radius-xl: 40px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at top left, rgba(32, 91, 183, 0.2), transparent 26%),
    radial-gradient(circle at top right, rgba(138, 191, 61, 0.14), transparent 24%),
    radial-gradient(circle at bottom center, rgba(242, 161, 28, 0.12), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, #f1f6ff 40%, #eef5ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.32), transparent 75%);
  opacity: 0.3;
  pointer-events: none;
}

button,
input,
a {
  font: inherit;
}

a {
  color: inherit;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(78px);
}

.orb-one {
  top: -160px;
  left: -120px;
  width: 440px;
  height: 440px;
  background: rgba(32, 91, 183, 0.18);
}

.orb-two {
  top: 10%;
  right: -120px;
  width: 360px;
  height: 360px;
  background: rgba(138, 191, 61, 0.18);
}

.orb-three {
  bottom: -180px;
  left: 26%;
  width: 340px;
  height: 340px;
  background: rgba(242, 161, 28, 0.16);
}

.site-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 54px;
}

.glass-panel,
.glass-chip,
.metric-card,
.dashboard-panel {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.76));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.glass-panel::before,
.glass-chip::before,
.metric-card::before,
.dashboard-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero,
.layout {
  width: 100%;
}

.hero {
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-strong);
}

.hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 91, 183, 0.14), transparent 68%);
  pointer-events: none;
}

.hero-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.brand-topline {
  padding-bottom: 8px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.brand-logo-frame {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 168px;
  min-height: 104px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 255, 0.88));
  border: 1px solid rgba(28, 73, 145, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 14px;
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
}

.brand-copy {
  display: grid;
  gap: 10px;
  align-content: center;
}

.brand-subtitle {
  max-width: 40ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-controls {
  display: grid;
  justify-items: end;
  gap: 12px;
}

.hero-badge,
.eyebrow,
.floating-tag,
.stand-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-badge,
.floating-tag,
.eyebrow {
  border: 1px solid var(--line);
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-badge {
  background: linear-gradient(135deg, var(--blue-strong), var(--blue));
  color: #fff;
  box-shadow: 0 16px 34px rgba(18, 63, 143, 0.18);
}

.floating-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.floating-tag {
  background: rgba(255, 255, 255, 0.8);
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 16px;
  background: rgba(32, 91, 183, 0.08);
  color: var(--blue-strong);
}

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.hero-grid-landing {
  grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.9fr);
}

.hero-grid-admin {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 380px);
}

.hero-copy,
.tutorial-copy {
  display: grid;
  align-content: start;
}

.admin-drawer {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.internal-drawer-card {
  width: min(100%, 360px);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
.internal-card strong,
.metric-card strong {
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

h1 {
  max-width: 12ch;
  margin-bottom: 16px;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  letter-spacing: -0.05em;
}

.hero-text,
.muted,
.section-heading p,
.point-card span,
.step-card p,
.hero-side-text,
.internal-card span,
.tutorial-card p,
.side-point p,
.mission-banner span {
  color: var(--muted);
  line-height: 1.72;
}

.hero-text-wide {
  max-width: 62ch;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 26px 0;
}

.hero-note {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.tutorial-stack {
  display: grid;
  gap: 14px;
}

.tutorial-card,
.step-card,
.point-card,
.metric-card,
.dashboard-panel,
.progress-card,
.form-card,
.stand-card,
.table-wrap,
.modal-card,
.hero-side-panel {
  border-radius: var(--radius-lg);
}

.tutorial-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.tutorial-card strong,
.side-point strong,
.point-card strong,
.step-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.tutorial-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  font-size: 1.4rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.tutorial-card-blue {
  border-color: rgba(32, 91, 183, 0.18);
  background: linear-gradient(135deg, rgba(232, 241, 255, 0.92), rgba(255, 255, 255, 0.84));
}

.tutorial-card-orange {
  border-color: rgba(242, 161, 28, 0.18);
  background: linear-gradient(135deg, rgba(255, 246, 227, 0.94), rgba(255, 255, 255, 0.84));
}

.tutorial-card-green {
  border-color: rgba(138, 191, 61, 0.18);
  background: linear-gradient(135deg, rgba(241, 249, 229, 0.94), rgba(255, 255, 255, 0.84));
}

.hero-side-panel {
  padding: 24px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(13, 59, 135, 0.98), rgba(20, 91, 112, 0.94));
  box-shadow: 0 30px 66px rgba(18, 63, 143, 0.2);
  color: #fff;
}

.hero-side-panel::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.hero-side-panel > strong,
.internal-card > strong {
  font-size: 1.48rem;
  line-height: 1.08;
}

.hero-side-panel p,
.hero-side-panel span,
.hero-side-panel .side-point p,
.hero-side-panel .mission-banner span {
  color: rgba(255, 255, 255, 0.78);
}

.hero-card-label {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-card-label-dark {
  color: rgba(255, 255, 255, 0.72);
}

.side-points {
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.side-point {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.side-point:first-child {
  border-top: 0;
  padding-top: 0;
}

.side-point span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 900;
}

.mission-banner {
  display: grid;
  gap: 8px;
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mission-banner strong {
  font-size: 1.04rem;
  line-height: 1.3;
}

.internal-card {
  display: grid;
  gap: 14px;
  align-content: start;
  border-radius: 30px;
  padding: 24px;
  background: linear-gradient(180deg, var(--panel-dark), var(--panel-dark-2));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(17, 53, 117, 0.24);
  color: #fff;
}

.internal-card::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}

.internal-card span,
.internal-card .field span {
  color: rgba(255, 255, 255, 0.78);
}

.admin-access-form,
.status-actions {
  display: grid;
  gap: 12px;
}

.compact-field span {
  font-size: 0.86rem;
}

.steps-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 18px 0 26px;
}

.step-card {
  padding: 22px 24px;
  min-height: 156px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.step-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(32, 91, 183, 0.16), rgba(242, 161, 28, 0.16));
  color: var(--blue-strong);
  font-size: 1rem;
  font-weight: 900;
}

.layout {
  display: grid;
  gap: 22px;
  padding: 0 0 46px;
}

.panel {
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 38px);
}

.registration-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
}

.registration-copy {
  display: grid;
  gap: 24px;
  align-content: start;
}

.registration-points {
  display: grid;
  gap: 14px;
}

.point-card {
  display: grid;
  gap: 8px;
  min-height: 100px;
  padding: 20px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.form-card {
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.88));
  border: 1px solid rgba(28, 73, 145, 0.14);
  box-shadow: var(--shadow-soft);
}

.visitor-form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 9px;
  font-weight: 800;
}

.field span {
  color: var(--text);
}

.field input {
  width: 100%;
  min-height: 56px;
  appearance: none;
  border: 1px solid rgba(28, 73, 145, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.96));
  color: var(--text);
  outline: none;
  padding: 0 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.field input::placeholder {
  color: rgba(96, 113, 143, 0.82);
}

.field input:focus {
  border-color: rgba(32, 91, 183, 0.48);
  box-shadow: 0 0 0 4px rgba(32, 91, 183, 0.1);
}

.internal-card .field input {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.internal-card .field input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.internal-card .field input:focus {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.primary-button,
.ghost-button,
.danger-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 52px;
  border-radius: 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.01em;
  padding: 12px 18px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--blue), var(--green-strong));
  color: #fff;
  box-shadow: 0 18px 34px rgba(32, 91, 183, 0.2);
}

.secondary-button {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 255, 0.92));
  border-color: rgba(28, 73, 145, 0.14);
  color: var(--text);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(28, 73, 145, 0.14);
  color: var(--blue-strong);
}

.danger-button {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(203, 76, 91, 0.18);
  color: var(--danger);
}

.admin-trigger {
  min-width: 152px;
}

.internal-card .secondary-button {
  width: 100%;
  color: var(--blue-strong);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.danger-button:hover,
.tutorial-card:hover,
.step-card:hover,
.point-card:hover,
.metric-card:hover,
.dashboard-panel:hover,
.stand-card:hover {
  transform: translateY(-3px);
}

.primary-button:hover {
  box-shadow: 0 24px 42px rgba(18, 63, 143, 0.22);
}

.passport-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

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

.progress-card {
  margin: 24px 0 22px;
  padding: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(232, 241, 255, 0.92), rgba(255, 255, 255, 0.92));
}

.progress-card > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 900;
}

.progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(32, 91, 183, 0.12);
}

.progress-fill {
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--green));
  box-shadow: 0 0 24px rgba(138, 191, 61, 0.22);
  transition: width 240ms ease;
}

.search-field {
  margin-bottom: 22px;
}

.stands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.stand-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 170px;
  overflow: hidden;
  border: 1px solid rgba(28, 73, 145, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 255, 0.9));
  color: var(--text);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  padding: 22px;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.stand-card::before {
  content: "";
  position: absolute;
  inset: -44% -8% auto auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(32, 91, 183, 0.14), transparent 70%);
  pointer-events: none;
}

.stand-card:hover {
  border-color: rgba(32, 91, 183, 0.24);
  box-shadow: 0 28px 48px rgba(20, 53, 108, 0.12);
}

.stand-card.validated {
  border-color: rgba(138, 191, 61, 0.28);
  background: linear-gradient(180deg, rgba(244, 251, 234, 0.96), rgba(255, 255, 255, 0.9));
}

.stand-number {
  color: var(--blue-strong);
  font-size: 0.74rem;
  font-weight: 900;
}

.stand-name {
  display: block;
  margin: 14px 0 auto;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.45;
}

.stand-status {
  margin-top: 18px;
  background: rgba(32, 91, 183, 0.08);
  color: var(--blue-strong);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 8px 12px;
}

.validated .stand-status {
  background: rgba(138, 191, 61, 0.14);
  color: var(--green-strong);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  background: rgba(17, 40, 77, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 18px;
}

.modal-card {
  width: min(100%, 560px);
  padding: 30px;
  border: 1px solid rgba(28, 73, 145, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96));
  box-shadow: var(--shadow-strong);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(28, 73, 145, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  cursor: pointer;
  font-weight: 900;
}

.feedback {
  border-radius: 18px;
  font-weight: 800;
  line-height: 1.55;
  margin: 14px 0;
  padding: 12px 14px;
}

.feedback.success {
  border: 1px solid rgba(47, 159, 105, 0.16);
  background: rgba(47, 159, 105, 0.1);
  color: var(--ok);
}

.feedback.error {
  border: 1px solid rgba(203, 76, 91, 0.16);
  background: rgba(203, 76, 91, 0.1);
  color: var(--danger);
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card {
  overflow: hidden;
  padding: 22px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.metric-card span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

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

.dashboard-panel {
  overflow: hidden;
  padding: 20px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.recent-section {
  margin-top: 20px;
}

.status-card {
  gap: 16px;
}

.table-wrap {
  overflow: auto;
  border: 1px solid rgba(28, 73, 145, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
}

th,
td {
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

thead th {
  border-bottom: 1px solid rgba(28, 73, 145, 0.12);
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

tbody td {
  border-bottom: 1px solid rgba(28, 73, 145, 0.08);
}

tbody tr:hover {
  background: rgba(32, 91, 183, 0.04);
}

.hidden {
  display: none !important;
}

@media (max-width: 1120px) {
  .hero-grid-landing,
  .hero-grid-admin,
  .registration-shell {
    grid-template-columns: 1fr;
  }

  .hero-controls {
    justify-items: start;
  }

  .floating-tags {
    justify-content: flex-start;
  }

  .admin-drawer {
    justify-content: stretch;
  }

  .internal-drawer-card {
    width: 100%;
  }
}

@media (max-width: 920px) {
  .steps-strip,
  .dashboard-cards,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 18px, 1200px);
    padding-top: 18px;
  }

  .hero,
  .panel,
  .modal-card {
    border-radius: 30px;
    padding: 22px;
  }

  .hero-topline,
  .brand-lockup,
  .hero-actions,
  .passport-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo-frame {
    width: 100%;
    max-width: 240px;
  }

  .hero-controls,
  .floating-tags {
    justify-items: start;
    justify-content: flex-start;
  }

  .tutorial-card,
  .side-point {
    grid-template-columns: 1fr;
  }

  .tutorial-icon,
  .side-point span {
    width: 48px;
    height: 48px;
  }

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

  .actions,
  .actions button,
  .actions a,
  .status-actions,
  .status-actions > *,
  .primary-button,
  .secondary-button,
  .ghost-button,
  .danger-button,
  .admin-trigger {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
}

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