.product-home {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-width: 0;
  color: var(--text-primary);
  background: transparent;
}

.product-home__inner {
  width: min(calc(100% - (var(--public-content-gutter) * 2)), var(--public-content-max-w));
  margin: 0 auto;
  padding: 76px 0 72px;
}

.product-home__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: center;
  gap: clamp(42px, 5vw, 72px);
  margin-bottom: 64px;
}

.product-home__hero-copy {
  min-width: 0;
}

.product-home__eyebrow,
.product-home__resume-label {
  margin: 0;
  color: var(--text-brand);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.product-home__hero h1 {
  max-width: 850px;
  margin: 15px 0 20px;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.product-home__hero h1 span {
  color: var(--text-brand);
}

.product-home__lede {
  max-width: 780px;
  margin: 0;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.product-home__lede a {
  text-decoration:underline;
}

.record-specimen {
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  background: var(--surface-card);
  box-shadow: var(--shadow-card);
}

.record-specimen__identity {
  min-width: 0;
  padding: 17px 22px 15px;
}

.record-specimen__status-line {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.025em;
}

.record-specimen__sealed,
.record-specimen__policy {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  line-height: 1;
}

.record-specimen__sealed {
  border: 1px solid var(--success-border);
  color: var(--success-text);
  background: var(--success-surface);
}

.record-specimen__policy {
  margin-left: auto;
  border: 1px solid var(--border-brand-subtle);
  color: var(--text-brand-strong);
  background: var(--surface-brand-tint);
}

.record-specimen__record-mark {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 106px;
  align-items: end;
  gap: 18px;
  margin-top: 11px;
}

.record-specimen__record-mark > div {
  min-width: 0;
}

.record-specimen__label {
  margin: 0 0 6px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.record-specimen__reference {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.record-specimen__reference svg {
  flex: 0 0 auto;
  color: var(--text-brand);
}

.record-specimen__reference:hover,
.record-specimen__reference:focus-visible,
.record-specimen__chain a:hover,
.record-specimen__chain a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.record-specimen__reference:focus-visible,
.record-specimen__chain a:focus-visible {
  border-radius: var(--radius-sm);
  outline: 3px solid var(--interactive-focus-ring);
  outline-offset: 3px;
}

.record-specimen__identicon {
  display: block;
  width: 106px;
  height: auto;
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-sm);
  background: var(--grey-50);
}

.record-specimen__artifacts {
  min-width: 0;
  border-top: 1px solid var(--border-muted);
}

.record-specimen__tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 12px;
  border-bottom: 1px solid var(--border-muted);
}

.record-specimen__tab {
  position: relative;
  min-width: 0;
  padding: 11px 5px 10px;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--text-tertiary);
  background: transparent;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
}

.record-specimen__tab:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 16px;
  height: 1px;
  background: var(--border-muted);
  content: "";
}

.record-specimen__tab:hover {
  color: var(--text-primary);
}

.record-specimen__tab[aria-selected="true"] {
  border-bottom-color: var(--text-brand);
  color: var(--text-brand-strong);
}

.record-specimen__tab:focus-visible,
.record-specimen__panel:focus-visible {
  border-radius: var(--radius-sm);
  outline: 3px solid var(--interactive-focus-ring);
  outline-offset: -3px;
}

.record-specimen__panel {
  padding: 15px 12px 17px;
}

.record-specimen__panel[hidden] {
  display: none;
}

.record-specimen__caption,
.record-specimen__hash-note {
  margin: 0 7px 12px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.45;
}

.record-specimen__help {
  margin-left: 2px;
  vertical-align: -3px;
}

.record-specimen__document {
  margin: 0;
  padding: 17px 19px 18px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  color: var(--grey-900);
  background: var(--grey-50);
  box-shadow: inset 0 1px 0 color-mix(in srgb, var(--surface-card) 80%, transparent);
}

.record-specimen__document p {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 13px;
  line-height: 1.56;
}

.record-specimen__hash-value {
  margin: 17px 7px 14px;
  padding: 13px 15px 14px;
  border: 1px solid var(--border-brand-subtle);
  border-radius: var(--radius);
  color: var(--text-brand-strong);
  background: var(--surface-brand-tint);
}

.record-specimen__hash-value span {
  display: block;
  margin-bottom: 5px;
  color: var(--text-tertiary);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
}

.record-specimen__hash-value code {
  display: block;
  overflow-wrap: anywhere;
  color: var(--text-brand-strong);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.55;
}

.record-specimen__hash-note {
  margin-bottom: 12px;
}

.record-specimen__hash-example {
  display: grid;
  gap: 0;
  margin: 0 7px;
  overflow: hidden;
  border: 1px solid var(--border-muted);
  border-radius: var(--radius-sm);
  background: var(--grey-50);
}

.record-specimen__hash-example code {
  display: grid;
  grid-template-columns: 66px 14px minmax(0, 1fr);
  gap: 4px;
  padding: 7px 10px;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 9px;
}

.record-specimen__hash-example code + code {
  border-top: 1px solid var(--border-muted);
}

.record-specimen__hash-example span {
  color: var(--text-primary);
}

.record-specimen__hash-example b {
  color: var(--text-tertiary);
  font-weight: 400;
}

.record-specimen__payload {
  margin: 0;
  padding: 12px 14px;
  overflow-wrap: anywhere;
  border: 1px solid var(--border-default);
  border-radius: var(--radius);
  color: var(--text-secondary);
  background: var(--grey-50);
  font-family: var(--font-mono);
  font-size: 8px;
  line-height: 1.5;
  white-space: pre-wrap;
}

.record-specimen__basescan-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 8px 7px 0;
  color: var(--text-brand-strong);
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.record-specimen__chain {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.85fr);
  gap: 12px;
  margin: 0;
  border-top: 1px solid var(--border-muted);
  padding: 11px 22px 13px;
}

.record-specimen__chain dt {
  display: block;
  margin-bottom: 4px;
  color: var(--text-tertiary);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.2;
  text-transform: uppercase;
}

.record-specimen__chain div {
  min-width: 0;
}

.record-specimen__chain dd {
  margin: 0;
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
}

.record-specimen__chain code {
  font-family: var(--font-mono);
  font-size: 10px;
}

.record-specimen__chain a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-brand-strong);
  text-decoration: none;
}

.record-specimen__chain a svg {
  flex: 0 0 auto;
}

.record-specimen__basescan-link:hover,
.record-specimen__basescan-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.record-specimen__basescan-link:focus-visible {
  border-radius: var(--radius-sm);
  outline: 3px solid var(--interactive-focus-ring);
  outline-offset: 3px;
}

.product-home__alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: -28px 0 32px;
  padding: 15px 18px;
  border: 1px solid var(--danger-border);
  border-radius: var(--radius);
  color: var(--danger-text);
  background: var(--danger-surface);
  font-size: 14px;
  line-height: 1.5;
}

.product-home__alert svg {
  flex: 0 0 auto;
  margin-top: 1px;
}

.product-home__resume {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
  padding: 24px;
  border: 1px solid var(--warning-border);
  border-radius: var(--radius-lg);
  background: var(--warning-surface);
  box-shadow: var(--shadow-sm);
}

.product-home__resume-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 12px;
  color: var(--warning-text);
  background: color-mix(in srgb, var(--warning-border) 35%, transparent);
}

.product-home__resume-copy {
  min-width: 0;
}

.product-home__resume-copy h2 {
  margin: 3px 0 4px;
  color: var(--warning-text);
  font-family: var(--font-heading);
  font-size: 21px;
  line-height: 1.2;
}

.product-home__resume-copy p:last-child {
  margin: 0;
  color: var(--warning-text);
  font-size: 14px;
  line-height: 1.45;
}

.product-home__resume-label {
  color: var(--warning-text);
  font-size: 10px;
}

.product-home__resume-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-home__resume-actions form {
  margin: 0;
}

.product-home__chooser {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.product-home__section-heading {
  margin-bottom: 26px;
}

.product-home__section-heading h2 {
  margin: 0 0 8px;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.product-home__section-heading p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.5;
}

.product-home__cards {
  display: grid;
  gap: 14px;
}

.product-home__card-form {
  margin: 0;
}

.product-home__card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 20px;
  width: 100%;
  min-height: 142px;
  padding: 24px 28px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  background: var(--surface-card);
  box-shadow: var(--shadow-sm);
  font: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}

.product-home__card:hover {
  border-color: var(--interactive-selected-border);
  background: var(--interactive-hover-surface);
  box-shadow: var(--shadow-card);
}

.product-home__card:focus-visible {
  outline: 3px solid var(--interactive-focus-ring);
  outline-offset: 3px;
}

.product-home__card:active {
  border-color: var(--interactive-selected-border);
  background: var(--interactive-selected-surface);
}

.product-home__card-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 14px;
  color: var(--text-brand);
  background: var(--surface-brand-tint);
}

.product-home__card:hover .product-home__card-icon,
.product-home__card:focus-visible .product-home__card-icon {
  background: color-mix(in srgb, var(--surface-brand-tint) 85%, var(--interactive-selected-border) 15%);
}

.product-home__card-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.product-home__card-title {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.product-home__card-description {
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.45;
}

.product-home__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}

.product-home__tags span {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--text-secondary);
  background: var(--surface-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.product-home__card-arrow {
  color: var(--text-tertiary);
}

.product-home__card:hover .product-home__card-arrow,
.product-home__card:focus-visible .product-home__card-arrow {
  color: var(--text-brand);
}

.product-home__type-help {
  display: grid;
  justify-items: center;
  margin-top: 20px;
}

.product-home__type-help p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.product-home__type-help a {
  color: var(--text-brand);
  font-weight: 700;
  text-decoration: none;
}

.product-home__type-help a:hover,
.product-home__type-help a:focus-visible {
  text-decoration: underline;
}

.product-home__verify {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 54px;
  padding: 26px 28px;
  border: 1px solid var(--border-brand-subtle);
  border-radius: var(--radius-lg);
  background: var(--surface-brand-tint);
}

.product-home__verify h2 {
  margin: 0 0 4px;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.25;
}

.product-home__verify p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.45;
}

.product-home__verify .btn {
  flex: 0 0 auto;
}

.product-home__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
  padding: 30px 6px 0;
  border-top: 1px solid var(--border-default);
}

.product-home__trust > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  color: var(--text-tertiary);
}

.product-home__trust svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--text-brand);
}

.product-home__trust span {
  font-size: 13px;
  line-height: 1.45;
}

.product-home__trust strong {
  display: block;
  margin-bottom: 2px;
  color: var(--text-secondary);
  font-size: 14px;
}

@media (min-width: 1024px) {
  .product-home__card {
    padding-right: 34px;
    padding-left: 34px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .product-home__inner {
    padding-top: 62px;
  }

  .product-home__hero {
    margin-bottom: 52px;
  }

  .product-home__resume {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .product-home__resume-actions {
    grid-column: 2;
  }

  .product-home__trust {
    gap: 20px;
  }
}

@media (max-width: 860px) {
  .product-home__hero {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .record-specimen {
    width: min(100%, 520px);
  }
}

@media (min-width: 480px) and (max-width: 767px) {
  .product-home__inner {
    padding: 48px 0 56px;
  }

  .product-home__hero {
    margin-bottom: 44px;
  }

  .product-home__hero h1 {
    font-size: clamp(41px, 10vw, 56px);
  }

  .product-home__resume {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 20px;
  }

  .product-home__resume-icon {
    width: 44px;
    height: 44px;
  }

  .product-home__resume-actions {
    grid-column: 1 / -1;
  }

  .product-home__card {
    grid-template-columns: 50px minmax(0, 1fr) 20px;
    gap: 16px;
    min-height: 132px;
    padding: 21px;
  }

  .product-home__card-icon {
    width: 50px;
    height: 50px;
  }

  .product-home__trust {
    grid-template-columns: 1fr;
  }

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

  .product-home__trust {
    gap: 18px;
  }
}

@media (max-width: 479px) {
  .product-home__inner {
    padding: 38px 0 48px;
  }

  .product-home__hero {
    margin-bottom: 38px;
  }

  .product-home__eyebrow {
    font-size: 10px;
  }

  .product-home__hero h1 {
    margin-top: 12px;
    font-size: clamp(36px, 11.5vw, 48px);
    line-height: 1;
  }

  .product-home__lede {
    font-size: 16px;
  }

  .record-specimen__identity {
    padding: 15px 17px 13px;
  }

  .record-specimen__status-line {
    flex-wrap: wrap;
  }

  .record-specimen__policy {
    margin-left: 0;
  }

  .record-specimen__record-mark {
    grid-template-columns: minmax(0, 1fr) 78px;
    gap: 12px;
  }

  .record-specimen__reference {
    font-size: clamp(11px, 3.5vw, 14px);
    letter-spacing: -0.055em;
  }

  .record-specimen__identicon {
    width: 78px;
  }

  .record-specimen__panel {
    padding-right: 9px;
    padding-left: 9px;
  }

  .record-specimen__document p {
    font-size: 12px;
  }

  .record-specimen__tab {
    font-size: 10px;
  }

  .record-specimen__chain {
    grid-template-columns: 1fr 1fr;
    padding-right: 17px;
    padding-left: 17px;
  }

  .record-specimen__payload {
    font-size: 7.5px;
  }

  .product-home__alert {
    margin-top: -14px;
  }

  .product-home__resume {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    padding: 17px;
  }

  .product-home__resume-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .product-home__resume-copy h2 {
    font-size: 18px;
  }

  .product-home__resume-copy p:last-child {
    font-size: 13px;
  }

  .product-home__resume-actions {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: 1fr 1fr;
  }

  .product-home__resume-actions .btn,
  .product-home__resume-actions form,
  .product-home__resume-actions form .btn {
    width: 100%;
  }

  .product-home__section-heading h2 {
    font-size: 31px;
  }

  .product-home__section-heading p {
    font-size: 15px;
  }

  .product-home__card {
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    align-items: start;
    gap: 13px;
    min-height: 0;
    padding: 18px 16px;
    border-radius: 14px;
  }

  .product-home__card-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .product-home__card-icon svg {
    width: 21px;
    height: 21px;
  }

  .product-home__card-title {
    font-size: 20px;
  }

  .product-home__card-description {
    font-size: 14px;
  }

  .product-home__tags {
    gap: 5px;
    margin-top: 11px;
  }

  .product-home__tags span {
    min-height: 23px;
    padding: 4px 7px;
    font-size: 11px;
  }

  .product-home__card-arrow {
    width: 18px;
    height: 18px;
    margin-top: 11px;
  }

  .product-home__verify {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    margin-top: 42px;
    padding: 21px;
  }

  .product-home__verify .btn {
    width: 100%;
  }

  .product-home__trust {
    gap: 17px;
    padding-right: 0;
    padding-left: 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  .product-home__card {
    transition: none;
  }
}
