:root {
  --bg: #f3eee6;
  --paper: rgba(255, 251, 246, 0.92);
  --ink: #1f2721;
  --muted: #595951;
  --line: rgba(31, 39, 33, 0.12);
  --warm: #b6642d;
  --warm-soft: #fff0e3;
  --cool: #275f78;
  --cool-soft: #e5f0f5;
  --sage: #2f705d;
  --sage-soft: #e5f4ee;
  --deep: #4a385f;
  --deep-soft: #ede6f3;
  --stone-soft: #f4f0ea;
  --good: #23664b;
  --bad: #9e382d;
  --shadow: 0 26px 58px rgba(60, 46, 26, 0.13);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(182, 100, 45, 0.16), transparent 26%),
    radial-gradient(circle at bottom right, rgba(39, 95, 120, 0.14), transparent 24%),
    linear-gradient(180deg, #fbf8f3 0%, #f4ede4 54%, #e9dfd2 100%);
}

.page-aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.48) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 36%, transparent 82%);
}

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

.hero,
.panel,
.floating-download {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  gap: 24px;
  padding: 30px;
  border-radius: 36px;
}

.panel {
  margin-top: 24px;
  padding: 26px;
  border-radius: 30px;
}

.floating-download {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
}

.hero::after,
.panel::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(39, 95, 120, 0.12), transparent 72%);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h2 {
  margin: 6px 0 0;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
}

h3 {
  margin: 8px 0 0;
  font-size: 1.1rem;
}

.eyebrow,
.step,
.mini-kicker,
.bank-label,
.hero-label,
.field-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
}

.intro-list,
.dual-points,
.panel-copy {
  color: #4d4a43;
  line-height: 1.65;
}

.intro-list {
  margin: 0;
  padding-left: 22px;
}

.intro-list li + li,
.dual-points li + li {
  margin-top: 8px;
}

.hero {
  grid-template-columns: minmax(0, 1.45fr) minmax(250px, 0.75fr);
}

.hero-copy {
  padding: 8px 6px 4px;
}

.hero-panel {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 244, 236, 0.86));
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  appearance: none;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  background: rgba(120, 125, 128, 0.18);
  color: rgba(31, 39, 33, 0.42);
  border-color: rgba(31, 39, 33, 0.08);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.button.primary {
  background: linear-gradient(135deg, var(--warm), #ca7f3a);
  color: #fff;
  box-shadow: 0 14px 28px rgba(182, 100, 45, 0.24);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  border: 1px solid var(--line);
}

.button-inline {
  padding: 8px 14px;
  font-weight: 700;
}

.button:focus-visible,
select:focus-visible,
textarea:focus-visible,
input:focus-visible,
.gate-chip:focus-visible,
.gate-slot:focus-visible {
  outline: 3px solid rgba(39, 95, 120, 0.26);
  outline-offset: 2px;
}

.dual-coding-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 0.92fr);
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(182, 100, 45, 0.11), transparent 40%),
    rgba(255, 255, 255, 0.72);
}

.dual-card,
.bank-panel,
.diagram-card,
.truth-table-card,
.dropdown-card,
.field-card,
.board-card {
  min-width: 0;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.dual-card {
  padding: 18px;
}

.dual-link {
  display: grid;
  place-items: center;
}

.dual-link span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 10px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  font-weight: 800;
  color: var(--muted);
}

.dual-diagram {
  width: 100%;
  height: auto;
  margin-top: 10px;
}

.diagram-lines {
  stroke: rgba(42, 53, 45, 0.28);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
}

.diagram-node rect {
  stroke: rgba(255, 255, 255, 0.5);
  stroke-width: 1.2;
}

.diagram-node text {
  fill: #fff;
  font-size: 16px;
  font-weight: 800;
  text-anchor: middle;
}

.diagram-node-root rect {
  fill: url(#rootFill);
}

.diagram-node-law rect {
  fill: url(#lawFill);
}

.diagram-node-mini rect {
  fill: url(#miniFill);
}

.panel-warm {
  background:
    linear-gradient(180deg, rgba(255, 240, 227, 0.9), rgba(255, 251, 246, 0.92));
}

.panel-cool {
  background:
    linear-gradient(180deg, rgba(229, 240, 245, 0.9), rgba(255, 251, 246, 0.92));
}

.panel-sage {
  background:
    linear-gradient(180deg, rgba(229, 244, 238, 0.9), rgba(255, 251, 246, 0.92));
}

.panel-deep {
  background:
    linear-gradient(180deg, rgba(237, 230, 243, 0.92), rgba(255, 251, 246, 0.92));
}

.panel-reference {
  background:
    linear-gradient(180deg, rgba(244, 240, 234, 0.92), rgba(255, 251, 246, 0.92));
}

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

.feedback-line {
  min-height: 1.5em;
  margin: 14px 0 0;
  line-height: 1.6;
  color: #4d4a43;
}

.panel-copy.is-good {
  color: var(--good);
}

.panel-copy.is-bad {
  color: var(--bad);
}

.feedback-line.is-good {
  color: var(--good);
  font-weight: 700;
}

.feedback-line.is-bad {
  color: var(--bad);
  font-weight: 700;
}

.gate-studio-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.canvas-panel {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(39, 95, 120, 0.05), transparent 24%),
    rgba(255, 255, 255, 0.84);
}

.canvas-key {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  justify-content: flex-end;
}

.simulator-frame-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(39, 95, 120, 0.05), transparent 24%),
    rgba(255, 255, 255, 0.84);
}

.simulator-frame-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.simulator-link {
  color: var(--cool);
  font-weight: 800;
  text-decoration: none;
}

.simulator-link:hover,
.simulator-link:focus-visible {
  text-decoration: underline;
}

.simulator-frame {
  display: block;
  width: 100%;
  min-height: 720px;
  height: 720px;
  border: 1px solid rgba(39, 95, 120, 0.14);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.key-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 39, 33, 0.14);
  background: rgba(255, 255, 255, 0.85);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.gate-canvas {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 620px;
  overflow: auto;
  border-radius: 22px;
  border: 1px solid rgba(39, 95, 120, 0.14);
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(180deg, #dcebf5 0%, #c6dde9 100%);
  touch-action: none;
  contain: layout paint;
  cursor: grab;
}

.gate-canvas.is-panning {
  cursor: grabbing;
}

.gate-scene-sizer {
  position: relative;
  width: 100%;
  min-width: 100%;
  min-height: 620px;
  overflow: hidden;
}

.gate-scene {
  position: absolute;
  inset: 0 auto auto 0;
  transform-origin: top left;
}

.truth-popup {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: min(760px, calc(100% - 36px));
  min-width: 280px;
  min-height: 180px;
  max-height: calc(100% - 36px);
  overflow: auto;
  border: 1px solid rgba(31, 39, 33, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(59, 48, 27, 0.16);
  backdrop-filter: blur(8px);
  resize: both;
}

.truth-popup__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
  padding: 14px 16px 8px;
  border-bottom: 1px solid rgba(31, 39, 33, 0.08);
  cursor: grab;
  user-select: none;
}

.truth-popup.is-dragging .truth-popup__head {
  cursor: grabbing;
}

.truth-popup__close {
  border: 0;
  background: rgba(158, 56, 45, 0.08);
  color: var(--bad);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
}

.truth-popup__body {
  padding: 12px 16px 16px;
}

.truth-popup__body p {
  color: #4d4a43;
  line-height: 1.55;
}

.truth-popup__section + .truth-popup__section {
  margin-top: 14px;
}

.truth-popup__body table {
  width: max-content;
  border-collapse: collapse;
  font-size: 0.92rem;
  table-layout: auto;
}

.truth-popup__body th,
.truth-popup__body td {
  border: 1px solid rgba(31, 39, 33, 0.12);
  padding: 8px 10px;
  text-align: center;
  white-space: nowrap;
}

.truth-popup__body th {
  background: #ef7f2d;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
}

.canvas-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.canvas-link {
  stroke: #111;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: auto;
  cursor: pointer;
  fill: none;
}

.gate-palette {
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.palette-gate {
  min-width: 0;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(31, 39, 33, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(59, 48, 27, 0.08);
  cursor: grab;
}

.palette-gate strong {
  display: block;
  margin-bottom: 3px;
}

.palette-gate span:last-child {
  color: #5b5a53;
  font-size: 0.92rem;
}

.placed-gate {
  position: absolute;
  z-index: 2;
  width: 168px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 39, 33, 0.12);
  box-shadow: 0 10px 22px rgba(59, 48, 27, 0.12);
  cursor: grab;
}

.placed-gate.is-selected {
  box-shadow: 0 0 0 3px rgba(182, 100, 45, 0.28), 0 10px 22px rgba(59, 48, 27, 0.12);
}

.placed-gate.is-targeted {
  box-shadow: 0 0 0 2px rgba(39, 95, 120, 0.22), 0 10px 22px rgba(59, 48, 27, 0.12);
}

.placed-gate-body {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #fffdf8, #f5efe7);
}

.input-gate-figure {
  position: relative;
  display: grid;
  justify-items: center;
}

.input-gate-badge {
  position: absolute;
  inset: 50% auto auto 47px;
  transform: translate(-50%, -50%);
  width: 42px;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  text-align: center;
  color: var(--ink);
  padding: 0;
}

.placed-gate-title {
  margin-top: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.placed-gate-delete {
  position: absolute;
  top: 6px;
  right: 6px;
  border: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: inset 0 0 0 1px rgba(158, 56, 45, 0.2);
  color: var(--bad);
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
}

.gate-connector {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(31, 39, 33, 0.34);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(31, 39, 33, 0.16);
  cursor: pointer;
}

.gate-connector[data-side="left"] {
  left: -7px;
  top: var(--connector-top);
  transform: translateY(-50%);
}

.gate-connector[data-side="right"] {
  right: -7px;
  top: var(--connector-top);
  transform: translateY(-50%);
  background: #fff;
  border-color: rgba(182, 100, 45, 0.9);
  cursor: default;
  pointer-events: none;
}

.gate-connector.is-toggle-source {
  cursor: pointer;
  pointer-events: auto;
}

.gate-connector:hover,
.gate-connector.is-hovered {
  transform: translateY(-50%) scale(1.15);
}

.gate-connector.is-on {
  background: var(--cool);
  border-color: rgba(255, 255, 255, 0.95);
}

.gate-connector.is-output-on {
  background: var(--warm);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(31, 39, 33, 0.16), 0 0 0 5px rgba(182, 100, 45, 0.12);
}

.gate-connector.is-disabled {
  cursor: default;
}

.gate-connector-label {
  position: absolute;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.92);
  padding: 2px 5px;
  border-radius: 999px;
}

.gate-connector-label.is-toggle {
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(31, 39, 33, 0.12);
}

.gate-connector-label.input {
  left: 10px;
  top: calc(var(--connector-top) - 10px);
}

.gate-connector-label.output {
  right: 10px;
  top: calc(var(--connector-top) - 10px);
}

.gate-palette.is-over {
  outline: 2px dashed rgba(182, 100, 45, 0.24);
}

.gate-svg {
  width: 100%;
  height: auto;
  color: var(--ink);
}

.gate-builder-layout {
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  gap: 18px;
}

.bank-panel,
.board-card,
.truth-table-card,
.dropdown-card,
.field-card,
.diagram-card {
  padding: 18px;
}

.gate-bank {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.gate-chip {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f6f1ea);
  cursor: grab;
  user-select: none;
}

.gate-chip:active {
  cursor: grabbing;
}

.gate-chip-label strong {
  display: block;
  margin-bottom: 3px;
}

.gate-chip-label span {
  color: #5c5a53;
  font-size: 0.92rem;
}

.gate-icon {
  width: 100%;
  height: auto;
}

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

.board-card {
  display: grid;
  gap: 14px;
}

.board-card h3 {
  margin-bottom: 0;
}

.board-expression {
  color: #5a5952;
  font-weight: 700;
}

.board-surface {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

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

.gate-slot {
  min-height: 148px;
  border-radius: 20px;
  border: 2px dashed rgba(31, 39, 33, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(245, 239, 231, 0.82));
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  padding: 12px;
  color: #5d5b54;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.gate-slot.drag-over {
  border-color: var(--cool);
  background: rgba(229, 240, 245, 0.96);
  transform: translateY(-2px);
}

.gate-slot.is-filled {
  border-style: solid;
}

.gate-slot.is-correct {
  border-color: rgba(35, 102, 75, 0.42);
  background: rgba(229, 244, 238, 0.94);
}

.gate-slot.is-wrong {
  border-color: rgba(158, 56, 45, 0.4);
  background: rgba(255, 239, 236, 0.95);
}

.slot-label {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.slot-hint {
  font-size: 0.92rem;
}

.slot-chip {
  width: 100%;
  max-width: 124px;
}

.truth-table-grid,
.dropdown-grid,
.worked-example-grid,
.reflection-grid {
  display: grid;
  gap: 16px;
}

.truth-table-grid,
.worked-example-grid,
.reflection-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.truth-table-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 0.96rem;
}

.truth-table-card th,
.truth-table-card td {
  border: 1px solid rgba(31, 39, 33, 0.14);
  padding: 8px;
  text-align: center;
}

.truth-table-card th {
  background: rgba(245, 239, 231, 0.9);
}

.truth-table-card input {
  width: 100%;
  min-width: 42px;
  padding: 8px 6px;
  border-radius: 12px;
  border: 1px solid rgba(31, 39, 33, 0.15);
  text-align: center;
  font: inherit;
  background: #fff;
}

.truth-table-card input.is-correct {
  border-color: rgba(35, 102, 75, 0.42);
  background: rgba(229, 244, 238, 0.94);
}

.truth-table-card input.is-wrong {
  border-color: rgba(158, 56, 45, 0.4);
  background: rgba(255, 239, 236, 0.95);
}

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

.dropdown-card {
  display: grid;
  gap: 12px;
}

select,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(31, 39, 33, 0.16);
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

select.is-correct {
  border-color: rgba(35, 102, 75, 0.42);
  background: rgba(229, 244, 238, 0.94);
}

select.is-wrong {
  border-color: rgba(158, 56, 45, 0.4);
  background: rgba(255, 239, 236, 0.95);
}

textarea {
  resize: vertical;
  min-height: 126px;
  line-height: 1.55;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  padding-right: 42px;
}

.select-wrap::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #5d5b54;
  pointer-events: none;
}

.diagram-head {
  margin-bottom: 12px;
}

.image-surface {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(31, 39, 33, 0.12);
  background: #fff;
}

.image-surface img {
  display: block;
  width: 100%;
  height: auto;
}

.worked-example-grid--small .diagram-card {
  padding-bottom: 16px;
}

.field-card {
  display: grid;
  gap: 10px;
}

.field-card textarea {
  min-height: 164px;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.96em;
}

@media (max-width: 980px) {
  .hero,
  .gate-builder-layout,
  .gate-studio-layout,
  .dual-coding-panel,
  .truth-table-grid,
  .dropdown-grid,
  .worked-example-grid,
  .reflection-grid {
    grid-template-columns: 1fr;
  }

  .dual-link {
    display: none;
  }

  .gate-board-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hero,
  .panel {
    padding: 20px;
    border-radius: 24px;
  }

  .panel-heading {
    flex-direction: column;
  }

  .board-surface,
  .board-surface.board-surface--two {
    grid-template-columns: 1fr;
  }

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

  .button,
  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }
}
