@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Inter:wght@300;400;500;600&display=swap");

:root {
  color-scheme: dark;
  --ink: #f2efe6;
  --muted: #a6a299;
  --line: rgba(242, 239, 230, 0.14);
  --surface: #14150f;
  --page: #0a0b0a;
  --soft: rgba(200, 161, 90, 0.14);
  --primary: #c8a15a;
  --primary-dark: #d9bd85;
  --accent: #c8a15a;
  --danger: #e0655a;
  --focus: rgba(200, 161, 90, 0.4);
  --radius: 8px;
  --shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--page);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #101210 0, rgba(10, 11, 10, 0) 280px),
    var(--page);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.45;
}

button,
input,
select,
textarea {
  font: inherit;
}

.app-shell {
  width: min(100%, 620px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 14px 28px;
}

.topbar {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 0 14px;
}

.brand-logo-wrap {
  display: flex;
  width: 112px;
  height: 44px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 7px 9px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 30px;
  object-fit: contain;
}

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

.eyebrow,
.step-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
}

h1 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.16;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  color: var(--primary-dark);
  font-size: 17px;
  line-height: 1.2;
}

.scope-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 12px;
  color: #c9c5ba;
  font-size: 13px;
}

.scope-strip span {
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(20, 21, 15, 0.84);
}

.campaign-status {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 12px;
}

.campaign-status > div {
  padding: 12px;
  border: 1px solid rgba(200, 161, 90, 0.35);
  border-radius: var(--radius);
  background: #1a170f;
  color: var(--ink);
}

.campaign-status > div:nth-child(2) {
  border-color: var(--line);
  background: #14150f;
}

.status-label {
  margin: 0 0 4px;
  color: rgba(242, 239, 230, 0.72);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.campaign-status strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.analysis-link {
  width: 100%;
  margin: 0 0 12px;
  text-decoration: none;
}

.analysis-link[hidden] {
  display: none;
}

.progress-card {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.progress-copy {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.progress-copy span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 680;
  white-space: nowrap;
}

.progress-copy strong {
  overflow: hidden;
  color: #dedacd;
  font-size: 14px;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(242, 239, 230, 0.12);
}

.progress-bar {
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  transition: width 180ms ease;
}

form,
.success-state {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

form {
  padding: 18px 14px 14px;
}

.global-hero {
  display: grid;
  gap: 14px;
  margin-bottom: 12px;
  padding: 16px 0 6px;
}

.global-hero h2 {
  margin-top: 4px;
}

.global-hero p:not(.step-kicker) {
  margin-bottom: 0;
  color: var(--muted);
}

.global-form {
  margin-top: 0;
}

.global-shell {
  width: min(100%, 760px);
}

.global-brand-header {
  display: grid;
  gap: 14px;
  padding: 16px 0 18px;
}

.global-logo-plate {
  display: flex;
  width: min(100%, 260px);
  min-height: 84px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(242, 239, 230, 0.25);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 16px 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.global-logo-plate img {
  display: block;
  width: 100%;
  max-height: 50px;
  object-fit: contain;
}

.global-title-block {
  display: grid;
  gap: 6px;
}

.global-title-block h1 {
  color: var(--primary-dark);
  font-size: 30px;
  line-height: 1.04;
}

.global-title-block p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.global-trust-list {
  display: grid;
  gap: 8px;
}

.global-trust-list span {
  min-height: 38px;
  padding: 9px 11px;
  border: 1px solid rgba(242, 239, 230, 0.14);
  border-radius: var(--radius);
  background: #101210;
  color: #dedacd;
  font-size: 13px;
  font-weight: 720;
}

.global-form-heading {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(242, 239, 230, 0.14);
}

.global-shell .brand-logo-wrap {
  width: 132px;
  height: 52px;
}

.global-shell .brand-logo {
  max-height: 36px;
}

.full-button {
  width: 100%;
  margin-top: 12px;
}

.step {
  display: none;
}

.step.is-active {
  display: block;
}

.step-heading {
  margin-bottom: 18px;
}

.step-heading p:not(.step-kicker) {
  margin-bottom: 0;
  color: var(--muted);
}

.field,
.field-set {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.field:first-of-type,
.field-set:first-of-type {
  margin-top: 0;
}

label,
legend {
  color: #e6e2d6;
  font-weight: 720;
}

fieldset {
  min-width: 0;
  padding: 0;
  border: 0;
}

.field-set.compact {
  padding-top: 4px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(242, 239, 230, 0.22);
  border-radius: var(--radius);
  background: #101210;
  color: var(--ink);
  padding: 13px 12px;
}

textarea {
  min-height: 104px;
  resize: vertical;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #a6a299 50%),
    linear-gradient(135deg, #a6a299 50%, transparent 50%);
  background-position:
    calc(100% - 19px) 21px,
    calc(100% - 13px) 21px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 38px;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
.choice:focus-within,
.count-choice:focus-within,
.checkbox-line:focus-within {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.field-optional label::after {
  content: " - isteğe bağlı";
  color: var(--muted);
  font-weight: 520;
}

.choice-group,
.checkbox-grid {
  display: grid;
  gap: 10px;
}

.choice,
.checkbox-line,
.count-choice {
  position: relative;
  display: grid;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101210;
  color: var(--ink);
  cursor: pointer;
}

.choice {
  grid-template-columns: 22px 1fr;
  gap: 10px;
  min-height: 52px;
  padding: 14px 13px;
}

.choice-group.compact {
  gap: 8px;
}

.choice-group.compact .choice {
  min-height: 48px;
  padding: 12px 13px;
}

.checkbox-line {
  grid-template-columns: 20px 1fr;
  gap: 10px;
  min-height: 52px;
  padding: 13px;
}

.choice input,
.checkbox-line input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 0;
  accent-color: var(--primary);
}

.choice span,
.checkbox-line span {
  min-width: 0;
  font-weight: 680;
  word-break: break-word;
}

.choice:has(input:checked),
.checkbox-line:has(input:checked),
.count-choice:has(input:checked) {
  border-color: var(--primary);
  background: var(--soft);
  box-shadow: inset 0 0 0 1px var(--primary);
}

.count-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.count-choice {
  min-width: 0;
  min-height: 58px;
  justify-items: center;
  padding: 8px;
}

.count-choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 1px;
  opacity: 0;
}

.count-choice span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 820;
}

.conditional-panel {
  display: none;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(242, 239, 230, 0.14);
  border-radius: var(--radius);
  background: #101210;
}

.conditional-panel.is-visible {
  display: block;
}

.unit-cards {
  display: grid;
  gap: 14px;
}

.unit-card {
  padding: 14px;
  border: 1px solid rgba(242, 239, 230, 0.14);
  border-radius: var(--radius);
  background: #101210;
}

.unit-card .field:first-of-type {
  margin-top: 0;
}

.consent-line {
  align-items: start;
  margin-top: 18px;
}

.assurance {
  margin: 14px 0 0;
  padding: 11px 12px;
  border-radius: var(--radius);
  background: rgba(200, 161, 90, 0.12);
  color: #d9bd85;
  font-size: 14px;
  font-weight: 650;
}

.warning-panel {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 12px;
  border: 1px solid rgba(200, 161, 90, 0.45);
  border-radius: var(--radius);
  background: rgba(200, 161, 90, 0.08);
  color: #e3cf9c;
}

.warning-panel[hidden] {
  display: none;
}

.warning-panel strong {
  color: #e3cf9c;
}

.warning-panel p {
  margin: 0;
  font-size: 14px;
}

.error-message {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--danger);
  font-size: 14px;
  font-weight: 720;
}

.form-actions {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 10px;
  margin-top: 12px;
}

.button {
  display: inline-grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 16px;
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
}

.button.primary {
  background: var(--primary);
  color: #14150f;
}

.button.primary:hover {
  background: var(--primary-dark);
}

.button.secondary {
  border-color: rgba(242, 239, 230, 0.25);
  background: transparent;
  color: var(--ink);
}

.button.danger {
  border-color: rgba(224, 101, 90, 0.5);
  background: transparent;
  color: var(--danger);
}

.button.danger:hover {
  background: rgba(224, 101, 90, 0.12);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.success-state {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 24px 18px;
}

.success-state[hidden] {
  display: none;
}

.success-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: #14150f;
  font-size: 26px;
  font-weight: 850;
}

.closed-state .success-mark {
  background: var(--danger);
}

.success-state h2 {
  margin: 0;
}

.success-state p {
  margin: 0 0 4px;
  color: var(--muted);
}

.dashboard-shell {
  width: min(100%, 860px);
}

.dashboard-panel {
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.dashboard-panel[hidden] {
  display: none;
}

.dashboard-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.dashboard-header h2 {
  margin-bottom: 0;
}

.dashboard-header .button {
  min-height: 42px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.metric-card {
  padding: 14px;
  border: 1px solid rgba(242, 239, 230, 0.14);
  border-radius: var(--radius);
  background: #101210;
}

.metric-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.metric-card strong {
  color: var(--primary-dark);
  font-size: 26px;
  line-height: 1.1;
}

.dashboard-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0 18px;
}

.dashboard-section {
  margin-top: 18px;
}

.section-title-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.dashboard-section h3 {
  margin-bottom: 10px;
}

.admin-form {
  margin-top: 10px;
  padding: 14px;
  box-shadow: none;
}

.admin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 12px;
}

.admin-options {
  margin-top: 14px;
}

.compact-button {
  min-height: 38px;
  padding: 0 12px;
  font-size: 13px;
}

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

.log-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.log-list[hidden] {
  display: none;
}

.log-list article {
  padding: 10px;
  border: 1px solid rgba(242, 239, 230, 0.14);
  border-radius: var(--radius);
  background: #101210;
}

.log-list strong {
  display: block;
  color: var(--primary-dark);
  font-size: 14px;
}

.log-list p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.system-form {
  margin-top: 14px;
}

.breakdown-list,
.submission-list,
.campaign-list {
  display: grid;
  gap: 8px;
}

.breakdown-list div,
.submission-list > article,
.campaign-list > article {
  padding: 12px;
  border: 1px solid rgba(242, 239, 230, 0.14);
  border-radius: var(--radius);
  background: #101210;
}

.breakdown-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.breakdown-list span {
  min-width: 0;
  color: #dedacd;
  font-weight: 680;
}

.breakdown-list strong {
  color: var(--primary);
  font-size: 20px;
}

.submission-list h4,
.campaign-list h4 {
  margin: 0 0 4px;
  color: var(--primary-dark);
  font-size: 16px;
}

.campaign-list a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  color: var(--primary);
  font-size: 13px;
  font-weight: 720;
  word-break: break-all;
}

.campaign-links-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.link-sep {
  color: var(--line);
  font-size: 12px;
}

.campaign-parcel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.campaign-parcel-links a {
  min-height: 30px;
  padding: 4px 8px;
  border: 1px solid rgba(242, 239, 230, 0.14);
  border-radius: var(--radius);
  background: #101210;
  text-decoration: none;
  word-break: normal;
}

.campaign-parcel-links a:hover {
  background: var(--soft);
}

.submission-summary {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.delete-button {
  min-height: 38px;
  padding: 0 12px;
  white-space: nowrap;
}

.submission-list details {
  border-top: 1px solid rgba(242, 239, 230, 0.14);
  padding-top: 10px;
}

.submission-list summary {
  color: #dedacd;
  font-size: 14px;
  font-weight: 760;
  cursor: pointer;
}

.submission-list section {
  margin-top: 14px;
}

.submission-list h5,
.submission-list h6 {
  margin: 0 0 8px;
  color: var(--primary-dark);
  font-size: 14px;
  line-height: 1.2;
}

.data-grid {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid rgba(242, 239, 230, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.data-grid div {
  display: grid;
  grid-template-columns: minmax(112px, 38%) 1fr;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid rgba(242, 239, 230, 0.14);
  background: #101210;
}

.data-grid div:last-child {
  border-bottom: 0;
}

.data-grid dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.data-grid dd {
  margin: 0;
  color: #e6e2d6;
  font-size: 13px;
  font-weight: 680;
  word-break: break-word;
}

.unit-detail-list {
  display: grid;
  gap: 10px;
}

.unit-detail {
  padding: 10px;
  border: 1px solid rgba(242, 239, 230, 0.14);
  border-radius: var(--radius);
  background: #101210;
}

.presentation-shell,
.legal-shell {
  width: min(100%, 920px);
}

.return-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 640;
  text-decoration: none;
}

.return-link:hover {
  color: var(--primary);
}

.back-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.summary-card {
  padding: 14px;
  border: 1px solid rgba(200, 161, 90, 0.35);
  border-radius: var(--radius);
  background: #1a170f;
  color: var(--ink);
}

.summary-card span {
  display: block;
  margin-bottom: 4px;
  color: rgba(242, 239, 230, 0.72);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.summary-card strong {
  display: block;
  font-size: 25px;
  line-height: 1.1;
}

.demand-profile,
.parcel-card,
.legal-panel {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.demand-profile h2,
.legal-panel h2 {
  font-size: 20px;
}

.distribution-bar {
  display: flex;
  min-height: 34px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(242, 239, 230, 0.12);
}

.dist-segment {
  min-width: 2px;
}

.dist-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #dedacd;
  font-size: 13px;
}

.legend-color {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.parcel-list {
  display: grid;
  gap: 14px;
}

.parcel-header {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(242, 239, 230, 0.14);
}

.parcel-header h2 {
  margin: 0 0 4px;
  color: var(--primary-dark);
  font-size: 20px;
}

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

.participant-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(242, 239, 230, 0.14);
  border-radius: var(--radius);
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #14150f;
  font-size: 13px;
}

th,
td {
  padding: 10px;
  border-bottom: 1px solid rgba(242, 239, 230, 0.14);
  text-align: left;
}

th {
  background: var(--soft);
  color: var(--primary-dark);
  font-weight: 760;
}

tr:last-child td {
  border-bottom: 0;
}

.locked-state {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.locked-state[hidden] {
  display: none;
}

.threshold-container {
  width: min(100%, 360px);
  padding: 14px;
  border-radius: var(--radius);
  background: #101210;
}

.threshold-bar-wrap {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(242, 239, 230, 0.12);
}

.threshold-bar {
  width: 0%;
  height: 100%;
  background: var(--accent);
  transition: width 220ms ease;
}

.threshold-flex {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.threshold-flex strong {
  color: var(--primary-dark);
  font-size: 20px;
}

.legal-panel p {
  color: #c9c5ba;
}

.legal-panel a {
  color: var(--primary);
  font-weight: 760;
}

.site-footer {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-top: 24px;
  padding: 18px 8px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px 20px;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  color: var(--primary);
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-meta {
  margin: 0;
  color: #6f6c64;
}

.submission-list p,
.empty-state {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.submission-list p + p {
  margin-top: 4px;
}

@media (min-width: 520px) {
  .app-shell {
    padding-top: 30px;
  }

  .scope-strip {
    grid-template-columns: repeat(3, 1fr);
  }

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

  form {
    padding: 24px;
  }

  h1 {
    font-size: 22px;
  }

  h2 {
    font-size: 29px;
  }

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

  .dashboard-panel {
    padding: 24px;
  }

  .global-brand-header {
    grid-template-columns: 260px 1fr;
    align-items: center;
    padding-top: 28px;
  }

  .global-title-block h1 {
    font-size: 36px;
  }

  .global-hero {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    padding-bottom: 14px;
  }

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

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

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