:root {
    color-scheme: light;
    --bg: #ffffff;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --text: #111827;
    --muted: #64748b;
    --line: #e5e7eb;
    --dark: #111827;
    --dark-2: #1f2937;
    --success: #10b981;
    --info: #0ea5e9;
    --warning: #f59e0b;
    --shadow: 0 24px 70px rgba(15, 23, 42, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

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

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

code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(229, 231, 235, .82);
    background: rgba(255, 255, 255, .62);
    -webkit-backdrop-filter: blur(24px) saturate(155%);
    backdrop-filter: blur(24px) saturate(155%);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .48);
    transition: background .35s ease-in-out, border-color .35s ease-in-out, box-shadow .35s ease-in-out;
}

.site-header.is-scrolled {
    border-color: rgba(203, 213, 225, .88);
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 14px 40px rgba(15, 23, 42, .1), inset 0 -1px 0 rgba(255, 255, 255, .54);
}

.nav {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand,
.nav-links,
.nav-actions,
.hero-actions,
.footer-brand,
.footer-inner,
.cta,
.cta-actions,
.endpoint,
.workflow-item {
    display: flex;
    align-items: center;
}

.brand {
    min-width: 250px;
    gap: 12px;
}

.brand-logo {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
}

.brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.brand-copy strong {
    display: block;
    color: var(--text);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.1;
}

.brand-copy small {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.nav-links {
    gap: 26px;
    color: #475569;
    font-size: 14px;
    font-weight: 800;
}

.nav-links a {
    padding: 8px 0;
}

.nav-links a:hover {
    color: var(--brand-primary);
}

.nav-actions,
.hero-actions,
.cta-actions {
    gap: 10px;
}

.btn {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    color: var(--text);
    padding: 0 16px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .05);
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
    border-color: rgba(15, 23, 42, .2);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
}

.btn-primary {
    border-color: var(--brand-primary);
    background: var(--brand-primary);
    color: white;
}

.btn-light {
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .12);
    color: white;
}

.btn-ghost {
    background: var(--surface-soft);
}

.btn-lg {
    min-height: 48px;
    padding: 0 20px;
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #111827 52%, #2a1621 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .72), transparent 88%);
    opacity: .48;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 96px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .98));
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 680px;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 470px);
    gap: 48px;
    align-items: center;
    padding: 76px 0 104px;
}

.hero-content {
    display: flex;
    max-width: 760px;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.hero-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    padding: 8px 12px;
    color: rgba(255, 255, 255, .88);
    font-size: 13px;
    font-weight: 850;
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 5px rgba(16, 185, 129, .16);
}

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

h1 {
    max-width: 780px;
    margin-top: 24px;
    font-size: clamp(42px, 7vw, 78px);
    font-weight: 950;
    line-height: 1;
    letter-spacing: 0;
}

.hero p {
    max-width: 680px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    font-weight: 650;
    line-height: 1.8;
}

.hero-actions {
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-metrics {
    display: grid;
    max-width: 860px;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 42px;
}

.hero-metrics div {
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    padding: 16px;
    backdrop-filter: blur(10px);
}

.hero-metrics strong {
    display: block;
    font-size: 18px;
}

.hero-metrics span {
    display: block;
    margin-top: 6px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 700;
}

.hero-panel {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    padding: 18px;
    color: white;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
    backdrop-filter: blur(18px);
}

.hero-panel-head,
.hero-panel-stats,
.hero-activity div {
    display: flex;
    align-items: center;
}

.hero-panel-head {
    justify-content: space-between;
    gap: 16px;
}

.hero-panel-head span,
.hero-panel-stats span {
    display: block;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 900;
}

.hero-panel-head strong {
    display: block;
    margin-top: 4px;
    font-size: 19px;
    font-weight: 950;
}

.hero-panel-head b {
    border-radius: 999px;
    background: rgba(16, 185, 129, .16);
    color: #86efac;
    padding: 7px 11px;
    font-size: 12px;
}

.hero-panel-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.hero-panel-stats div {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background: rgba(15, 23, 42, .52);
    padding: 14px;
}

.hero-panel-stats strong {
    display: block;
    margin-top: 6px;
    font-size: 20px;
    font-weight: 950;
}

.hero-chart {
    display: grid;
    height: 210px;
    grid-template-columns: repeat(7, 1fr);
    align-items: end;
    gap: 10px;
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background:
        linear-gradient(to top, rgba(255, 255, 255, .12) 1px, transparent 1px),
        rgba(15, 23, 42, .4);
    background-size: 100% 25%;
    padding: 18px;
}

.hero-chart span {
    display: block;
    min-height: 32px;
    border-radius: 6px 6px 3px 3px;
    background: linear-gradient(180deg, #f9a8d4, var(--brand-primary));
    box-shadow: 0 14px 28px rgba(236, 72, 153, .22);
}

.hero-activity {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.hero-activity div {
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(15, 23, 42, .42);
    padding: 11px 12px;
}

.hero-activity i {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, .12);
}

.hero-activity span {
    min-width: 0;
    flex: 1;
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    font-weight: 800;
}

.hero-activity strong {
    color: white;
    font-size: 13px;
    font-weight: 950;
    text-align: right;
}

.section {
    padding: 76px 0;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .72s ease-in-out, transform .72s ease-in-out;
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card.reveal-on-scroll,
.endpoint.reveal-on-scroll,
.workflow-item.reveal-on-scroll,
.pricing-card.reveal-on-scroll {
    transition-delay: calc(var(--reveal-index, 0) * 70ms);
}

.section-muted {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--surface-soft);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

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

.section-heading span,
.cta-label {
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.section-heading h2,
.cta h2 {
    margin-top: 9px;
    color: var(--text);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 950;
    line-height: 1.08;
}

.section-copy,
.feature-card p,
.endpoint p,
.cta p,
.site-footer,
.workflow-item span {
    color: var(--muted);
    font-weight: 700;
}

.section-copy {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-card {
    min-height: 220px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 20px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
}

.feature-card span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 8px;
    background: var(--brand-secondary);
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 950;
}

.feature-card h3 {
    margin-top: 22px;
    color: var(--text);
    font-size: 18px;
}

.feature-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.7;
}

.api-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    align-items: start;
}

.code-block {
    margin-top: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 16px;
}

.code-block small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.code-block code {
    display: block;
    margin-top: 8px;
    overflow-wrap: anywhere;
    border-radius: 7px;
    background: var(--dark);
    color: white;
    padding: 12px;
    font-size: 14px;
}

.endpoint-list {
    display: grid;
    gap: 12px;
}

.endpoint {
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 16px;
}

.method {
    display: inline-flex;
    width: 58px;
    min-height: 30px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #e0f2fe;
    color: #075985;
    font-size: 12px;
    font-weight: 950;
}

.method.post {
    background: #dcfce7;
    color: #166534;
}

.endpoint strong {
    color: var(--text);
    font-size: 15px;
}

.endpoint p {
    margin-top: 5px;
    font-size: 13px;
}

.operations {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr);
    gap: 36px;
    align-items: stretch;
}

.profit-preview {
    min-height: 420px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
    padding: 22px;
    box-shadow: var(--shadow);
}

.profit-preview-head,
.profit-kpis,
.profit-legend {
    display: flex;
    align-items: center;
}

.profit-preview-head {
    justify-content: space-between;
    gap: 16px;
}

.profit-preview-head span,
.profit-kpis span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.profit-preview-head strong {
    display: block;
    margin-top: 4px;
    color: var(--text);
    font-size: 20px;
    font-weight: 950;
}

.profit-preview-head b {
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    padding: 7px 11px;
    font-size: 13px;
}

.profit-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.profit-kpis div {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 14px;
}

.profit-kpis strong {
    display: block;
    margin-top: 6px;
    color: var(--text);
    font-size: 18px;
}

.profit-chart {
    display: grid;
    height: 190px;
    grid-template-columns: repeat(7, 1fr);
    align-items: end;
    gap: 12px;
    margin-top: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(to top, rgba(148, 163, 184, .18) 1px, transparent 1px);
    background-size: 100% 25%;
    padding: 18px;
}

.profit-chart span {
    display: block;
    border-radius: 6px 6px 3px 3px;
    background: linear-gradient(180deg, var(--brand-primary), #be185d);
    box-shadow: 0 10px 18px rgba(236, 72, 153, .22);
}

.profit-legend {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.profit-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.profit-legend i {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
}

.legend-revenue {
    background: var(--brand-primary);
}

.legend-profit {
    background: var(--success);
}

.operations-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.workflow {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.workflow-item {
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 14px;
}

.workflow-item b {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 8px;
    background: var(--brand-primary);
    color: white;
}

.pricing-section {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(15, 23, 42, .08);
    background:
        radial-gradient(circle at 14% 10%, rgba(236, 72, 153, .16), transparent 28%),
        radial-gradient(circle at 86% 0%, rgba(14, 165, 233, .13), transparent 30%),
        linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.pricing-section .container {
    width: min(1240px, calc(100% - 32px));
}

.pricing-heading span {
    color: rgba(255, 255, 255, .62);
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 750;
    letter-spacing: 0;
    text-transform: none;
}

.pricing-heading h2 {
    max-width: 860px;
    color: white;
    font-size: clamp(28px, 4.1vw, 44px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 22px);
}

.pricing-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid rgba(148, 163, 184, .32);
    border-radius: 18px;
    background: rgba(30, 41, 59, .76);
    padding: clamp(20px, 2.2vw, 28px);
    color: white;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(236, 72, 153, .5);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}

.pricing-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pricing-icon,
.price-list-icon {
    position: relative;
    display: grid;
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #fceabb, #f8b500);
    color: #121828;
}

.pricing-icon::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 4px solid currentColor;
    border-radius: 999px;
}

.pricing-icon::after {
    content: "";
    position: absolute;
    bottom: 10px;
    width: 16px;
    height: 13px;
    background: currentColor;
    clip-path: polygon(0 0, 48% 35%, 100% 0, 78% 100%, 50% 72%, 22% 100%);
    opacity: .92;
}

.pricing-card h3 {
    color: white;
    font-size: clamp(20px, 2vw, 24px);
}

.pricing-price {
    display: block;
    margin-top: clamp(20px, 2vw, 28px);
    color: white;
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 950;
    line-height: 1.04;
}

.pricing-card p {
    margin-top: 14px;
    color: rgba(203, 213, 225, .86);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.75;
}

.pricing-features {
    display: grid;
    gap: 13px;
    margin: 24px 0 28px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(148, 163, 184, .28);
    list-style: none;
}

.pricing-features li {
    position: relative;
    padding-left: 28px;
    color: rgba(203, 213, 225, .86);
    font-size: 14px;
    font-weight: 750;
    line-height: 1.45;
}

.pricing-features li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 5px;
    width: 10px;
    height: 6px;
    border-bottom: 2px solid var(--success);
    border-left: 2px solid var(--success);
    transform: rotate(-45deg);
}

.pricing-button {
    width: 100%;
    margin-top: auto;
    min-height: 48px;
}

.price-list-panel {
    margin-top: clamp(24px, 4vw, 38px);
    overflow: visible;
    border: 1px solid rgba(148, 163, 184, .28);
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 0, rgba(236, 72, 153, .12), transparent 48%),
        rgba(30, 41, 59, .88);
    color: white;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .24);
}

.price-list-head {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: clamp(20px, 3vw, 28px);
    border-bottom: 1px solid rgba(148, 163, 184, .22);
}

.price-list-icon {
    background: linear-gradient(135deg, var(--brand-primary), #0ea5e9);
    color: white;
}

.price-list-icon::before,
.price-list-icon::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: currentColor;
}

.price-list-icon::before {
    width: 24px;
    height: 5px;
    transform: rotate(-28deg);
}

.price-list-icon::after {
    width: 6px;
    height: 6px;
    box-shadow: -8px -2px 0 currentColor, 8px 2px 0 currentColor;
}

.price-list-head h3 {
    color: white;
    font-size: clamp(20px, 2.4vw, 24px);
}

.price-list-head p {
    margin-top: 8px;
    color: rgba(203, 213, 225, .82);
    font-weight: 700;
    line-height: 1.7;
}

.price-list-head strong {
    display: inline-flex;
    border-radius: 7px;
    background: rgba(245, 158, 11, .13);
    color: #fbbf24;
    padding: 2px 7px;
}

.price-list-tools {
    display: grid;
    max-width: 860px;
    grid-template-columns: minmax(240px, .92fr) minmax(260px, 1.08fr);
    gap: 14px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px);
}

.select-button,
.search-field input {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(148, 163, 184, .3);
    border-radius: 12px;
    background: rgba(15, 23, 42, .42);
    color: rgba(226, 232, 240, .94);
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.select-wrap {
    position: relative;
}

.select-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 18px;
    cursor: pointer;
}

.select-button[aria-expanded="true"] {
    border-color: rgba(236, 72, 153, .58);
    background: rgba(15, 23, 42, .58);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, .1);
}

.select-button i {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s ease;
}

.select-button[aria-expanded="true"] i {
    transform: rotate(225deg) translate(-2px, -2px);
}

.select-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 20;
    display: grid;
    max-height: 320px;
    overflow-y: auto;
    border: 1px solid rgba(148, 163, 184, .3);
    border-radius: 12px;
    background: rgba(15, 23, 42, .96);
    padding: 8px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, .38);
}

.select-menu[hidden] {
    display: none;
}

.select-menu button {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: rgba(226, 232, 240, .94);
    padding: 9px;
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    text-align: left;
    cursor: pointer;
}

.select-menu button:hover:not(:disabled) {
    background: rgba(255, 255, 255, .08);
}

.select-menu button:disabled {
    grid-template-columns: 1fr;
    color: #64748b;
    cursor: default;
}

.select-menu img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    object-fit: cover;
    background: rgba(255, 255, 255, .08);
}

.select-menu span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select-menu small {
    color: #94a3b8;
    font-size: 11px;
    font-weight: 850;
}

.search-field {
    position: relative;
    display: block;
}

.search-field span {
    position: absolute;
    left: 18px;
    top: 50%;
    width: 13px;
    height: 13px;
    border: 2px solid #64748b;
    border-radius: 999px;
    transform: translateY(-50%);
}

.search-field span::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: -5px;
    width: 7px;
    height: 2px;
    border-radius: 999px;
    background: #64748b;
    transform: rotate(45deg);
}

.search-field input {
    padding: 0 16px 0 48px;
}

.search-field input::placeholder {
    color: #64748b;
}

.search-field input:disabled {
    opacity: .62;
    cursor: not-allowed;
}

.select-button:hover,
.search-field input:focus {
    border-color: rgba(236, 72, 153, .58);
    background: rgba(15, 23, 42, .54);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, .1);
}

.price-list-status {
    margin: -12px auto 24px;
    padding: 0 clamp(20px, 3vw, 28px);
    color: #94a3b8;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
}

.price-list-status[hidden] {
    display: none;
}

.price-table-wrap {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
}

.price-table th {
    border-top: 1px solid rgba(148, 163, 184, .2);
    border-bottom: 1px solid rgba(148, 163, 184, .28);
    background: rgba(15, 23, 42, .25);
    color: rgba(203, 213, 225, .78);
    padding: 15px 24px;
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .06em;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.price-table th:last-child {
    color: rgba(251, 191, 36, .86);
}

.price-table td {
    border-bottom: 1px solid rgba(148, 163, 184, .16);
    color: rgba(226, 232, 240, .92);
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 850;
    white-space: nowrap;
}

.price-table tbody tr:hover td {
    background: rgba(255, 255, 255, .04);
}

.price-table td:first-child {
    white-space: normal;
}

.price-table td:first-child strong {
    display: block;
    color: white;
    font-size: 14px;
}

.price-table td:first-child span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    font-weight: 900;
}

.price-table td[colspan] {
    padding: 56px 24px;
}

.empty-state {
    display: grid;
    place-items: center;
    gap: 12px;
    color: #64748b;
    font-weight: 850;
    text-align: center;
}

.empty-state span {
    position: relative;
    width: 44px;
    height: 34px;
    border: 2px solid rgba(100, 116, 139, .75);
    border-radius: 8px;
}

.empty-state span::before {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    top: -8px;
    height: 10px;
    border: 2px solid rgba(100, 116, 139, .75);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.price-list-footer {
    border-top: 1px solid rgba(148, 163, 184, .22);
    background: rgba(15, 23, 42, .22);
    padding: 20px;
    text-align: center;
}

.price-list-footer p {
    color: #64748b;
    font-size: 14px;
    font-weight: 800;
}

.price-list-footer a {
    color: #f9a8d4;
    font-weight: 950;
}

.price-list-footer a:hover {
    color: white;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.section-cta {
    background: var(--brand-secondary);
}

.cta {
    justify-content: space-between;
    gap: 24px;
}

.cta > div:first-child {
    max-width: 720px;
}

.cta p {
    margin-top: 10px;
    line-height: 1.7;
}

.site-footer {
    border-top: 1px solid var(--line);
    background: white;
}

.footer-inner {
    min-height: 84px;
    justify-content: space-between;
    gap: 20px;
    font-size: 14px;
}

.footer-brand {
    gap: 10px;
    color: var(--text);
    font-weight: 900;
}

.footer-brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

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

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

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

    .pricing-card:last-child {
        grid-column: 1 / -1;
    }

    .api-layout,
    .operations,
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 28px;
        padding: 104px 0 92px;
    }

    .hero-content,
    .hero-metrics {
        max-width: none;
    }
}

@media (max-width: 860px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card:last-child {
        grid-column: auto;
    }

    .price-list-tools {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 24px, 1160px);
    }

    .pricing-section .container {
        width: min(100% - 20px, 1240px);
    }

    .nav {
        min-height: 68px;
        gap: 12px;
    }

    .brand {
        min-width: 0;
    }

    .brand-copy small,
    .nav-actions .btn-ghost {
        display: none;
    }

    .btn {
        min-height: 40px;
        padding: 0 13px;
    }

    .hero-grid {
        min-height: auto;
        padding: 98px 0 78px;
    }

    .hero-metrics,
    .feature-grid,
    .hero-panel-stats {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        padding: 14px;
    }

    .hero-chart {
        height: 170px;
        gap: 8px;
        padding: 14px;
    }

    .hero-activity strong {
        max-width: 130px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero p {
        font-size: 16px;
    }

    .section {
        padding: 56px 0;
    }

    .pricing-card {
        border-radius: 14px;
    }

    .pricing-price {
        font-size: 34px;
    }

    .pricing-card-head {
        gap: 12px;
    }

    .pricing-icon,
    .price-list-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .pricing-features {
        gap: 11px;
    }

    .price-list-head {
        flex-direction: column;
    }

    .price-list-tools {
        grid-template-columns: 1fr;
    }

    .select-menu {
        max-height: 260px;
    }

    .price-table {
        min-width: 560px;
    }

    .price-table th,
    .price-table td {
        padding-right: 16px;
        padding-left: 16px;
    }

    .profit-preview {
        min-height: 300px;
    }

    .profit-kpis {
        grid-template-columns: 1fr;
    }

    .cta,
    .footer-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 560px) {
    .pricing-heading span {
        font-size: 20px;
    }

    .pricing-heading h2 {
        font-size: 28px;
        line-height: 1.14;
    }

    .pricing-card p,
    .pricing-features li {
        font-size: 13px;
    }

    .price-list-panel {
        border-radius: 16px;
    }

    .price-list-head p {
        font-size: 14px;
    }

    .price-table-wrap {
        overflow-x: visible;
        padding: 0 12px 12px;
    }

    .price-table {
        min-width: 0;
    }

    .price-table,
    .price-table thead,
    .price-table tbody,
    .price-table tr,
    .price-table td {
        display: block;
        width: 100%;
    }

    .price-table thead {
        display: none;
    }

    .price-table tbody {
        display: grid;
        gap: 10px;
    }

    .price-table tr {
        border: 1px solid rgba(148, 163, 184, .18);
        border-radius: 12px;
        background: rgba(15, 23, 42, .24);
        overflow: hidden;
    }

    .price-table td {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        border-bottom: 1px solid rgba(148, 163, 184, .13);
        padding: 12px 14px;
        text-align: right;
        white-space: normal;
    }

    .price-table td::before {
        content: attr(data-label);
        flex: 0 0 auto;
        color: #94a3b8;
        font-size: 11px;
        font-weight: 950;
        letter-spacing: .04em;
        text-align: left;
        text-transform: uppercase;
    }

    .price-table td:first-child {
        display: block;
        text-align: left;
    }

    .price-table td:first-child::before,
    .price-table td[colspan]::before {
        content: none;
    }

    .price-table td:last-child {
        border-bottom: 0;
    }

    .price-table td[colspan] {
        display: block;
        padding: 34px 16px;
        text-align: center;
    }

    .empty-state span {
        width: 38px;
        height: 30px;
    }
}

/* Modern landing refresh */
body {
    background:
        radial-gradient(circle at 8% 0%, color-mix(in srgb, var(--brand-primary) 10%, transparent), transparent 30%),
        radial-gradient(circle at 88% 4%, rgba(14, 165, 233, .09), transparent 32%),
        #f8fafc;
}

.site-header {
    top: 12px;
    right: 12px;
    left: 12px;
    border: 1px solid rgba(148, 163, 184, .22);
    border-radius: 18px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .9);
}

.nav {
    min-height: 68px;
    padding: 0 14px;
}

.brand-logo {
    border-radius: 14px;
}

.nav-links {
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 999px;
    background: rgba(248, 250, 252, .72);
    padding: 5px 12px;
    gap: 18px;
}

.nav-links a {
    border-radius: 999px;
    padding: 8px 6px;
}

.btn {
    border-radius: 12px;
}

.btn-primary {
    box-shadow: 0 14px 34px color-mix(in srgb, var(--brand-primary) 26%, transparent);
}

.hero {
    background:
        radial-gradient(circle at 18% 22%, color-mix(in srgb, var(--brand-primary) 28%, transparent), transparent 34%),
        radial-gradient(circle at 86% 18%, rgba(14, 165, 233, .22), transparent 30%),
        linear-gradient(135deg, #020617 0%, #0f172a 48%, #111827 100%);
}

.hero::before {
    background:
        linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, .08) 42% 43%, transparent 43% 100%),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 220px 220px, 46px 46px, 46px 46px;
}

.hero-grid {
    min-height: 760px;
    padding-top: 118px;
}

h1 {
    max-width: 860px;
    text-wrap: balance;
}

.hero p,
.section-copy {
    text-wrap: pretty;
}

.hero-badge,
.hero-metrics div,
.hero-panel,
.hero-panel-stats div,
.hero-activity div {
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.hero-badge {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .09);
}

.hero-metrics div,
.hero-panel-stats div,
.hero-activity div {
    border-radius: 16px;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .07)),
        rgba(15, 23, 42, .55);
}

.hero-panel::before {
    content: "";
    position: absolute;
    right: -70px;
    top: -70px;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--brand-primary) 22%, transparent);
}

.hero-panel > * {
    position: relative;
    z-index: 1;
}

.hero-chart {
    border-radius: 18px;
}

.hero-chart span,
.profit-chart span {
    background: linear-gradient(180deg, #38bdf8, var(--brand-primary));
}

.section {
    position: relative;
}

.section-heading h2,
.cta h2 {
    text-wrap: balance;
}

.feature-card,
.endpoint,
.workflow-item,
.profit-preview,
.code-block {
    border-color: rgba(148, 163, 184, .20);
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(15, 23, 42, .06);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.feature-card:hover,
.endpoint:hover,
.workflow-item:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--brand-primary) 28%, rgba(148, 163, 184, .20));
    box-shadow: 0 24px 64px rgba(15, 23, 42, .10);
}

.feature-card span,
.workflow-item b {
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--brand-primary) 12%, transparent);
}

.api-layout,
.operations {
    gap: 48px;
}

.section-muted {
    background:
        radial-gradient(circle at 16% 14%, color-mix(in srgb, var(--brand-primary) 8%, transparent), transparent 30%),
        #f8fafc;
}

.code-block code {
    border-radius: 14px;
}

.endpoint {
    align-items: flex-start;
}

.profit-preview {
    border-radius: 24px;
    background:
        radial-gradient(circle at 16% 10%, color-mix(in srgb, var(--brand-primary) 12%, transparent), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.profit-kpis div {
    border-radius: 16px;
}

.profit-chart {
    border-radius: 18px;
}

.pricing-section {
    background:
        radial-gradient(circle at 18% 10%, color-mix(in srgb, var(--brand-primary) 24%, transparent), transparent 30%),
        radial-gradient(circle at 86% 6%, rgba(14, 165, 233, .18), transparent 30%),
        linear-gradient(180deg, #020617 0%, #0f172a 48%, #111827 100%);
}

.pricing-card {
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045)),
        rgba(15, 23, 42, .78);
}

.pricing-card:nth-child(2) {
    border-color: color-mix(in srgb, var(--brand-primary) 48%, rgba(148, 163, 184, .32));
    box-shadow:
        0 34px 90px rgba(0, 0, 0, .34),
        0 0 0 1px color-mix(in srgb, var(--brand-primary) 20%, transparent);
}

.pricing-card:nth-child(2)::before {
    content: "Populer";
    width: fit-content;
    border: 1px solid color-mix(in srgb, var(--brand-primary) 34%, transparent);
    border-radius: 999px;
    background: color-mix(in srgb, var(--brand-primary) 16%, transparent);
    color: #f9a8d4;
    padding: 6px 10px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 950;
}

.price-list-panel {
    border-radius: 26px;
}

.section-cta {
    background:
        radial-gradient(circle at 12% 12%, color-mix(in srgb, var(--brand-primary) 15%, transparent), transparent 30%),
        linear-gradient(135deg, var(--brand-secondary), #ffffff);
}

.cta {
    border: 1px solid rgba(148, 163, 184, .18);
    border-radius: 24px;
    background: rgba(255, 255, 255, .66);
    padding: clamp(22px, 4vw, 34px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}

.site-footer {
    background: #f8fafc;
}

@media (max-width: 1040px) {
    .site-header {
        top: 8px;
        right: 8px;
        left: 8px;
    }

    .hero-grid {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .site-header {
        border-radius: 14px;
    }

    .nav {
        min-height: 64px;
        padding: 0 10px;
    }

    .hero-grid {
        padding-top: 104px;
    }

    .hero-metrics div,
    .feature-card,
    .endpoint,
    .workflow-item {
        border-radius: 16px;
    }

    .hero-panel,
    .profit-preview,
    .price-list-panel,
    .cta {
        border-radius: 18px;
    }
}

/* Login-inspired landing polish */
:root {
    --landing-amber: #f59e0b;
    --landing-dark: #030712;
    --landing-panel: #111827;
}

body {
    background:
        linear-gradient(rgba(17, 24, 39, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 24, 39, .035) 1px, transparent 1px),
        #ffffff;
    background-size: 34px 34px, 34px 34px, auto;
}

.site-header {
    top: 16px;
    right: 20px;
    left: 20px;
    border-color: rgba(255, 255, 255, .10);
    background: rgba(3, 7, 18, .68);
    color: #ffffff;
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    backdrop-filter: blur(22px) saturate(150%);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

.site-header.is-scrolled {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(3, 7, 18, .82);
}

.brand-logo {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .10);
}

.brand-copy strong {
    color: #ffffff;
}

.brand-copy small,
.nav-links {
    color: #cbd5e1;
}

.nav-links {
    border-color: rgba(255, 255, 255, .10);
    background: rgba(255, 255, 255, .06);
}

.nav-links a:hover {
    color: #fbbf24;
}

.btn-ghost {
    border-color: rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .08);
    color: #ffffff;
}

.btn-primary {
    border-color: var(--landing-amber);
    background: var(--landing-amber);
    box-shadow: 0 18px 40px rgba(245, 158, 11, .22);
}

.btn-primary:hover {
    border-color: #d97706;
    background: #d97706;
}

.hero {
    isolation: isolate;
    min-height: 100vh;
    background:
        radial-gradient(circle at 12% 16%, rgba(245, 158, 11, .20), transparent 28%),
        radial-gradient(circle at 78% 14%, rgba(14, 165, 233, .15), transparent 28%),
        linear-gradient(135deg, #09090b 0%, #111827 52%, #1f2937 100%);
}

.hero::before {
    display: none;
}

.hero::after {
    height: 150px;
    background: linear-gradient(180deg, transparent, #ffffff);
}

.landing-visual-pattern,
.landing-visual-grid,
.landing-visual-orbit {
    position: absolute;
    pointer-events: none;
}

.landing-visual-pattern {
    inset: 0;
    z-index: 0;
    opacity: .34;
    background-image:
        linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,.08) 38% 39%, transparent 39% 100%),
        linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px);
    background-size: 180px 180px, 42px 42px, 42px 42px;
}

.landing-visual-grid {
    inset: 0;
    z-index: 0;
}

.landing-visual-grid span {
    position: absolute;
    display: block;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.035));
    box-shadow: 0 24px 70px rgba(0,0,0,.24);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.landing-visual-grid span:nth-child(1) {
    top: 15%;
    right: 9%;
    width: 170px;
    height: 94px;
}

.landing-visual-grid span:nth-child(2) {
    top: 28%;
    right: 28%;
    width: 124px;
    height: 124px;
    border-radius: 24px;
}

.landing-visual-grid span:nth-child(3) {
    right: 7%;
    bottom: 20%;
    width: 230px;
    height: 116px;
}

.landing-visual-grid span:nth-child(4) {
    bottom: 16%;
    left: 9%;
    width: 178px;
    height: 92px;
}

.landing-visual-grid span:nth-child(5) {
    top: 22%;
    left: 12%;
    width: 92px;
    height: 92px;
    border-radius: 999px;
    background: rgba(245, 158, 11, .13);
}

.landing-visual-grid span:nth-child(6) {
    right: 29%;
    bottom: 9%;
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: rgba(14, 165, 233, .10);
}

.landing-visual-orbit {
    top: 50%;
    left: 50%;
    z-index: 0;
    width: min(72vw, 720px);
    aspect-ratio: 1;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    transform: translate(-50%, -50%) rotate(-12deg);
}

.landing-visual-orbit::before,
.landing-visual-orbit::after {
    content: "";
    position: absolute;
    border-radius: 999px;
}

.landing-visual-orbit::before {
    inset: 17%;
    border: 1px dashed rgba(255,255,255,.13);
}

.landing-visual-orbit::after {
    top: 11%;
    right: 20%;
    width: 11px;
    height: 11px;
    background: var(--landing-amber);
    box-shadow: 0 0 24px rgba(245, 158, 11, .85);
}

.hero-grid {
    grid-template-columns: minmax(0, .95fr) minmax(420px, .72fr);
    min-height: 100vh;
    padding-top: 128px;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.10);
    color: #fbbf24;
}

.pulse {
    background: #4ade80;
}

h1 {
    font-size: clamp(46px, 7vw, 82px);
    line-height: .95;
}

.hero p {
    max-width: 620px;
    color: #d1d5db;
    font-size: 17px;
}

.hero-metrics {
    margin-top: 34px;
}

.hero-metrics div {
    border-color: rgba(255,255,255,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.10);
}

.hero-panel {
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, .16), transparent 34%),
        rgba(17, 24, 39, .88);
    box-shadow: 0 30px 90px rgba(0,0,0,.48);
}

.hero-panel::before {
    inset: -1px;
    right: auto;
    top: auto;
    z-index: -1;
    width: auto;
    height: auto;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(245, 158, 11, .45), rgba(14, 165, 233, .16), rgba(255,255,255,.08));
}

.hero-panel-head b,
.profit-preview-head b {
    background: rgba(34, 197, 94, .14);
    color: #86efac;
}

.hero-panel-stats div,
.hero-chart,
.hero-activity div {
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.07);
}

.hero-chart span {
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    box-shadow: 0 16px 34px rgba(245, 158, 11, .24);
}

.section {
    background: #ffffff;
}

.feature-card,
.endpoint,
.workflow-item,
.profit-preview,
.code-block {
    border-radius: 20px;
}

.feature-card span,
.workflow-item b,
.pricing-icon {
    background: var(--landing-amber);
    color: #ffffff;
    box-shadow: 0 18px 40px rgba(245, 158, 11, .18);
}

.section-heading span,
.cta-label {
    color: #d97706;
}

.pricing-section {
    background:
        radial-gradient(circle at 14% 10%, rgba(245, 158, 11, .18), transparent 28%),
        radial-gradient(circle at 80% 15%, rgba(14, 165, 233, .12), transparent 28%),
        linear-gradient(135deg, #09090b 0%, #111827 52%, #1f2937 100%);
}

.pricing-card:hover,
.pricing-card:nth-child(2) {
    border-color: rgba(245, 158, 11, .42);
}

.pricing-card:nth-child(2)::before {
    border-color: rgba(245, 158, 11, .28);
    background: rgba(245, 158, 11, .13);
    color: #fbbf24;
}

.price-list-icon {
    background: linear-gradient(135deg, #f59e0b, #0ea5e9);
}

.section-cta {
    background:
        radial-gradient(circle at 14% 12%, rgba(245, 158, 11, .10), transparent 28%),
        linear-gradient(180deg, #ffffff, #f8fafc);
}

.cta {
    background:
        radial-gradient(circle at top left, rgba(245, 158, 11, .10), transparent 34%),
        #ffffff;
}

@media (max-width: 1040px) {
    .landing-visual-grid,
    .landing-visual-orbit {
        opacity: .55;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-top: 118px;
    }
}

@media (max-width: 720px) {
    .site-header {
        top: 8px;
        right: 8px;
        left: 8px;
    }

    .landing-visual-grid,
    .landing-visual-orbit {
        display: none;
    }

    .hero-grid {
        padding-top: 96px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .reveal-on-scroll {
        opacity: 1;
        transform: none;
    }
}

.header-banner {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    background: rgba(248, 250, 252, .96);
    padding: 9px 52px 9px 20px;
    color: #111827;
}

.header-banner[hidden] {
    display: none;
}

.header-banner-glow {
    position: absolute;
    top: 50%;
    z-index: -1;
    width: 36rem;
    aspect-ratio: 577 / 310;
    transform: translateY(-50%);
    background: linear-gradient(90deg, color-mix(in srgb, var(--brand-primary) 72%, #ff80b5), #9089fc);
    clip-path: polygon(74.8% 41.9%, 97.2% 73.2%, 100% 34.9%, 92.5% .4%, 87.5% 0%, 75% 28.6%, 58.5% 54.6%, 50.1% 56.8%, 46.9% 44%, 48.3% 17.4%, 24.7% 53.9%, 0% 27.9%, 11.9% 74.2%, 24.9% 54.1%, 68.6% 100%, 74.8% 41.9%);
    filter: blur(28px);
    opacity: .24;
    pointer-events: none;
}

.header-banner-glow-left {
    left: max(-7rem, calc(50% - 52rem));
}

.header-banner-glow-right {
    left: max(45rem, calc(50% + 8rem));
}

.header-banner-content {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 16px;
    text-align: center;
}

.header-banner p {
    display: inline-flex;
    min-width: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0;
    color: #111827;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

.header-banner strong {
    font-weight: 900;
}

.header-banner-dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    margin: 0 10px;
    border-radius: 999px;
    background: currentColor;
}

.header-banner-action {
    display: inline-flex;
    min-height: 30px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(15, 23, 42, .16);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.header-banner-action:hover {
    transform: translateY(-1px);
    background: #374151;
    box-shadow: 0 14px 30px rgba(15, 23, 42, .20);
}

.header-banner-close {
    position: absolute;
    top: 50%;
    right: 12px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #111827;
    cursor: pointer;
    transform: translateY(-50%);
}

.header-banner-close:hover {
    background: rgba(17, 24, 39, .08);
}

.header-banner-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.site-header:has(.header-banner:not([hidden])) + main .hero-grid {
    padding-top: 158px;
}

@media (max-width: 720px) {
    .header-banner {
        min-height: 52px;
        justify-content: flex-start;
        padding: 9px 44px 9px 12px;
    }

    .header-banner-content,
    .header-banner p {
        justify-content: flex-start;
        text-align: left;
    }

    .header-banner p {
        font-size: 13px;
    }

    .header-banner-action {
        min-height: 28px;
        padding: 0 11px;
        font-size: 12px;
    }

    .site-header:has(.header-banner:not([hidden])) + main .hero-grid {
        padding-top: 154px;
    }
}
