@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --ink: #0d1b2a;
    --muted: #4b5563;
    --accent: #f97316;
    --accent-2: #0ea5a0;
    --accent-3: #f8c24e;
    --paper: #f7f2e8;
    --panel: #ffffff;
    --shadow: 0 30px 70px rgba(15, 23, 42, 0.16);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top right, rgba(14, 165, 160, 0.18), transparent 45%),
        radial-gradient(circle at 20% 20%, rgba(248, 194, 78, 0.2), transparent 55%),
        linear-gradient(180deg, #f9f5ef 0%, #f4efe6 40%, #f1ebe1 100%);
}

img {
    max-width: 100%;
    display: block;
}

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

.page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px 24px 60px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 12px;
    z-index: 10;
    background: rgba(247, 242, 232, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 999px;
    padding: 14px 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.logo {
    font-family: "Fraunces", serif;
    font-size: 1.4rem;
    font-weight: 700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 500;
}

.nav a {
    opacity: 0.82;
}

.nav a:hover {
    opacity: 1;
}

.nav-pill {
    background: var(--ink);
    color: #fff;
    padding: 8px 16px;
    border-radius: 999px;
}

.nav-ghost {
    border: 1px solid rgba(13, 27, 42, 0.2);
    padding: 8px 16px;
    border-radius: 999px;
}

.nav-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(13, 27, 42, 0.08);
    position: relative;
}

.nav-toggle::before,
.nav-toggle::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--ink);
}

.nav-toggle::before {
    top: 14px;
}

.nav-toggle::after {
    top: 22px;
}

.hero {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(14, 165, 160, 0.16), rgba(248, 194, 78, 0.18), rgba(249, 115, 22, 0.12));
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.7), transparent 50%);
    opacity: 0.8;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    position: relative;
    z-index: 1;
}

.hero-copy h1 {
    font-family: "Fraunces", serif;
    font-size: clamp(2.3rem, 4vw, 3.6rem);
    margin: 0 0 16px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 14px;
}

.lead {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 24px 0 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
    background: var(--ink);
    color: #fff;
    box-shadow: 0 16px 30px rgba(13, 27, 42, 0.2);
}

.btn.ghost {
    border-color: rgba(13, 27, 42, 0.2);
}

.btn.dark {
    background: var(--ink);
    color: #fff;
    border-radius: 12px;
}

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

.domain-search {
    background: rgba(255, 255, 255, 0.8);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(13, 27, 42, 0.12);
    display: grid;
    gap: 12px;
}

.domain-input {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.domain-input input {
    flex: 1;
    min-width: 200px;
    border: 1px solid rgba(13, 27, 42, 0.1);
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 1rem;
}

.domain-tlds {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-panel {
    display: grid;
    gap: 20px;
}

.hero-card {
    background: var(--panel);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.hero-card.alt {
    background: linear-gradient(160deg, rgba(13, 27, 42, 0.08), rgba(255, 255, 255, 0.9));
}

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

.hero-chart {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin: 18px 0;
    align-items: end;
    height: 90px;
}

.hero-chart span {
    display: block;
    height: 55px;
    background: linear-gradient(180deg, var(--accent-2), rgba(14, 165, 160, 0.2));
    border-radius: 8px 8px 4px 4px;
    animation: float 2.8s ease-in-out infinite;
}

.hero-chart span:nth-child(2) { height: 65px; animation-delay: 0.2s; }
.hero-chart span:nth-child(3) { height: 85px; animation-delay: 0.4s; }
.hero-chart span:nth-child(4) { height: 45px; animation-delay: 0.6s; }
.hero-chart span:nth-child(5) { height: 70px; animation-delay: 0.8s; }

.hero-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
}

.pill {
    background: rgba(249, 115, 22, 0.15);
    color: #b54b12;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.muted {
    color: var(--muted);
    margin: 0;
}

.section {
    padding: 80px 0 20px;
}

.section-header {
    max-width: 600px;
    margin-bottom: 32px;
}

.section-header h2 {
    font-family: "Fraunces", serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 12px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.card {
    background: var(--panel);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: 16px;
}

.card.small {
    padding: 18px;
}

.card-header h3 {
    margin: 0;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 12px 0 6px;
}

.price span {
    font-size: 2rem;
    font-weight: 700;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.features li {
    padding-left: 20px;
    position: relative;
}

.features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-2);
}

.split {
    display: grid;
    gap: 40px;
    align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.split-list {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}

.split-item {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 14px;
    padding: 16px;
    border: 1px solid rgba(13, 27, 42, 0.08);
}

.mock {
    background: var(--panel);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.mock-top {
    display: flex;
    gap: 8px;
    padding-bottom: 12px;
}

.mock-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(13, 27, 42, 0.2);
}

.mock-body {
    display: grid;
    gap: 12px;
}

.mock-block {
    height: 28px;
    border-radius: 10px;
    background: rgba(14, 165, 160, 0.2);
}

.mock-block.tall {
    height: 70px;
    background: rgba(249, 115, 22, 0.18);
}

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

.mock-card {
    height: 60px;
    border-radius: 12px;
    background: rgba(13, 27, 42, 0.08);
}

.mock-line {
    height: 14px;
    border-radius: 999px;
    background: rgba(13, 27, 42, 0.1);
}

.testimonials {
    padding-bottom: 80px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.testimonial {
    background: var(--panel);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
    display: grid;
    gap: 18px;
}

.testimonial-meta {
    display: grid;
    gap: 4px;
    color: var(--muted);
}

.trust {
    display: grid;
    gap: 14px;
    padding: 30px 0 10px;
    color: var(--muted);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    letter-spacing: 0;
    font-size: 1rem;
    text-transform: none;
    color: var(--ink);
}

.cta {
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta .btn.ghost {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.footer {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    color: var(--muted);
}

.footer-links {
    display: grid;
    gap: 8px;
    font-weight: 500;
}

.footer-meta {
    display: grid;
    gap: 6px;
    font-size: 0.9rem;
}

.link {
    color: var(--accent);
    font-weight: 600;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 900px) {
    .topbar {
        border-radius: 20px;
        align-items: flex-start;
        gap: 12px;
        flex-wrap: wrap;
    }

    .nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero {
        padding: 32px 24px;
    }
}

@media (max-width: 680px) {
    .nav {
        display: none;
    }

    body.nav-open .nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

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