@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-300-normal.woff2") format("woff2");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-400-normal.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-500-normal.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-600-normal.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-700-normal.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src: url("../fonts/outfit-400-normal.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src: url("../fonts/outfit-500-normal.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src: url("../fonts/outfit-600-normal.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src: url("../fonts/outfit-700-normal.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Outfit";
    src: url("../fonts/outfit-800-normal.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --page-bg: #0a0d16;
    --card-bg: #0f1422;
    --left-bg: #111827;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #7d8ba1;
    --line-soft: rgba(255, 255, 255, 0.08);
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --accent-dark: #b45309;
    --panel-border: rgba(245, 158, 11, 0.18);
    --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
    background: var(--page-bg);
    color: var(--text-primary);
    font-family: var(--font-sans);
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 82% 12%, rgba(245, 158, 11, 0.12), transparent 32%),
        linear-gradient(180deg, #0a0d16 0%, #0d1220 55%, #0a0d16 100%),
        var(--page-bg);
    color: var(--text-primary);
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

.page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
}

.domain-card {
    width: min(100%, 920px);
    min-height: 520px;
    display: grid;
    grid-template-columns: 45% 55%;
    overflow: hidden;
    border-radius: 22px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34), 0 0 44px rgba(245, 158, 11, 0.08);
}

.brand-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.5rem 2.9rem;
    background:
        radial-gradient(circle at 60% 28%, rgba(245, 158, 11, 0.08), transparent 38%),
        var(--left-bg);
}

.logo-stage {
    width: 100%;
    aspect-ratio: 1.18;
    display: grid;
    place-items: center;
    margin-bottom: 1.35rem;
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(17, 22, 37, 0.92), rgba(10, 13, 22, 0.98));
    box-shadow:
        inset 0 0 0 1px var(--panel-border),
        0 18px 42px rgba(0, 0, 0, 0.24);
}

.logo-image {
    width: min(58%, 210px);
    height: auto;
    display: block;
    filter: drop-shadow(0 10px 24px rgba(245, 158, 11, 0.25));
}

.brand {
    display: inline-flex;
    width: fit-content;
    margin: 0.7rem auto 0;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0;
}

.brand-dot {
    color: var(--accent);
}

.service-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-top: 1.35rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--line-soft);
}

.service-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 700;
}

.brand:hover,
.service-links a:hover {
    color: var(--accent);
    transform: translateY(-1px);
}

.brand:hover .brand-dot {
    color: var(--text-primary);
}

.content-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3.6rem 3.5rem;
}

.eyebrow {
    margin-bottom: 0.9rem;
    color: var(--accent-light);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    max-width: 460px;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.6rem);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: 0;
}

h1 span {
    color: var(--accent);
}

.lead {
    max-width: 420px;
    margin-bottom: 1.6rem;
    color: var(--text-secondary);
    font-size: 1.04rem;
}

.lead strong {
    color: var(--text-primary);
    font-weight: 800;
}

.link-label {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-size: 0.94rem;
    font-weight: 800;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.55rem;
    padding: 0.65rem 1.05rem;
    border-radius: 999px;
    background: var(--accent);
    color: #0a0d16;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(245, 158, 11, 0.18);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.pill:hover {
    background: var(--accent-light);
    transform: translateY(-1px);
}

@media (max-width: 760px) {
    .page {
        padding: 1.25rem;
    }

    .domain-card {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .brand-panel,
    .content-panel {
        padding: 2rem;
    }

    .logo-stage {
        aspect-ratio: 1.5;
    }

    h1 {
        font-size: clamp(2.45rem, 14vw, 3.5rem);
    }
}
