/* [project]/app/globals.css [app-client] (css) */
:root {
  --orange: #f89b1b;
  --teal: #11bab7;
  --mint: #c5e3dc;
  --cream: #fff3dd;
  --ink: #24302f;
  --muted: #667573;
  --card: #ffffffd6;
  --line: #24302f26;
}

* {
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle at top left, #fff 0, var(--cream) 38rem);
  color: var(--ink);
  margin: 0;
  font-family: Myriad Pro, Myriad, Arial, sans-serif;
  line-height: 1.55;
}

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

.header {
  border-bottom: 7px solid var(--orange);
  background: linear-gradient(135deg, var(--teal), var(--mint));
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.nav {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  display: flex;
}

.brand {
  letter-spacing: .04em;
  font-family: Impact, Haettenschweiler, Arial Narrow Bold, sans-serif;
  font-size: 1.35rem;
}

.navlinks {
  flex-wrap: wrap;
  gap: .6rem;
  display: flex;
}

.navlinks a, .button {
  background: #ffffff9e;
  border: 1px solid #fffc;
  border-radius: 999px;
  padding: .55rem .85rem;
  font-weight: 700;
}

.hero {
  grid-template-columns: 1.4fr .8fr;
  align-items: center;
  gap: 2rem;
  padding: 3.2rem 0 3.8rem;
  display: grid;
}

h1, h2, h3 {
  letter-spacing: .035em;
  font-family: Impact, Haettenschweiler, Arial Narrow Bold, sans-serif;
  font-weight: 400;
  line-height: 1.05;
}

h1 {
  margin: .35rem 0 .8rem;
  font-size: clamp(2.5rem, 7vw, 6rem);
}

h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.kicker {
  background: var(--orange);
  border-radius: 999px;
  padding: .35rem .7rem;
  font-weight: 900;
  display: inline-flex;
}

main {
  padding: 2rem 0 4rem;
}

main, .card, .plotArea {
  overflow: visible;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  display: grid;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.2rem;
  box-shadow: 0 18px 35px #0000000f;
}

.metric {
  color: var(--teal);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.muted {
  color: var(--muted);
}

.warning {
  border-left: 8px solid var(--orange);
}

.table {
  border-collapse: collapse;
  width: 100%;
  overflow: hidden;
}

.table th, .table td {
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  padding: .75rem;
}

.table th {
  color: var(--muted);
  font-size: .9rem;
}

.input {
  border: 2px solid var(--mint);
  width: 100%;
  font: inherit;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  font-size: 1.05rem;
}

.pills {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.pill {
  background: var(--mint);
  border-radius: 999px;
  padding: .25rem .6rem;
  font-size: .9rem;
  font-weight: 700;
}

.pill.orange {
  background: var(--orange);
}

.logoBox {
  background: #fff3dd;
  border: 2px solid #24302f1f;
  border-radius: 28px;
  place-items: center;
  min-height: 220px;
  padding: 1rem;
  display: grid;
  overflow: hidden;
}

.dogLine {
  width: 100%;
  max-width: 360px;
}

.footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 2rem 0;
}

.bars {
  border-bottom: 1px solid var(--line);
  align-items: end;
  gap: 4px;
  height: 150px;
  padding-top: 1rem;
  display: flex;
}

.bar {
  background: linear-gradient(var(--teal), var(--mint));
  border-radius: 8px 8px 0 0;
  flex: 1;
  min-width: 8px;
  position: relative;
}

.bar span {
  color: var(--muted);
  transform-origin: 0 0;
  font-size: .72rem;
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%)rotate(-45deg);
}

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .table {
    font-size: .92rem;
  }
}

.clickcard {
  transition: transform .14s, box-shadow .14s;
  display: block;
}

.clickcard:hover, .clickcard:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  transform: translateY(-2px);
  box-shadow: 0 22px 42px #0000001a;
}

.chartLink {
  background: linear-gradient(var(--teal), var(--mint));
  border-radius: 8px 8px 0 0;
  height: 100%;
  min-height: 6px;
  display: block;
}

.chartLink:hover, .chartLink:focus-visible {
  background: linear-gradient(var(--orange), #ffd28e);
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.stackbar {
  border: 1px solid var(--line);
  background: #eef7f5;
  border-radius: 999px;
  min-width: 180px;
  height: 28px;
  display: flex;
  overflow: hidden;
}

.stackseg {
  min-width: 3px;
  display: block;
}

.stackseg:hover, .stackseg:focus-visible {
  filter: brightness(.9);
  outline: 2px solid var(--ink);
  outline-offset: -2px;
}

.logoHint {
  max-width: 520px;
  margin: auto;
}

.tableWrap {
  -webkit-overflow-scrolling: touch;
  width: 100%;
  overflow-x: auto;
}

.table {
  min-width: 640px;
}

.card {
  overflow: visible;
}

.analysisChart {
  grid-template-columns: 3rem 1fr;
  align-items: stretch;
  gap: .75rem;
  margin-top: 1rem;
  display: grid;
}

.yAxis {
  height: 180px;
  color: var(--muted);
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1.8rem;
  font-size: .8rem;
  display: flex;
}

.plotArea {
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: repeating-linear-gradient(to top, #0000, #0000 35px, #24302f14 36px);
  height: 180px;
  position: relative;
}

.bars {
  border-bottom: 0;
  align-items: end;
  height: 180px;
  padding-top: 0;
}

.bar {
  overflow: visible;
}

.hoverTip {
  position: relative;
}

.hoverTip:after {
  content: attr(data-tip);
  background: var(--ink);
  color: #fff;
  white-space: normal;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  border-radius: .55rem;
  width: max-content;
  max-width: min(220px, 42vw);
  padding: .35rem .5rem;
  font-size: .78rem;
  transition: opacity .12s;
  position: absolute;
  bottom: calc(100% + .5rem);
  left: 50%;
  transform: translateX(-50%);
}

.bar:first-child .hoverTip:after {
  left: 0;
  transform: none;
}

.bar:last-child .hoverTip:after {
  left: auto;
  right: 0;
  transform: none;
}

.hoverTip:hover:after, .hoverTip:focus-visible:after {
  opacity: 1;
}

.stackbar {
  max-width: 100%;
}

.healthResult {
  border: 1px solid var(--line);
  background: #ffffffa6;
  border-radius: 18px;
  margin: .75rem 0;
  padding: 1rem;
}

.detailGrid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: .5rem;
  margin-top: .75rem;
  display: grid;
}

.detailItem {
  background: var(--mint);
  border-radius: 14px;
  padding: .55rem .7rem;
}

.logoImage {
  border-radius: 18px;
  width: 100%;
  max-width: 430px;
}

@media (max-width: 800px) {
  .analysisChart {
    grid-template-columns: 2.4rem 1fr;
  }

  .yAxis {
    font-size: .72rem;
  }

  .table {
    min-width: 560px;
  }
}

.pill {
  white-space: nowrap;
  align-items: center;
  display: inline-flex;
}

.pill.finding {
  background: var(--orange);
  color: #1b1408;
}

.ecvoDetails {
  flex-wrap: wrap;
  gap: .35rem;
  max-width: min(760px, 100%);
  display: flex;
}

.ecvoDetailPill {
  border: 1px solid var(--line);
  white-space: nowrap;
  background: #fff;
  border-radius: 999px;
  padding: .18rem .48rem;
  font-size: .78rem;
}

.ecvoDetailPill.finding {
  background: var(--orange);
  border-color: var(--orange);
  font-weight: 800;
}

.table th {
  white-space: nowrap;
}

.table td {
  overflow-wrap: anywhere;
}

.table td .pill, .table th .pill {
  overflow-wrap: normal;
}

.hdYearGrid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: .8rem;
  display: grid;
}

.hdYearCard {
  border: 1px solid var(--line);
  background: #ffffffb8;
  border-radius: 18px;
  padding: .85rem;
}

.hdYearHead {
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: .55rem;
  display: flex;
}

.hdYearHead strong {
  font-size: 1.2rem;
}

.hdCounts {
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .55rem;
  display: flex;
}

.hdCounts .pill {
  padding: .18rem .48rem;
  font-size: .82rem;
}

.miniStack {
  border: 1px solid var(--line);
  background: #eef7f5;
  border-radius: 999px;
  width: 100%;
  height: 24px;
  display: flex;
  overflow: hidden;
}

.miniStack .stackseg {
  height: 100%;
}

.compactList {
  gap: .45rem;
  display: grid;
}

.compactRow {
  border: 1px solid var(--line);
  background: #ffffffa6;
  border-radius: 14px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .75rem;
  padding: .55rem .65rem;
  display: grid;
}

.compactRowText {
  text-overflow: ellipsis;
  min-width: 0;
  overflow: hidden;
}

.compactRowText a {
  font-weight: 800;
}

.compactRowMeta {
  color: var(--muted);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: .85rem;
  display: block;
  overflow: hidden;
}

@media (max-width: 520px) {
  .compactRow {
    grid-template-columns: 1fr;
  }

  .compactRowMeta {
    white-space: normal;
  }
}

.roadmapGrid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: .75rem;
  margin-top: 1rem;
  display: grid;
}

.roadmapItem {
  border: 1px solid var(--line);
  background: #ffffffb3;
  border-radius: 16px;
  padding: .85rem;
}

.pill.finding {
  color: #241607;
  background: #ffd28e;
}

.ecvoDetailPill.finding {
  color: #241607;
  background: #ffd28e;
  border-color: #ffd28e;
}

.detailItem.finding {
  background: #ffd28e;
}

.pedigreeWrap {
  padding-bottom: 1rem;
  overflow-x: auto;
}

.pedigreeTree {
  grid-template-columns: repeat(7, minmax(190px, 1fr));
  align-items: start;
  gap: .75rem;
  min-width: 1280px;
  display: grid;
}

.pedigreeGen {
  gap: .55rem;
  display: grid;
}

.pedigreeGenTitle {
  color: var(--muted);
  text-align: center;
  font-weight: 900;
}

.pedigreeNode {
  border: 1px solid var(--line);
  background: #ffffffbf;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  min-height: 74px;
  padding: .65rem;
  display: flex;
}

.pedigreeNode.missing {
  color: var(--muted);
  background: #f3f3f3;
  border-style: dashed;
}

.pedigreeNode.self {
  border: 2px solid var(--teal);
  background: #f0fffd;
}

.pedigreeNode a {
  font-weight: 900;
}

.pedigreeMeta {
  color: var(--muted);
  margin-top: .2rem;
  font-size: .82rem;
}

.pedigreeHint {
  margin-bottom: .75rem;
  display: inline-block;
  position: sticky;
  left: 0;
}

.pedigreeTree.visual {
  position: relative;
}

.pedigreeTree.visual:before {
  content: "";
  pointer-events: none;
  opacity: .75;
  background-image: linear-gradient(90deg, #0000 calc(100% - 1px), #24302f1a calc(100% - 1px)), linear-gradient(0deg, #0000 calc(100% - 1px), #24302f0f calc(100% - 1px));
  background-size: 14.2857% 100%, 100% 74px;
  position: absolute;
  inset: 2.2rem 0 0;
}

.pedigreeGen {
  z-index: 1;
  position: relative;
}

.pedigreeNode.common {
  border-width: 3px;
  box-shadow: 0 0 0 4px #ffffffd9, 0 12px 28px #0000001a;
}

.commonBadge {
  background: #ffffffbf;
  border-radius: 999px;
  align-self: flex-start;
  margin-top: .35rem;
  padding: .12rem .42rem;
  font-size: .72rem;
  font-weight: 900;
  display: inline-flex;
}

.commonLegend {
  flex-wrap: wrap;
  gap: .45rem;
  margin: .75rem 0 1rem;
  display: flex;
}

.commonLegendItem {
  border: 1px solid var(--line);
  background: #ffffffbf;
  border-radius: 999px;
  align-items: center;
  gap: .35rem;
  padding: .25rem .55rem;
  font-size: .88rem;
  display: inline-flex;
}

.commonSwatch {
  border: 2px solid #0003;
  border-radius: 50%;
  width: .9rem;
  height: .9rem;
}

.suggestBox {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  gap: .25rem;
  max-height: 260px;
  margin-top: .4rem;
  padding: .35rem;
  display: grid;
  overflow: auto;
}

.suggestItem {
  text-align: left;
  font: inherit;
  cursor: pointer;
  background: #fff;
  border: 0;
  border-radius: 12px;
  padding: .45rem .6rem;
}

.suggestItem:hover, .suggestItem:focus {
  background: var(--mint);
}

.breedGrid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  display: grid;
}

.breedRow {
  border: 1px solid var(--line);
  background: #ffffffad;
  border-radius: 14px;
  gap: .35rem;
  padding: .55rem;
  font-size: .88rem;
  display: grid;
}

.breedRowName {
  font-weight: 800;
  line-height: 1.2;
}

.breedBadges {
  flex-wrap: wrap;
  gap: .3rem;
  display: flex;
}

.breedBadges .pill {
  padding: .16rem .42rem;
  font-size: .76rem;
}

.uniquenessGrid {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .75rem;
  display: grid;
}

.homeGrid {
  align-items: stretch;
}

.homeCard {
  flex-direction: column;
  justify-content: space-between;
  min-height: 215px;
  display: flex;
}

.logoImage {
  filter: saturate(1.18) contrast(1.08);
  border-radius: 24px;
  width: 100%;
  max-width: 460px;
  display: block;
}

.homeCard h2 {
  min-height: 2.7rem;
  margin-bottom: .4rem;
}

.homeCard .metric {
  font-variant-numeric: tabular-nums;
  align-items: center;
  min-height: 3.5rem;
  font-family: Impact, Haettenschweiler, Arial Narrow Bold, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  display: flex;
}

.homeCard p {
  min-height: 3rem;
  margin: .5rem 0 0;
}

.pill.severe {
  color: #fff;
  background: #e5533d;
}

.dogPicker {
  position: relative;
  overflow: visible;
}

.selectedDog {
  border: 1px solid var(--orange);
  background: #fff3dd;
  border-radius: 14px;
  padding: .55rem .7rem;
}

.primaryButton {
  cursor: pointer;
  background: var(--orange);
  color: #1f1607;
  border: 0;
}

.suggestBox {
  z-index: 30;
  position: relative;
  box-shadow: 0 18px 35px #0000001f;
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/