/* OwnedBy F10 Design System */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #fafaf9;
  --bg-ink: #1c1917;
  --bg-blue: #eef2f7;
  --accent: #4a6fa5;
  --accent-dark: #355984;
  --accent-soft: #dfe8f3;
  --bronze: #8a5a2b;
  --bronze-soft: #ead8bf;
  --warm-paper: #fbf7ef;
  --text-dark: #1c1917;
  --text-muted: #6b7280;
  --text-soft: #9ca3af;
  --border: #e5e7eb;
  --border-strong: #cbd5e1;
  --success: #16834a;
  --warning: #b76710;
  --danger: #bd2b2b;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 8px;
  --shadow: 0 20px 60px rgba(28, 25, 23, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background:
    linear-gradient(90deg, rgba(74, 111, 165, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(74, 111, 165, 0.035) 1px, transparent 1px),
    var(--bg-primary);
  background-size: 64px 64px;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
}

.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

.nav__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 700;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.btn {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

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

.btn--primary {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  width: 100%;
}

.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.btn--primary:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  transform: none;
}

.btn--outline {
  background: #ffffff;
  color: var(--accent);
  border-color: var(--accent);
}

.btn--outline:hover {
  background: var(--bg-blue);
}

.btn--ghost {
  color: var(--text-dark);
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.72);
}

.btn--hero {
  width: auto;
  min-width: 150px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 66px;
  border-bottom: 1px solid var(--border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(238, 242, 247, 0.95) 0%, rgba(250, 250, 249, 0.72) 48%, rgba(255, 255, 255, 0.2) 100%),
    radial-gradient(circle at 80% 18%, rgba(74, 111, 165, 0.16), transparent 34%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero__headline {
  max-width: 660px;
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero__subhead {
  max-width: 600px;
  margin-top: 24px;
  color: #4b5563;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-visual {
  min-height: 430px;
  position: relative;
}

.registry-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(74, 111, 165, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  z-index: 3;
  margin-top: 74px;
}

.registry-panel::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(74, 111, 165, 0.13);
  pointer-events: none;
}

.registry-panel__top,
.registry-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.registry-panel__top {
  margin-bottom: 24px;
}

.registry-panel__label {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
}

.registry-panel__status {
  color: var(--success);
  background: #ecfdf3;
  border: 1px solid #b9e7c9;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-meter {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: #edf2f7;
  margin-bottom: 28px;
}

.trust-meter span {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #88a6c9);
}

.registry-row {
  border-top: 1px solid var(--border);
  padding: 16px 0;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.registry-row strong {
  color: var(--text-dark);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.registry-panel__note {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.84rem;
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(28, 25, 23, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(28, 25, 23, 0.08);
  backdrop-filter: blur(14px);
  z-index: 1;
}

.visual-card--portrait {
  width: 142px;
  height: 150px;
  top: 0;
  left: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(74, 111, 165, 0.1), rgba(251, 247, 239, 0.84)),
    var(--warm-paper);
}

.portrait-sun {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(138, 90, 43, 0.16);
  position: absolute;
  right: 16px;
  top: 18px;
}

.portrait-profile {
  width: 54px;
  height: 66px;
  border-radius: 46% 46% 42% 42%;
  background: #2b211a;
  position: absolute;
  left: 44px;
  top: 32px;
  box-shadow: 14px 6px 0 rgba(138, 90, 43, 0.34);
}

.portrait-shoulders {
  width: 118px;
  height: 68px;
  border-radius: 70px 70px 0 0;
  background: var(--accent);
  position: absolute;
  left: 12px;
  bottom: -18px;
}

.visual-card--storefront {
  width: 174px;
  height: 126px;
  right: 4px;
  top: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.storefront-awning {
  display: block;
  height: 28px;
  border: 1px solid rgba(74, 111, 165, 0.35);
  background: repeating-linear-gradient(
    90deg,
    rgba(74, 111, 165, 0.18) 0 18px,
    rgba(255, 255, 255, 0.72) 18px 36px
  );
}

.storefront-window,
.storefront-door {
  position: absolute;
  bottom: 18px;
  border: 1px solid rgba(28, 25, 23, 0.18);
  background: rgba(238, 242, 247, 0.78);
}

.storefront-window {
  width: 62px;
  height: 42px;
  left: 18px;
}

.storefront-door {
  width: 38px;
  height: 56px;
  right: 24px;
  background: rgba(138, 90, 43, 0.18);
}

.storefront-line {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  border-bottom: 2px solid rgba(28, 25, 23, 0.16);
}

.visual-card--receipt {
  width: 188px;
  min-height: 128px;
  right: 38px;
  bottom: 0;
  padding: 18px;
  background: var(--warm-paper);
  z-index: 4;
}

.visual-card--receipt span {
  display: block;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.visual-card--receipt strong {
  display: block;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1.16rem;
  line-height: 1.05;
  margin-bottom: 16px;
}

.visual-card--receipt i {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(138, 90, 43, 0.2);
  margin-top: 8px;
}

.visual-card--receipt i:nth-of-type(1) {
  width: 100%;
}

.visual-card--receipt i:nth-of-type(2) {
  width: 74%;
}

.visual-card--receipt i:nth-of-type(3) {
  width: 48%;
}

.tools {
  padding: 78px 0 88px;
  background: var(--bg-primary);
}

.section-kicker {
  max-width: 720px;
  margin-bottom: 34px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  font-weight: 700;
  line-height: 0.98;
  color: var(--text-dark);
  letter-spacing: 0;
}

.tools__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--border-strong);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.card {
  min-height: 420px;
  padding: 34px;
  background: #ffffff;
}

.card + .card {
  border-left: 1px solid var(--border-strong);
}

.card__header {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 28px;
}

.card__number {
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 800;
}

.card__label {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1;
}

.card__description {
  max-width: 360px;
  margin-top: 9px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card__form {
  display: grid;
  gap: 12px;
}

.input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #fbfcfd;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.96rem;
  outline: none;
  padding: 14px 15px;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.input:focus {
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(74, 111, 165, 0.12);
}

.input::placeholder {
  color: var(--text-soft);
}

.card__result {
  margin-top: 22px;
}

.result-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.result-loading__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  flex-shrink: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.result-box {
  border: 1px solid var(--border-strong);
  border-left-width: 5px;
  border-radius: var(--radius);
  padding: 18px 18px 16px;
  background: #ffffff;
}

.result-box--success {
  border-left-color: var(--success);
  background: #f6fff9;
}

.result-box--warning {
  border-left-color: var(--warning);
  background: #fffbeb;
}

.result-box--danger {
  border-left-color: var(--danger);
  background: #fff5f5;
}

.result-badge {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.35;
}

.result-badge--success {
  color: var(--success);
}

.result-badge--warning {
  color: var(--warning);
}

.result-badge--danger {
  color: var(--danger);
}

.result-badge__icon {
  flex-shrink: 0;
}

.result-score {
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.result-confidence {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
  margin-bottom: 12px;
}

.result-match {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.result-section {
  border-top: 1px solid rgba(203, 213, 225, 0.75);
  padding-top: 12px;
  margin-top: 12px;
}

.result-section__title {
  display: block;
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.result-evidence {
  display: grid;
  gap: 6px;
  list-style: none;
}

.result-evidence li {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.38;
  padding-left: 16px;
  position: relative;
}

.result-evidence li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.42;
  position: absolute;
  left: 0;
  top: 0.58em;
}

.result-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.source-badge {
  border: 1px solid #c7d8ef;
  border-radius: 999px;
  background: var(--bg-blue);
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 800;
  padding: 4px 9px;
}

.demo-label {
  display: block;
  margin-top: 11px;
  color: var(--text-muted);
  font-size: 0.76rem;
}

.result-checked {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 12px;
}

.result-error {
  border: 1px solid #fecaca;
  border-left: 5px solid var(--danger);
  border-radius: var(--radius);
  background: #fff5f5;
  color: var(--danger);
  padding: 14px 16px;
  font-size: 0.9rem;
}

.how-it-works {
  padding: 82px 0;
  background: linear-gradient(180deg, var(--bg-secondary), #ffffff);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border-strong);
  border: 1px solid var(--border-strong);
}

.step {
  background: rgba(255, 255, 255, 0.92);
  padding: 26px 24px 30px;
}

.step__number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: var(--bg-ink);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.86rem;
  margin-bottom: 22px;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 10px;
}

.step__text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.62;
}

.community {
  padding: 78px 0;
  background: #ffffff;
}

.community__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 52px;
  align-items: center;
}

.community__body {
  border-left: 4px solid var(--accent);
  padding-left: 26px;
}

.community__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.submit-section {
  padding: 82px 0;
  background: var(--warm-paper);
  border-top: 1px solid var(--border);
}

.directory-section {
  padding: 82px 0;
  background: #ffffff;
  border-top: 1px solid var(--border);
}

.directory-section--primary {
  background: linear-gradient(180deg, #ffffff, var(--bg-secondary));
}

.directory-search {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 160px 230px 120px;
  gap: 12px;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 12px 34px rgba(28, 25, 23, 0.05);
}

.btn--directory {
  height: 52px;
}

.directory-meta {
  color: var(--text-muted);
  font-size: 0.84rem;
  margin: 18px 0 14px;
}

.directory-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.directory-quick button {
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 11px;
}

.directory-quick button:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--bg-blue);
}

.directory-results {
  display: grid;
  gap: 10px;
}

.directory-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
}

.directory-card--certified {
  border-left-color: var(--success);
}

.directory-card--directory {
  border-left-color: var(--warning);
}

.directory-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-dark);
}

.directory-details {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 7px;
}

.directory-source-date {
  color: var(--text-soft);
  font-size: 0.78rem;
  margin-top: 7px;
}

.directory-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.directory-score,
.directory-status {
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 9px;
}

.directory-score {
  color: var(--accent);
  background: var(--bg-blue);
  border: 1px solid #c7d8ef;
}

.directory-status {
  color: var(--text-dark);
  background: var(--warm-paper);
  border: 1px solid var(--bronze-soft);
}

.directory-action {
  border-radius: 999px;
  color: #ffffff;
  background: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 6px 10px;
}

.directory-action:hover {
  background: var(--accent-dark);
}

.directory-empty {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-secondary);
  color: var(--text-muted);
  padding: 24px;
}

.submit-intro {
  max-width: 640px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.72;
  margin-bottom: 40px;
}

.submit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin-bottom: 28px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field__label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.field__required {
  color: var(--danger);
  margin-left: 2px;
}

.field__hint {
  color: var(--text-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.submit-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn--submit {
  width: auto;
  min-width: 200px;
}

.submit-note {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 400px;
}

@media (max-width: 640px) {
  .directory-search,
  .submit-grid {
    grid-template-columns: 1fr;
  }

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

  .directory-badges {
    justify-content: flex-start;
  }

  .field--full {
    grid-column: 1;
  }

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

  .btn--submit {
    width: 100%;
  }
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: #f7f9fc;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}

.footer__tagline {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-size: 1.15rem;
  font-weight: 700;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__nav a {
  color: var(--text-muted);
  font-size: 0.86rem;
  text-decoration: none;
}

.footer__nav a:hover {
  color: var(--accent);
}

.footer__legal {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

@media (max-width: 840px) {
  .hero {
    padding: 56px 0;
  }

  .hero__grid,
  .community__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-visual {
    max-width: 520px;
    min-height: 408px;
  }

  .registry-panel {
    margin-top: 68px;
  }

  .tools__grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .card + .card {
    border-left: 0;
    border-top: 1px solid var(--border-strong);
  }
}

@media (max-width: 560px) {
  .container,
  .nav__inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav__actions {
    gap: 10px;
  }

  .nav__link {
    display: none;
  }

  .nav__logo {
    font-size: 1.32rem;
  }

  .nav__mark {
    width: 34px;
    height: 34px;
  }

  .hero__headline {
    font-size: clamp(3rem, 18vw, 4.3rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn--hero,
  .btn--ghost {
    width: 100%;
  }

  .registry-panel,
  .card,
  .step {
    padding: 22px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .visual-card--portrait {
    width: 112px;
    height: 120px;
    left: 0;
  }

  .visual-card--storefront {
    width: 138px;
    height: 102px;
    right: 0;
  }

  .visual-card--receipt {
    width: 158px;
    right: 10px;
  }

  .registry-panel {
    margin-top: 58px;
  }

  .card__header {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .card__number {
    height: 44px;
  }

  .community__body {
    padding-left: 18px;
  }
}
