:root {
  --ink: #071426;
  --ink-soft: #12233c;
  --blue: #2157e6;
  --blue-deep: #143cae;
  --blue-pale: #eef3ff;
  --cyan: #52d6d3;
  --paper: #ffffff;
  --surface: #f5f7fb;
  --line: #dce3ee;
  --text: #12223a;
  --muted: #61708a;
  --success: #0f8a64;
  --success-pale: #e7f8f1;
  --danger: #b42332;
  --danger-pale: #fff0f1;
  --warning: #aa6510;
  --warning-pale: #fff6e8;
  --shadow: 0 24px 70px rgba(5, 20, 46, 0.16);
  --shadow-soft: 0 14px 42px rgba(5, 20, 46, 0.09);
  --radius: 24px;
  --radius-small: 15px;
  --shell: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 20, 38, 0.94);
  color: var(--paper);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-size: 20px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.brand-copy span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--paper);
}

.language-switch {
  display: inline-flex;
  justify-self: end;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.language-option {
  min-width: 45px;
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.language-option.is-active {
  background: var(--paper);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  padding: 94px 0 88px;
  background:
    linear-gradient(112deg, rgba(7, 20, 38, 0.98) 0%, rgba(9, 29, 61, 0.97) 55%, rgba(18, 49, 103, 0.95) 100%),
    var(--ink);
  color: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(to bottom, black 10%, transparent 92%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero-glow-one {
  top: -260px;
  right: -120px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(33, 87, 230, 0.36), transparent 68%);
}

.hero-glow-two {
  bottom: -260px;
  left: 32%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(82, 214, 211, 0.13), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.82fr);
  align-items: center;
  gap: 78px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: #89a9ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 70px);
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 51px;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  background: linear-gradient(135deg, #356bf5, #1d4ed8);
  color: var(--paper);
  box-shadow: 0 12px 28px rgba(19, 73, 213, 0.32);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(19, 73, 213, 0.42);
}

.button-primary:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-quiet {
  border-color: rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.07);
  color: var(--paper);
}

.button-light {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.official-note {
  display: flex;
  align-items: flex-start;
  max-width: 590px;
  gap: 12px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.official-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.official-note strong {
  color: var(--paper);
}

.official-mark {
  display: grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(82, 214, 211, 0.55);
  border-radius: 50%;
  background: rgba(82, 214, 211, 0.12);
  color: #72eeea;
  font-size: 12px;
  font-weight: 900;
}

.verify-card {
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  color: var(--text);
  box-shadow: var(--shadow);
}

.verify-card::after {
  position: absolute;
  inset: 9px;
  z-index: -1;
  border: 1px solid rgba(33, 87, 230, 0.12);
  border-radius: 18px;
  content: "";
}

.verify-heading {
  display: flex;
  align-items: center;
  gap: 15px;
}

.verify-icon {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.verify-heading .section-kicker {
  margin-bottom: 2px;
  color: var(--blue);
}

.verify-heading h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.verify-intro {
  margin: 20px 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.verify-form {
  display: grid;
  gap: 9px;
}

.verify-form label {
  margin-top: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.verify-form input {
  width: 100%;
  min-height: 53px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  background: #fbfcfe;
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.035em;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.verify-form input::placeholder {
  color: #9aa5b5;
  font-weight: 500;
}

.verify-form input:focus {
  border-color: var(--blue);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(33, 87, 230, 0.11);
}

.verify-form input[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 4px rgba(180, 35, 50, 0.08);
}

.verify-submit {
  width: 100%;
  margin-top: 13px;
}

.button-arrow {
  font-size: 18px;
}

.form-hint {
  margin: 14px 0 0;
  color: #8190a6;
  font-size: 11px;
  line-height: 1.45;
}

.verification-result {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.verification-result.is-loading {
  border-color: #cdd9f8;
  background: var(--blue-pale);
}

.verification-result.is-success {
  border-color: #b7e6d6;
  background: var(--success-pale);
}

.verification-result.is-error {
  border-color: #f0c7cc;
  background: var(--danger-pale);
}

.result-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.result-heading span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  font-weight: 900;
}

.result-heading strong {
  font-size: 16px;
}

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

.result-details {
  display: grid;
  gap: 0;
  margin: 14px 0 0;
}

.result-details div {
  display: grid;
  grid-template-columns: minmax(115px, 0.75fr) minmax(0, 1.25fr);
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid rgba(15, 138, 100, 0.15);
}

.result-details dt {
  color: var(--muted);
  font-size: 12px;
}

.result-details dd {
  margin: 0;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
  text-align: right;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.trust-grid > div {
  display: flex;
  flex-direction: column;
  min-height: 112px;
  justify-content: center;
  padding: 24px 34px;
  border-left: 1px solid var(--line);
}

.trust-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.trust-grid strong {
  color: var(--ink);
  font-size: 14px;
}

.trust-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 104px 0;
}

.section-heading h2,
.security h2,
.final-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.2vw, 52px);
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.section-heading > p:not(.section-kicker),
.split-heading > p {
  color: var(--muted);
  line-height: 1.7;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  margin: 0;
}

.services {
  background: var(--surface);
}

.services .section-kicker,
.process-section .section-kicker,
.rules .section-kicker,
.final-cta .section-kicker {
  color: var(--blue);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 29px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(9, 26, 52, 0.035);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  content: "";
  opacity: 0;
  transition: opacity 180ms ease;
}

.service-card:hover {
  border-color: #c8d6f4;
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-index {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin: 24px 0 14px;
  color: var(--ink);
  font-size: 21px;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.service-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 19px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.process-grid .section-heading p:last-child {
  margin: 24px 0 0;
}

.process-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  padding-top: 0;
}

.process-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.process-list strong {
  color: var(--ink);
  font-size: 17px;
}

.process-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.security {
  padding-top: 20px;
  background: var(--paper);
}

.security-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 52px;
  padding: 64px;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(60, 108, 235, 0.36), transparent 30%),
    linear-gradient(140deg, #071426 0%, #0c2345 100%);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.security-card::after {
  position: absolute;
  right: -160px;
  bottom: -240px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.security-symbol {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.08);
  color: #8cadff;
  font-size: 54px;
  font-weight: 250;
}

.security-copy {
  position: relative;
  z-index: 1;
}

.security .section-kicker {
  color: #8cadff;
}

.security h2 {
  color: var(--paper);
}

.security-lead {
  max-width: 770px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.81);
  font-size: 18px;
  line-height: 1.62;
}

.security ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.security li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.security li::before {
  position: absolute;
  top: 0.69em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.rules {
  background: var(--paper);
}

.rules-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 100px;
}

.rules .section-heading p:last-child {
  margin: 24px 0 0;
}

.rule-links {
  display: grid;
  gap: 14px;
}

.rule-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 95px;
  gap: 18px;
  padding: 19px 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.rule-card:hover {
  border-color: #bdcced;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.rule-language {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 13px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.rule-card > span:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.rule-card strong {
  color: var(--ink);
  font-size: 15px;
}

.rule-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.rule-card > span:last-child {
  color: var(--blue);
  font-size: 18px;
}

.final-cta {
  padding: 64px 0;
  background: var(--surface);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.final-cta h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.final-cta p:last-child {
  max-width: 680px;
  margin: 15px 0 0;
  color: var(--muted);
}

.final-cta .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 54px 0 26px;
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(250px, 1fr) auto;
  align-items: center;
  gap: 46px;
}

.footer-brand .brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
}

.footer-grid > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 750;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

:focus-visible {
  outline: 3px solid #85a7ff;
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(41px, 5vw, 57px);
  }

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

  .process-grid,
  .rules-grid {
    gap: 56px;
  }

  .security-card {
    grid-template-columns: 90px 1fr;
    gap: 32px;
    padding: 48px;
  }

  .security-symbol {
    width: 82px;
    height: 82px;
    border-radius: 24px;
    font-size: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .footer-grid > p {
    display: none;
  }
}

@media (max-width: 820px) {
  .hero {
    padding: 52px 0 72px;
  }

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

  .verify-card {
    grid-row: 1;
  }

  .hero-copy {
    grid-row: 2;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .trust-grid > div,
  .trust-grid > div:last-child {
    min-height: auto;
    padding: 15px 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .split-heading,
  .process-grid,
  .rules-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .split-heading {
    align-items: start;
  }

  .section {
    padding: 78px 0;
  }

  .security {
    padding-top: 0;
  }

  .security-card {
    grid-template-columns: 1fr;
  }

  .security-symbol {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    font-size: 32px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  html {
    scroll-padding-top: 76px;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy span {
    display: none;
  }

  .language-switch {
    padding: 3px;
  }

  .language-option {
    min-width: 39px;
    min-height: 34px;
  }

  .hero {
    min-height: 0;
    padding: 28px 0 62px;
  }

  .hero-grid {
    gap: 54px;
  }

  .hero h1 {
    font-size: 41px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .verify-card {
    padding: 23px;
    border-radius: 20px;
  }

  .verify-heading h2 {
    font-size: 24px;
  }

  .verify-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .service-card {
    min-height: 275px;
    padding: 25px;
  }

  .security-card {
    gap: 24px;
    padding: 34px 24px;
    border-radius: 22px;
  }

  .security-lead {
    font-size: 16px;
  }

  .rule-card {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 14px;
    padding: 16px;
  }

  .rule-language {
    width: 44px;
    height: 44px;
  }

  .final-cta-inner,
  .footer-grid,
  .footer-bottom {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .final-cta .button {
    width: 100%;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .result-details div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .result-details dd {
    text-align: left;
  }
}

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