:root {
  --purple-cyber: #c200d6;
  --red-optimistic: #d50000;
  --aqua-bright: #00b8cc;
  --blue-medium: #007acc;
  --blue-deep: #002d72;
  --human-green: #118a2d;

  --ink: var(--blue-deep);
  --bg: #f7fbff;
  --line: #b6d3ea;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  position: relative;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f9fdff 0%, #eef7ff 100%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(#d9e8f7 0.0625rem, transparent 0.0625rem),
    linear-gradient(90deg, #d9e8f7 0.0625rem, transparent 0.0625rem);
  background-size: 1.5rem 1.5rem;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 61.25rem;
  margin: 0 auto;
  padding: 1.75rem 1rem 3.5rem;
  display: grid;
  gap: 1.5rem;
}

.hero {
  border: 0.0625rem solid var(--line);
  background: #ffffff;
  padding: 1.625rem;
  animation: rise 360ms ease-out;
}

.kicker {
  margin: 0 0 0.5rem;
  font-family: "IBM Plex Mono", monospace;
  color: var(--blue-medium);
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.kicker a {
  color: inherit;
  text-decoration: none;
}

.kicker a:hover {
  text-decoration: underline;
}

h1 {
  margin: 0.25rem 0 0.75rem;
  font-size: clamp(1.4rem, 4vw, 2rem);
  line-height: 1.1;
}

.subtitle {
  margin: 0;
  color: #234b82;
}

.subtitle a {
  color: var(--blue-medium);
  text-decoration: none;
}

.subtitle a:hover {
  text-decoration: underline;
}

.disclaimer {
  border: 0.0625rem solid var(--red-optimistic);
  background: #fff1f1;
  padding: 1rem 1.25rem;
}

.disclaimer-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.25rem 1rem;
  cursor: pointer;
  list-style: none;
}

.disclaimer-summary::-webkit-details-marker {
  display: none;
}

.disclaimer-summary::marker {
  content: "";
}

.disclaimer-title {
  margin: 0 0 0.25rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red-optimistic);
}

.disclaimer-preview {
  color: #6b2d1f;
  line-height: 1.45;
  max-width: 74ch;
}

.disclaimer-toggle {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red-optimistic);
}

.disclaimer-toggle::before {
  content: "Show more +";
}

.disclaimer[open] .disclaimer-toggle::before {
  content: "Show less -";
}

.disclaimer-text {
  margin: 0.75rem 0 0;
  color: #6b2d1f;
  line-height: 1.45;
  max-width: 74ch;
}

.panel {
  border: 0.0625rem solid var(--line);
  background: #ffffff;
  padding: 1.5rem;
  animation: rise 420ms ease-out;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

textarea,
input,
select,
button {
  border: 0.0625rem solid var(--line);
  border-radius: 0;
  font-family: inherit;
  font-size: 0.9375rem;
}

textarea,
input,
select {
  width: 100%;
  padding: 0.5rem;
  color: var(--ink);
  background: #fcfeff;
}

textarea:focus,
input:focus,
select:focus,
button:focus,
.tell:focus {
  outline: 0.125rem solid var(--aqua-bright);
  outline-offset: 0.0625rem;
}

.row {
  margin-top: 0.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto;
}

.sample-btn-row {
  margin: 0.15rem 0 0.5rem;
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.sample-btn {
  padding: 0.2rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 500;
  background: #f2f8ff;
  color: var(--ink);
  border: 0.0625rem solid var(--line);
}

.sample-btn:hover {
  background: var(--blue-medium);
  color: white;
}

.sample-desc {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  font-style: italic;
  color: #3e628a;
  min-height: 1.1em;
}

button {
  padding: 0.5rem 1rem;
  font-weight: 600;
  background: var(--blue-medium);
  color: white;
  cursor: pointer;
  transition: background-color 180ms ease;
}

button:hover {
  background: var(--purple-cyber);
}

button:disabled {
  background: #98b2cc;
  cursor: wait;
}

#status {
  min-height: 1.2em;
  margin: 0.5rem 0 0;
  color: #1f5b90;
}

.progress-wrap {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
}

.engine-row {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.engine-dot {
  width: 0.625rem;
  height: 0.625rem;
  border: 0.0625rem solid var(--line);
  display: inline-block;
}

.engine-red {
  background: var(--red-optimistic);
}

.engine-green {
  background: var(--human-green);
}

.progress-track {
  height: 0.75rem;
  border: 0.0625rem solid var(--line);
  background: #f2f8ff;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--blue-medium);
  transition: width 180ms linear;
}

.progress-text {
  margin: 0;
  min-width: 2.625rem;
  text-align: right;
  font-size: 0.75rem;
}

.result-foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.625rem;
  margin-top: 0.75rem;
}

.metric {
  border: 0.0625rem solid var(--line);
  background: #fbfeff;
  padding: 0.875rem;
}

.metric-combined {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}

.metric-sensitive {
  position: relative;
  transition: border-color 260ms ease, background 260ms ease;
}

.metric-sensitive[data-verdict="Human"]:hover,
.metric-sensitive[data-verdict="Human"]:focus,
.metric-sensitive[data-verdict="Human"]:focus-within {
  border-color: var(--human-green);
  background: #f0faf2;
}

.metric-sensitive[data-verdict="AI"]:hover,
.metric-sensitive[data-verdict="AI"]:focus,
.metric-sensitive[data-verdict="AI"]:focus-within {
  border-color: var(--red-optimistic);
  background: #fff5f5;
}

.metric-sensitive::after {
  content: "Hover to reveal";
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3f6c9c;
  opacity: 0.9;
  transition: opacity 220ms ease;
}

.metric-sensitive .metric-value {
  filter: blur(0.35rem);
  opacity: 0.8;
  transition: filter 260ms ease, opacity 260ms ease, transform 260ms ease;
  transform: translateY(0.08rem) scale(0.98);
  pointer-events: none;
  user-select: none;
}

.metric-sensitive:hover .metric-value,
.metric-sensitive:focus .metric-value,
.metric-sensitive:focus-within .metric-value {
  filter: blur(0);
  opacity: 1;
  transform: translateY(0) scale(1);
}

.metric-sensitive:hover::after,
.metric-sensitive:focus::after,
.metric-sensitive:focus-within::after {
  opacity: 0;
}

.label {
  margin: 0;
  font-size: 0.75rem;
  color: #2f6398;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mono {
  margin: 0.125rem 0 0;
  font-family: "IBM Plex Mono", monospace;
}

.small {
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

.outer-comment {
  margin: 0.75rem 0 0;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid var(--line);
  background: #f4f8fc;
  border-radius: 0;
}

.outer-comment-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #3f6c9c;
}

.outer-comment-body {
  margin: 0;
  line-height: 1.5;
  color: var(--ink);
  font-size: 0.875rem;
}

.annotated {
  border: 0;
  background: transparent;
  padding: 0.75rem;
  min-height: 6.25rem;
  line-height: 1.55;
  white-space: pre-wrap;
}

.annotated.typing {
  color: #7a99bb;
}

.analysis-error {
  border: 0.0625rem solid var(--red-optimistic);
  background: #fff1f1;
  padding: 0.75rem 1rem;
}

.analysis-error-title {
  margin: 0 0 0.25rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red-optimistic);
}

.analysis-error-detail {
  margin: 0;
  color: #6b2d1f;
  font-size: 0.875rem;
  line-height: 1.45;
}

.alt-page {
  --alt-paper: #fffaf0;
  --alt-ink: #123b57;
  --alt-amber: #f2a900;
  --alt-blue: #006d9c;
  --alt-soft: #f6f0de;
  background:
    radial-gradient(circle at 8% 8%, rgba(242, 169, 0, 0.16), transparent 24rem),
    linear-gradient(180deg, #fbf7eb 0%, #eef7ff 100%);
}

.alt-page .hero,
.alt-page .panel {
  box-shadow: 0.35rem 0.35rem 0 rgba(0, 45, 114, 0.08);
}

.alt-hero {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(238, 247, 255, 0.98)),
    repeating-linear-gradient(90deg, transparent 0 1.25rem, rgba(0, 122, 204, 0.06) 1.25rem 1.32rem);
}

.alt-result-intro {
  border-bottom: 0.0625rem solid var(--line);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.alt-lines {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  white-space: normal;
}

.alt-line-card {
  border: 0.0625rem solid #c7d8e8;
  background: #fbfdff;
  padding: 0.65rem 0.75rem;
  display: grid;
  gap: 0.4rem;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease,
    background-color 160ms ease;
}

.alt-line-card:hover,
.alt-line-card:focus {
  transform: translateY(-0.06rem);
  box-shadow: 0.22rem 0.22rem 0 rgba(0, 122, 204, 0.12);
}

.alt-line-selected {
  border-width: 0.125rem;
  background: var(--alt-paper);
}

.alt-line-selected[data-score-sign="pos"] {
  border-color: rgba(213, 0, 0, var(--tell-fill, 1));
  background: rgba(255, 241, 236, var(--tell-fill, 1));
}

.alt-line-selected[data-score-sign="neg"] {
  border-color: rgba(17, 138, 45, var(--tell-fill, 1));
  background: rgba(240, 251, 242, var(--tell-fill, 1));
}

.alt-line-selected[data-score-sign="neu"] {
  border-color: rgba(0, 184, 204, var(--tell-fill, 1));
  background: rgba(238, 252, 255, var(--tell-fill, 1));
}

.alt-line-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.alt-line-no {
  min-width: 2.3rem;
  color: var(--alt-blue);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.alt-line-badge {
  margin: 0;
  color: #335f86;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.alt-line-text {
  margin: 0;
  line-height: 1.5;
  color: var(--alt-ink);
}

.alt-line-why {
  margin: 0;
  border-left: 0.18rem solid currentColor;
  padding-left: 0.6rem;
  color: #274f75;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.45;
}

.alt-line-fb {
  border-top: 0.0625rem solid rgba(0, 45, 114, 0.14);
  margin-top: 0.1rem;
  padding-top: 0.35rem;
}

.tell {
  position: relative;
  display: inline;
  white-space: normal;
  line-height: inherit;
  color: var(--blue-deep);
  border: 0.0625rem solid transparent;
  padding: 0;
  box-decoration-break: clone;
}

.tell[data-score-sign="pos"] {
  border-color: rgba(213, 0, 0, var(--tell-fill, 1));
  background: rgba(255, 229, 229, var(--tell-fill, 1));
}

.tell[data-score-sign="neg"] {
  border-color: rgba(17, 138, 45, var(--tell-fill, 1));
  background: rgba(232, 247, 236, var(--tell-fill, 1));
}

.tell[data-score-sign="neu"] {
  border-color: rgba(0, 184, 204, var(--tell-fill, 1));
  background: rgba(232, 249, 251, var(--tell-fill, 1));
}

.tell .tell {
  position: relative;
  z-index: 1;
  border-style: dashed;
  background: rgba(238, 251, 248, var(--tell-fill, 1));
  box-shadow: 0 0 0 0.05rem rgba(0, 184, 204, var(--tell-fill, 1));
}

.tell-body {
  display: inline;
  line-height: inherit;
}

.tell-tip {
  position: absolute;
  left: 0;
  bottom: 100%;
  min-width: 13.75rem;
  max-width: 20rem;
  border: 0.0625rem solid var(--line);
  background: #ffffff;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
  padding: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.2rem);
  transition: transform 140ms ease, opacity 140ms ease;
  z-index: 10;
}

.tell-tip-text {
  display: block;
  margin-bottom: 0.375rem;
}

.tell-tip-fb {
  display: flex;
  gap: 0.25rem;
  border-top: 0.0625rem solid var(--line);
  padding-top: 0.3125rem;
  margin-top: 0.125rem;
}

.tell-fb-btn {
  font-size: 0.75rem;
  line-height: 1.1;
  padding: 0.25rem 0.45rem;
  font-weight: 400;
  background: #f2f8ff;
  color: var(--ink);
  border: 0.0625rem solid var(--line);
  cursor: pointer;
  font-family: "IBM Plex Mono", monospace;
  white-space: nowrap;
}

.tell-fb-btn i {
  font-size: 0.75rem;
  line-height: 1;
  display: inline-block;
}

.tell-fb-btn:hover {
  background: var(--blue-medium);
  color: white;
}

.tell-fb-btn.tell-fb-selected[data-rating="1"] {
  background: #e8f7ec;
  border-color: var(--human-green);
  color: var(--human-green);
}

.tell-fb-btn.tell-fb-selected[data-rating="-1"] {
  background: #ffe5e5;
  border-color: var(--red-optimistic);
  color: var(--red-optimistic);
}

.tell:hover .tell-tip,
.tell:focus .tell-tip,
.tell:focus-within .tell-tip,
.tell.tell-hint-active .tell-tip {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.tell[data-score-sign="pos"] .tell-tip {
  background: #ffe5e5;
  border-color: var(--red-optimistic);
}

.tell[data-score-sign="neg"] .tell-tip {
  background: #e8f7ec;
  border-color: var(--human-green);
}

.tell[data-score-sign="neu"] .tell-tip {
  background: #e8f9fb;
  border-color: var(--aqua-bright);
}

.feedback-panel h3 {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
}

.fb-verdict-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.fb-btn {
  padding: 0.375rem 0.75rem;
  font-weight: 500;
  background: #f2f8ff;
  color: var(--ink);
  border: 0.0625rem solid var(--line);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9375rem;
  transition: background-color 180ms ease;
}

.fb-icon {
  font-size: 0.875rem;
  margin-right: 0.35rem;
  vertical-align: -0.05em;
}

.fb-btn:hover {
  background: var(--blue-medium);
  color: white;
}

.fb-btn.fb-selected {
  background: var(--blue-medium);
  color: white;
  border-color: var(--blue-medium);
}

.fb-label-row {
  margin-bottom: 0.75rem;
}

.fb-label-row .label {
  margin-bottom: 0.375rem;
}

.fb-label-btns {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.fb-hint {
  font-size: 0.8125rem;
  color: #2f6398;
  margin: 0 0 0.75rem;
}

.fb-status {
  min-height: 1.2em;
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #1f5b90;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0.125rem 0;
  color: #234b82;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.75rem;
}

.footer a {
  color: var(--blue-medium);
  text-decoration: none;
}

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

.privacy-inline {
  margin: 0.5rem 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #2a4a6e;
}

.privacy-doc .privacy-lead {
  margin: 0.35rem 0 0.75rem;
  line-height: 1.5;
}

.privacy-doc-single h2 {
  margin: 1.35rem 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0f2744;
}

.privacy-doc-single h2:first-of-type {
  margin-top: 0;
}

.privacy-doc-single ul {
  margin: 0.35rem 0 0.75rem;
  padding-left: 1.25rem;
}

.privacy-doc-single p {
  margin: 0 0 0.65rem;
}

.quota-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  /* hidden by default; JS will set `style.display` to "grid" when opening */
  display: none;
  place-items: center;
  padding: 1rem;
}

.quota-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 45, 114, 0.2);
  z-index: 0;
}

.quota-modal-card {
  position: relative;
  z-index: 1;
  max-width: 34rem;
  width: min(100%, 34rem);
  border: 0.0625rem solid var(--line);
  box-shadow: 0 0.5rem 1.6rem rgba(0, 45, 114, 0.15);
}

.quota-modal-card h3 {
  margin: 0 0 0.6rem;
}

.quota-modal-text {
  margin: 0 0 0.75rem;
  color: #234b82;
  line-height: 1.45;
}

.quota-modal-actions {
  margin-top: 0.6rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.sdt-heading {
  margin: 0 0 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.sdt-intro {
  margin: 1rem 0 0;
  color: #234b82;
}

.sdt-cols {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 1.5rem;
  align-items: start;
}

.sdt-divider {
  width: 0.0625rem;
  background: var(--line);
  align-self: stretch;
}

.sdt-col-kicker {
  margin: 0 0 0.875rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
}

.sdt-kicker-show {
  color: var(--human-green);
}

.sdt-kicker-tell {
  color: #7a8fa8;
}

.sdt-text-box {
  border: 0.0625rem solid var(--line);
  background: #fcfeff;
  padding: 0.875rem 1rem;
  line-height: 1.55;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}


.sdt-explanation {
  padding: 0.75rem 1rem;
  border: 0.0625rem solid #f0bcbc;
  background: #fff5f5;
  border-left: 0.22rem solid var(--red-optimistic);
}

.sdt-expl-meta {
  margin: 0 0 0.25rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #8c3030;
}

.sdt-expl-text {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink);
}

.sdt-score-only {
  border: 0.0625rem solid var(--line);
  background: #fcfeff;
  padding: 1.5rem 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.2rem;
  min-height: 8.5rem;
}

.sdt-score-value {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #b04040;
}

.sdt-score-label-big {
  margin: 0 0 0.5rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c3030;
}

.sdt-score-empty {
  margin: 0;
  font-size: 0.78rem;
  color: #aab8c6;
  font-style: italic;
}

.sdt-lead {
  margin: 0.5rem 0 1.25rem;
  font-size: 1.0625rem;
  color: #234b82;
}

.sdt-input-doc {
  border: 0.0625rem solid var(--line);
  background: #f7fbff;
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
}

.sdt-input-doc-label {
  margin: 0 0 0.375rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #3f6c9c;
}

.sdt-input-doc-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink);
}

.sdt-caption-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 1.5rem;
  margin-top: 0.375rem;
}

.sdt-caption {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  color: #7a8fa8;
  letter-spacing: 0.03em;
}

.sdt-caption:last-child {
  text-align: right;
}

.sdt-caption-inset {
  display: block;
  margin: 0.75rem 0 0;
  padding-top: 0.5rem;
  border-top: 0.0625rem solid var(--line);
  text-align: center;
  letter-spacing: 0.04em;
}

.sdt-text-box .sdt-caption-inset {
  margin: 0.75rem -1rem -0.875rem;
  padding: 0.5rem 1rem;
}

.sdt-score-only .sdt-caption-inset {
  align-self: stretch;
  margin: auto -0.75rem -1.5rem;
  padding: 0.5rem 0.75rem;
}

@keyframes rise {
  from {
    transform: translateY(0.375rem);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 47.5rem) {
  .sdt-cols {
    grid-template-columns: 1fr;
    gap: 1rem 0;
  }

  .sdt-divider {
    display: none;
  }

  .sdt-caption-row {
    grid-template-columns: 1fr;
    gap: 0.25rem 0;
  }

  .sdt-caption:last-child {
    text-align: left;
  }

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

  .result-foot {
    grid-template-columns: 1fr;
  }

  .tell-tip {
    min-width: 11.25rem;
    max-width: 16.25rem;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
