:root {
    --ink: #17202f;
    --muted: #657085;
    --line: #e2e6ed;
    --soft: #f5f7fa;
    --white: #ffffff;
    --primary: #5a63e8;
    --primary-dark: #454dc8;
    --take: #5a63e8;
    --open: #159b91;
    --get: #dd7042;
    --success: #14866d;
    --success-soft: #ecfaf5;
    --danger: #d45151;
    --danger-soft: #fff2f2;
    --premium: #9a6813;
    --premium-soft: #fff8e6;
    --shadow: 0 24px 70px rgba(31, 43, 74, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
    font: inherit;
}

input::placeholder,
textarea::placeholder {
    color: #aeb5c1;
    opacity: 1;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

.site-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(14px);
}

.header-inner,
.hero-inner,
.trust-inner,
.domains-section,
.how-section,
.safety-strip,
.network-signature-section,
.closing-section,
.footer-inner {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

.network-signature-section {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(32px, 6vw, 86px);
    align-items: center;
    margin-top: 24px;
    padding: 76px clamp(28px, 6vw, 76px);
    border-radius: 28px;
    background: #173f32;
    color: #fff;
}

.network-signature-copy h2 { margin: 12px 0 20px; font: 500 clamp(39px, 5vw, 67px)/1.02 Georgia, serif; letter-spacing: -.045em; }
.network-signature-copy > p { max-width: 690px; margin: 0; color: #c5d6cf; font-size: 18px; line-height: 1.7; }
.network-example-list { display: grid; gap: 9px; margin-top: 29px; }
.network-example-list span { display: grid; grid-template-columns: minmax(190px,.7fr) 1fr; gap: 18px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.14); }
.network-example-list strong { color: #fff; font-size: 17px; }
.network-example-list small { color: #aebfb8; font-size: 13px; }
.network-signature-card { padding: 31px; border: 1px solid rgba(255,255,255,.18); border-radius: 20px; background: rgba(255,255,255,.08); box-shadow: 0 20px 55px rgba(0,0,0,.12); }
.network-signature-card > span { color: #f5a27f; font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.network-signature-card > strong { display: block; margin: 11px 0 13px; font: 500 29px/1.15 Georgia, serif; }
.network-signature-card p { margin: 0 0 22px; color: #c5d6cf; line-height: 1.7; }
.network-signature-card a { display: inline-flex; padding: 12px 15px; border-radius: 9px; background: #fff; color: #173f32; text-decoration: none; font-weight: 850; }

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
}

.brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: var(--ink);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    letter-spacing: -0.08em;
}

.brand-mark span {
    color: #8f96ff;
}

.brand-name {
    font-size: 1.12rem;
    letter-spacing: -0.04em;
}

.brand-suite-full {
    display: inline-flex;
    align-items: baseline;
}

.brand-suite-full small {
    margin: 0 3px;
    color: #a1a8b4;
    font-size: 0.75em;
    font-weight: 500;
}

.brand-take { color: var(--take); }
.brand-open { color: var(--open); }
.brand-get { color: var(--get); }

.brand-suite-short {
    display: none;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 0.8rem;
    font-weight: 650;
}

nav > a:not(.nav-button) {
    color: var(--muted);
    transition: color 160ms ease;
}

nav > a:not(.nav-button):hover {
    color: var(--ink);
}

.nav-button {
    min-height: 42px;
    padding: 0 17px;
    border-radius: 11px;
    background: var(--ink);
    color: var(--white);
    display: inline-flex;
    align-items: center;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 22%, rgba(90, 99, 232, 0.10), transparent 30%),
        radial-gradient(circle at 88% 70%, rgba(21, 155, 145, 0.10), transparent 27%),
        linear-gradient(180deg, #fbfcfe 0%, #f7f8fc 100%);
}

.hero::after {
    content: "";
    width: 460px;
    height: 460px;
    position: absolute;
    right: -190px;
    top: -190px;
    border: 1px solid rgba(90, 99, 232, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 50px rgba(90, 99, 232, 0.025),
        0 0 0 100px rgba(90, 99, 232, 0.02);
    pointer-events: none;
}

.hero-inner {
    min-height: 650px;
    padding: 86px 0 94px;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.eyebrow,
.checker-label {
    display: block;
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 590px;
    margin: 22px 0 26px;
    font-size: clamp(3.3rem, 5.6vw, 5.75rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
    font-weight: 750;
}

.hero-intro {
    max-width: 510px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.72;
}

.hero-beta {
    max-width: 520px;
    margin-top: 28px;
    padding: 15px 16px;
    border: 1px solid #d6d9ff;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.76);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    box-shadow: 0 12px 28px rgba(66, 76, 180, 0.07);
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.hero-beta:hover {
    border-color: #aeb3ff;
    background: var(--white);
    transform: translateY(-1px);
}

.hero-beta-badge {
    padding: 7px 9px;
    border-radius: 8px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.58rem;
    font-weight: 850;
    letter-spacing: 0.11em;
    white-space: nowrap;
}

.hero-beta-copy strong,
.hero-beta-copy small {
    display: block;
}

.hero-beta-copy strong {
    margin-bottom: 3px;
    font-size: 0.82rem;
}

.hero-beta-copy small {
    color: var(--muted);
    font-size: 0.66rem;
    line-height: 1.45;
}

.hero-beta-arrow {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 800;
}

.checker-card {
    padding: 30px;
    border: 1px solid rgba(219, 224, 233, 0.92);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
}

.checker-heading {
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.checker-heading h2 {
    margin: 8px 0 0;
    font-size: 1.65rem;
    letter-spacing: -0.04em;
}

.live-badge {
    padding: 7px 10px;
    border: 1px solid #d7eee7;
    border-radius: 999px;
    background: #f4fbf8;
    color: var(--success);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.69rem;
    font-weight: 700;
    white-space: nowrap;
}

.live-badge i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25ad82;
    box-shadow: 0 0 0 4px rgba(37, 173, 130, 0.10);
}

.domain-switch {
    padding: 5px;
    border-radius: 16px;
    background: #f1f3f7;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
}

.domain-option {
    min-height: 70px;
    padding: 12px 15px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--muted);
    text-align: left;
    cursor: pointer;
    transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.domain-option span,
.domain-option small {
    display: block;
}

.domain-option span {
    margin-bottom: 5px;
    font-size: 0.92rem;
    font-weight: 750;
}

.domain-option small {
    font-size: 0.67rem;
    opacity: 0.72;
}

.domain-option.active {
    background: var(--white);
    color: var(--ink);
    box-shadow: 0 4px 15px rgba(31, 43, 74, 0.08);
}

#availability-form {
    margin-top: 22px;
}

.search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
}

.name-field label {
    display: block;
    margin: 0 0 8px 2px;
    color: var(--muted);
    font-size: 0.69rem;
    font-weight: 700;
}

.composite-input {
    min-height: 56px;
    padding: 0 15px;
    border: 1px solid #cfd5df;
    border-radius: 12px;
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 1px;
    box-shadow: 0 0 0 0 rgba(90, 99, 232, 0);
    transition: border 160ms ease, box-shadow 160ms ease;
}

.composite-input:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(90, 99, 232, 0.10);
}

.composite-input span {
    color: var(--ink);
    font-size: 0.88rem;
    font-weight: 700;
    white-space: nowrap;
}

.composite-input select {
    width: auto;
    max-width: 105px;
    margin: 0 5px 0 0;
    padding: 5px 23px 5px 7px;
    border: 0;
    border-radius: 7px;
    outline: 0;
    background-color: #f1f3f7;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 750;
    cursor: pointer;
}

.composite-input select:focus {
    box-shadow: 0 0 0 2px rgba(90, 99, 232, 0.18);
}

.composite-input input {
    width: 100%;
    min-width: 70px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 750;
}

.composite-input input::placeholder {
    color: #aeb5c1;
}

.check-button {
    min-height: 56px;
    padding: 0 19px;
    border: 0;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 750;
    cursor: pointer;
    transition: background 160ms ease, transform 160ms ease;
}

.check-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.check-button:disabled {
    cursor: wait;
    opacity: 0.7;
    transform: none;
}

.check-button svg,
.closing-section svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.field-help {
    margin: 8px 0 0 2px;
    color: #929aa8;
    font-size: 0.65rem;
}

.check-result {
    margin-top: 17px;
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 13px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.check-result[hidden] {
    display: none;
}

.check-result.available {
    border-color: #cdeee3;
    background: var(--success-soft);
    color: var(--success);
}

.check-result.unavailable,
.check-result.error {
    border-color: #f2d0d0;
    background: var(--danger-soft);
    color: var(--danger);
}

.check-result.premium {
    border-color: #f0dfad;
    background: var(--premium-soft);
    color: var(--premium);
}

.check-result.loading {
    border-color: var(--line);
    background: var(--soft);
    color: var(--muted);
}

.result-icon {
    width: 25px;
    height: 25px;
    border: 2px solid currentColor;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
    font-size: 0.75rem;
    font-weight: 900;
}

.check-result strong {
    display: block;
    margin: 1px 0 4px;
    color: currentColor;
    font-size: 0.86rem;
}

.check-result p {
    margin-bottom: 0;
    color: currentColor;
    font-size: 0.74rem;
    line-height: 1.45;
    opacity: 0.88;
}

.result-action {
    min-height: 38px;
    margin-left: auto;
    padding: 0 13px;
    border: 0;
    border-radius: 9px;
    background: var(--success);
    color: var(--white);
    flex: none;
    font-size: 0.7rem;
    font-weight: 800;
    cursor: pointer;
}

.result-action:disabled {
    cursor: wait;
    opacity: 0.65;
}

.quick-examples {
    margin-top: 17px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    color: #8b94a2;
    font-size: 0.68rem;
}

.quick-examples button {
    padding: 5px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: #687285;
    font-size: 0.66rem;
    cursor: pointer;
}

.quick-examples button:hover {
    border-color: #b6bdc9;
    color: var(--ink);
}

.noscript-message {
    margin: 16px 0 0;
    color: var(--danger);
    font-size: 0.75rem;
}

.trust-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.trust-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    color: #6f7887;
    font-size: 0.71rem;
    font-weight: 700;
}

.trust-inner i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #b9c0cb;
}

.domains-section,
.how-section,
.pricing-section,
.human-section,
.policy-strip {
    width: min(1160px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.domains-section,
.how-section,
.pricing-section {
    padding-top: 112px;
    padding-bottom: 112px;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 54px;
}

.section-heading h2 {
    margin: 17px 0 18px;
    font-size: clamp(2.5rem, 4vw, 4.25rem);
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.section-heading > p {
    max-width: 590px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.domain-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.domain-card {
    min-height: 470px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.domain-card::after {
    content: "";
    width: 240px;
    height: 240px;
    position: absolute;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.055;
}

.take-card {
    background: #f5f5ff;
    color: #343ba6;
}

.open-card {
    background: #f0faf8;
    color: #14756e;
}

.get-card {
    background: #fff6f0;
    color: #b5542e;
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-number,
.card-tag {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.card-tag {
    padding: 7px 9px;
    border: 1px solid currentColor;
    border-radius: 999px;
    opacity: 0.75;
}

.domain-card h3 {
    margin: 65px 0 14px;
    color: var(--ink);
    font-size: clamp(2rem, 2.8vw, 3rem);
    letter-spacing: -0.06em;
}

.domain-card > p {
    max-width: 480px;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.link-preview {
    min-height: 64px;
    margin-top: auto;
    padding: 0 18px;
    border: 1px solid rgba(23, 32, 47, 0.12);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.70);
    display: flex;
    align-items: center;
    color: var(--muted);
    font-size: 0.9rem;
}

.link-preview strong {
    color: currentColor;
}

.domain-card ul {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.domain-card li {
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: #70798a;
    font-size: 0.64rem;
}

.how-section {
    border-top: 1px solid var(--line);
}

.section-heading.compact {
    margin-bottom: 48px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.steps article {
    min-height: 245px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
}

.step-number {
    width: 38px;
    height: 38px;
    margin-bottom: 54px;
    border-radius: 11px;
    background: var(--soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 800;
}

.steps h3 {
    margin-bottom: 10px;
    font-size: 1.08rem;
    letter-spacing: -0.025em;
}

.steps p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.62;
}

.pricing-section {
    border-top: 1px solid var(--line);
}

.pricing-heading {
    max-width: 780px;
}

.beta-offer {
    margin-bottom: 22px;
    padding: 36px;
    border: 1px solid #cfd3ff;
    border-radius: 24px;
    background:
        radial-gradient(circle at 88% 0%, rgba(255, 220, 129, 0.30), transparent 30%),
        linear-gradient(135deg, #f3f4ff 0%, #fbfbff 55%, #fffaf0 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(275px, 0.65fr);
    align-items: center;
    gap: 48px;
    box-shadow: 0 18px 48px rgba(65, 74, 170, 0.09);
}

.beta-offer-label {
    display: block;
    margin-bottom: 13px;
    color: var(--primary);
    font-size: 0.63rem;
    font-weight: 850;
    letter-spacing: 0.15em;
}

.beta-offer h3 {
    margin-bottom: 14px;
    font-size: clamp(1.75rem, 3.1vw, 2.9rem);
    line-height: 1.06;
    letter-spacing: -0.052em;
}

.beta-offer-main p {
    max-width: 720px;
    margin-bottom: 0;
    color: #596477;
    font-size: 0.83rem;
    line-height: 1.68;
}

.beta-offer-side {
    padding: 20px;
    border: 1px solid rgba(90, 99, 232, 0.14);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.72);
}

.beta-benefits {
    display: grid;
    gap: 11px;
}

.beta-benefits span {
    color: #4c576a;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.71rem;
    font-weight: 700;
}

.beta-benefits i {
    width: 23px;
    height: 23px;
    border-radius: 7px;
    background: #e8eaff;
    color: var(--primary-dark);
    display: grid;
    place-items: center;
    flex: 0 0 23px;
    font-size: 0.61rem;
    font-style: normal;
    font-weight: 900;
}

.beta-offer-side > a {
    min-height: 43px;
    margin-top: 18px;
    padding: 0 14px;
    border-radius: 10px;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 0.72rem;
    font-weight: 800;
}

.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.plan-card {
    min-height: 545px;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    box-shadow: 0 14px 38px rgba(31, 43, 74, 0.055);
}

.smart-plan {
    border-color: #cfd2ff;
    background: linear-gradient(180deg, #f7f7ff 0%, #ffffff 44%);
}

.paid-plan {
    border-color: #ead8ad;
    background: linear-gradient(180deg, #fff9eb 0%, #ffffff 44%);
}

.plan-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.plan-label {
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.paid-plan .plan-label {
    color: var(--premium);
}

.plan-chip {
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--muted);
    font-size: 0.62rem;
    font-weight: 750;
    white-space: nowrap;
}

.smart-plan .plan-chip {
    background: #e9eaff;
    color: #4c54ca;
}

.paid-plan .plan-chip {
    background: #fff0ca;
    color: #8b5e10;
}

.plan-chip.beta-plan-chip {
    background: #e8f7f1;
    color: var(--success);
}

.plan-card h3 {
    margin: 34px 0 8px;
    font-size: 2.2rem;
    letter-spacing: -0.055em;
}

.plan-price {
    min-height: 49px;
    margin-bottom: 18px;
    display: flex;
    align-items: baseline;
    gap: 9px;
}

.plan-price strong {
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.06em;
}

.plan-price span {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
}

.beta-price {
    margin-bottom: 6px;
}

.renewal-price {
    margin: 0 0 16px;
    color: #586375;
    font-size: 0.69rem;
    font-weight: 750;
}

.plan-summary {
    min-height: 68px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 0.83rem;
    line-height: 1.65;
}

.feature-list {
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 11px;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 22px;
    color: #4e596b;
    font-size: 0.75rem;
    line-height: 1.45;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: 900;
}

.plan-card > a {
    min-height: 45px;
    margin-top: auto;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.74rem;
    font-weight: 800;
}

.smart-plan > a {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--white);
}

.paid-plan > a {
    border-color: #b77d18;
    background: #9a6813;
    color: var(--white);
}

.tier-panel {
    margin-top: 22px;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #f8f9fc;
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    gap: 46px;
}

.tier-intro h3 {
    margin: 17px 0 16px;
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.tier-intro p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.65;
}

.tier-list {
    display: grid;
    gap: 8px;
}

.tier-list article {
    padding: 14px 15px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
}

.tier-list strong {
    display: block;
    margin-bottom: 2px;
    font-size: 0.83rem;
}

.tier-list p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.45;
}

.tier-list b {
    color: #4f596a;
    font-size: 0.69rem;
    white-space: nowrap;
}

.tier-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.standard-dot { background: #7c8798; }
.premium-dot { background: #c68d28; }
.select-dot { background: #6b75e9; }
.signature-dot { background: #8a4fc1; }
.protected-dot { background: var(--danger); }

.tier-list .protected-tier {
    border-color: #f0d3d3;
    background: #fffafa;
}

.human-section {
    margin-bottom: 22px;
    padding: 58px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 15% 10%, rgba(90, 99, 232, 0.11), transparent 31%),
        #f5f7fb;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: center;
    gap: 70px;
}

.human-copy h2 {
    max-width: 620px;
    margin: 18px 0 20px;
    font-size: clamp(2.4rem, 4.5vw, 4.5rem);
    line-height: 1.02;
    letter-spacing: -0.06em;
}

.human-copy > p {
    max-width: 650px;
    margin-bottom: 25px;
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.72;
}

.human-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.human-points span {
    padding: 7px 10px;
    border: 1px solid #dce1ea;
    border-radius: 999px;
    background: rgba(255,255,255,0.78);
    color: #5c6678;
    font-size: 0.67rem;
    font-weight: 750;
}

.support-card {
    padding: 30px;
    border-radius: 20px;
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 22px 50px rgba(23, 32, 47, 0.16);
}

.support-card > span {
    color: #aeb3ff;
    font-size: 0.65rem;
    font-weight: 850;
    letter-spacing: 0.14em;
}

.support-card strong {
    display: block;
    margin: 18px 0 10px;
    font-size: 1.55rem;
    letter-spacing: -0.04em;
}

.support-card p {
    color: #b8c0ce;
    font-size: 0.78rem;
    line-height: 1.6;
}

.support-card a {
    display: block;
    margin: 25px 0 8px;
    color: #aeb3ff;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.support-card small {
    color: #929cad;
    font-size: 0.65rem;
    line-height: 1.5;
}

.policy-strip {
    min-height: 112px;
    margin-bottom: 20px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.policy-strip > div:first-child {
    display: flex;
    align-items: center;
    gap: 16px;
}

.policy-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: #f3f1ff;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-family: Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.policy-strip strong {
    display: block;
    font-size: 0.94rem;
}

.policy-strip p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.77rem;
}

.policy-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
}

.policy-links a {
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
    color: #596477;
    font-size: 0.68rem;
    font-weight: 750;
}

.policy-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.safety-strip {
    min-height: 110px;
    margin-bottom: 20px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #f7f8fb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.safety-strip > div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.safety-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 12px;
    background: var(--soft);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 1rem;
    font-weight: 800;
}

.safety-strip strong {
    display: block;
    color: var(--ink);
    font-size: 0.94rem;
}

.safety-strip p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.5;
}

.safety-strip > a {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
}

.safety-strip > a:hover {
    border-color: var(--primary);
}

.closing-section {
    min-height: 360px;
    margin-bottom: 30px;
    padding: 64px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.13), transparent 25%),
        var(--ink);
    color: var(--white);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.closing-section .eyebrow {
    color: #aeb3ff;
}

.closing-section h2 {
    margin: 18px 0 0;
    font-size: clamp(2.5rem, 4.8vw, 5rem);
    line-height: 1.03;
    letter-spacing: -0.06em;
}

.closing-section > a {
    min-height: 58px;
    padding: 0 20px;
    border-radius: 12px;
    background: var(--white);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-size: 0.78rem;
    font-weight: 750;
    white-space: nowrap;
}

footer {
    border-top: 1px solid var(--line);
}

.footer-inner {
    min-height: 120px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    color: #838b98;
    font-size: 0.68rem;
}

.footer-inner p {
    margin-bottom: 0;
    text-align: center;
}

.footer-inner p:last-child {
    text-align: right;
}

.footer-brand {
    color: var(--ink);
}

.policy-page { background: #f7f8fb; }
.policy-main { width: min(1000px, calc(100% - 40px)); margin: 0 auto; padding: 90px 0 110px; }
.policy-hero { max-width: 800px; margin-bottom: 54px; }
.policy-hero h1 { max-width: none; margin-bottom: 24px; }
.policy-hero > p { max-width: 700px; color: var(--muted); font-size: 1rem; line-height: 1.75; }
.draft-policy-notice { width: fit-content; margin-top: 25px; padding: 12px 15px; border: 1px solid #ebd9ad; border-radius: 11px; background: #fff9eb; color: #835a13; font-size: 0.75rem; }
.draft-policy-notice strong { margin-right: 8px; }
.policy-document-list { border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.policy-document-list article { min-height: 150px; padding: 28px 30px; display: grid; grid-template-columns: minmax(190px, 0.65fr) minmax(0, 1.35fr) auto; align-items: center; gap: 32px; scroll-margin-top: 100px; }
.policy-document-list article + article { border-top: 1px solid var(--line); }
.policy-document-list article > div { display: flex; align-items: center; gap: 14px; }
.policy-document-list article > div span { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 10px; background: var(--soft); color: var(--primary); display: grid; place-items: center; font-size: 0.68rem; font-weight: 850; }
.policy-document-list article > div strong { font-size: 0.91rem; }
.policy-document-list article > p { margin-bottom: 0; color: var(--muted); font-size: 0.77rem; line-height: 1.62; }
.policy-document-list article > b { color: #8a93a3; font-size: 0.65rem; white-space: nowrap; }
.policy-document-list article > b a { color: var(--primary); }
.policy-document-list .policy-published,
.policy-document-list .policy-complete { background: linear-gradient(90deg, #f5f6ff 0%, #ffffff 48%); }
.policy-document-list .policy-published > div span,
.policy-document-list .policy-complete > div span { background: var(--primary); color: var(--white); }
.policy-content { margin-top: 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow); overflow: hidden; scroll-margin-top: 96px; }
.policy-content + .policy-content { margin-top: 42px; }
.policy-content-header { padding: 44px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, #f4f5ff 0%, #ffffff 58%, #f3fbf9 100%); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 44px; }
.policy-content-title { display: flex; align-items: flex-start; gap: 22px; }
.policy-content-title > div { min-width: 0; }
.policy-number { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 15px; background: var(--ink); color: var(--white); display: grid; place-items: center; font-size: 0.85rem; font-weight: 850; }
.policy-privacy .policy-number { background: var(--open); }
.policy-acceptable-use .policy-number { background: var(--premium); }
.policy-abuse .policy-number { background: #b54848; }
.policy-content-title h2 { margin: 12px 0 13px; font-size: clamp(2.35rem, 5vw, 4.65rem); line-height: 1; letter-spacing: -0.06em; }
.policy-content-title p { max-width: 690px; margin-bottom: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
.policy-meta { min-width: 210px; margin: 0; padding: 0; display: grid; gap: 11px; }
.policy-meta div { padding-bottom: 10px; border-bottom: 1px solid rgba(101,112,133,.18); display: flex; justify-content: space-between; gap: 18px; }
.policy-meta div:last-child { padding-bottom: 0; border-bottom: 0; }
.policy-meta dt { color: #8a93a3; font-size: 0.64rem; font-weight: 750; }
.policy-meta dd { max-width: 230px; margin: 0; color: var(--ink); text-align: right; overflow-wrap: anywhere; font-size: 0.65rem; font-weight: 750; }
.policy-action-band { margin: 28px 44px 0; padding: 22px 24px; border-radius: 16px; background: var(--ink); color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.policy-action-band strong { display: block; margin-bottom: 5px; font-size: 0.92rem; }
.policy-action-band p { margin-bottom: 0; color: #adb6c5; font-size: 0.72rem; line-height: 1.5; }
.policy-action-band > a { min-height: 43px; padding: 0 15px; border-radius: 10px; background: var(--white); color: var(--ink); display: inline-flex; align-items: center; gap: 18px; flex: none; font-size: 0.72rem; font-weight: 800; }
.policy-prohibition-band { background: #6f2929; }
.policy-prohibition-band p { color: #e7caca; }
.policy-toc { margin: 28px 44px 0; padding: 26px; border: 1px solid var(--line); border-radius: 17px; background: #f8f9fc; display: block; }
.policy-toc > strong { display: block; margin-bottom: 17px; font-size: 0.78rem; }
.policy-toc ol { margin: 0; padding: 0; counter-reset: policy-toc; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px 30px; list-style: none; }
.policy-toc li { counter-increment: policy-toc; min-width: 0; }
.policy-toc a { color: #596477; display: flex; align-items: baseline; gap: 8px; font-size: 0.7rem; line-height: 1.4; }
.policy-toc a::before { color: var(--primary); flex: none; font-size: 0.62rem; font-weight: 850; }
.policy-toc[data-policy-number="01"] a::before { content: "01." counter(policy-toc); }
.policy-toc[data-policy-number="02"] a::before { content: "02." counter(policy-toc); }
.policy-toc[data-policy-number="03"] a::before { content: "03." counter(policy-toc); }
.policy-toc[data-policy-number="04"] a::before { content: "04." counter(policy-toc); }
.policy-toc a:hover { color: var(--primary); }
.policy-clauses { padding: 16px 44px 46px; }
.policy-clause { padding: 38px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 70px minmax(0, 1fr); gap: 22px; scroll-margin-top: 96px; }
.policy-clause:last-child { padding-bottom: 0; border-bottom: 0; }
.policy-clause > span { padding-top: 5px; color: var(--primary); font-size: 0.68rem; font-weight: 850; letter-spacing: 0.08em; }
.policy-clause h3 { margin-bottom: 16px; font-size: 1.45rem; letter-spacing: -0.035em; }
.policy-clause p { margin-bottom: 14px; color: #566173; font-size: 0.79rem; line-height: 1.72; }
.policy-clause p:last-child { margin-bottom: 0; }
.policy-clause ul { margin: 2px 0 17px; padding: 0; display: grid; gap: 8px; list-style: none; }
.policy-clause li { position: relative; padding-left: 20px; color: #566173; font-size: 0.76rem; line-height: 1.58; }
.policy-clause li::before { content: ""; width: 6px; height: 6px; position: absolute; left: 0; top: 0.55em; border-radius: 50%; background: var(--primary); }
.policy-clause a { color: var(--primary-dark); font-weight: 750; text-decoration: underline; text-decoration-color: rgba(69,77,200,.28); text-underline-offset: 3px; }
.policy-note { margin: 21px 0 3px; padding: 18px 20px; border-left: 3px solid var(--success); border-radius: 0 12px 12px 0; background: var(--success-soft); }
.policy-note strong { display: block; margin-bottom: 5px; color: #126f5c; font-size: 0.75rem; }
.policy-note p { color: #487065; font-size: 0.72rem; }
.policy-note-neutral { border-left-color: var(--primary); background: #f2f3ff; }
.policy-note-neutral strong { color: var(--primary-dark); }
.policy-note-neutral p { color: #5e6488; }
.policy-note-warning { border-left-color: var(--premium); background: var(--premium-soft); }
.policy-note-warning strong { color: #80570f; }
.policy-note-warning p { color: #765f36; }
.policy-note-danger { border-left-color: var(--danger); background: var(--danger-soft); }
.policy-note-danger strong { color: #a33c3c; }
.policy-note-danger p { color: #7f5050; }
.policy-back-link { width: fit-content; margin-top: 25px; padding: 9px 11px; border: 1px solid #d9ddea; border-radius: 9px; background: #f8f9fc; display: inline-flex; align-items: center; gap: 12px; font-size: 0.68rem; text-decoration: none !important; }
.policy-support { margin-top: 24px; padding: 38px; border-radius: 20px; background: var(--ink); color: var(--white); display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.policy-support h2 { margin: 12px 0 8px; font-size: 2rem; letter-spacing: -0.045em; }
.policy-support p { max-width: 590px; margin-bottom: 0; color: #adb6c5; font-size: 0.78rem; }
.policy-support > a { padding: 12px 15px; border: 1px solid #444e60; border-radius: 10px; color: #b9bdff; font-size: 0.82rem; font-weight: 800; white-space: nowrap; }

@media (max-width: 930px) {
    nav > a:not(.nav-button) {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-copy {
        max-width: 760px;
    }

    .checker-card {
        max-width: 700px;
    }
}

@media (max-width: 720px) {
    .header-inner,
    .hero-inner,
    .trust-inner,
    .domains-section,
    .how-section,
    .pricing-section,
    .network-signature-section,
    .human-section,
    .policy-strip,
    .safety-strip,
    .closing-section,
    .footer-inner {
        width: min(100% - 28px, 1160px);
    }

    .header-inner {
        min-height: 68px;
    }

    .brand-name {
        font-size: 1rem;
    }

    .site-header .brand-suite-full {
        display: none;
    }

    .site-header .brand-suite-short {
        display: inline;
    }

    .nav-button {
        min-height: 38px;
        padding: 0 12px;
        font-size: 0.7rem;
    }

    .hero-inner {
        min-height: auto;
        padding: 66px 0 74px;
    }

    h1 {
        font-size: clamp(3.1rem, 14.5vw, 4.7rem);
    }

    .hero-intro {
        font-size: 0.98rem;
    }

    .checker-card {
        padding: 21px;
        border-radius: 19px;
    }

    .check-result {
        flex-wrap: wrap;
    }

    .result-action {
        width: 100%;
        margin-left: 0;
    }

    .checker-heading {
        align-items: center;
    }

    .checker-heading h2 {
        font-size: 1.4rem;
    }

    .domain-option {
        min-height: 66px;
        padding: 10px;
    }

    .domain-option span {
        font-size: 0.8rem;
    }

    .domain-option small {
        font-size: 0.6rem;
    }

    .search-row {
        grid-template-columns: 1fr;
    }

    .check-button {
        width: 100%;
    }

    .composite-input {
        padding: 0 12px;
    }

    .composite-input span,
    .composite-input select,
    .composite-input input {
        font-size: 0.78rem;
    }

    .trust-inner {
        min-height: 100px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: center;
    }

    .trust-inner i {
        display: none;
    }

    .domains-section,
    .how-section,
    .pricing-section {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .network-signature-section { grid-template-columns: 1fr; }

    .domain-cards,
    .steps,
    .plan-grid,
    .beta-offer,
    .tier-panel,
    .human-section {
        grid-template-columns: 1fr;
    }

    .plan-card {
        min-height: 0;
    }

    .plan-summary {
        min-height: 0;
    }

    .beta-offer {
        padding: 28px;
        gap: 26px;
    }

    .tier-panel {
        padding: 26px;
        gap: 30px;
    }

    .tier-list article {
        grid-template-columns: 10px minmax(0, 1fr);
    }

    .tier-list b {
        grid-column: 2;
    }

    .human-section {
        padding: 38px 26px;
        gap: 36px;
    }

    .policy-strip {
        padding: 22px;
        flex-direction: column;
        align-items: stretch;
    }

    .policy-links {
        justify-content: flex-start;
    }

    .domain-card {
        min-height: 430px;
        padding: 27px;
    }

    .domain-card h3 {
        margin-top: 48px;
    }

    .safety-strip {
        padding: 22px;
        flex-direction: column;
        align-items: stretch;
    }

    .network-signature-section { padding: 65px 20px; }
    .network-example-list span { grid-template-columns: 1fr; gap: 3px; }

    .safety-strip > a {
        width: 100%;
    }

    .closing-section {
        min-height: 430px;
        margin-bottom: 16px;
        padding: 38px 26px;
        border-radius: 20px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
    }

    .footer-inner {
        min-height: 150px;
        padding: 28px 0;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-inner p:nth-child(2) {
        display: block;
    }

    .footer-inner p,
    .footer-inner p:last-child { text-align: left; }

    .policy-main { width: min(100% - 28px, 1000px); padding: 65px 0 80px; }
    .policy-document-list article { padding: 23px; grid-template-columns: 1fr; gap: 15px; }
    .policy-document-list article > b { white-space: normal; }
    .policy-content-header { padding: 30px 24px; grid-template-columns: 1fr; align-items: start; gap: 28px; }
    .policy-content-title { gap: 15px; }
    .policy-number { width: 42px; height: 42px; flex-basis: 42px; border-radius: 12px; }
    .policy-meta { width: 100%; min-width: 0; }
    .policy-meta dd { max-width: 60%; }
    .policy-action-band { margin: 20px 20px 0; padding: 20px; align-items: stretch; flex-direction: column; }
    .policy-action-band > a { justify-content: space-between; }
    .policy-toc { margin: 20px 20px 0; padding: 21px; }
    .policy-toc ol { grid-template-columns: 1fr; }
    .policy-clauses { padding: 8px 24px 32px; }
    .policy-clause { padding: 31px 0; grid-template-columns: 1fr; gap: 10px; }
    .policy-clause > span { padding-top: 0; }
    .policy-support { padding: 28px 24px; align-items: flex-start; flex-direction: column; gap: 25px; }
    .policy-support > a { max-width: 100%; white-space: normal; overflow-wrap: anywhere; }
}

@media (max-width: 520px) {
    .policy-content-title { display: block; }
    .policy-number { margin-bottom: 18px; }
    .policy-content-title h2 { font-size: clamp(2.1rem, 12vw, 3.25rem); }

    .hero-beta {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .hero-beta-badge {
        width: fit-content;
        grid-column: 1 / -1;
    }

    .beta-offer {
        padding: 23px;
        border-radius: 19px;
    }

    .beta-offer-side {
        padding: 17px;
    }

    .plan-card-top {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 3px solid rgba(90, 99, 232, 0.55);
    outline-offset: 3px;
}

.report-page { min-height: 100vh; background: var(--soft); }
.report-main { display: grid; min-height: calc(100vh - 77px); place-items: center; padding: 64px 20px; }
.report-card { width: min(680px, 100%); padding: clamp(30px, 6vw, 58px); border: 1px solid var(--line); border-radius: 26px; background: var(--white); box-shadow: var(--shadow); }
.report-card h1 { margin: 14px 0 18px; font-size: clamp(2.5rem, 8vw, 4.4rem); }
.report-card > p { max-width: 570px; margin-bottom: 30px; color: var(--muted); line-height: 1.7; }
.report-form { display: grid; gap: 19px; }
.report-form label > span { display: block; margin: 0 0 7px 2px; color: var(--muted); font-size: .78rem; font-weight: 750; }
.report-form label small { font-weight: 500; }
.report-form input, .report-form select, .report-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: var(--white); color: var(--ink); outline: none; }
.report-form input, .report-form select { min-height: 52px; padding: 0 15px; }
.report-form textarea { min-height: 132px; padding: 14px 15px; resize: vertical; line-height: 1.55; }
.report-form input:focus, .report-form select:focus, .report-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(90,99,232,.1); }
.report-button { display: inline-flex; align-items: center; justify-content: center; width: fit-content; min-height: 48px; padding: 0 20px; border: 0; border-radius: 11px; background: var(--ink); color: var(--white); font-weight: 750; cursor: pointer; }
.report-form .report-button { width: 100%; }
.report-error { margin-bottom: 22px; padding: 13px 15px; border: 1px solid #f0caca; border-radius: 11px; background: var(--danger-soft); color: #a23d3d; font-size: .88rem; }
.report-privacy { margin: -4px 0 0; color: var(--muted); text-align: center; font-size: .72rem; line-height: 1.5; }
.report-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.report-icon { display: grid; width: 52px; height: 52px; margin-bottom: 28px; place-items: center; border-radius: 15px; font-size: 23px; font-weight: 900; }
.report-icon-success { background: var(--success-soft); color: var(--success); }

@media (max-width: 720px) {
    .report-main { padding: 34px 14px; }
    .report-card { padding: 30px 23px; border-radius: 20px; }
}
