


:root {
  --radius: 0.5rem;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  color-scheme: light;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, monospace;

  
  --background: 0 0% 100%;
  --foreground: 240 10% 3.9%;
  --card: 0 0% 100%;
  --card-foreground: 240 10% 3.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 240 10% 3.9%;
  --primary: 240 5.9% 10%;
  --primary-foreground: 0 0% 98%;
  --secondary: 240 4.8% 95.9%;
  --secondary-foreground: 240 5.9% 10%;
  --muted: 240 4.8% 95.9%;
  --muted-foreground: 240 3.8% 46.1%;
  --accent: 240 4.8% 95.9%;
  --accent-foreground: 240 5.9% 10%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  --warning-text: 0 72% 38%;
  --border: 240 5.9% 90%;
  --input: 240 5.9% 90%;
  --ring: 240 10% 3.9%;
}

.dark {
  color-scheme: dark;
  --background: 240 10% 3.9%;
  --foreground: 0 0% 98%;
  --card: 240 10% 3.9%;
  --card-foreground: 0 0% 98%;
  --popover: 240 10% 3.9%;
  --popover-foreground: 0 0% 98%;
  --primary: 0 0% 98%;
  --primary-foreground: 240 5.9% 10%;
  --secondary: 240 3.7% 15.9%;
  --secondary-foreground: 0 0% 98%;
  --muted: 240 3.7% 15.9%;
  --muted-foreground: 240 5% 64.9%;
  --accent: 240 3.7% 15.9%;
  --accent-foreground: 0 0% 98%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 0 0% 98%;
  --warning-text: 0 78% 72%;
  --border: 240 3.7% 15.9%;
  --input: 240 3.7% 15.9%;
  --ring: 240 4.9% 83.9%;
}


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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}


h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: -0.025em;
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin: 0;
}

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

:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 3px;
}


.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

main.container {
  flex: 1;
  padding-block: 2.5rem;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--background));
}

.site-header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 3.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 0.3rem;
  background: hsl(var(--foreground));
  color: hsl(var(--background));
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand-word {
  font-weight: 700;
}

.brand-accent {
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  flex: 1;
  margin-left: 0.75rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition:
    color 0.15s,
    background-color 0.15s;
}

.nav-link:hover {
  color: hsl(var(--foreground));
  background-color: hsl(var(--accent));
}

.nav-link[aria-current="page"],
.mobile-nav-link[aria-current="page"] {
  color: hsl(var(--foreground));
  background-color: hsl(var(--accent));
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 100;
  padding: 0.4rem 0.75rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-left: auto;
  position: relative;
  z-index: 60;
}


.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: transparent;
  color: hsl(var(--muted-foreground));
  cursor: pointer;
  transition:
    color 0.15s,
    background-color 0.15s;
}

.theme-toggle:hover {
  background-color: hsl(var(--accent));
  color: hsl(var(--foreground));
}

.theme-toggle .icon-sun {
  display: none;
}
.theme-toggle .icon-moon {
  display: block;
}
.dark .theme-toggle .icon-sun {
  display: block;
}
.dark .theme-toggle .icon-moon {
  display: none;
}


.icon {
  display: block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  overflow: visible;
}

.theme-toggle .icon,
.menu-toggle .icon {
  width: 1rem;
  height: 1rem;
}


.site-footer {
  border-top: 1px solid hsl(var(--border));
  padding-block: 3rem 1.25rem;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(4, minmax(0, 1fr));
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid hsl(var(--border));
}


.footer-brand .brand {
  font-size: 1.125rem;
}

.footer-tagline {
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.footer-description {
  margin-top: 0.5rem;
  max-width: 34ch;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
}


.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  border-left: 1px solid hsl(var(--border));
  padding-left: 1.5rem;
}

.footer-title {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.25rem;
}

.footer-link {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
  width: fit-content;
}

.footer-link:hover {
  color: hsl(var(--foreground));
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.875rem;
  flex-wrap: wrap;
}

.footer-text {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

.footer-data-note {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  border-block: 1px solid hsl(var(--border));
  margin-bottom: 0;
}

.hero-copy {
  padding: clamp(3rem, 7vw, 6.5rem) clamp(2rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem) 0;
  border-right: 1px solid hsl(var(--border));
}

.hero-eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

.hero-eyebrow {
  margin-bottom: 1.5rem;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero-lead {
  max-width: 58ch;
  margin-top: 1.75rem;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
}

.hero-search {
  width: min(100%, 34rem);
  margin-top: 2rem;
}

.hero-search label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

.hero-search-field {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 3.5rem;
  padding-inline: 1rem;
  border: 1px solid hsl(var(--foreground));
  background: hsl(var(--background));
  font-family: var(--font-mono);
}

.hero-search-field .icon {
  color: hsl(var(--muted-foreground));
}

.hero-search-field:focus-within {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 3px;
}

.hero-search-field input {
  min-width: 0;
  flex: 1;
  padding: 0.9rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: hsl(var(--foreground));
  font: inherit;
}

.hero-search-field input::placeholder {
  color: hsl(var(--muted-foreground));
}

.cost-insight {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.cost-insight h2 {
  max-width: 14ch;
  margin-top: 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.cost-insight > p:not(.section-kicker) {
  max-width: 42ch;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
}

.cost-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.cost-formula strong {
  font-weight: 600;
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid hsl(var(--border));
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

#tld-explorer,
#launch-schedule,
#methodology,
#dataset-metrics {
  scroll-margin-top: 5rem;
}

.metric {
  display: flex;
  min-height: 7.5rem;
  padding: 1.25rem;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid hsl(var(--border));
}

.metric:last-child {
  border-right: 0;
}

.metric-value {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.metric-date {
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.metric-label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}


.explorer {
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}

.explorer-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
}

.explorer-heading h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.explorer-result-count {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.explorer-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.35fr);
  border: 1px solid hsl(var(--border));
  border-bottom: 0;
}

.explorer-controls:not(:has(.explorer-tabs)) {
  display: block;
}

.explorer-controls:not(:has(.explorer-search)) {
  grid-template-columns: minmax(0, 1fr);
}

.explorer-controls:not(:has(.explorer-search)) .explorer-tab {
  flex: 1;
}

.explorer-controls:not(:has(.explorer-search)) .explorer-tab:last-child {
  border-right: 0;
}

.explorer-tabs {
  display: flex;
  align-items: stretch;
}

.explorer-tab {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.25rem;
  border: 0;
  border-right: 1px solid hsl(var(--border));
  background: transparent;
  color: hsl(var(--muted-foreground));
  font: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
}

.explorer-tab[aria-selected="true"] {
  background: hsl(var(--foreground));
  color: hsl(var(--background));
}

.explorer-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.75rem;
  border-left: 1px solid hsl(var(--border));
}

.explorer-controls:not(:has(.explorer-tabs)) .explorer-search {
  border-left: 0;
}

.explorer-search label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  white-space: nowrap;
}

.explorer-search input {
  width: 100%;
  min-width: 0;
  padding: 0.45rem 0.6rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: hsl(var(--foreground));
  font: 0.8125rem var(--font-mono);
}

.explorer-search input::placeholder {
  color: hsl(var(--muted-foreground));
}

.explorer-search-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  padding-left: 0.75rem;
  border-left: 1px solid hsl(var(--border));
  font-size: 0.8125rem;
}

.explorer-controls:not(:has(.explorer-tabs)) .explorer-search-field {
  border-left: 0;
}

.explorer-search-field .icon {
  color: hsl(var(--muted-foreground));
}

.explorer-search-field input {
  padding-left: 0;
}

.methodology {
  display: grid;
  grid-template-columns: 0.45fr 0.75fr 1fr;
  gap: 2rem;
  padding-block: 2rem;
  border-block: 1px solid hsl(var(--border));
}

.methodology h2 {
  font-size: 1.125rem;
  font-weight: 500;
}

.methodology > p:last-child {
  max-width: 62ch;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
}


.page-intro {
  padding-bottom: clamp(2rem, 4vw, 3.25rem);
  border-bottom: 1px solid hsl(var(--border));
}

.page-intro h1 {
  margin-top: 0.45rem;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.page-intro h1 .registrar-link {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.page-intro-lead {
  max-width: 62ch;
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
}

.page-intro .breadcrumb {
  margin-bottom: 1.25rem;
}

.page-intro:has(+ .guide-body) {
  padding-bottom: 2rem;
}

.page-intro:has(+ .guide-body) h1 {
  margin-top: 0.6rem;
  font-size: clamp(1.75rem, 3.6vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.schedule-date-cell {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
}

.schedule-registry,
.schedule-phase-name {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  font-family: var(--font-sans);
  font-variant-numeric: normal;
  color: hsl(var(--muted-foreground));
}

.badge-sunrise {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.badge-limited {
  background: transparent;
  color: hsl(var(--foreground));
}

.schedule-legend {
  display: grid;
  gap: 1.5rem;
  padding-block: 2rem;
  border-block: 1px solid hsl(var(--border));
}

.schedule-legend h2 {
  margin-top: 0.4rem;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.phase-legend {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid hsl(var(--border));
}

.phase-legend article {
  min-width: 0;
  padding: 1.25rem 1.35rem;
}

.phase-legend article + article {
  border-left: 1px solid hsl(var(--border));
}

.phase-legend h3 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.65rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phase-legend p {
  font-size: 0.8125rem;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
}

.schedule-source {
  max-width: 72ch;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
}

.schedule-source a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}


.card {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card));
  overflow: hidden;
}


.table-wrap {
  border: 1px solid hsl(var(--border));
  border-radius: 0;
  background: hsl(var(--card));
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

thead tr {
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.4);
}

th {
  padding: 0.625rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.row-number-heading,
.row-number-cell {
  width: 3.25rem;
  padding-inline: 0.75rem;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-variant-numeric: tabular-nums;
}

.primary-price-heading,
.primary-price-cell {
  background: hsl(var(--muted) / 0.55);
}

.popularity-heading {
  width: 7.5rem;
}

.popularity-cell {
  width: 7.5rem;
  min-width: 6rem;
}

.popularity-meter {
  display: block;
  width: 100%;
  max-width: 5.5rem;
  height: 0.375rem;
  border-radius: 999px;
  background: hsl(var(--muted));
  overflow: hidden;
}

.popularity-meter-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: hsl(var(--foreground) / 0.72);
}

.tld-mobile-popularity .popularity-meter {
  max-width: none;
}

td {
  padding: 0.625rem 1rem;
  border-bottom: 1px solid hsl(var(--border));
  vertical-align: middle;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background: hsl(var(--muted) / 0.3);
}

.tld-link {
  font-weight: 500;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: hsl(var(--foreground));
  transition: opacity 0.15s;
  unicode-bidi: isolate;
}
.tld-link:hover {
  opacity: 0.7;
}

.registrar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-sans);
  color: inherit;
}

.registrar-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  object-fit: contain;
}

.hub-card .registrar-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.page-intro h1 .registrar-icon {
  width: 1.75rem;
  height: 1.75rem;
}

.price-cell {
  font-variant-numeric: tabular-nums;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
}

.price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.regular-price {
  color: hsl(var(--muted-foreground));
  font-size: 0.6875rem;
  font-weight: 400;
  text-decoration: line-through;
}

.promo-code {
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.registrar-mobile-secondary > .promo-row {
  grid-column: 1 / -1;
  border-left: none;
  border-top: 1px solid hsl(var(--border));
}

.min-price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.min-price-amount {
  font-variant-numeric: tabular-nums;
}

.min-price .registrar-link {
  font-size: 0.6875rem;
  font-weight: 400;
  color: hsl(var(--muted-foreground));
}

.min-price .registrar-icon {
  width: 0.875rem;
  height: 0.875rem;
}

.table-sort-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.table-sort-button:disabled {
  cursor: default;
}

.table-sort-button:not(:disabled):hover {
  color: hsl(var(--foreground));
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

th .table-sort-button:not([aria-pressed="true"])::after {
  content: "↕";
  font-size: 0.5625rem;
  color: hsl(var(--muted-foreground));
  opacity: 0.55;
}

th[aria-sort="ascending"] .table-sort-button::after {
  content: "↑";
  font-size: 0.625rem;
  color: hsl(var(--foreground));
}

th[aria-sort="descending"] .table-sort-button::after {
  content: "↓";
  font-size: 0.625rem;
  color: hsl(var(--foreground));
}

.table-sort-bar {
  display: none;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem 0;
}

.table-sort-bar .table-sort-button {
  padding: 0.35rem 0.7rem;
  border: 1px solid hsl(var(--border));
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: hsl(var(--muted-foreground));
}

.table-sort-bar .table-sort-button.is-active {
  color: hsl(var(--foreground));
  border-color: hsl(var(--foreground));
}

.table-sort-bar .table-sort-button.is-active::after {
  content: "↑";
}

.sortable-table[data-sort-direction="desc"] .table-sort-bar .table-sort-button.is-active::after {
  content: "↓";
}

.table-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
  padding: 0.55rem 1rem;
  border: 1px solid hsl(var(--border));
  border-top: 0;
  background: hsl(var(--card));
}

.table-summary {
  margin: 0;
  margin-right: auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.table-pager {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: auto;
}

.table-pager-button {
  appearance: none;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--muted-foreground));
  font: 0.75rem var(--font-mono);
  cursor: pointer;
}

.table-pager-button[aria-current="page"] {
  color: hsl(var(--foreground));
  border-color: hsl(var(--foreground));
}

.table-pager-button:disabled {
  opacity: 0.45;
  cursor: default;
}

.table-pager-ellipsis {
  display: inline-flex;
  align-items: center;
  padding-inline: 0.15rem;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-mono);
  font-size: 0.75rem;
}

.price-none {
  color: hsl(var(--muted-foreground));
}

.tld-mobile-list {
  display: none;
}

.tld-mobile-card {
  border: 1px solid hsl(var(--border));
  border-bottom: 0;
}

.tld-mobile-card:last-child {
  border-bottom: 1px solid hsl(var(--border));
}

.tld-mobile-card-header {
  display: grid;
  grid-template-columns: 2rem 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem;
  border-bottom: 1px solid hsl(var(--border));
}

.tld-mobile-prices {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.tld-mobile-price {
  padding: 0.85rem 0.9rem;
  border-right: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.tld-mobile-price:nth-child(2n) {
  border-right: 0;
}

.tld-mobile-price dt {
  margin-bottom: 0.35rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: hsl(var(--muted-foreground));
}

.tld-mobile-price dd {
  margin: 0;
  font: 0.8125rem var(--font-mono);
}


.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.125rem 0.5rem;
  border-radius: 2px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid hsl(var(--border));
  white-space: nowrap;
}

.badge-open {
  background: hsl(142 76% 36% / 0.1);
  color: hsl(142 72% 25%);
  border-color: hsl(142 76% 36% / 0.2);
}

.dark .badge-open {
  background: hsl(142 76% 36% / 0.15);
  color: hsl(142 71% 45%);
  border-color: hsl(142 76% 36% / 0.3);
}

.badge-restricted,
.badge-closed,
.badge-suspended,
.badge-brand,
.badge-unknown {
  background: transparent;
  color: hsl(var(--muted-foreground));
}


.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  margin-bottom: 2rem;
  border-block: 1px solid hsl(var(--border));
}

.detail-identity {
  min-height: 0;
  padding: clamp(2.25rem, 5vw, 4.5rem) clamp(2rem, 5vw, 4rem) clamp(2.25rem, 5vw, 4.5rem) 0;
  border-right: 1px solid hsl(var(--border));
}

.detail-identity .breadcrumb {
  margin-bottom: 1.25rem;
}

.tld-hero-top {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.tld-name {
  max-width: 100%;
  font-size: clamp(3.25rem, 8vw, 6.75rem);
  font-weight: 500;
  font-family: var(--font-mono);
  letter-spacing: -0.075em;
  line-height: 0.9;
  overflow-wrap: anywhere;
  word-break: break-word;
  unicode-bidi: isolate;
}

.tld-description {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: hsl(var(--muted-foreground));
  max-width: 58ch;
  line-height: 1.7;
  margin-top: 1.5rem;
}

.tld-trap {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}

.price-rail,
.status-rail {
  padding: clamp(2rem, 4vw, 3.25rem);
}

.price-rail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.price-summary-label {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.75rem;
}

.price-rail-renewal {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(2.75rem, 5vw, 4.75rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.price-summary-none {
  color: hsl(var(--muted-foreground));
}

.price-rail-secondary {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--border));
}

.price-rail-secondary > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  padding: 0;
}

.price-rail-secondary dt {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
  font-size: 0.6875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

.registrar-mobile-secondary dt,
.registrar-mobile-renewal > span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.35rem;
  font-size: 0.625rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
}

.price-rail-secondary dd,
.registrar-mobile-secondary dd {
  margin: 0;
  flex-shrink: 0;
  text-align: right;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-variant-numeric: tabular-nums;
}

.price-table-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: hsl(var(--muted-foreground));
}

.price-table-note .icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.status-rail {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.status-rail strong {
  max-width: 12ch;
  margin-top: 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.status-rail p {
  max-width: 38ch;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: hsl(var(--muted-foreground));
}


.metadata-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 2rem;
  border: 1px solid hsl(var(--border));
}

.metadata-column {
  padding: 1.5rem;
}
.metadata-column + .metadata-column {
  border-left: 1px solid hsl(var(--border));
}

.metadata-column h2 {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}

.meta-dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.meta-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid hsl(var(--border));
  font-size: 0.8125rem;
}
.meta-row:last-child {
  border-bottom: none;
}

.meta-dt {
  color: hsl(var(--muted-foreground));
}
.meta-dd {
  min-width: 0;
  font-weight: 500;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.meta-country {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.meta-flag {
  width: 20px;
  height: 15px;
  flex-shrink: 0;
  object-fit: cover;
  border: 1px solid hsl(var(--border));
}
.meta-mono {
  font: 0.75rem var(--font-mono);
  overflow-wrap: anywhere;
}
.meta-restrictions {
  font-size: 0.8125rem;
}
.meta-row--block {
  grid-template-columns: 1fr;
}
.meta-ns {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
}
.meta-ns th,
.meta-ns td {
  text-align: left;
  padding: 0.25rem 0.5rem 0.25rem 0;
  vertical-align: top;
}
.meta-ns th {
  color: hsl(var(--muted-foreground));
  font-weight: 500;
}


.section {
  margin-top: 3rem;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.section-count {
  font: 0.6875rem var(--font-mono);
  color: hsl(var(--muted-foreground));
}

.sld-children-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sld-children-list a {
  text-decoration: none;
}

.sld-children-list a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.tld-name-servers-details > summary {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}
.tld-name-servers-details > summary::-webkit-details-marker {
  display: none;
}
.tld-name-servers-details > summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-bottom: 0.45rem;
  flex-shrink: 0;
  border-right: 1.5px solid hsl(var(--muted-foreground));
  border-bottom: 1.5px solid hsl(var(--muted-foreground));
  transform: rotate(45deg);
  transition: transform 0.15s ease;
}
.tld-name-servers-details[open] > summary::after {
  margin-bottom: 0.2rem;
  transform: rotate(225deg);
}
.tld-name-servers-details .table-scroll {
  margin-top: 1rem;
}

.registrar-name {
  font-weight: 500;
}

.renewal-cell {
  background: hsl(var(--muted) / 0.55);
  font-size: 0.9375rem;
  font-weight: 600;
}

.registrar-mobile-list {
  display: none;
}

.registrar-mobile-card {
  border: 1px solid hsl(var(--border));
  border-bottom: 0;
}

.registrar-mobile-card:last-child {
  border-bottom: 1px solid hsl(var(--border));
}

.registrar-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid hsl(var(--border));
}

.registrar-mobile-header h3 {
  min-width: 0;
  font-size: 0.875rem;
  overflow-wrap: anywhere;
}

.registrar-mobile-renewal {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid hsl(var(--border));
  background: hsl(var(--muted) / 0.45);
}

.registrar-mobile-renewal strong {
  font: 600 1.5rem var(--font-mono);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.registrar-mobile-secondary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.registrar-mobile-secondary > div {
  padding: 0.8rem 1rem;
}
.registrar-mobile-secondary > div + div {
  border-left: 1px solid hsl(var(--border));
}


.empty-notice,
.no-price-notice {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
  border: 1px solid hsl(var(--border));
}

.empty-notice {
  justify-content: flex-start;
}

.no-price-notice {
  justify-content: center;
  text-align: center;
}

.empty-notice p,
.no-price-notice p {
  margin: 0;
}

.listing {
  margin-top: 2rem;
}

.hub-switch + .listing {
  margin-top: 0.25rem;
}

.explorer .listing,
#schedule-results .listing {
  margin-top: 0;
}


.breadcrumb {
  margin-bottom: clamp(2.5rem, 7vw, 5rem);
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 0.35rem;
  row-gap: 0.3rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  line-height: 1;
  color: hsl(var(--muted-foreground));
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb a,
.breadcrumb [aria-current="page"],
.breadcrumb li > span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 1.25rem;
}

.breadcrumb .icon {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
}

.breadcrumb a:hover {
  color: hsl(var(--foreground));
}

.breadcrumb-sep {
  display: inline-flex;
  align-items: center;
  opacity: 0.45;
}

.breadcrumb-sep .icon {
  width: 0.75rem;
  height: 0.75rem;
}

.breadcrumb [aria-current="page"] {
  max-width: min(42ch, 100%);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.divider {
  height: 1px;
  background: hsl(var(--border));
  margin-block: 1.5rem;
}


.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: hsl(var(--foreground));
  border-radius: var(--radius);
  flex-shrink: 0;
}

.menu-toggle .icon-menu {
  display: block;
}
.menu-toggle .icon-close {
  display: none;
}
.menu-toggle.is-open .icon-menu {
  display: none;
}
.menu-toggle.is-open .icon-close {
  display: block;
}


.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: hsl(var(--background));
  overflow-y: auto;
  
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.3s;
}

.mobile-menu.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}


.mobile-menu-inner {
  padding-top: 4.25rem;
  padding-inline: 1.5rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid hsl(var(--border));
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  color: hsl(var(--foreground));
  border-bottom: 1px solid hsl(var(--border));
  transition: opacity 0.15s;
}

.mobile-nav-link .icon {
  width: 1.125rem;
  height: 1.125rem;
}

.mobile-nav-link:hover {
  opacity: 0.6;
}


body.menu-open {
  overflow: hidden;
}


@media (max-width: 760px) {
  main.container {
    padding-top: 1.5rem;
  }

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

  .hero-copy {
    padding: 3.5rem 0;
    border-right: 0;
    border-bottom: 1px solid hsl(var(--border));
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 13vw, 4.25rem);
  }

  .cost-insight {
    padding: 2rem 0;
  }

  .metric {
    min-height: 5.5rem;
    border-right: 0;
    border-bottom: 1px solid hsl(var(--border));
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .explorer-heading {
    align-items: end;
  }

  .explorer-controls {
    grid-template-columns: 1fr;
  }

  .explorer-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .explorer-tab:nth-child(even) {
    border-right: 0;
  }

  .explorer-tab:nth-child(-n + 2) {
    border-bottom: 1px solid hsl(var(--border));
  }

  .explorer-search {
    border-left: 0;
  }

  .explorer-controls:has(.explorer-tabs) .explorer-search {
    border-top: 1px solid hsl(var(--border));
  }

  .explorer-search-field {
    border-left: 0;
    padding-left: 0;
  }

  .table-sort-bar {
    display: flex;
  }

  .table-footer {
    border-top: 1px solid hsl(var(--border));
  }

  .explorer-table-wrap {
    display: none;
  }

  .tld-mobile-list {
    display: grid;
  }

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

  .phase-legend {
    grid-template-columns: 1fr;
  }

  .phase-legend article + article {
    border-left: 0;
    border-top: 1px solid hsl(var(--border));
  }

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

  .detail-identity {
    min-height: 0;
    padding: 3rem 0;
    border-right: 0;
    border-bottom: 1px solid hsl(var(--border));
  }

  .price-rail,
  .status-rail {
    padding: 2rem 0;
  }

  .price-rail-secondary {
    margin-top: 2.5rem;
  }

  .registrar-table-wrap {
    display: none;
  }
  .registrar-mobile-list {
    display: block;
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: 1rem;
  }
  .mobile-menu-inner {
    padding-inline: 1rem;
  }

  .metadata-panel {
    grid-template-columns: 1fr;
  }
  .metadata-column + .metadata-column {
    border-top: 1px solid hsl(var(--border));
    border-left: 0;
  }

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

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

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

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-block: 2rem;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--border));
}

.hub-grid::after {
  content: "";
  display: none;
  background: hsl(var(--background));
}

@media (min-width: 761px) {
  .hub-grid::after {
    display: block;
  }

  .hub-grid:has(> :nth-last-child(1):nth-child(even))::after {
    display: none;
  }
}

.hub-card {
  display: grid;
  gap: 0.65rem;
  padding: 1.5rem;
  background: hsl(var(--background));
  text-decoration: none;
  color: inherit;
}

.hub-card h2,
.hub-card h3 {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hub-card h2 .registrar-link,
.hub-card h3 .registrar-link {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.hub-card p,
.hub-card-leader {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.hub-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 1.25rem;
}

.hub-switch-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.5rem 0.85rem;
  border: 1px solid hsl(var(--border));
  font-size: 0.75rem;
  font-family: var(--font-mono);
  text-decoration: none;
  color: hsl(var(--muted-foreground));
}

.hub-switch-link.is-active {
  color: hsl(var(--foreground));
  border-color: hsl(var(--foreground));
}

@media (max-width: 760px) {
  .hub-grid {
    grid-template-columns: 1fr;
  }
  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-column {
    border-left: 0;
    padding-left: 0;
  }
}

.compare-pair-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10.5rem, 1fr));
  gap: 1px;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--border));
}

.compare-pair-list a {
  display: block;
  padding: 0.7rem 0.85rem;
  background: hsl(var(--background));
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-decoration: none;
}

.compare-pair-list a:hover {
  background: hsl(var(--muted) / 0.45);
}

.trap-steep {
  color: hsl(var(--warning-text));
}

.related-links {
  margin-block: 2rem 3rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid hsl(var(--border));
}

.related-links h2 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: hsl(var(--muted-foreground));
  margin: 0 0 1rem;
}

.related-links dl {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.65rem 1rem;
  margin: 0;
}

.related-links dt {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

.related-links dd {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin: 0;
  font-size: 0.8125rem;
}

.related-links a {
  text-decoration: none;
}

.related-links a:hover {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
@media (max-width: 760px) {
  .related-links dl {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .related-links dd {
    margin-bottom: 0.65rem;
  }
}

.tld-copy-section {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.tld-copy-section h2 {
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.tld-copy-section h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}

.tld-copy-section p,
.tld-copy-section li {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: hsl(var(--foreground));
}

.tld-copy-section ul {
  margin: 0;
  padding-left: 1.15rem;
}

.tld-copy-section li + li {
  margin-top: 0.35rem;
}

.tld-faq-item {
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.tld-faq-item:hover {
  border-color: hsl(var(--foreground) / 0.25);
}

.tld-faq-item[open] {
  border-color: hsl(var(--foreground) / 0.35);
}

.tld-faq-item + .tld-faq-item {
  margin-top: 0.75rem;
}

.tld-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1rem;
  cursor: pointer;
  list-style: none;
  border-radius: var(--radius);
}

.tld-faq-item summary::-webkit-details-marker {
  display: none;
}

.tld-faq-item summary h3 {
  flex: 1;
  margin: 0;
}

.tld-faq-answer {
  padding: 0 1rem 0.875rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.tld-faq-answer > :first-child {
  margin-top: 0;
}

.tld-faq-answer > :last-child {
  margin-bottom: 0;
}

.tld-faq-answer p,
.tld-faq-answer ul,
.tld-faq-answer ol {
  margin: 0.5rem 0;
}

.tld-faq-answer ul,
.tld-faq-answer ol {
  padding-left: 1.35rem;
}

.tld-faq-answer a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.tld-faq-answer img {
  max-width: 100%;
  height: auto;
}

.tld-faq-answer code {
  font-family: var(--font-mono);
  font-size: 0.875em;
}


.tld-faq-icon {
  position: relative;
  flex: none;
  width: 14px;
  height: 14px;
}

.tld-faq-icon::before,
.tld-faq-icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  border-radius: 1px;
  background: hsl(var(--muted-foreground));
  transform-origin: 50% 50%;
}

.tld-faq-icon::after {
  transform: rotate(90deg);
}

.tld-faq-item[open] .tld-faq-icon::after {
  transform: rotate(0);
}

.tld-faq-item summary:hover .tld-faq-icon::before,
.tld-faq-item summary:hover .tld-faq-icon::after {
  background: hsl(var(--foreground));
}


@keyframes tld-faq-icon-h-open {
  0% {
    transform: rotate(0);
  }
  45% {
    transform: rotate(45deg);
  }
  78% {
    transform: rotate(-4deg);
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes tld-faq-icon-v-open {
  0% {
    transform: rotate(90deg);
  }
  45% {
    transform: rotate(135deg);
  }
  78% {
    transform: rotate(-4deg);
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes tld-faq-icon-h-close {
  0% {
    transform: rotate(0);
  }
  45% {
    transform: rotate(45deg);
  }
  78% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(0);
  }
}

@keyframes tld-faq-icon-v-close {
  0% {
    transform: rotate(0);
  }
  45% {
    transform: rotate(135deg);
  }
  78% {
    transform: rotate(94deg);
  }
  100% {
    transform: rotate(90deg);
  }
}

@keyframes tld-faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .tld-faq-item.is-animated[open] .tld-faq-icon::before {
    animation: tld-faq-icon-h-open 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .tld-faq-item.is-animated[open] .tld-faq-icon::after {
    animation: tld-faq-icon-v-open 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .tld-faq-item.is-animated:not([open]) .tld-faq-icon::before {
    animation: tld-faq-icon-h-close 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .tld-faq-item.is-animated:not([open]) .tld-faq-icon::after {
    animation: tld-faq-icon-v-close 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .tld-faq-item[open] .tld-faq-answer {
    animation: tld-faq-answer-in 0.25s ease-out;
  }
}

.compare-heading {
  font-family: var(--font-mono);
}

.compare-trap-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: -0.5rem;
}

.compare-trap-row .compare-trap {
  margin-top: 0;
}

.page-intro-lead a,
.coupon-store-links a,
.section-kicker a,
.guide-body a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-intro-lead a:hover,
.coupon-store-links a:hover,
.section-kicker a:hover {
  color: hsl(var(--foreground));
}

.table-inline-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid hsl(var(--border));
}

.table-inline-search label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: hsl(var(--muted-foreground));
  white-space: nowrap;
}

.table-inline-search-field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.table-inline-search-field input {
  width: 100%;
  min-width: 0;
  padding: 0.45rem 0;
  border: 0;
  background: transparent;
  color: hsl(var(--foreground));
  font: 0.8125rem var(--font-mono);
}

.compare-table-wrap {
  margin-block: 2rem;
}

.compare-table th,
.compare-table td {
  vertical-align: middle;
}

.compare-table .compare-metric-label {
  font-size: 0.8125rem;
  color: hsl(var(--muted-foreground));
}

.compare-table .compare-tld-heading {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
}

.compare-table .compare-price-primary {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.compare-table .compare-winner {
  background: hsl(var(--muted) / 0.55);
}

.compare-table .compare-delta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.compare-conclusion {
  max-width: 62ch;
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 500;
}

.compare-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
}

.compare-links a:not(.tld-link) {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  color: hsl(var(--muted-foreground));
}

.compare-links a:not(.tld-link):hover {
  color: hsl(var(--foreground));
}

.guide-body {
  max-width: none;
  width: 100%;
  padding-block: 2.5rem;
  font-size: 1.0625rem;
  line-height: 1.75;
}


.guide-body:not(.info-body) {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}

.guide-body h2 {
  margin-top: 0.75rem;
  padding-top: 0.35rem;
  font-size: 1.3125rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.guide-body:not(.info-body) h2:first-child {
  margin-top: 0;
  padding-top: 0;
}

.guide-body a {
  color: inherit;
}

.guide-published {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  min-height: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  line-height: 1;
  color: hsl(var(--muted-foreground));
}

.guide-published .icon {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
}

.guide-body img {
  max-width: 100%;
  height: auto;
  border-radius: 0.35rem;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.9375rem;
  color: hsl(var(--muted-foreground));
}

.blog-author-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  object-fit: cover;
}

.guide-body ul,
.guide-body ol {
  margin: 0;
  padding-left: 1.35rem;
}

.guide-body li + li {
  margin-top: 0.45rem;
}

.guide-body a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}



.info-body {
  max-width: none;
}

.info-body h2 {
  margin-top: 0;
}


.page-intro:has(+ .guide-body) .page-intro-lead {
  max-width: none;
}

.info-section {
  padding-block: 1.75rem;
}

.info-section + .info-section {
  border-top: 1px solid hsl(var(--border));
}

.info-section:first-child {
  padding-top: 0;
}

.info-section:last-child {
  padding-bottom: 0;
}

.info-section h2 {
  margin-top: 0;
  margin-bottom: 0.875rem;
}

.info-section-content > :first-child {
  margin-top: 0;
}

main.container:has(> .not-found) {
  display: flex;
  flex-direction: column;
}

.not-found {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
}

.not-found > .breadcrumb {
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}

.not-found-body {
  display: grid;
  flex: 1;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  align-content: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}

.not-found-svg {
  display: block;
  width: 100%;
  height: auto;
  color: hsl(var(--foreground));
}

.not-found-copy h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.04em;
}

.not-found-copy .page-intro-lead {
  margin-top: 1rem;
}

.not-found-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
}

.not-found-links a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 760px) {
  .not-found-body {
    grid-template-columns: 1fr;
  }
}


.coupon-store-hero {
  padding-bottom: 2rem;
  border-bottom: 1px solid hsl(var(--border));
}

.coupon-store-hero h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.45rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.coupon-store-hero h1 .registrar-icon {
  width: 1.75rem;
  height: 1.75rem;
}

.coupon-store-stats {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.coupon-store-links {
  margin-top: 0.85rem;
  font-size: 0.875rem;
}

.coupon-store-links a {
  text-underline-offset: 0.2em;
}

.coupon-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: 2.5rem;
  margin-top: 2rem;
  align-items: start;
}

.coupon-section-title {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.coupon-rail {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.coupon-ticket {
  --coupon-paper: #f6f1e7;
  --coupon-ink: #1c1917;
  --coupon-muted: #6b645c;
  --coupon-stub: #1c1917;
  position: relative;
  display: grid;
  grid-template-columns: 7.75rem minmax(0, 1fr);
  min-height: 8.25rem;
  background: var(--coupon-paper);
  color: var(--coupon-ink);
  border-radius: 0.75rem;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 10px 28px rgba(0, 0, 0, 0.16);
}

.coupon-ticket.is-previous {
  filter: grayscale(0.35);
  opacity: 0.82;
}

.coupon-ticket::before,
.coupon-ticket::after {
  content: "";
  position: absolute;
  left: 7.75rem;
  width: 1.15rem;
  height: 1.15rem;
  background: hsl(var(--background));
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.coupon-ticket::before {
  top: -0.58rem;
}
.coupon-ticket::after {
  bottom: -0.58rem;
}

.coupon-ticket-stub {
  display: grid;
  place-content: center;
  gap: 0.15rem;
  padding: 1rem 0.65rem;
  background: var(--coupon-stub);
  color: #f6f1e7;
  text-align: center;
  border-radius: 0.75rem 0 0 0.75rem;
}

.coupon-ticket-primary {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.coupon-ticket-secondary {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  font-weight: 600;
}

.coupon-ticket-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.15rem 1.1rem 1.35rem;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 11px,
    rgba(28, 25, 23, 0.12) 11px,
    rgba(28, 25, 23, 0.12) 12px
  );
  background-size: 12px 100%;
  background-repeat: no-repeat;
  background-position: left center;
  border-radius: 0 0.75rem 0.75rem 0;
}

.coupon-ticket-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coupon-muted);
}

.coupon-ticket-copy h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.coupon-card-desc,
.coupon-card-meta {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--coupon-muted);
}

.coupon-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
}

.coupon-verified {
  color: #166534;
  font-weight: 600;
}

.coupon-reveal {
  --coupon-reveal: #e11d48;
  --coupon-reveal-fold: #9f1239;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 11.75rem;
  height: 2.75rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: var(--coupon-paper);
  color: #fff;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow:
    0 1px 2px rgba(28, 25, 23, 0.12),
    0 6px 14px rgba(225, 29, 72, 0.18);
}

.coupon-code-underlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  border: 1.5px dashed #d6d3d1;
  background: repeating-linear-gradient(-45deg, #fff, #fff 5px, #f4f0ea 5px, #f4f0ea 6px);
  color: var(--coupon-ink);
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.coupon-reveal-flap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--coupon-reveal);
}

.coupon-reveal.has-code .coupon-reveal-flap {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  padding: 0 1.15rem 0 0.85rem;
  transition:
    width 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 10px 0 14px rgba(28, 25, 23, 0.16);
}

.coupon-reveal-label {
  white-space: nowrap;
}

.coupon-reveal-fold {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--coupon-paper);
  transform: translate(50%, -50%);
  box-shadow:
    inset 6px 0 0 var(--coupon-reveal-fold),
    inset 7px 0 6px rgba(28, 25, 23, 0.18);
  pointer-events: none;
}

.coupon-reveal.has-code:hover .coupon-reveal-flap,
.coupon-reveal.has-code:focus-visible .coupon-reveal-flap {
  width: 54%;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  mask-image: radial-gradient(circle 0.55rem at 100% 50%, transparent 0.52rem, #000 0.55rem);
  -webkit-mask-image: radial-gradient(
    circle 0.55rem at 100% 50%,
    transparent 0.52rem,
    #000 0.55rem
  );
}

.coupon-reveal.has-code:hover .coupon-reveal-fold,
.coupon-reveal.has-code:focus-visible .coupon-reveal-fold {
  opacity: 0;
}

.coupon-reveal:focus-visible {
  outline: 2px solid #1c1917;
  outline-offset: 2px;
}

.coupon-ticket.is-deal .coupon-reveal {
  width: auto;
  min-width: 9.5rem;
  padding: 0 1.15rem;
  background: var(--coupon-reveal);
}

.coupon-ticket.is-deal .coupon-reveal:hover {
  filter: brightness(1.05);
}

.coupon-sidebar {
  display: grid;
  gap: 1.75rem;
}

.coupon-steps {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.55rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.coupon-faq {
  display: grid;
  gap: 1px;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--border));
}

.coupon-faq details {
  background: hsl(var(--background));
  padding: 0.9rem 1rem;
}

.coupon-faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
}

.coupon-faq details p {
  margin: 0.6rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.coupon-other-stores {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.coupon-other-stores a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  font-size: 0.875rem;
}

.coupon-other-stores span {
  color: hsl(var(--muted-foreground));
  font-variant-numeric: tabular-nums;
}

.coupon-summary {
  margin-bottom: 2rem;
}

.coupon-modal {
  width: min(32rem, calc(100vw - 2rem));
  padding: 1.5rem 1.5rem 1.35rem;
  border: 0;
  border-radius: 1rem;
  background: #f6f1e7;
  color: #1c1917;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.coupon-modal::backdrop {
  background: rgba(12, 10, 9, 0.62);
}

.coupon-modal-top {
  display: flex;
  justify-content: flex-end;
}

.coupon-modal-close {
  border: 0;
  background: transparent;
  color: #6b645c;
  font: inherit;
  font-size: 0.8125rem;
  cursor: pointer;
}

.coupon-modal-kicker {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b645c;
}

.coupon-modal-heading {
  margin: 0.4rem 0 1rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.coupon-modal-code {
  margin: 0;
  padding: 1rem 0.75rem;
  border: 2px dashed #1c1917;
  background: repeating-linear-gradient(
    -45deg,
    rgba(28, 25, 23, 0.04),
    rgba(28, 25, 23, 0.04) 8px,
    transparent 8px,
    transparent 16px
  );
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-align: center;
}

.coupon-modal-code.is-deal {
  letter-spacing: 0.04em;
  font-size: 1.15rem;
}

.coupon-modal-hint {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  color: #6b645c;
}

.coupon-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.coupon-modal-copy,
.coupon-modal-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0 1rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.coupon-modal-copy {
  border: 0;
  background: #e11d48;
  color: #fff;
}

.coupon-modal-store {
  border: 1px solid #1c1917;
  color: #1c1917;
}

.coupon-modal-copy[hidden],
.coupon-modal-store[hidden],
.coupon-modal-terms[hidden] {
  display: none;
}

.coupon-modal-terms {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: #6b645c;
}

@media (max-width: 960px) {
  .coupon-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .coupon-ticket,
  .coupon-ticket-body {
    grid-template-columns: 1fr;
  }

  .coupon-ticket::before,
  .coupon-ticket::after {
    display: none;
  }

  .coupon-ticket-stub {
    min-height: 4.5rem;
    box-shadow: none;
  }

  .coupon-ticket-body {
    background-image: none;
    padding: 1rem 1.1rem 1.25rem;
  }

  .coupon-reveal {
    width: 100%;
  }
}

.dark .coupon-ticket {
  --coupon-paper: hsl(var(--card));
  --coupon-ink: hsl(var(--foreground));
  --coupon-muted: hsl(var(--muted-foreground));
  --coupon-stub: hsl(var(--foreground));
  box-shadow: 0 10px 28px hsl(0 0% 0% / 0.35);
}

.dark .coupon-ticket-stub {
  color: hsl(var(--background));
}

.dark .coupon-code-underlay {
  border-color: hsl(var(--border));
  background: hsl(var(--muted) / 0.35);
  color: hsl(var(--foreground));
}

.dark .coupon-modal {
  background: hsl(var(--card));
  color: hsl(var(--foreground));
}

.dark .coupon-modal-code {
  border-color: hsl(var(--foreground));
}

.dark .coupon-modal-kicker,
.dark .coupon-modal-hint,
.dark .coupon-modal-terms,
.dark .coupon-modal-close {
  color: hsl(var(--muted-foreground));
}

.dark .coupon-modal-store {
  border-color: hsl(var(--foreground));
  color: hsl(var(--foreground));
}


.tld-price-history {
  --history-renew: 240 5.9% 10%;
  --history-reg: 240 3.8% 46.1%;
  --history-transfer: 240 5% 64.9%;
}

.dark .tld-price-history {
  --history-renew: 0 0% 98%;
  --history-reg: 240 5% 64.9%;
  --history-transfer: 240 4.8% 75%;
}

.tld-price-history-lead {
  margin: 0 0 1rem;
  max-width: 58ch;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
}

.tld-price-history-lead .tld-link {
  font-size: inherit;
  letter-spacing: -0.02em;
}

.tld-price-history-chart {
  position: relative;
  width: 100%;
  height: 280px;
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  background: hsl(var(--card));
}

.tld-price-history-svg {
  position: absolute;
  inset: 0;
}

.tld-price-history-svg-canvas {
  display: block;
}

.tld-price-history-svg .chart-grid {
  stroke: hsl(var(--border));
  stroke-width: 1;
}

.tld-price-history-svg .chart-axis-label {
  fill: hsl(var(--muted-foreground));
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
}

.tld-price-history-svg .chart-series {
  fill: none;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.tld-price-history-svg .chart-hover-guide {
  stroke: hsl(var(--border));
  stroke-width: 1;
}

.tld-price-history-svg .chart-hover-dot {
  stroke: hsl(var(--card));
  stroke-width: 2;
}

.tld-price-history-chart[data-animated] .tld-price-history-svg {
  animation: tld-price-history-in 0.4s ease-out;
}

@keyframes tld-price-history-in {
  from {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tld-price-history-chart[data-animated] .tld-price-history-svg {
    animation: none;
  }
}

.tld-price-history-legend {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  display: flex;
  gap: 0.9rem;
  pointer-events: none;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  color: hsl(var(--muted-foreground));
}

.tld-price-history-legend-item::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  margin-right: 6px;
  vertical-align: middle;
  background: var(--series-swatch);
}

.tld-price-history-tooltip {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  transform: translate(12px, 0);
  min-width: 150px;
  padding: 0.5rem 0.625rem;
  background: hsl(var(--popover));
  color: hsl(var(--popover-foreground));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  font-size: 0.75rem;
  line-height: 1.6;
  box-shadow: 0 4px 12px hsl(0 0% 0% / 0.08);
}

.tld-price-history-tooltip-left {
  transform: translate(calc(-100% - 12px), 0);
}

.tld-price-history-tooltip-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.tld-price-history-tooltip-row {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.tld-price-history-tooltip-swatch {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: none;
}

.tld-price-history-table-wrap {
  margin-top: 1rem;
}

.tld-price-history-table-wrap summary {
  cursor: pointer;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.tld-price-history-table-wrap .table-scroll {
  margin-top: 0.75rem;
}

.section-title .icon {
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.35rem;
}
