:root {
    color-scheme: light;
    --navy: #0f2c4b;
    --navy-2: #183d64;
    --orange: #ff6335;
    --orange-2: #ff7e58;
    --page: #f5f7fb;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-solid: #ffffff;
    --field: rgba(255, 255, 255, 0.96);
    --text: #11283f;
    --muted: #748397;
    --line: rgba(15, 44, 75, 0.13);
    --line-strong: rgba(15, 44, 75, 0.22);
    --soft-navy: rgba(15, 44, 75, 0.07);
    --soft-orange: rgba(255, 99, 53, 0.10);
    --shadow: 0 28px 70px rgba(15, 44, 75, 0.14);
    --shadow-soft: 0 16px 42px rgba(15, 44, 75, 0.10);
    --menu-shadow: 0 30px 70px rgba(15, 44, 75, 0.22);
    --success: #13865b;
    --success-bg: rgba(19, 134, 91, 0.10);
    --danger: #d94b4b;
    --danger-bg: rgba(217, 75, 75, 0.10);
    --warning: #c87808;
    --warning-bg: rgba(200, 120, 8, 0.11);
}

html[data-theme="dark"] {
    color-scheme: dark;
    --page: #071625;
    --surface: rgba(12, 34, 55, 0.78);
    --surface-solid: #0e2942;
    --field: rgba(15, 40, 63, 0.96);
    --text: #f3f7fb;
    --muted: #a2afbd;
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.20);
    --soft-navy: rgba(255, 255, 255, 0.055);
    --soft-orange: rgba(255, 99, 53, 0.13);
    --shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 16px 44px rgba(0, 0, 0, 0.28);
    --menu-shadow: 0 30px 75px rgba(0, 0, 0, 0.48);
    --success-bg: rgba(27, 177, 113, 0.13);
    --danger-bg: rgba(236, 87, 87, 0.13);
    --warning-bg: rgba(230, 151, 34, 0.13);
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

body {
    position: relative;
    min-height: 100svh;
    font-family: Inter, Cairo, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--page);
    isolation: isolate;
    transition: background-color 0.75s cubic-bezier(.22,.61,.36,1), color 0.75s cubic-bezier(.22,.61,.36,1);
}

body[dir="rtl"] {
    font-family: Cairo, Inter, "Segoe UI", Arial, sans-serif;
}

button,
input {
    font: inherit;
}

button {
    border: 0;
}

button:focus-visible,
input:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(255, 99, 53, 0.28);
    outline-offset: 3px;
}

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

.page-background {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background:
        linear-gradient(rgba(15, 44, 75, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 44, 75, 0.055) 1px, transparent 1px),
        linear-gradient(rgba(15, 44, 75, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 44, 75, 0.022) 1px, transparent 1px),
        var(--page);
    background-size: 48px 48px, 48px 48px, 12px 12px, 12px 12px, auto;
    background-position: center;
}

.page-background::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(255, 99, 53, 0.12), transparent 27%),
        radial-gradient(circle at 84% 78%, rgba(15, 44, 75, 0.13), transparent 31%),
        radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.72), transparent 54%);
}

.page-background::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 36%, rgba(15, 44, 75, 0.025));
    box-shadow: inset 0 0 150px rgba(15, 44, 75, 0.045);
}

html[data-theme="dark"] .page-background {
    background:
        linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        var(--page);
    background-size: 48px 48px, 48px 48px, 12px 12px, 12px 12px, auto;
}

html[data-theme="dark"] .page-background::before {
    background:
        radial-gradient(circle at 15% 18%, rgba(255, 99, 53, 0.11), transparent 26%),
        radial-gradient(circle at 84% 78%, rgba(52, 105, 154, 0.20), transparent 31%),
        radial-gradient(circle at 50% 50%, rgba(9, 30, 48, 0.05), transparent 55%);
}

html[data-theme="dark"] .page-background::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.015), transparent 38%, rgba(0, 0, 0, 0.12));
    box-shadow: inset 0 0 180px rgba(0, 0, 0, 0.22);
}

.background-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.68;
}

.background-glow-orange {
    width: min(34vw, 440px);
    aspect-ratio: 1;
    left: -9vw;
    top: -15vh;
    background: radial-gradient(circle, rgba(255, 99, 53, 0.10), transparent 68%);
}

.background-glow-navy {
    width: min(38vw, 520px);
    aspect-ratio: 1;
    right: -12vw;
    bottom: -20vh;
    background: radial-gradient(circle, rgba(15, 44, 75, 0.12), transparent 68%);
}

.background-cross {
    position: absolute;
    width: 18px;
    height: 18px;
    opacity: 0.34;
}

.background-cross::before,
.background-cross::after {
    content: "";
    position: absolute;
    background: var(--orange);
    border-radius: 999px;
}

.background-cross::before {
    width: 18px;
    height: 1px;
    top: 8px;
    left: 0;
}

.background-cross::after {
    width: 1px;
    height: 18px;
    left: 8px;
    top: 0;
}

.background-cross-one { left: 9.5%; top: 27%; }
.background-cross-two { right: 8%; bottom: 23%; transform: scale(.78); }

.top-actions {
    position: fixed;
    top: clamp(16px, 2.3vw, 28px);
    right: clamp(16px, 2.3vw, 28px);
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 10px;
    direction: ltr;
}

.control-button {
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--line);
    color: var(--navy);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    cursor: pointer;
    transition:
        transform 0.68s cubic-bezier(.22,.61,.36,1),
        border-color 0.68s cubic-bezier(.22,.61,.36,1),
        color 0.68s cubic-bezier(.22,.61,.36,1),
        background-color 0.68s cubic-bezier(.22,.61,.36,1);
}

.language-toggle {
    min-width: 67px;
    padding: 0 13px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.theme-toggle {
    width: 46px;
    border-radius: 15px;
}

html[data-theme="dark"] .control-button {
    color: #ffffff;
}

.control-button:hover {
    transform: translateY(-2px);
    color: var(--orange);
    border-color: rgba(255, 99, 53, 0.48);
}

.control-button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.moon-icon,
html[data-theme="dark"] .sun-icon,
html[lang="ar"] .lang-en,
html[lang="en"] .lang-ar {
    display: none;
}

html[data-theme="dark"] .moon-icon,
html[lang="ar"] .lang-ar,
html[lang="en"] .lang-en {
    display: inline;
}

.page-shell {
    height: 100svh;
    display: grid;
    place-items: center;
    padding: clamp(76px, 8vh, 96px) clamp(18px, 5vw, 62px) clamp(24px, 4vh, 44px);
}

.hero-panel {
    width: min(980px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform: translateY(-1.2vh);
    animation: panel-in 0.95s cubic-bezier(.22,.61,.36,1) both;
}

.brand-area {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    margin-bottom: clamp(13px, 1.8vh, 19px);
}

.brand-halo {
    position: absolute;
    width: 120%;
    aspect-ratio: 1;
    border-radius: 34px;
    background: radial-gradient(circle, rgba(255, 99, 53, 0.12), transparent 67%);
    animation: halo-pulse 4.2s ease-in-out infinite;
}

.brand-logo {
    position: relative;
    z-index: 1;
    width: clamp(102px, 9vw, 128px);
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 22px;
    box-shadow: 0 15px 38px rgba(15, 44, 75, 0.10);
    user-select: none;
}

.intro-copy {
    position: relative;
    z-index: 2;
    width: min(720px, 100%);
    margin-bottom: clamp(24px, 3.4vh, 36px);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 29px;
    padding: 5px 11px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 99, 53, 0.18);
    border-radius: 999px;
    color: var(--orange);
    background: var(--soft-orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

body[dir="rtl"] .eyebrow {
    letter-spacing: 0;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(255, 99, 53, 0.10);
}

.intro-copy h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.14;
    font-weight: 800;
    letter-spacing: -0.038em;
}

html[data-theme="dark"] .intro-copy h1 {
    color: #ffffff;
}

body[dir="rtl"] .intro-copy h1 {
    letter-spacing: 0;
}

.intro-copy p {
    max-width: 650px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.75;
    font-weight: 500;
}

.search-stage {
    position: relative;
    z-index: 100;
    width: 100%;
    isolation: isolate;
    direction: ltr;
}

.search-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.search-row {
    position: relative;
    z-index: 2;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 156px;
    align-items: stretch;
    gap: 13px;
    direction: ltr;
}

.domain-field {
    position: relative;
    z-index: 3;
    min-width: 0;
    min-height: 76px;
    display: grid;
    grid-template-columns: auto minmax(140px, 1fr) 150px;
    align-items: center;
    padding: 7px;
    border: 1px solid var(--line);
    border-radius: 23px;
    background: var(--field);
    box-shadow: var(--shadow);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition:
        border-color 0.68s cubic-bezier(.22,.61,.36,1),
        box-shadow 0.68s cubic-bezier(.22,.61,.36,1),
        background-color 0.68s cubic-bezier(.22,.61,.36,1),
        transform 0.68s cubic-bezier(.22,.61,.36,1);
}

.domain-field:focus-within {
    border-color: rgba(255, 99, 53, 0.55);
    box-shadow: 0 32px 84px rgba(15, 44, 75, 0.18), 0 0 0 5px rgba(255, 99, 53, 0.075);
    transform: translateY(-2px);
}

.www {
    padding-left: 20px;
    color: var(--muted);
    font-weight: 750;
    font-size: 17px;
    user-select: none;
}

#domain-input {
    width: 100%;
    min-width: 0;
    height: 60px;
    border: 0;
    background: transparent;
    color: var(--text);
    padding: 0 18px 0 8px;
    font-size: clamp(17px, 1.8vw, 20px);
    font-weight: 750;
    letter-spacing: 0.01em;
    text-align: left;
    direction: ltr;
}

#domain-input::placeholder {
    color: var(--muted);
    opacity: 0.62;
    font-weight: 500;
}

#domain-input:focus {
    outline: 0;
}

.extension-picker {
    position: relative;
    z-index: 120;
    height: 60px;
    border-left: 1px solid var(--line);
}

.extension-trigger {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 16px;
    border-radius: 16px;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    transition:
        color 0.62s cubic-bezier(.22,.61,.36,1),
        background-color 0.62s cubic-bezier(.22,.61,.36,1);
}

html[data-theme="dark"] .extension-trigger {
    color: #ffffff;
}

.extension-trigger:hover,
.extension-trigger[aria-expanded="true"] {
    color: var(--orange);
    background: var(--soft-orange);
}

.extension-trigger-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1;
}

.extension-trigger-copy small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.extension-trigger-copy strong {
    font-size: 18px;
    font-weight: 800;
}

.extension-trigger > svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.62s cubic-bezier(.22,.61,.36,1);
}

.extension-trigger[aria-expanded="true"] > svg {
    transform: rotate(180deg);
}

.extension-menu {
    position: absolute;
    z-index: 9999;
    right: -8px;
    bottom: calc(100% + 16px);
    width: min(540px, 84vw);
    padding: 14px;
    border: 1px solid var(--line-strong);
    border-radius: 24px;
    background: var(--surface-solid);
    box-shadow: var(--menu-shadow), 0 0 0 1px rgba(255, 255, 255, 0.46) inset;
    transform-origin: right bottom;
    overflow: hidden;
    isolation: isolate;
    contain: paint;
}

.extension-menu.is-opening {
    animation: menu-up 0.46s cubic-bezier(.22,.61,.36,1) both;
}

.extension-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 3px 5px 12px;
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

.extension-menu-head small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
}

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

.extension-option {
    min-width: 0;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 10px 9px 12px;
    border: 1px solid transparent;
    border-radius: 15px;
    color: var(--text);
    background: var(--soft-navy);
    text-align: left;
    cursor: pointer;
    transition:
        transform 0.58s cubic-bezier(.22,.61,.36,1),
        color 0.58s cubic-bezier(.22,.61,.36,1),
        border-color 0.58s cubic-bezier(.22,.61,.36,1),
        background-color 0.58s cubic-bezier(.22,.61,.36,1);
}

.extension-option:hover,
.extension-option:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 99, 53, 0.24);
    background: var(--soft-orange);
}

.extension-option.is-selected {
    color: var(--navy);
    border-color: rgba(255, 99, 53, 0.36);
    background: linear-gradient(135deg, rgba(255, 99, 53, 0.14), rgba(255, 255, 255, 0.62));
}

html[data-theme="dark"] .extension-option.is-selected {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 99, 53, 0.20), rgba(255, 255, 255, 0.04));
}

.extension-option-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.extension-option-copy strong {
    font-size: 15px;
    font-weight: 800;
}

.extension-option-copy small {
    overflow: hidden;
    color: var(--muted);
    font-size: 9.5px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.option-check {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: transparent;
    background: rgba(15, 44, 75, 0.06);
}

.extension-option.is-selected .option-check {
    color: #ffffff;
    background: var(--orange);
}

.option-check svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.search-button {
    position: relative;
    min-height: 76px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border-radius: 23px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    box-shadow: 0 20px 42px rgba(255, 99, 53, 0.28);
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.01em;
    overflow: hidden;
    transition:
        transform 0.62s cubic-bezier(.22,.61,.36,1),
        box-shadow 0.62s cubic-bezier(.22,.61,.36,1),
        filter 0.62s cubic-bezier(.22,.61,.36,1);
}

.search-button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.25) 46%, transparent 67%);
    transform: translateX(-130%);
}

.search-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 52px rgba(255, 99, 53, 0.34);
    filter: saturate(1.07);
}

.search-button:hover::before {
    animation: button-shine 0.9s cubic-bezier(.22,.61,.36,1);
}

.search-button:active {
    transform: translateY(0);
}

.search-button:disabled {
    cursor: wait;
    opacity: 0.82;
}

.search-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.loader {
    display: none;
    width: 19px;
    height: 19px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
}

.search-form.is-loading .search-icon {
    display: none;
}

.search-form.is-loading .loader {
    display: block;
}

.popular-row {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 13px;
    direction: ltr;
}

.popular-label {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
}

.popular-options {
    display: flex;
    align-items: center;
    gap: 6px;
}

.popular-option {
    min-width: 50px;
    height: 30px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--muted);
    background: var(--surface);
    cursor: pointer;
    font-size: 11px;
    font-weight: 800;
    transition:
        transform 0.58s cubic-bezier(.22,.61,.36,1),
        color 0.58s cubic-bezier(.22,.61,.36,1),
        border-color 0.58s cubic-bezier(.22,.61,.36,1),
        background-color 0.58s cubic-bezier(.22,.61,.36,1);
}

.popular-option:hover,
.popular-option.is-active {
    transform: translateY(-2px);
    color: var(--orange);
    border-color: rgba(255, 99, 53, 0.34);
    background: var(--soft-orange);
}

.result-card {
    width: min(760px, 100%);
    min-height: 70px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    margin-top: 13px;
    padding: 12px 14px;
    border: 1px solid transparent;
    border-radius: 19px;
    text-align: left;
    direction: ltr;
    animation: result-in 0.5s cubic-bezier(.22,.61,.36,1) both;
}

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

.result-card.is-success {
    color: var(--success);
    border-color: rgba(19, 134, 91, 0.22);
    background: var(--success-bg);
}

.result-card.is-danger {
    color: var(--danger);
    border-color: rgba(217, 75, 75, 0.22);
    background: var(--danger-bg);
}

.result-card.is-warning {
    color: var(--warning);
    border-color: rgba(200, 120, 8, 0.22);
    background: var(--warning-bg);
}

.result-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 13px;
    font-size: 21px;
    font-weight: 800;
}

.result-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.result-copy strong {
    overflow: hidden;
    color: currentColor;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.result-copy span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 600;
}

.result-action {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    border-radius: 11px;
    color: #ffffff;
    background: var(--success);
    text-decoration: none;
    font-size: 11px;
    font-weight: 800;
    transition: transform 0.58s cubic-bezier(.22,.61,.36,1), filter 0.58s cubic-bezier(.22,.61,.36,1);
}

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

.result-action:hover {
    transform: translateY(-2px);
    filter: brightness(1.06);
}

.result-action svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-message {
    min-height: 21px;
    margin-top: 7px;
    color: var(--danger);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    direction: auto;
}

.service-points {
    width: min(760px, 100%);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: clamp(15px, 2.2vh, 22px);
}

.service-point {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 11px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: left;
    transition:
        transform 0.7s cubic-bezier(.22,.61,.36,1),
        border-color 0.7s cubic-bezier(.22,.61,.36,1),
        background-color 0.7s cubic-bezier(.22,.61,.36,1);
}

html[data-theme="dark"] .service-point {
    background: rgba(255, 255, 255, 0.026);
}

body[dir="rtl"] .service-point {
    text-align: right;
}

.service-point:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 99, 53, 0.30);
    background: var(--soft-orange);
}

.service-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--orange);
    background: var(--soft-orange);
}

.service-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-point > span:last-child {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-point b {
    overflow: hidden;
    color: var(--text);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.service-point small {
    overflow: hidden;
    color: var(--muted);
    font-size: 9.5px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
}


body.is-extension-menu-open .brand-area {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px) scale(.97);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

body:not(.is-extension-menu-open) .brand-area {
    transition: opacity .45s cubic-bezier(.22,.61,.36,1), transform .45s cubic-bezier(.22,.61,.36,1);
}

@keyframes panel-in {
    from { opacity: 0; transform: translateY(24px) scale(0.985); }
    to { opacity: 1; transform: translateY(-1.2vh) scale(1); }
}

@keyframes menu-up {
    from { opacity: 0; transform: translateY(10px) scale(0.965); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes result-in {
    from { opacity: 0; transform: translateY(-7px) scale(0.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes halo-pulse {
    0%, 100% { opacity: 0.64; transform: scale(0.94); }
    50% { opacity: 1; transform: scale(1.06); }
}

@keyframes button-shine {
    to { transform: translateX(130%); }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 760px) {
    .page-shell {
        padding-inline: 14px;
    }

    .hero-panel {
        width: min(580px, 100%);
    }

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

    .domain-field {
        min-height: 68px;
        grid-template-columns: auto minmax(90px, 1fr) 118px;
        border-radius: 20px;
    }

    .www {
        padding-left: 13px;
        font-size: 14px;
    }

    #domain-input {
        height: 54px;
        padding-inline: 6px;
        font-size: 16px;
    }

    .extension-picker,
    .extension-trigger {
        height: 54px;
    }

    .extension-trigger {
        gap: 8px;
        padding-inline: 10px;
    }

    .extension-trigger-copy strong {
        font-size: 16px;
    }

    .search-button {
        min-height: 58px;
        border-radius: 19px;
    }

    .extension-menu {
        right: 0;
        bottom: calc(100% + 14px);
        width: min(430px, calc(100vw - 28px));
    }

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

    .service-points {
        gap: 7px;
    }

    .service-point {
        padding: 9px 7px;
        gap: 6px;
    }

    .service-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }

    .service-point small {
        display: none;
    }

    .result-card {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .result-action {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 470px) {
    .top-actions {
        top: 12px;
        right: 12px;
        gap: 7px;
    }

    .control-button {
        height: 41px;
    }

    .language-toggle {
        min-width: 59px;
        padding-inline: 10px;
    }

    .theme-toggle {
        width: 41px;
    }

    .brand-logo {
        width: 92px;
        border-radius: 18px;
    }

    .intro-copy h1 {
        font-size: clamp(27px, 8.1vw, 34px);
    }

    .intro-copy p {
        font-size: 13px;
    }

    .popular-row {
        gap: 7px;
    }

    .popular-option:nth-child(n+5) {
        display: none;
    }

    .popular-option {
        min-width: 45px;
        padding-inline: 7px;
    }

    .extension-grid {
        gap: 6px;
    }

    .extension-option {
        min-height: 51px;
        padding-inline: 9px;
    }

    .extension-option-copy small {
        font-size: 8.5px;
    }

}

@media (max-height: 760px) {
    .page-shell {
        padding-top: 68px;
        padding-bottom: 16px;
    }

    .hero-panel {
        transform: translateY(0);
    }

    .brand-area {
        margin-bottom: 8px;
    }

    .brand-logo {
        width: 88px;
    }

    .intro-copy {
        margin-bottom: 18px;
    }

    .intro-copy h1 {
        font-size: clamp(28px, 3.6vw, 42px);
    }

    .intro-copy p {
        margin-top: 7px;
        line-height: 1.55;
    }

    .eyebrow {
        margin-bottom: 8px;
    }

    .domain-field,
    .search-button {
        min-height: 66px;
    }

    .popular-row {
        margin-top: 8px;
    }

    .service-points {
        margin-top: 8px;
    }

    .service-point {
        padding-block: 7px;
    }

    .form-message {
        margin-top: 3px;
        min-height: 17px;
    }
}

@media (max-height: 650px) {
    .brand-area {
        display: none;
    }

    .eyebrow {
        display: none;
    }

    .intro-copy {
        margin-bottom: 14px;
    }

    .intro-copy p {
        margin-top: 5px;
    }

    .service-points {
        display: none;
    }
}

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