:root {
    --bg: #08090d;
    --bg-soft: #11131a;
    --ink: #f7efe2;
    --muted: #aeb2ba;
    --line: rgba(247, 239, 226, 0.14);
    --panel: rgba(247, 239, 226, 0.08);
    --panel-strong: rgba(247, 239, 226, 0.13);
    --brand: #77f0d6;
    --brand-strong: #0b4f57;
    --accent: #ff714d;
    --acid: #e2ff6f;
    --white: #ffffff;
    --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
    --radius: 18px;
    --max: 1180px;
    --font-main: "Inter", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
    background: var(--bg);
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 73% 18%, rgba(119, 240, 214, 0.2), transparent 31rem),
        radial-gradient(circle at 15% 76%, rgba(255, 113, 77, 0.14), transparent 28rem),
        linear-gradient(180deg, #08090d 0%, #101117 100%);
    color: var(--ink);
    font-family: var(--font-main);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(247, 239, 226, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(247, 239, 226, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, black, transparent 62%);
}

.layout-lines {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent calc(50% - 590px), rgba(247, 239, 226, 0.07) calc(50% - 589px), transparent calc(50% - 588px)),
        linear-gradient(90deg, transparent calc(50% + 589px), rgba(247, 239, 226, 0.07) calc(50% + 590px), transparent calc(50% + 591px));
}

a {
    color: inherit;
}

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

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 20;
    background: var(--ink);
    color: var(--bg);
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    text-decoration: none;
}

.skip-link:focus {
    top: 1rem;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    width: min(var(--max), calc(100% - 2rem));
    margin: 0 auto;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--ink);
    background: rgba(8, 9, 13, 0.62);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(247, 239, 226, 0.08);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: inherit;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.02em;
}

.brand img {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #08090d;
    padding: 6px;
    box-shadow: 0 0 0 1px rgba(247, 239, 226, 0.16);
}

.navbar-links,
.footer-inner nav {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.navbar-links a,
.footer-inner nav a {
    color: rgba(247, 239, 226, 0.72);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 800;
}

.navbar-links a:hover,
.footer-inner nav a:hover {
    color: var(--ink);
}

.nav-cta,
.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
}

.nav-cta {
    padding: 0.75rem 1.1rem;
    background: var(--ink);
    color: var(--bg) !important;
}

.hamburger {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(247, 239, 226, 0.08);
    color: var(--ink);
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
}

.mobile-menu {
    display: none;
}

.hero,
.section,
.footer-inner,
.copyright {
    width: min(var(--max), calc(100% - 2rem));
    margin: 0 auto;
}

.hero {
    position: relative;
    min-height: calc(100dvh - 74px);
    padding: clamp(3rem, 7vh, 5.5rem) 0 4rem;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.9fr);
    gap: clamp(1.5rem, 4vw, 5rem);
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.eyebrow {
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    letter-spacing: 0;
}

h1 {
    margin-top: 1rem;
    max-width: 8.7ch;
    font-size: clamp(4rem, 7.4vw, 7.8rem);
    line-height: 0.84;
    text-wrap: balance;
}

.hero-lead {
    margin-top: 1.35rem;
    max-width: 590px;
    color: rgba(247, 239, 226, 0.72);
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
    line-height: 1.55;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.9rem 1.25rem;
    border: 1px solid transparent;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.nav-cta:hover,
.service-row:hover,
.example-card:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--acid);
    color: #101117;
    box-shadow: 0 20px 48px rgba(226, 255, 111, 0.22);
}

.btn-secondary {
    background: rgba(247, 239, 226, 0.07);
    color: var(--ink);
    border-color: var(--line);
}

.trust-strip {
    margin-top: 1.55rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.trust-strip span {
    border: 1px solid rgba(247, 239, 226, 0.14);
    border-radius: 999px;
    padding: 0.5rem 0.72rem;
    color: rgba(247, 239, 226, 0.68);
    background: rgba(247, 239, 226, 0.055);
    font-size: 0.86rem;
}

.hero-visual {
    position: relative;
    width: min(43vw, 610px);
    aspect-ratio: 1;
    justify-self: end;
    border-radius: 32px;
    background:
        radial-gradient(circle at 50% 47%, rgba(119, 240, 214, 0.24), transparent 43%),
        linear-gradient(145deg, rgba(247, 239, 226, 0.12), rgba(247, 239, 226, 0.03));
    border: 1px solid rgba(247, 239, 226, 0.14);
    box-shadow: var(--shadow), inset 0 0 80px rgba(119, 240, 214, 0.08);
    overflow: hidden;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 9%;
    border-radius: 50%;
    border: 1px solid rgba(119, 240, 214, 0.26);
    box-shadow:
        0 0 90px rgba(119, 240, 214, 0.22),
        inset 0 0 46px rgba(247, 239, 226, 0.1);
    pointer-events: none;
    z-index: 2;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 32%),
        radial-gradient(circle at 76% 20%, rgba(226, 255, 111, 0.16), transparent 24%);
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: screen;
}

.stage-tag {
    position: absolute;
    left: 1rem;
    top: 1rem;
    z-index: 4;
    border: 1px solid rgba(247, 239, 226, 0.18);
    border-radius: 999px;
    padding: 0.55rem 0.75rem;
    color: rgba(247, 239, 226, 0.78);
    background: rgba(8, 9, 13, 0.42);
    backdrop-filter: blur(12px);
    font-size: 0.78rem;
    font-weight: 900;
}

.product-preview {
    position: absolute;
    inset: 10%;
    z-index: 1;
    display: grid;
    grid-template-rows: auto minmax(90px, 1fr) auto;
    gap: clamp(0.8rem, 2vw, 1.2rem);
    border: 1px solid rgba(247, 239, 226, 0.14);
    border-radius: 24px;
    background:
        radial-gradient(circle at 22% 18%, rgba(229, 255, 104, 0.22), transparent 28%),
        radial-gradient(circle at 78% 66%, rgba(119, 240, 214, 0.18), transparent 34%),
        rgba(8, 9, 13, 0.54);
    padding: clamp(1rem, 2vw, 1.5rem);
    box-shadow: inset 0 1px 0 rgba(247, 239, 226, 0.1);
}

.preview-topbar {
    display: flex;
    gap: 0.45rem;
}

.preview-topbar span {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 999px;
    background: rgba(247, 239, 226, 0.34);
}

.preview-hero-line {
    align-self: center;
    width: min(86%, 420px);
    height: clamp(5.5rem, 12vw, 9rem);
    border-radius: 22px;
    background:
        linear-gradient(90deg, var(--ink) 0 52%, transparent 52%),
        linear-gradient(rgba(119, 240, 214, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(119, 240, 214, 0.22) 1px, transparent 1px);
    background-size: auto, 34px 34px, 34px 34px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
}

.preview-grid span,
.preview-panel {
    min-height: 84px;
    border: 1px solid rgba(247, 239, 226, 0.12);
    border-radius: 18px;
    background: rgba(247, 239, 226, 0.08);
}

.preview-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    color: var(--ink);
    background: rgba(247, 239, 226, 0.13);
}

.preview-panel strong {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

.preview-panel em {
    color: var(--brand);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-style: normal;
    font-weight: 900;
}

.orb-label {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    z-index: 4;
    transform: translateX(-50%);
    white-space: nowrap;
    border-radius: 999px;
    padding: 0.72rem 1rem;
    background: rgba(8, 9, 13, 0.5);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(247, 239, 226, 0.16);
    color: var(--ink);
    font-weight: 900;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.hero-ribbon {
    position: absolute;
    left: 50%;
    bottom: 0.2rem;
    z-index: 0;
    transform: translateX(-50%);
    width: 100vw;
    color: rgba(247, 239, 226, 0.045);
    font-size: clamp(5rem, 15vw, 16rem);
    font-weight: 900;
    line-height: 0.75;
    white-space: nowrap;
    pointer-events: none;
}

main {
    position: relative;
    z-index: 1;
    background: #f3eadb;
    border-radius: 34px 34px 0 0;
    margin-top: -1px;
    padding-top: 1px;
}

.section {
    padding: 6.6rem 0;
    scroll-margin-top: 90px;
}

.intro {
    color: #101117;
    padding-top: 5.8rem;
    padding-bottom: 3.6rem;
}

.intro p {
    max-width: 900px;
    font-size: clamp(2rem, 4.4vw, 4.9rem);
    line-height: 0.94;
    font-weight: 900;
    text-wrap: balance;
}

main .section:not(.intro):not(.final-cta) {
    color: #101117;
}

.section-head {
    display: grid;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.section-head .eyebrow {
    color: #0a6b74;
}

.section-head h2,
.final-cta h2 {
    max-width: 760px;
    font-size: clamp(2.15rem, 4.2vw, 4.7rem);
    line-height: 0.94;
    text-wrap: balance;
}

.service-list {
    display: grid;
    gap: 0.85rem;
}

.service-row {
    min-height: 104px;
    display: grid;
    grid-template-columns: 0.64fr 1.5fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem 1.35rem;
    border: 1px solid rgba(16, 17, 23, 0.1);
    border-radius: 20px;
    background: rgba(255, 250, 242, 0.64);
    color: inherit;
    text-decoration: none;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-row:hover {
    background: #fffaf2;
    border-color: rgba(10, 107, 116, 0.26);
    box-shadow: 0 18px 50px rgba(16, 17, 23, 0.08);
}

.service-row span,
.price-panel span,
.example-card span {
    color: #0a6b74;
    font-weight: 900;
}

.service-row strong {
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.service-row em {
    color: rgba(16, 17, 23, 0.58);
    font-style: normal;
    font-weight: 900;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: start;
}

.price-panel {
    border: 1px solid rgba(16, 17, 23, 0.1);
    border-radius: 26px;
    background: #fffaf2;
    padding: 1rem;
    box-shadow: 0 26px 80px rgba(16, 17, 23, 0.12);
}

.price-panel div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid rgba(16, 17, 23, 0.09);
}

.price-panel div:last-child {
    border-bottom: 0;
}

.price-panel strong {
    font-size: clamp(1.18rem, 2vw, 1.55rem);
}

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

.example-card {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid rgba(16, 17, 23, 0.1);
    border-radius: 24px;
    background:
        linear-gradient(160deg, rgba(255, 250, 242, 0.96), rgba(255, 250, 242, 0.74)),
        radial-gradient(circle at 90% 10%, rgba(119, 240, 214, 0.28), transparent 34%);
    padding: 1.25rem;
    color: inherit;
    text-decoration: none;
    box-shadow: 0 22px 62px rgba(16, 17, 23, 0.09);
    transition: transform 180ms ease, border-color 180ms ease;
}

.example-card h3 {
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.02;
}

.example-card p,
.steps span,
.faq-list p {
    color: rgba(16, 17, 23, 0.58);
    line-height: 1.55;
}

.steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.steps li {
    border-top: 2px solid #0a6b74;
    padding-top: 1rem;
    display: grid;
    gap: 0.45rem;
}

.steps strong {
    font-size: 1.35rem;
}

.faq-list {
    display: grid;
    gap: 0.7rem;
    max-width: 820px;
}

.faq-list details {
    border: 1px solid rgba(16, 17, 23, 0.1);
    border-radius: 16px;
    background: rgba(255, 250, 242, 0.68);
    padding: 1rem 1.1rem;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 900;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list p {
    margin-top: 0.7rem;
}

.final-cta {
    width: min(var(--max), calc(100% - 2rem));
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 1.1rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at 22% 20%, rgba(226, 255, 111, 0.18), transparent 28%),
        radial-gradient(circle at 82% 74%, rgba(119, 240, 214, 0.17), transparent 30%),
        #0a1014;
    color: var(--ink);
    margin-bottom: 5rem;
    box-shadow: 0 28px 90px rgba(16, 17, 23, 0.18);
}

.final-cta .eyebrow {
    color: var(--brand);
}

.final-cta .btn-primary {
    background: var(--ink);
    color: #101117;
    box-shadow: none;
}

footer {
    background: #08090d;
    color: var(--ink);
    border-top: 1px solid rgba(247, 239, 226, 0.1);
    padding: 2rem 0 2.5rem;
}

footer .brand img {
    background: #101117;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-inner nav a {
    color: rgba(247, 239, 226, 0.6);
}

.footer-inner nav a:hover {
    color: var(--ink);
}

.copyright {
    margin-top: 1.4rem;
    color: rgba(247, 239, 226, 0.46);
    font-size: 0.92rem;
}

.sticky-cta {
    display: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(119, 240, 214, 0.42);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

@media (max-width: 980px) {
    body {
        background:
            radial-gradient(circle at 74% 16%, rgba(119, 240, 214, 0.2), transparent 24rem),
            linear-gradient(180deg, #08090d 0%, #101117 100%);
    }

    .navbar-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        z-index: 9;
        background: rgba(8, 9, 13, 0.54);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease;
    }

    .mobile-menu.active {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu-panel {
        width: min(330px, calc(100% - 2rem));
        margin: 5rem 1rem 0 auto;
        display: grid;
        gap: 0.4rem;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: #101117;
        padding: 0.8rem;
        box-shadow: var(--shadow);
    }

    .mobile-menu-panel a {
        padding: 0.9rem;
        border-radius: 12px;
        color: var(--ink);
        text-decoration: none;
        font-weight: 900;
    }

    .hero,
    .split {
        grid-template-columns: 1fr;
    }

    .hero {
        overflow: hidden;
        padding-top: 3rem;
        min-height: auto;
    }

    .hero-copy {
        min-width: 0;
        max-width: 100%;
    }

    h1 {
        max-width: 9.6ch;
    }

    .hero-visual {
        width: min(620px, 100%);
        margin: 0 auto;
        justify-self: center;
    }

    .service-row,
    .example-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .service-row {
        align-items: start;
    }

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

    .footer-inner nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.7rem;
    }
}

@media (max-width: 560px) {
    .navbar,
    .hero,
    .section,
    .footer-inner,
    .copyright,
    .final-cta {
        width: min(100% - 1.25rem, var(--max));
    }

    .navbar {
        min-height: 64px;
    }

    .section {
        padding: 4.6rem 0;
    }

    .intro {
        padding-top: 4.4rem;
    }

    h1 {
        font-size: clamp(3.2rem, 14vw, 4.5rem);
        line-height: 0.86;
        max-width: 9.2ch;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: min(100%, 345px);
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .trust-strip {
        max-width: 345px;
    }

    .hero-visual {
        width: min(100%, 430px);
        border-radius: 24px;
    }

    .stage-tag {
        left: 0.75rem;
        top: 0.75rem;
    }

    .orb-label {
        max-width: calc(100% - 1.5rem);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .service-row {
        min-height: auto;
        padding: 1rem;
    }

    .price-panel div {
        padding: 0.9rem 0.75rem;
    }

    .example-card {
        min-height: 230px;
    }

    .final-cta {
        border-radius: 24px;
    }
}
