:root {
    --ink: #eef5f0;
    --muted: #8e9b93;
    --dark: #090d0b;
    --dark-soft: #101612;
    --panel: #151d18;
    --line: rgba(232, 245, 236, 0.12);
    --green: #16c8ff;
    --green-bright: #65ddff;
    --green-dark: #075e7d;
    --paper: #f2f4ed;
    --paper-muted: #697169;
    --black: #080b09;
    --font-body: "Be Vietnam Pro", system-ui, sans-serif;
    --font-display: "Chakra Petch", "Be Vietnam Pro", sans-serif;
    --shadow-green: 0 0 50px rgba(22, 200, 255, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--dark);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body::selection {
    color: var(--black);
    background: var(--green);
}

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

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

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

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    color: var(--black);
    background: var(--green);
    transform: translateY(-150%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 100;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled,
.auth-page .site-header {
    border-color: var(--line);
    background: rgba(9, 13, 11, 0.86);
    backdrop-filter: blur(18px);
}

.nav-wrap {
    display: flex;
    min-height: 74px;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .04em;
}

.brand-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(22, 200, 255, .2));
}

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

.brand-mark {
    display: grid;
    width: 27px;
    height: 27px;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    padding: 3px;
    background: var(--green);
    box-shadow: 4px 4px 0 rgba(22, 200, 255, .18);
}

.brand-mark span {
    background: var(--black);
}

.brand-mark span:nth-child(1) {
    opacity: .72;
}

.brand-mark span:nth-child(4) {
    opacity: .38;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 13px;
    font-weight: 600;
}

.main-nav > a {
    color: #b7c1ba;
    transition: color .2s ease;
}

.main-nav > a:hover {
    color: var(--green);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 8px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    background: transparent;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.billing-tabs button:focus-visible,
.accordion button:focus-visible,
input:focus-visible,
.nav-toggle:focus-visible,
.password-toggle:focus-visible {
    outline: 2px solid var(--green);
    outline-offset: 3px;
}

.button-primary {
    color: var(--black);
    background: var(--green);
    box-shadow: 5px 5px 0 rgba(22, 200, 255, .18);
}

.button-primary:hover {
    background: var(--green-bright);
    box-shadow: 7px 7px 0 rgba(22, 200, 255, .22);
}

.button-ghost {
    border-color: var(--line);
    color: var(--ink);
    background: rgba(255, 255, 255, .025);
}

.button-ghost:hover {
    border-color: rgba(22, 200, 255, .5);
    color: var(--green);
    background: rgba(22, 200, 255, .04);
}

.button-light {
    color: var(--black);
    background: #f4f7ef;
    box-shadow: 6px 6px 0 rgba(8, 11, 9, .18);
}

.button-small {
    min-height: 40px;
    padding: 0 18px;
}

.button-large {
    min-height: 54px;
    padding: 0 25px;
}

.button-full {
    width: 100%;
    padding-inline: 24px;
}

.hero {
    position: relative;
    min-height: 780px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 77% 42%, rgba(22, 200, 255, .11), transparent 25%),
        radial-gradient(circle at 8% 100%, rgba(5, 96, 132, .13), transparent 26%),
        var(--dark);
}

.hero::after {
    position: absolute;
    right: -80px;
    bottom: -80px;
    width: 310px;
    height: 310px;
    content: "";
    opacity: .3;
    background: repeating-conic-gradient(rgba(22, 200, 255, .15) 0 25%, transparent 0 50%) 50% / 48px 48px;
    transform: rotate(12deg);
    filter: blur(.2px);
}

.hero-grid-bg,
.auth-grid-bg {
    position: absolute;
    inset: 0;
    opacity: .36;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 780px;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 72px;
    padding-top: 80px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 21px;
    color: var(--green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 20px;
    height: 3px;
    background: var(--green);
    box-shadow: 5px 0 0 rgba(22, 200, 255, .35);
}

.hero h1,
.section-heading h2,
.faq-intro h2,
.final-cta h2,
.auth-visual h1,
.auth-heading h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    line-height: .96;
    letter-spacing: -.045em;
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(54px, 6.5vw, 91px);
}

h1 em,
h2 em {
    color: var(--green);
    font-style: normal;
}

.hero-lead {
    max-width: 620px;
    margin: 26px 0 32px;
    color: #a8b2ab;
    font-size: 16px;
    line-height: 1.85;
}

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

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 27px;
    color: #76837a;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-notes span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.hero-notes i {
    width: 5px;
    height: 5px;
    background: var(--green);
}

.client-stage {
    position: relative;
    min-height: 570px;
    perspective: 1200px;
}

.client-window {
    position: absolute;
    z-index: 3;
    top: 76px;
    right: 0;
    width: min(100%, 570px);
    overflow: hidden;
    border: 1px solid rgba(22, 200, 255, .2);
    background: #111713;
    box-shadow: -20px 25px 80px rgba(0, 0, 0, .5), 0 0 80px rgba(22, 200, 255, .06);
    transform: rotateY(-5deg) rotateX(2deg);
}

.client-window-real {
    top: 82px;
    width: min(116%, 660px);
    border-color: rgba(22, 200, 255, .38);
    background: #03182a;
    box-shadow: -24px 28px 90px rgba(0, 0, 0, .55), 0 0 75px rgba(22, 200, 255, .12);
}

.client-window-real img {
    display: block;
    width: 100%;
    height: auto;
}

.client-image-bar {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    color: #7e9fbd;
    border-bottom: 1px solid rgba(22, 200, 255, .24);
    background: #041426;
    font-family: var(--font-display);
    font-size: 8px;
    letter-spacing: .1em;
}

.client-image-bar span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.client-image-bar i {
    width: 6px;
    height: 6px;
    background: var(--green);
    box-shadow: 0 0 10px rgba(22, 200, 255, .7);
}

.client-image-bar strong {
    color: var(--green);
    font-size: 8px;
}

.client-window::before {
    position: absolute;
    z-index: 5;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, .035), transparent 32%);
}

.client-titlebar {
    display: flex;
    height: 52px;
    align-items: center;
    justify-content: space-between;
    padding: 0 17px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: .1em;
}

.window-brand {
    display: flex;
    align-items: center;
    gap: 9px;
}

.mini-logo {
    width: 14px;
    height: 14px;
    border: 3px solid var(--green);
    box-shadow: inset 3px 3px 0 rgba(22, 200, 255, .35);
}

.window-controls {
    display: flex;
    gap: 7px;
}

.window-controls span {
    width: 6px;
    height: 6px;
    background: #39433c;
}

.window-controls span:last-child {
    background: var(--green);
}

.client-body {
    display: grid;
    min-height: 390px;
    grid-template-columns: 58px 1fr;
}

.client-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 23px;
    padding-top: 25px;
    border-right: 1px solid var(--line);
    background: #0c110e;
}

.sidebar-dot {
    width: 13px;
    height: 13px;
    border: 3px solid #39423c;
}

.sidebar-dot.active {
    border-color: var(--green);
    background: var(--green);
    box-shadow: 0 0 16px rgba(22, 200, 255, .3);
}

.module-panel {
    padding: 27px;
}

.panel-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 22px;
}

.panel-head small,
.performance-card small {
    display: block;
    margin-bottom: 3px;
    color: #667269;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .15em;
}

.panel-head strong {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
}

.online-pill {
    padding: 6px 9px;
    color: var(--green);
    border: 1px solid rgba(22, 200, 255, .2);
    background: rgba(22, 200, 255, .06);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: .12em;
}

.module-list {
    display: grid;
    gap: 8px;
}

.module-row {
    display: grid;
    grid-template-columns: 37px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .055);
    background: rgba(255, 255, 255, .02);
}

.module-row:hover {
    border-color: rgba(22, 200, 255, .22);
}

.module-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--green);
    background: rgba(22, 200, 255, .08);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
}

.module-row strong,
.module-row small {
    display: block;
}

.module-row strong {
    font-size: 11px;
}

.module-row small {
    margin-top: 1px;
    color: #657168;
    font-size: 8px;
}

.switch {
    position: relative;
    width: 29px;
    height: 15px;
    background: #303832;
}

.switch::after {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 9px;
    height: 9px;
    content: "";
    background: #6d786f;
}

.switch.on {
    background: rgba(22, 200, 255, .22);
}

.switch.on::after {
    left: 17px;
    background: var(--green);
}

.performance-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 13px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .055);
    background: #0d120f;
}

.performance-card strong {
    font-size: 10px;
}

.performance-bars {
    display: flex;
    height: 28px;
    align-items: end;
    gap: 4px;
}

.performance-bars span {
    width: 5px;
    background: var(--green);
}

.performance-bars span:nth-child(1) { height: 32%; opacity: .4; }
.performance-bars span:nth-child(2) { height: 48%; opacity: .5; }
.performance-bars span:nth-child(3) { height: 43%; opacity: .6; }
.performance-bars span:nth-child(4) { height: 70%; opacity: .7; }
.performance-bars span:nth-child(5) { height: 62%; opacity: .8; }
.performance-bars span:nth-child(6) { height: 100%; }

.pixel-sun {
    position: absolute;
    z-index: 1;
    top: 4px;
    right: 28px;
    width: 220px;
    height: 220px;
    opacity: .18;
    background: var(--green);
    box-shadow: -28px 28px 0 rgba(22, 200, 255, .18), -56px 56px 0 rgba(22, 200, 255, .08);
}

.floating-block {
    position: absolute;
    z-index: 4;
    width: 50px;
    height: 50px;
    background: #1e2a22;
    box-shadow: inset -12px -12px 0 #121a15, inset 7px 7px 0 #354a25, 9px 11px 25px rgba(0, 0, 0, .35);
    animation: float 5s ease-in-out infinite;
}

.block-one {
    top: 40px;
    left: 12px;
}

.block-two {
    right: 4px;
    bottom: 52px;
    width: 34px;
    height: 34px;
    animation-delay: -2s;
}

.stage-caption {
    position: absolute;
    z-index: 5;
    bottom: 48px;
    left: 34px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #7f8b83;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .1em;
}

.stage-caption span {
    width: 7px;
    height: 7px;
    background: var(--green);
    box-shadow: 0 0 12px rgba(22, 200, 255, .65);
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(4deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
}

.section {
    padding: 120px 0;
}

.feature-section {
    color: var(--black);
    background: var(--paper);
}

.section-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 58px;
}

.section-heading h2,
.faq-intro h2 {
    font-size: clamp(42px, 5.6vw, 72px);
}

.section-heading .eyebrow {
    color: #0a6f91;
}

.section-heading .eyebrow > span {
    background: #078db7;
    box-shadow: 5px 0 0 rgba(7, 141, 183, .25);
}

.section-heading p {
    max-width: 470px;
    margin: 0 0 4px;
    color: var(--paper-muted);
    line-height: 1.85;
}

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

.feature-card {
    position: relative;
    min-height: 310px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid #d7dbd3;
    background: #f8f9f5;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
    z-index: 2;
    border-color: #a7b58d;
    box-shadow: 10px 10px 0 rgba(10, 105, 140, .08);
    transform: translateY(-5px);
}

.feature-card-wide {
    grid-column: span 2;
}

.feature-number {
    position: absolute;
    top: 25px;
    right: 27px;
    color: #aab0a8;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: .1em;
}

.feature-card h3 {
    margin: 0 0 11px;
    font-family: var(--font-display);
    font-size: 22px;
}

.feature-card p {
    max-width: 480px;
    margin: 0;
    color: var(--paper-muted);
    font-size: 13px;
}

.feature-card-wide > div:last-child {
    position: absolute;
    right: 32px;
    bottom: 31px;
    left: 32px;
}

.feature-art {
    position: absolute;
    top: 51px;
    right: 35px;
    left: 35px;
}

.performance-art {
    display: flex;
    height: 110px;
    align-items: end;
    gap: 9px;
    border-bottom: 1px solid #d8dcd4;
}

.performance-art::before,
.performance-art::after {
    position: absolute;
    right: 0;
    left: 0;
    height: 1px;
    content: "";
    background: #e2e5df;
}

.performance-art::before { top: 33%; }
.performance-art::after { top: 66%; }

.performance-art span {
    position: relative;
    z-index: 2;
    width: 100%;
    height: var(--h);
    background: #212b24;
}

.performance-art span:nth-last-child(-n+3) {
    background: #079ac5;
}

.pixel-icon {
    position: relative;
    width: 76px;
    height: 76px;
    margin: 36px 0 56px;
}

.crosshair-icon {
    border: 12px solid #202a22;
    box-shadow: 0 0 0 8px #f8f9f5, 0 0 0 10px #d8ddd5;
}

.crosshair-icon::before,
.crosshair-icon::after {
    position: absolute;
    content: "";
    background: #079ac5;
}

.crosshair-icon::before {
    top: 20px;
    right: -27px;
    left: -27px;
    height: 12px;
}

.crosshair-icon::after {
    top: -27px;
    bottom: -27px;
    left: 20px;
    width: 12px;
}

.crosshair-icon i {
    position: absolute;
    z-index: 2;
    inset: 20px;
    background: #202a22;
}

.eye-icon {
    width: 92px;
    height: 56px;
    margin-top: 49px;
    margin-bottom: 63px;
    border: 13px solid #202a22;
    transform: skewX(-18deg);
}

.eye-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 28px;
    height: 28px;
    background: #079ac5;
    box-shadow: inset 9px 0 0 #202a22;
    transform: translate(-50%, -50%) skewX(18deg);
}

.bolt-icon {
    margin-left: 13px;
    background: #079ac5;
    clip-path: polygon(48% 0, 94% 0, 68% 39%, 100% 39%, 32% 100%, 45% 56%, 10% 56%);
}

.feature-card-accent {
    grid-column: span 2;
    color: var(--ink);
    border-color: #1c271f;
    background: #111813;
}

.feature-card-accent:hover {
    border-color: rgba(22, 200, 255, .5);
    box-shadow: 10px 10px 0 rgba(22, 200, 255, .12);
}

.feature-card-accent .feature-number {
    color: #526057;
}

.feature-card-accent p {
    color: #8e9b92;
}

.feature-accent-copy {
    display: flex;
    height: 100%;
    align-items: flex-end;
    gap: 34px;
}

.big-vn {
    color: var(--green);
    font-family: var(--font-display);
    font-size: 118px;
    font-weight: 700;
    line-height: .75;
    letter-spacing: -.1em;
    text-shadow: 9px 9px 0 rgba(22, 200, 255, .08);
}

.pricing-section {
    position: relative;
    overflow: hidden;
    background: var(--dark);
}

.pricing-section::before {
    position: absolute;
    top: -140px;
    left: 50%;
    width: 600px;
    height: 300px;
    content: "";
    background: rgba(22, 200, 255, .08);
    transform: translateX(-50%);
    filter: blur(100px);
}

.pricing-heading .eyebrow {
    color: var(--green);
}

.pricing-heading .eyebrow > span {
    background: var(--green);
}

.pricing-heading p {
    color: var(--muted);
}

.pricing-grid {
    display: grid;
    grid-template-columns: minmax(0, 680px);
    align-items: stretch;
    justify-content: center;
    gap: 16px;
}

.price-card {
    position: relative;
    display: flex;
    min-height: 600px;
    flex-direction: column;
    padding: 38px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .018);
}

.price-card-plus {
    border-color: rgba(22, 200, 255, .34);
    background:
        linear-gradient(145deg, rgba(22, 200, 255, .07), transparent 45%),
        #101612;
    box-shadow: var(--shadow-green);
}

.popular-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    padding: 9px 14px;
    color: var(--black);
    background: var(--green);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .12em;
}

.price-top {
    display: flex;
    min-height: 30px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.plan-label {
    color: var(--green);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .13em;
}

.plan-badge {
    padding: 5px 8px;
    color: #8b968e;
    border: 1px solid var(--line);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.plan-badge-green {
    color: var(--green);
    border-color: rgba(22, 200, 255, .22);
}

.price-card h3 {
    margin: 24px 0 25px;
    font-family: var(--font-display);
    font-size: 23px;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 9px;
    margin-bottom: 16px;
}

.price strong {
    font-family: var(--font-display);
    font-size: clamp(44px, 5vw, 62px);
    line-height: 1;
    letter-spacing: -.045em;
}

.price span {
    color: #768179;
    font-size: 11px;
}

.price-description {
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 13px;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 0 0 35px;
    padding: 25px 0 0;
    border-top: 1px solid var(--line);
    list-style: none;
    color: #bac4bd;
    font-size: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list span {
    color: var(--green);
    font-weight: 800;
}

.check-list .muted {
    color: #626d65;
}

.price-card > .button {
    margin-top: auto;
}

.billing-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin: 0 0 27px;
    padding: 4px;
    background: #090d0b;
}

.billing-tabs button {
    min-height: 42px;
    padding: 5px;
    border: 1px solid transparent;
    cursor: pointer;
    color: #737e76;
    background: transparent;
    font-size: 9px;
    font-weight: 700;
}

.billing-tabs button small {
    display: block;
    color: var(--green);
    font-size: 7px;
}

.billing-tabs button.active {
    color: var(--ink);
    border-color: rgba(22, 200, 255, .2);
    background: #182019;
}

.price-dynamic {
    margin-bottom: 6px;
}

.saving-note {
    min-height: 21px;
    margin: 0 0 22px;
    color: var(--green);
    font-size: 10px;
    font-weight: 600;
}

.price-card-plus .check-list {
    padding-top: 21px;
}

.pricing-footnote {
    margin: 30px 0 0;
    color: #6f7a72;
    font-size: 10px;
    letter-spacing: .04em;
    text-align: center;
    text-transform: uppercase;
}

.pricing-footnote span {
    margin-right: 7px;
    color: var(--green);
}

.faq-section {
    color: var(--black);
    background: var(--paper);
}

.faq-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 95px;
}

.faq-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

.faq-intro .eyebrow {
    color: #0a6f91;
}

.faq-intro .eyebrow > span {
    background: #078db7;
}

.faq-intro p {
    max-width: 360px;
    margin: 24px 0;
    color: var(--paper-muted);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid #aeb6a9;
    color: #14536a;
    font-size: 12px;
    font-weight: 700;
}

.text-link span {
    color: #078db7;
}

.accordion {
    border-top: 1px solid #cfd4cb;
}

.accordion-item {
    border-bottom: 1px solid #cfd4cb;
}

.accordion-item button {
    display: flex;
    width: 100%;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
    border: 0;
    cursor: pointer;
    color: #1e2820;
    background: transparent;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    text-align: left;
}

.accordion-item button i {
    position: relative;
    width: 23px;
    height: 23px;
    flex: 0 0 auto;
    border: 1px solid #bec6b9;
}

.accordion-item button i::before,
.accordion-item button i::after {
    position: absolute;
    top: 10px;
    left: 5px;
    width: 11px;
    height: 1px;
    content: "";
    background: #4e5b4e;
}

.accordion-item button i::after {
    transform: rotate(90deg);
    transition: transform .2s ease;
}

.accordion-item.open button i {
    border-color: #0b84aa;
    background: #079ac5;
}

.accordion-item.open button i::after {
    transform: rotate(0);
}

.accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .28s ease;
}

.accordion-content p {
    min-height: 0;
    margin: 0;
    overflow: hidden;
    color: var(--paper-muted);
    font-size: 13px;
}

.accordion-item.open .accordion-content {
    grid-template-rows: 1fr;
}

.accordion-item.open .accordion-content p {
    padding: 0 50px 26px 0;
}

.final-cta {
    padding: 0 0 70px;
    color: var(--black);
    background: var(--paper);
}

.final-cta-inner {
    position: relative;
    padding: 80px 40px;
    overflow: hidden;
    background: var(--green);
    text-align: center;
}

.final-cta h2 {
    position: relative;
    z-index: 2;
    margin: 5px 0 8px;
    font-size: clamp(44px, 6vw, 72px);
}

.final-cta p {
    position: relative;
    z-index: 2;
    margin: 0 0 26px;
    color: #0b5773;
    font-weight: 600;
}

.final-cta .button {
    position: relative;
    z-index: 2;
}

.cta-kicker {
    position: relative;
    z-index: 2;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .18em;
}

.cta-pixels {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 210px;
    height: 210px;
    opacity: .1;
    background: repeating-conic-gradient(var(--black) 0 25%, transparent 0 50%) 50% / 42px 42px;
    transform: rotate(12deg);
}

.site-footer {
    padding: 60px 0 25px;
    border-top: 1px solid var(--line);
    background: #080b09;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    align-items: start;
    gap: 50px;
}

.footer-grid p {
    margin: 15px 0 0;
    color: #68736b;
    font-size: 11px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px 25px;
    color: #aab4ad;
    font-size: 11px;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-note {
    margin-top: 3px !important;
    text-align: right;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 45px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: #515b54;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.auth-page {
    background: var(--dark);
}

.auth-page .site-footer {
    display: none;
}

.auth-page .site-header .main-nav > a {
    display: none;
}

.auth-shell {
    display: grid;
    min-height: 100vh;
    grid-template-columns: .88fr 1.12fr;
}

.auth-visual {
    position: relative;
    display: flex;
    min-height: 760px;
    align-items: center;
    overflow: hidden;
    padding: 130px max(45px, 7vw) 70px;
    border-right: 1px solid rgba(22, 200, 255, .14);
    background:
        radial-gradient(circle at 20% 70%, rgba(22, 200, 255, .12), transparent 30%),
        #0c120e;
}

.auth-visual::after {
    position: absolute;
    top: 14%;
    right: -110px;
    width: 250px;
    height: 250px;
    content: "";
    opacity: .12;
    background: var(--green);
    box-shadow: -30px 30px 0 rgba(22, 200, 255, .5), -60px 60px 0 rgba(22, 200, 255, .2);
    transform: rotate(16deg);
}

.auth-visual-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.eyebrow-light {
    margin-bottom: 28px;
}

.auth-visual h1 {
    font-size: clamp(49px, 5.5vw, 76px);
}

.auth-visual-content > p {
    max-width: 490px;
    margin: 27px 0 52px;
    color: #929e96;
    font-size: 15px;
    line-height: 1.85;
}

.auth-visual blockquote {
    margin: 0;
    padding: 17px 0 17px 24px;
    border-left: 3px solid var(--green);
    color: #c8d0ca;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.35;
}

.auth-blocks span {
    position: absolute;
    z-index: 1;
    width: 28px;
    height: 28px;
    opacity: .35;
    background: #26331e;
    box-shadow: inset -7px -7px 0 #182019;
}

.auth-blocks span:nth-child(1) { top: 19%; left: 7%; }
.auth-blocks span:nth-child(2) { top: 27%; left: 13%; width: 15px; height: 15px; }
.auth-blocks span:nth-child(3) { right: 9%; bottom: 13%; width: 42px; height: 42px; }
.auth-blocks span:nth-child(4) { right: 19%; bottom: 21%; width: 13px; height: 13px; }
.auth-blocks span:nth-child(5) { bottom: 7%; left: 31%; width: 20px; height: 20px; }

.auth-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 130px 50px 70px;
    background: #f1f3ec;
}

.auth-card {
    width: min(100%, 580px);
    color: var(--black);
}

.auth-heading {
    margin-bottom: 35px;
}

.auth-step {
    display: block;
    margin-bottom: 15px;
    color: #087da3;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
}

.auth-heading h2 {
    font-size: clamp(39px, 4vw, 54px);
}

.auth-heading p {
    margin: 13px 0 0;
    color: var(--paper-muted);
    font-size: 13px;
}

.auth-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-field label,
.label-row label {
    display: block;
    margin-bottom: 8px;
    color: #354038;
    font-size: 10px;
    font-weight: 700;
}

.label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.label-row a {
    margin-bottom: 8px;
    color: #087da3;
    font-size: 9px;
    font-weight: 700;
}

.input-wrap {
    position: relative;
}

.input-wrap input {
    width: 100%;
    height: 52px;
    padding: 0 48px 0 15px;
    border: 1px solid #d3d8cf;
    border-radius: 0;
    color: #182019;
    outline: 0;
    background: #f9faf6;
    font-size: 12px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.input-wrap input::placeholder {
    color: #a1aaa2;
}

.input-wrap input:focus {
    border-color: #078db7;
    background: #fff;
    box-shadow: 4px 4px 0 rgba(8, 135, 178, .1);
}

.form-field.invalid .input-wrap input {
    border-color: #b84f47;
}

.input-glyph {
    position: absolute;
    top: 50%;
    right: 16px;
    color: #82907f;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    transform: translateY(-50%);
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    padding: 5px;
    border: 0;
    cursor: pointer;
    color: #087da3;
    background: transparent;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .05em;
    transform: translateY(-50%);
}

.password-toggle.compact {
    font-size: 7px;
}

.field-error {
    display: block;
    min-height: 0;
    margin-top: 5px;
    color: #a53b34;
    font-size: 9px;
}

.field-error:not(:empty) {
    min-height: 14px;
}

.checkbox-row {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
    color: #687168;
    font-size: 10px;
    line-height: 1.6;
}

.checkbox-row input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.custom-checkbox {
    position: relative;
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    margin-top: 0;
    border: 1px solid #b9c0b6;
    background: #fafbf8;
}

.checkbox-row input:checked + .custom-checkbox {
    border-color: #078db7;
    background: #079ac5;
}

.checkbox-row input:checked + .custom-checkbox::after {
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    content: "";
    border: solid #10150f;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-row input:focus-visible + .custom-checkbox {
    outline: 2px solid #087da3;
    outline-offset: 2px;
}

.checkbox-row a {
    color: #087da3;
    font-weight: 700;
}

.button-submit {
    min-height: 54px;
    margin-top: 3px;
    border: 0;
}

.button-submit.loading {
    pointer-events: none;
    opacity: .72;
}

.button-submit.loading i {
    width: 13px;
    height: 13px;
    border: 2px solid rgba(8, 11, 9, .25);
    border-top-color: var(--black);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    font-size: 0;
}

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

.auth-divider {
    display: flex;
    align-items: center;
    gap: 13px;
    margin: 29px 0 16px;
    color: #9aa29a;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
}

.auth-divider::before,
.auth-divider::after {
    height: 1px;
    flex: 1;
    content: "";
    background: #d7dbd3;
}

.auth-switch {
    margin: 0;
    color: #687168;
    font-size: 11px;
    text-align: center;
}

.auth-switch a {
    color: #087da3;
    font-weight: 800;
}

.auth-status-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 28px 0 0;
    color: #9ba29b;
    font-size: 8px;
    text-transform: uppercase;
}

.auth-status-note span {
    width: 5px;
    height: 5px;
    background: #c59b35;
}

.auth-benefits {
    display: grid;
    gap: 1px;
    width: min(100%, 440px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.auth-benefits li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .06);
    color: #a3aea6;
    background: rgba(255, 255, 255, .02);
    font-size: 11px;
}

.auth-benefits span {
    color: var(--green);
    font-family: var(--font-display);
    font-size: 9px;
    font-weight: 700;
}

.toast {
    position: fixed;
    z-index: 500;
    right: 24px;
    bottom: 24px;
    max-width: min(390px, calc(100% - 48px));
    padding: 15px 18px;
    pointer-events: none;
    color: var(--ink);
    border: 1px solid rgba(22, 200, 255, .25);
    background: #121a14;
    box-shadow: 8px 8px 0 rgba(0, 0, 0, .25);
    font-size: 11px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .2s ease, transform .2s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.error {
    border-color: rgba(231, 97, 85, .45);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: .12s;
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.open span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        position: absolute;
        top: 74px;
        right: 0;
        left: 0;
        display: none;
        align-items: stretch;
        padding: 22px 20px;
        border-bottom: 1px solid var(--line);
        background: rgba(9, 13, 11, .98);
    }

    .main-nav.open {
        display: grid;
        gap: 20px;
    }

    .nav-actions {
        margin: 5px 0 0;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-top: 145px;
        padding-bottom: 80px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .client-stage {
        min-height: 530px;
    }

    .client-window {
        right: 5%;
        width: 78%;
    }

    .block-one {
        left: 7%;
    }

    .stage-caption {
        left: 8%;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-card-wide,
    .feature-card-accent {
        grid-column: span 2;
    }

    .pricing-grid {
        grid-template-columns: minmax(0, 680px);
    }

    .faq-layout {
        gap: 55px;
    }

    .auth-shell {
        grid-template-columns: .75fr 1.25fr;
    }

    .auth-visual {
        padding-inline: 40px;
    }

    .auth-panel {
        padding-inline: 35px;
    }

    .auth-visual h1 {
        font-size: 49px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

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

    .section {
        padding: 85px 0;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 72px);
    }

    .hero-layout {
        padding-top: 125px;
    }

    .client-stage {
        min-height: 465px;
    }

    .client-window {
        top: 58px;
        right: 0;
        width: 94%;
        transform: none;
    }

    .pixel-sun {
        width: 140px;
        height: 140px;
    }

    .block-one {
        left: 0;
    }

    .stage-caption {
        bottom: 3px;
        left: 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 42px;
    }

    .feature-grid,
    .pricing-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .feature-card-wide,
    .feature-card-accent {
        grid-column: auto;
    }

    .feature-card {
        min-height: 290px;
    }

    .feature-card-accent {
        min-height: 330px;
    }

    .feature-accent-copy {
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-end;
        gap: 32px;
    }

    .big-vn {
        font-size: 96px;
    }

    .pricing-grid {
        gap: 13px;
    }

    .price-card {
        min-height: auto;
        padding: 29px 24px;
    }

    .price-card > .button {
        margin-top: 10px;
    }

    .faq-intro {
        position: static;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-note {
        text-align: left;
    }

    .auth-shell {
        display: block;
        min-height: 100vh;
    }

    .auth-visual {
        min-height: 560px;
        padding: 130px 28px 70px;
        border-right: 0;
        border-bottom: 1px solid rgba(22, 200, 255, .14);
    }

    .auth-visual h1 {
        font-size: clamp(46px, 13vw, 64px);
    }

    .auth-panel {
        padding: 65px 22px 75px;
    }

    .auth-page .site-header .main-nav > a {
        display: block;
    }
}

@media (max-width: 520px) {
    .nav-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .hero-actions {
        display: grid;
    }

    .hero-notes {
        display: grid;
        gap: 9px;
    }

    .client-stage {
        min-height: 420px;
    }

    .client-body {
        grid-template-columns: 43px 1fr;
    }

    .client-sidebar {
        gap: 19px;
    }

    .module-panel {
        padding: 18px 13px;
    }

    .module-row {
        grid-template-columns: 32px 1fr auto;
        gap: 8px;
        padding: 9px;
    }

    .module-icon {
        width: 31px;
        height: 31px;
    }

    .performance-card {
        display: none;
    }

    .feature-card {
        padding: 25px;
    }

    .feature-card-wide > div:last-child {
        right: 25px;
        bottom: 25px;
        left: 25px;
    }

    .feature-art {
        right: 25px;
        left: 25px;
    }

    .billing-tabs {
        grid-template-columns: 1fr;
    }

    .billing-tabs button small {
        display: inline;
        margin-left: 4px;
    }

    .price strong {
        font-size: 42px;
    }

    .accordion-item button {
        min-height: 76px;
        font-size: 15px;
    }

    .final-cta-inner {
        padding: 65px 20px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
