:root {
    --fd-bg: #ffffff;
    --fd-bg-soft: #f5f7fa;
    --fd-surface: #ffffff;
    --fd-surface-raised: #ffffff;
    --fd-surface-dark: #111318;
    --fd-text: #111318;
    --fd-text-muted: #667085;
    --fd-border: #e4e7ec;
    --fd-border-strong: #d0d5dd;
    --fd-primary: #1769ff;
    --fd-primary-hover: #0f55d9;
    --fd-primary-soft: #edf4ff;
    --fd-success: #138a55;
    --fd-success-soft: #eaf8f1;
    --fd-warning: #9b6200;
    --fd-warning-soft: #fff7e0;
    --fd-danger: #d92d20;
    --fd-danger-soft: #fff0ee;
    --fd-radius-sm: 8px;
    --fd-radius-md: 12px;
    --fd-radius-lg: 20px;
    --fd-shadow-sm: 0 6px 24px rgba(16, 24, 40, 0.06);
    --fd-shadow-md: 0 18px 50px rgba(16, 24, 40, 0.1);
    --fd-container: 1240px;
    --fd-header-height: 76px;
}

:root[data-theme="dark"] {
    --fd-bg: #0d0f12;
    --fd-bg-soft: #14171c;
    --fd-surface: #111419;
    --fd-surface-raised: #181c22;
    --fd-text: #f5f7fa;
    --fd-text-muted: #a6afbd;
    --fd-border: #2b313a;
    --fd-border-strong: #3c4551;
    --fd-primary: #5c91ff;
    --fd-primary-hover: #7da7ff;
    --fd-primary-soft: #182a4d;
    --fd-success: #5fd29a;
    --fd-success-soft: #153426;
    --fd-warning: #f4bd55;
    --fd-warning-soft: #372a12;
    --fd-danger: #ff7b72;
    --fd-danger-soft: #3b1e1d;
    --fd-shadow-sm: 0 8px 28px rgba(0, 0, 0, 0.25);
    --fd-shadow-md: 0 20px 54px rgba(0, 0, 0, 0.38);
}

html {
    scroll-padding-top: calc(var(--fd-header-height) + 20px);
}

.fd-site {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--fd-bg);
    color: var(--fd-text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}

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

.fd-site .container {
    width: 100%;
    max-width: var(--fd-container);
    margin-inline: auto;
    padding-inline: 24px;
}

.fd-site a {
    color: var(--fd-primary);
    text-underline-offset: 0.2em;
}

.fd-site a:hover {
    color: var(--fd-primary-hover);
}

.fd-site img {
    max-width: 100%;
    height: auto;
}

.fd-site h1,
.fd-site h2,
.fd-site h3,
.fd-site h4 {
    margin-top: 0;
    color: var(--fd-text);
    font-weight: 760;
    letter-spacing: 0;
}

.fd-site h1 {
    max-width: 18ch;
    margin-bottom: 24px;
    font-size: 4.5rem;
    line-height: 1;
}

.fd-site h2 {
    font-size: 2.5rem;
    line-height: 1.1;
}

.fd-site h3 {
    font-size: 1.4rem;
    line-height: 1.25;
}

.fd-site p {
    color: inherit;
}

.fd-site .section {
    padding-top: 96px;
    padding-bottom: 96px;
}

.fd-site .narrow {
    max-width: 880px;
}

.fd-site .eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--fd-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.fd-site .eyebrow > span:empty {
    width: 22px;
    height: 2px;
    background: currentColor;
}

.fd-site .lede {
    max-width: 720px;
    color: var(--fd-text-muted);
    font-size: 1.18rem;
    line-height: 1.7;
}

.fd-site .lede p:last-child {
    margin-bottom: 0;
}

.fd-site .section-title {
    max-width: 16ch;
    margin-bottom: 0;
    font-size: 3rem;
    line-height: 1.05;
}

.fd-site .btn {
    min-height: 46px;
    border-radius: var(--fd-radius-sm);
    padding: 10px 18px;
    font-weight: 700;
    letter-spacing: 0;
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.fd-site .btn-primary {
    --bs-btn-bg: var(--fd-primary);
    --bs-btn-border-color: var(--fd-primary);
    --bs-btn-hover-bg: var(--fd-primary-hover);
    --bs-btn-hover-border-color: var(--fd-primary-hover);
    --bs-btn-active-bg: var(--fd-primary-hover);
    --bs-btn-active-border-color: var(--fd-primary-hover);
    color: #ffffff;
}

.fd-site a.btn-primary:hover,
.fd-site a.btn-primary:focus {
    color: #ffffff;
}

.fd-site .btn-outline-primary {
    --bs-btn-color: var(--fd-primary);
    --bs-btn-border-color: var(--fd-border-strong);
    --bs-btn-hover-bg: var(--fd-primary);
    --bs-btn-hover-border-color: var(--fd-primary);
}

.fd-site .btn-outline-secondary {
    --bs-btn-color: var(--fd-text);
    --bs-btn-border-color: var(--fd-border-strong);
    --bs-btn-hover-color: var(--fd-text);
    --bs-btn-hover-bg: var(--fd-bg-soft);
    --bs-btn-hover-border-color: var(--fd-border-strong);
}

.fd-site :focus-visible {
    outline: 3px solid color-mix(in srgb, var(--fd-primary) 35%, transparent);
    outline-offset: 3px;
}

.fd-skip-link {
    position: fixed;
    z-index: 1100;
    top: 12px;
    left: 12px;
    transform: translateY(-160%);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-text);
    color: var(--fd-bg) !important;
    padding: 10px 16px;
    font-weight: 700;
    transition: transform 160ms ease;
}

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

/* Header */

.fd-site .fd-header {
    position: sticky;
    z-index: 1030;
    top: 0;
    min-height: var(--fd-header-height);
    border-bottom: 1px solid color-mix(in srgb, var(--fd-border) 82%, transparent);
    background: color-mix(in srgb, var(--fd-bg) 90%, transparent);
    box-shadow: none;
    backdrop-filter: blur(16px);
}

.fd-header .navbar {
    min-height: var(--fd-header-height);
    padding: 10px 0;
}

.fd-header .brand,
.fd-footer .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--fd-text);
    font-size: 1.25rem;
    font-weight: 800;
}

.fd-header .brand:hover,
.fd-footer .brand:hover {
    color: var(--fd-text);
}

.fd-brand-mark {
    display: inline-grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 9px;
    background: var(--fd-primary);
    color: #fff;
    font-size: 1rem;
    font-weight: 850;
}

.fd-header .nav-link {
    position: relative;
    margin-inline: 2px;
    border-radius: 7px;
    color: var(--fd-text-muted);
    font-size: 0.94rem;
    font-weight: 650;
}

.fd-header .nav-link:hover,
.fd-header .nav-link.active {
    background: var(--fd-bg-soft);
    color: var(--fd-text);
}

.fd-navbar-utility {
    gap: 8px;
}

.fd-icon-button {
    display: inline-grid;
    width: 42px;
    height: 42px;
    min-height: 42px !important;
    padding: 0 !important;
    place-items: center;
    border: 1px solid var(--fd-border) !important;
    border-radius: 50% !important;
    background: var(--fd-surface) !important;
    color: var(--fd-text) !important;
}

.fd-icon-button:hover {
    border-color: var(--fd-border-strong) !important;
    background: var(--fd-bg-soft) !important;
}

.fd-site .fd-theme-switch {
    display: inline-grid;
    width: 54px;
    height: 32px;
    min-height: 32px;
    flex: 0 0 54px;
    place-items: center;
    overflow: visible;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--fd-text);
    padding: 0;
}

.fd-theme-switch__track {
    position: relative;
    display: block;
    width: 52px;
    height: 30px;
    border: 1px solid var(--fd-border-strong);
    border-radius: 999px;
    background: var(--fd-bg-soft);
    transition: border-color 180ms ease, background-color 180ms ease;
}

.fd-theme-switch__thumb {
    position: absolute;
    z-index: 2;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--fd-surface-raised);
    box-shadow: 0 2px 8px rgba(16, 24, 40, 0.2);
    transition: transform 180ms ease, background-color 180ms ease;
}

.fd-theme-switch__sun,
.fd-theme-switch__moon {
    position: absolute;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.68rem;
    line-height: 1;
}

.fd-theme-switch__sun {
    left: 7px;
    color: var(--fd-warning);
}

.fd-theme-switch__moon {
    right: 7px;
    color: var(--fd-text-muted);
}

:root[data-theme="dark"] .fd-theme-switch__track {
    border-color: color-mix(in srgb, var(--fd-primary) 55%, var(--fd-border));
    background: var(--fd-primary-soft);
}

:root[data-theme="dark"] .fd-theme-switch__thumb {
    transform: translateX(22px);
}

.fd-site .fd-theme-switch:hover .fd-theme-switch__track {
    border-color: var(--fd-primary);
}

.fd-header .navbar-toggler-icon {
    width: 20px;
    height: 20px;
}

:root[data-theme="dark"] .fd-header .navbar-toggler-icon {
    filter: invert(1);
}

.fd-language-toggle {
    display: inline-flex;
    max-width: 168px;
    min-height: 42px !important;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    border: 0;
    background: transparent;
    color: var(--fd-text);
    font-size: 0.9rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fd-language-code {
    display: inline-grid;
    min-width: 30px;
    height: 26px;
    place-items: center;
    border: 1px solid var(--fd-border);
    border-radius: 6px;
    background: var(--fd-bg-soft);
    color: var(--fd-text);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
}

.fd-language-name {
    overflow: hidden;
    text-overflow: ellipsis;
}

.fd-language-menu {
    width: 290px;
    max-height: min(520px, calc(100vh - 110px));
    overflow-y: auto;
    border-color: var(--fd-border);
    border-radius: var(--fd-radius-md);
    background: var(--fd-surface-raised);
    box-shadow: var(--fd-shadow-md);
    padding: 8px;
}

.fd-language-menu .dropdown-item {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: space-between;
    border-radius: 7px;
    color: var(--fd-text);
    gap: 12px;
}

.fd-language-menu .dropdown-item small {
    color: var(--fd-text-muted);
    font-size: 0.7rem;
    font-weight: 750;
}

.fd-language-menu .dropdown-item:hover {
    background: var(--fd-bg-soft);
}

.fd-language-menu .dropdown-item.active {
    background: var(--fd-primary-soft);
    color: var(--fd-primary);
}

.fd-header-cta,
.fd-account-toggle {
    min-height: 42px !important;
    padding: 8px 14px !important;
    font-size: 0.9rem;
}

.fd-header-cta {
    white-space: nowrap;
}

.fd-account-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--fd-border);
    background: transparent;
    color: var(--fd-text);
}

.fd-account-toggle:hover,
.fd-account-toggle[aria-expanded="true"] {
    border-color: var(--fd-border-strong);
    background: var(--fd-bg-soft);
    color: var(--fd-text);
}

.fd-account-avatar {
    display: inline-grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: var(--fd-primary-soft);
    color: var(--fd-primary);
    font-size: 0.72rem;
    font-weight: 800;
}

.fd-account-menu {
    min-width: 220px;
    border-color: var(--fd-border);
    border-radius: var(--fd-radius-md);
    background: var(--fd-surface-raised);
    box-shadow: var(--fd-shadow-md);
    padding: 8px;
}

.fd-account-menu .dropdown-item {
    min-height: 42px;
    border-radius: 7px;
    color: var(--fd-text);
    padding: 9px 12px;
}

.fd-account-menu .dropdown-item:hover {
    background: var(--fd-bg-soft);
}

.fd-account-menu .fd-logout-link {
    color: var(--fd-danger);
}

.fd-account-menu .dropdown-divider {
    border-color: var(--fd-border);
}

/* Hero and shared search */

.fd-home-hero {
    position: relative;
    display: flex;
    min-height: calc(88vh - var(--fd-header-height));
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--fd-border);
    background:
        linear-gradient(90deg, transparent 49.9%, color-mix(in srgb, var(--fd-border) 50%, transparent) 50%, transparent 50.1%),
        linear-gradient(0deg, transparent 49.9%, color-mix(in srgb, var(--fd-border) 50%, transparent) 50%, transparent 50.1%),
        var(--fd-bg);
    background-size: 72px 72px;
}

.fd-home-hero::before {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--fd-bg) 28%, transparent) 0, var(--fd-bg) 66%);
    content: "";
    pointer-events: none;
}

.fd-home-hero .container {
    position: relative;
    z-index: 1;
}

.fd-hero-copy {
    max-width: 1160px;
    margin-inline: auto;
    padding: 110px 0 90px;
    text-align: center;
}

.fd-hero-copy .eyebrow {
    justify-content: center;
}

.fd-hero-copy h1 {
    max-width: 14ch;
    margin-inline: auto;
    font-size: 5rem;
}

.fd-hero-copy .hero-copy {
    max-width: 700px;
    margin: 0 auto 36px;
    color: var(--fd-text-muted);
    font-size: 1.25rem;
    line-height: 1.65;
}

.fd-site .domain-search-form {
    display: block;
    width: 100%;
    max-width: 1080px;
    margin-inline: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.domain-search-form__control {
    display: flex;
    width: 100%;
    min-height: 70px;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--fd-border-strong);
    border-radius: var(--fd-radius-md);
    background: var(--fd-surface-raised);
    box-shadow: var(--fd-shadow-md);
    padding: 8px;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.domain-search-form__control:focus-within {
    border-color: var(--fd-primary);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--fd-primary) 13%, transparent), var(--fd-shadow-md);
}

.domain-search-form__icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-inline-start: 12px;
    border: 2px solid var(--fd-text-muted);
    border-radius: 50%;
}

.domain-search-form__icon::after {
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 8px;
    height: 2px;
    transform: rotate(45deg);
    border-radius: 2px;
    background: var(--fd-text-muted);
    content: "";
}

.fd-site .domain-search-form__control .form-control,
.fd-site .domain-search-input .form-control,
.fd-site .fd-filter-control .form-control {
    min-width: 0;
    min-height: 50px;
    border: 0;
    background: transparent;
    color: var(--fd-text);
    box-shadow: none;
    font-size: 1.1rem;
}

.fd-site .domain-search-form__control .form-control::placeholder,
.fd-site .domain-search-input .form-control::placeholder,
.fd-site .fd-filter-control .form-control::placeholder {
    color: var(--fd-text-muted);
    opacity: 0.78;
}

.domain-search-form__control .btn {
    min-width: 158px;
    min-height: 52px;
}

.fd-search-hint {
    margin: 18px 0 0;
    color: var(--fd-text-muted);
    font-size: 0.9rem;
}

.fd-search-hint a {
    font-weight: 700;
}

.fd-hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    margin: 28px 0 0;
    padding: 0;
    color: var(--fd-text-muted);
    font-size: 0.9rem;
    list-style: none;
}

.fd-hero-benefits span {
    color: var(--fd-success);
    font-weight: 850;
}

/* Editorial sections and cards */

.fd-content-band {
    border-bottom: 1px solid var(--fd-border);
    background: var(--fd-bg);
}

.fd-content-band--soft {
    background: var(--fd-bg-soft);
}

.fd-editorial-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 80px;
}

.fd-home-content {
    width: 100%;
    max-width: none;
}

.fd-home-content > .container {
    max-width: none;
    padding-inline: 0;
}

.fd-home-content > section:first-child {
    margin-top: 0 !important;
}

.fd-home-content > section:first-child .row {
    row-gap: 32px;
}

.fd-home-content > div.container {
    padding-top: 72px !important;
    padding-bottom: 0 !important;
}

.fd-site .content-body {
    color: var(--fd-text-muted);
    font-size: 1.04rem;
    line-height: 1.8;
}

.fd-site .content-body h2,
.fd-site .content-body h3 {
    margin-top: 2em;
    color: var(--fd-text);
}

.fd-site .content-body a {
    font-weight: 650;
    text-decoration: underline;
}

.fd-site .blockquote-footer {
    color: #475467;
}

:root[data-theme="dark"] .fd-site .blockquote-footer {
    color: #c7ced8;
}

.fd-site .content-body img {
    border-radius: var(--fd-radius-md);
}

.fd-site .content-body table {
    width: 100%;
}

.fd-site .section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 36px;
}

.fd-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 750;
    white-space: nowrap;
}

.fd-text-link span {
    transition: transform 180ms ease;
}

.fd-text-link:hover span {
    transform: translateX(3px);
}

.fd-tld-section {
    background: var(--fd-bg);
}

.fd-site .tld-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.fd-site .tld-card {
    display: flex;
    min-height: 230px;
    flex-direction: column;
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-md);
    background: var(--fd-surface);
    color: var(--fd-text);
    padding: 26px;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fd-site .tld-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--fd-primary) 46%, var(--fd-border));
    box-shadow: var(--fd-shadow-sm);
    color: var(--fd-text);
}

.tld-card__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
}

.tld-card__top strong {
    overflow-wrap: anywhere;
    color: var(--fd-text);
    font-size: 2rem;
    line-height: 1.05;
}

.tld-card__top > span {
    color: var(--fd-text-muted);
}

.tld-card__description {
    display: -webkit-box;
    margin-top: 22px;
    overflow: hidden;
    color: var(--fd-text-muted);
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.tld-card__price {
    margin-top: auto;
    padding-top: 22px;
    color: var(--fd-text-muted);
    font-size: 0.88rem;
}

.tld-card__price strong {
    color: var(--fd-text);
}

/* Page headers, filters, summaries */

.fd-page-heading {
    max-width: 860px;
    margin-bottom: 48px;
}

.fd-page-heading--center {
    margin-inline: auto;
    text-align: center;
}

.fd-page-heading--center h1,
.fd-page-heading--center .lede {
    margin-inline: auto;
}

.fd-page-heading--center .eyebrow {
    justify-content: center;
}

.fd-detail-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
}

.fd-detail-hero > div:first-child {
    min-width: 0;
    max-width: 820px;
}

.fd-site .provider-status-line {
    color: var(--fd-text-muted);
    overflow-wrap: anywhere;
}

.fd-site .tld-search-panel,
.fd-site .provider-toolbar {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.fd-site .tld-search-panel {
    flex-wrap: wrap;
}

.fd-site .tld-search-panel > label {
    width: 100%;
    margin: 0;
    color: var(--fd-text);
    font-size: 0.88rem;
    font-weight: 750;
}

.fd-filter-control {
    display: flex;
    width: min(100%, 520px);
    min-height: 52px;
    align-items: center;
    border: 1px solid var(--fd-border-strong);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-surface);
    padding: 0 12px;
}

.fd-filter-control:focus-within {
    border-color: var(--fd-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--fd-primary) 12%, transparent);
}

.fd-filter-control .domain-search-form__icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    margin-inline-start: 2px;
}

.fd-result-summary,
.provider-toolbar > span {
    color: var(--fd-text-muted);
    font-size: 0.9rem;
    font-weight: 650;
    white-space: nowrap;
}

.fd-site .provider-status-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin: 18px 0 28px;
    color: var(--fd-text-muted);
    font-size: 0.86rem;
}

.fd-site .provider-status-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Tables */

.fd-site .table-wrap {
    position: relative;
    overflow-x: auto;
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-md);
    background: var(--fd-surface);
    box-shadow: none;
}

.fd-site .comparison-table {
    width: 100%;
    min-width: 820px;
    margin: 0;
    color: var(--fd-text);
    border-collapse: separate;
    border-spacing: 0;
}

.fd-site .comparison-table > :not(caption) > * > * {
    border-bottom-color: var(--fd-border);
    background: transparent;
    color: inherit;
    padding: 18px 20px;
    box-shadow: none;
    vertical-align: middle;
}

.fd-site .comparison-table thead th {
    position: sticky;
    z-index: 2;
    top: 0;
    background: var(--fd-bg-soft);
    color: var(--fd-text-muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.fd-site .comparison-table tbody tr:last-child td {
    border-bottom: 0;
}

.fd-site .comparison-table tbody tr {
    transition: background-color 150ms ease;
}

.fd-site .comparison-table tbody tr:hover {
    background: color-mix(in srgb, var(--fd-primary-soft) 52%, transparent);
}

.fd-site .comparison-table td:first-child a,
.fd-site .comparison-table td:first-child strong {
    font-weight: 760;
}

.fd-site .comparison-table td {
    overflow-wrap: anywhere;
}

.fd-site .comparison-table .btn {
    white-space: nowrap;
}

.fd-site .comparison-table .price-cell,
.fd-site .comparison-table th.text-end {
    text-align: end;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.fd-site .provider-table td:nth-child(2),
.fd-site .provider-table td:nth-child(3),
.fd-site .provider-table td:nth-child(4),
.fd-site .provider-table td:nth-child(5) {
    font-variant-numeric: tabular-nums;
}

.fd-directory-page .comparison-table th:nth-child(4),
.fd-directory-page .comparison-table td:nth-child(4) {
    min-width: 140px;
}

.fd-site .provider-table th:last-child,
.fd-site .provider-table td:last-child {
    min-width: 92px;
    white-space: nowrap;
}

.fd-site .provider-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: max-content;
    margin-top: 7px;
    border: 0;
    background: var(--fd-bg-soft);
    color: var(--fd-text-muted);
    font-size: 0.72rem;
    font-weight: 750;
    text-transform: capitalize;
}

.fd-site .provider-status::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.fd-site .provider-status.live {
    background: var(--fd-success-soft);
    color: var(--fd-success);
}

.fd-site .provider-status.api_error {
    background: var(--fd-danger-soft);
    color: var(--fd-danger);
}

.fd-site .pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fd-site .pill-list span {
    border: 1px solid var(--fd-border);
    border-radius: 999px;
    background: var(--fd-bg-soft);
    color: var(--fd-text-muted);
    padding: 4px 8px;
    font-size: 0.72rem;
    line-height: 1.2;
}

.fd-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: var(--fd-bg-soft);
    color: var(--fd-text-muted);
    padding: 5px 9px;
    font-size: 0.75rem;
    font-weight: 750;
    white-space: nowrap;
}

.fd-status-badge::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    content: "";
}

.fd-status-badge.is-available {
    background: var(--fd-success-soft);
    color: var(--fd-success);
}

.fd-status-badge.is-unavailable {
    background: var(--fd-danger-soft);
    color: var(--fd-danger);
}

.fd-status-badge.is-cached,
.fd-status-badge.is-unknown {
    background: var(--fd-warning-soft);
    color: var(--fd-warning);
}

/* Domain search application */

.fd-site .domain-search-page {
    min-height: 70vh;
    background: var(--fd-bg-soft);
}

.fd-site .domain-search-hero {
    max-width: var(--fd-container);
}

.fd-site .domain-search-shell {
    overflow: hidden;
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-md);
    background: var(--fd-surface);
    box-shadow: var(--fd-shadow-sm);
}

.fd-site .domain-search-toolbar {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) auto auto;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--fd-border);
    padding: 20px;
}

.fd-site .domain-search-input {
    display: flex;
    min-width: 0;
    align-items: center;
    border: 1px solid var(--fd-border-strong);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-surface);
    padding: 4px 4px 4px 10px;
}

.fd-site .domain-search-input:focus-within {
    border-color: var(--fd-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--fd-primary) 12%, transparent);
}

.fd-site .domain-search-input .domain-search-form__icon {
    width: 18px;
    height: 18px;
    flex-basis: 18px;
    margin-inline-start: 4px;
}

.fd-site .domain-search-input .btn {
    min-height: 44px;
}

.fd-site .domain-page-size {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: var(--fd-text-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.fd-site .domain-page-size .form-select {
    width: 78px;
    min-height: 44px;
    border-color: var(--fd-border-strong);
    background-color: var(--fd-surface);
    color: var(--fd-text);
}

.fd-site .domain-result-count {
    color: var(--fd-text-muted);
    font-size: 0.86rem;
    font-weight: 650;
    white-space: nowrap;
}

.fd-site .domain-search-state {
    min-height: 42px;
    border-bottom: 1px solid var(--fd-border);
    color: var(--fd-text-muted);
    padding: 10px 20px;
    font-size: 0.84rem;
}

.fd-site .domain-search-state:empty {
    display: none;
}

.fd-site .domain-results-table {
    max-height: none;
    overflow: auto;
    border: 0;
    border-radius: 0;
}

.fd-site .domain-results-table .comparison-table {
    min-width: 760px;
}

.fd-site .domain-results-table .comparison-table > :not(caption) > * > * {
    padding: 20px;
}

.fd-site .availability-cell > span:last-child {
    margin-inline-start: 8px;
    color: var(--fd-text-muted);
    font-size: 0.82rem;
    font-weight: 650;
}

.fd-site .availability-dot {
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    font-size: 0.78rem;
    font-weight: 850;
}

.fd-site .availability-dot.available {
    background: var(--fd-success-soft);
    color: var(--fd-success);
}

.fd-site .availability-dot.unavailable {
    background: var(--fd-danger-soft);
    color: var(--fd-danger);
}

.fd-site .availability-dot.unknown {
    background: var(--fd-warning-soft);
    color: var(--fd-warning);
}

.fd-site .domain-chip {
    display: inline-block;
    max-width: 300px;
    overflow-wrap: anywhere;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--fd-text);
    padding: 0;
    font-size: 1rem;
    font-weight: 760;
}

.fd-site .domain-chip:hover {
    color: var(--fd-primary);
}

.fd-site .offer-details summary {
    cursor: pointer;
    color: var(--fd-primary);
    font-size: 0.84rem;
    font-weight: 750;
}

.fd-site .offer-details > div {
    margin-top: 10px;
}

.fd-site .offer-details p {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    padding: 5px 0;
    color: var(--fd-text-muted);
    font-size: 0.82rem;
}

.fd-site .domain-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    border-top: 1px solid var(--fd-border);
    padding: 16px 20px;
}

.fd-site .domain-pagination[hidden] {
    display: none;
}

.fd-site .domain-pagination > span {
    color: var(--fd-text-muted);
    font-size: 0.86rem;
    font-weight: 650;
}

/* Detail stats, content, blog, and auth */

.fd-site .price-list,
.fd-site .provider-stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 0 0 36px;
    overflow: hidden;
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-md);
    background: var(--fd-surface);
}

.fd-site .provider-stats-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fd-site .price-list > div,
.fd-site .provider-stats-row > div {
    min-width: 0;
    border: 0;
    border-inline-end: 1px solid var(--fd-border);
    border-radius: 0;
    background: transparent;
    padding: 24px;
}

.fd-site .price-list > div:last-child,
.fd-site .provider-stats-row > div:last-child {
    border-inline-end: 0;
}

.fd-site .price-list dt,
.fd-site .provider-stats-row span {
    display: block;
    margin-bottom: 10px;
    color: var(--fd-text-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.fd-site .price-list dd,
.fd-site .provider-stats-row strong {
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--fd-text);
    font-size: 1.65rem;
    font-variant-numeric: tabular-nums;
    line-height: 1.2;
}

.fd-site .compact-section {
    padding-top: 72px;
    padding-bottom: 0;
}

.fd-site .fd-prose-section {
    max-width: 800px;
    margin-top: 64px;
}

.fd-empty-state {
    display: flex;
    min-height: 170px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px dashed var(--fd-border-strong);
    border-radius: var(--fd-radius-md);
    background: var(--fd-bg-soft);
    color: var(--fd-text-muted);
    padding: 32px;
    text-align: center;
}

.fd-empty-state strong {
    color: var(--fd-text);
    font-size: 1.1rem;
}

.fd-site .alert-box {
    border: 1px solid color-mix(in srgb, var(--fd-danger) 35%, var(--fd-border));
    border-radius: var(--fd-radius-sm);
    background: var(--fd-danger-soft);
    color: var(--fd-danger);
    padding: 14px 16px;
}

.fd-site .callout {
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-bg-soft);
    color: var(--fd-text-muted);
    padding: 18px;
}

.fd-blog-index .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.fd-blog-index .blog-card {
    overflow: hidden;
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-md);
    background: var(--fd-surface);
    box-shadow: none;
    transition: border-color 180ms ease, transform 180ms ease;
}

.fd-blog-index .blog-card:hover {
    transform: translateY(-3px);
    border-color: var(--fd-border-strong);
}

.blog-card__image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--fd-bg-soft);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.02);
}

.blog-card__body {
    padding: 24px;
}

.blog-card__body h2 {
    margin-bottom: 12px;
    font-size: 1.35rem;
    line-height: 1.3;
}

.blog-card__body h2 a {
    color: var(--fd-text);
}

.blog-card__body > p:not(.eyebrow) {
    color: var(--fd-text-muted);
}

.fd-blog-post__header {
    padding-bottom: 48px !important;
}

.fd-blog-post__header h1 {
    max-width: 18ch;
}

.fd-blog-post .post-hero {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 8.4;
    border-radius: var(--fd-radius-md);
    object-fit: cover;
}

.fd-article-body {
    max-width: 780px;
    margin: 0 auto;
    padding: 72px 0 110px;
}

.fd-auth-page {
    min-height: calc(100vh - var(--fd-header-height) - 200px);
    padding-top: 80px !important;
}

.fd-auth-page > header {
    margin-bottom: 32px;
}

.fd-auth-page h1 {
    font-size: 3.3rem;
}

.fd-site .fd-auth-form {
    gap: 20px;
    max-width: 560px;
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-md);
    background: var(--fd-surface);
    box-shadow: var(--fd-shadow-sm);
    padding: 28px;
}

.fd-site .fd-auth-form .form-label {
    margin: 0;
    color: var(--fd-text);
    font-size: 0.9rem;
    font-weight: 700;
}

.fd-site .fd-auth-form .form-control {
    min-height: 50px;
    margin-top: 7px;
    border-color: var(--fd-border-strong);
    background: var(--fd-bg);
    color: var(--fd-text);
}

.fd-site .fd-auth-form .btn {
    width: 100%;
}

.fd-site .auth-links {
    display: flex;
    gap: 14px 24px;
    max-width: 560px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.fd-empty-page {
    min-height: 60vh;
    padding-top: 110px !important;
}

.fd-domain-name {
    overflow-wrap: anywhere;
    color: var(--fd-primary);
}

.fd-site .dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.fd-site .dashboard-grid > section {
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-md);
    background: var(--fd-surface);
    padding: 28px;
}

/* Toasts and footer */

.fd-site .toast-root {
    position: fixed;
    z-index: 1080;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 10px;
}

.fd-site .toast-notice {
    min-width: 260px;
    border: 1px solid var(--fd-border);
    border-radius: var(--fd-radius-sm);
    background: var(--fd-surface-raised);
    box-shadow: var(--fd-shadow-md);
    color: var(--fd-text);
    padding: 13px 16px;
}

.fd-site .fd-footer {
    margin-top: 0;
    border-top: 1px solid var(--fd-border);
    background: var(--fd-surface-dark);
    color: #f4f6f9;
    padding: 72px 0 28px;
}

.fd-footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(140px, 0.7fr));
    gap: 48px;
}

.fd-footer .brand {
    color: #ffffff;
}

.fd-footer-brand p {
    max-width: 380px;
    margin: 20px 0 0;
    color: #aeb7c4;
}

.fd-footer nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fd-footer nav strong {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 0.84rem;
}

.fd-footer nav a {
    color: #aeb7c4;
    font-size: 0.9rem;
}

.fd-footer nav a:hover {
    color: #ffffff;
}

.fd-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 64px;
    border-top: 1px solid #2b313a;
    padding-top: 24px;
    color: #87919f;
    font-size: 0.8rem;
}

/* Responsive */

@media (max-width: 1199.98px) {
    .fd-header .navbar-collapse {
        margin-top: 10px;
        border-top: 1px solid var(--fd-border);
        padding: 18px 0 8px;
    }

    .fd-header .navbar-nav {
        gap: 4px;
    }

    .fd-header .nav-link {
        margin: 0;
        padding: 10px 12px;
    }

    .fd-navbar-utility {
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 8px;
        margin-top: 14px;
        border-top: 1px solid var(--fd-border);
        padding-top: 16px;
    }

    .fd-navbar-utility .dropdown,
    .fd-navbar-utility .fd-language-toggle,
    .fd-navbar-utility .fd-account-toggle,
    .fd-navbar-utility .fd-header-cta {
        width: 100%;
        max-width: none;
    }

    .fd-navbar-utility .fd-language-toggle,
    .fd-navbar-utility .fd-account-toggle {
        justify-content: space-between;
        border: 1px solid var(--fd-border);
    }

    .fd-language-menu {
        width: 100%;
    }

    .fd-header-actions .theme-toggle {
        display: inline-grid;
    }
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
    .fd-language-name {
        display: none;
    }

    .fd-language-toggle {
        padding-inline: 6px;
    }
}

@media (min-width: 1200px) {
    .fd-header-actions .theme-toggle {
        display: inline-grid;
    }

    .fd-header .navbar-collapse > .navbar-nav {
        flex-shrink: 0;
    }
}

@media (max-width: 991.98px) {
    .fd-site h1,
    .fd-hero-copy h1 {
        font-size: 3.8rem;
    }

    .fd-site .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .fd-editorial-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .fd-site .tld-grid,
    .fd-blog-index .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fd-site .domain-search-toolbar {
        grid-template-columns: 1fr auto;
    }

    .fd-site .domain-search-input {
        grid-column: 1 / -1;
    }

    .fd-site .provider-stats-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fd-site .provider-stats-row > div:nth-child(2) {
        border-inline-end: 0;
    }

    .fd-site .provider-stats-row > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--fd-border);
    }

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

    .fd-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    :root {
        --fd-header-height: 68px;
    }

    .fd-site .container {
        padding-inline: 18px;
    }

    .fd-site h1,
    .fd-hero-copy h1 {
        font-size: 3rem;
        line-height: 1.04;
    }

    .fd-site h2,
    .fd-site .section-title {
        font-size: 2.15rem;
    }

    .fd-site .section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .fd-hero-copy {
        padding: 80px 0 64px;
    }

    .fd-hero-copy .hero-copy {
        font-size: 1.08rem;
    }

    .fd-site .domain-search-form__control {
        min-height: 62px;
        flex-wrap: wrap;
        padding: 7px;
    }

    .domain-search-form__control > .domain-search-form__icon {
        margin-inline-start: 10px;
    }

    .domain-search-form__control .form-control {
        width: calc(100% - 50px);
        flex: 1 1 calc(100% - 50px);
    }

    .domain-search-form__control .btn {
        width: 100%;
        min-width: 0;
    }

    .fd-hero-benefits {
        align-items: flex-start;
        flex-direction: column;
        width: max-content;
        margin-inline: auto;
    }

    .fd-site .tld-grid,
    .fd-blog-index .blog-grid {
        grid-template-columns: 1fr;
    }

    .fd-site .tld-card {
        min-height: 190px;
    }

    .fd-site .section-heading,
    .fd-detail-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .fd-site .price-list {
        grid-template-columns: 1fr;
    }

    .fd-site .price-list > div {
        border-inline-end: 0;
        border-bottom: 1px solid var(--fd-border);
    }

    .fd-site .price-list > div:last-child {
        border-bottom: 0;
    }

    .fd-site .domain-search-toolbar {
        grid-template-columns: 1fr;
    }

    .fd-site .domain-search-input,
    .fd-site .domain-page-size {
        grid-column: auto;
    }

    .fd-site .domain-result-count {
        white-space: normal;
    }

    .fd-site .domain-pagination {
        justify-content: space-between;
    }

    .fd-site .provider-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .fd-filter-control {
        width: 100%;
    }

    .fd-site .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .fd-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 36px 24px;
    }

    .fd-footer-brand {
        grid-column: 1 / -1;
    }

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

@media (max-width: 575.98px) {
    .fd-site h1,
    .fd-hero-copy h1 {
        font-size: 2.5rem;
    }

    .fd-site h2,
    .fd-site .section-title {
        font-size: 1.85rem;
    }

    .fd-site .provider-stats-row {
        grid-template-columns: 1fr;
    }

    .fd-site .provider-stats-row > div {
        border-inline-end: 0;
        border-bottom: 1px solid var(--fd-border);
    }

    .fd-site .provider-stats-row > div:last-child {
        border-bottom: 0;
    }

    .fd-site .fd-auth-form {
        padding: 22px;
    }

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

    .fd-footer-brand {
        grid-column: auto;
    }
}

[dir="rtl"] .domain-search-form__icon::after {
    right: auto;
    left: -5px;
    transform: rotate(-45deg);
}

[dir="rtl"] .fd-site .comparison-table .price-cell,
[dir="rtl"] .fd-site .comparison-table th.text-end {
    text-align: start;
}

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