:root {
    color-scheme: dark;
    --bg: #060608;
    --panel: #111116;
    --line: #262633;
    --text: #f6f3ff;
    --muted: #a09caf;
    --purple: #8b5cf6;
    --green: #1ed39a;
    --red: #ff5d68;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    min-height: 100vh;
    background: radial-gradient(circle at 88% 8%, rgba(139, 92, 246, .25), transparent 34%), var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 74px;
    padding: 0 clamp(18px, 5vw, 72px);
    background: rgba(6, 6, 8, .84);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(16px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.brand-name > span { color: var(--purple); }
.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}
.brand-copy small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .02em;
}
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--purple), #b67aff);
}

nav {
    display: flex;
    gap: 24px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.signin-link {
    color: var(--muted);
    font-size: 14px;
    font-weight: 900;
}

.header-action,
.primary-button,
.ghost-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    font-weight: 900;
}

.header-action,
.primary-button {
    background: linear-gradient(135deg, var(--purple), #6d42dd);
}

.ghost-button {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.04);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    min-height: calc(100vh - 74px);
    padding: clamp(28px, 5vw, 76px);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(42px, 6vw, 78px);
    line-height: .98;
    letter-spacing: 0;
}

.hero-text {
    max-width: 640px;
    margin: 22px 0 0;
    color: #c6c0d8;
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions,
.hero-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero-stats {
    gap: 28px;
    padding-top: 16px;
}

.hero-stats strong {
    display: block;
    font-size: 28px;
}

.hero-stats span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.product-preview {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)), #0d0d12;
    box-shadow: 0 30px 90px rgba(0,0,0,.46);
    overflow: hidden;
}

.preview-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    border-bottom: 1px solid var(--line);
}

.preview-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #3b3b48;
}

.preview-topbar strong { margin-left: auto; color: var(--muted); font-size: 13px; }

.preview-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 14px;
    padding: 16px;
}

.preview-chart,
.preview-bars,
.preview-metric {
    min-height: 132px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    background: rgba(0,0,0,.22);
}

.preview-chart { grid-row: span 2; }
.preview-chart small,
.preview-bars small,
.preview-metric small {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
}

.preview-chart svg { width: 100%; height: 240px; }
.preview-bars div {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 156px;
}

.preview-bars span {
    flex: 1;
    min-width: 12px;
    border-radius: 5px 5px 0 0;
    background: var(--green);
}

.preview-bars .loss { background: var(--red); }
.preview-metric strong { font-size: 26px; color: var(--green); }

.feature-band,
.split-section,
.cta-section,
.pricing-section,
.video-section {
    margin: 0 clamp(18px, 5vw, 72px) 22px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255,255,255,.035);
}

.feature-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-band article,
.split-section,
.cta-section,
.pricing-section,
.video-section {
    padding: clamp(22px, 4vw, 42px);
}

.feature-band article + article { border-left: 1px solid var(--line); }
.feature-band strong,
.split-section h2,
.cta-section h2 { font-size: 28px; letter-spacing: 0; }
.feature-band p,
.split-section p,
.cta-section p {
    color: var(--muted);
    line-height: 1.65;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
    gap: 28px;
    align-items: center;
}

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

.check-list span {
    padding: 14px;
    border-radius: 8px;
    background: rgba(30, 211, 154, .09);
    border: 1px solid rgba(30, 211, 154, .18);
    font-weight: 800;
}

.section-heading {
    margin-bottom: 22px;
}

.section-heading h2 {
    margin: 0;
    font-size: 34px;
    letter-spacing: 0;
}

.video-section .section-heading {
    max-width: 820px;
}

.video-section .section-heading p:not(.eyebrow) {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.55;
}

.strategy-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.strategy-video-card {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    background: rgba(0,0,0,.24);
}

.strategy-video-frame {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 9;
    background: #050509;
}

.strategy-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.strategy-video-card p {
    margin: 0;
    padding: 16px;
    color: #d6d0e4;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
}

.video-link-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 8px;
    background: rgba(139, 92, 246, .16);
    border: 1px solid rgba(139, 92, 246, .4);
    color: #fff;
    font-weight: 900;
}

.video-page-hero {
    padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px) clamp(22px, 4vw, 42px);
}

.video-page-hero h1 {
    max-width: 980px;
}

.video-page-hero p:not(.eyebrow) {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
}

.video-page-section {
    margin-bottom: 56px;
}

.empty-video-state {
    display: grid;
    gap: 8px;
    padding: 26px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.2);
}

.empty-video-state strong {
    font-size: 24px;
}

.empty-video-state p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

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

.pricing-section .section-heading {
    text-align: center;
    margin-bottom: clamp(26px, 4vw, 48px);
}

.pricing-section .section-heading h2 {
    max-width: none;
    font-size: clamp(40px, 6vw, 76px);
    line-height: .98;
}

.pricing-section .section-heading h2::first-letter {
    letter-spacing: 0;
}

.pricing-section .section-heading p:not(.eyebrow) {
    max-width: 760px;
    margin: 16px auto 0;
    color: var(--muted);
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.45;
}

.plan-pricing-grid {
    gap: clamp(22px, 4vw, 48px);
    align-items: stretch;
}

.pricing-grid article,
.partner-card {
    padding: 22px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
}

.pricing-grid strong,
.partner-card strong {
    display: block;
    color: var(--green);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.pricing-grid h3 {
    margin: 10px 0;
    font-size: 32px;
}

.pricing-grid p {
    color: var(--muted);
    line-height: 1.65;
}

.featured-price {
    border-color: rgba(139, 92, 246, .42) !important;
    background: rgba(139, 92, 246, .12) !important;
}

.plan-price-card {
    position: relative;
    display: grid;
    gap: 24px;
    min-height: 590px;
    padding: clamp(26px, 4vw, 42px) !important;
    border-radius: 18px !important;
    background: rgba(7, 6, 12, .64) !important;
    overflow: visible;
}

.plan-price-card.featured-price {
    background:
        radial-gradient(circle at 90% 8%, rgba(139, 92, 246, .22), transparent 32%),
        rgba(17, 10, 32, .76) !important;
    border-color: rgba(139, 92, 246, .58) !important;
}

.plan-title-row {
    display: grid;
    gap: 6px;
}

.pricing-grid .plan-title-row strong {
    color: #fff;
    font-size: 27px;
    text-transform: none;
}

.plan-title-row span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.plan-price-card h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(58px, 6vw, 82px);
    line-height: .9;
}

.plan-price-card h3 span {
    color: #7d879c;
    font-size: 22px;
    font-weight: 700;
}

.plan-price-card ul {
    display: grid;
    gap: 18px;
    margin: 4px 0 12px;
    padding: 0;
    list-style: none;
}

.plan-price-card li {
    position: relative;
    padding-left: 42px;
    color: #d9d5e4;
    font-size: 18px;
    font-weight: 750;
    line-height: 1.35;
}

.plan-price-card li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 1px;
    width: 22px;
    height: 22px;
    border: 2px solid #a78bfa;
    border-radius: 999px;
}

.plan-price-card li::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 8px;
    width: 8px;
    height: 5px;
    border-left: 2px solid #a78bfa;
    border-bottom: 2px solid #a78bfa;
    transform: rotate(-45deg);
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 28px;
    border-radius: 999px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 14px 36px rgba(124, 58, 237, .28);
}

.popular-badge::before {
    content: "*";
    margin-right: 8px;
}

.plan-cta {
    align-self: end;
    min-height: 56px;
    border-radius: 999px;
    font-size: 18px;
}

.plan-cta span {
    margin-left: 10px;
    font-weight: 900;
}

.partner-card {
    display: grid;
    gap: 12px;
}

.partner-card span {
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,.04);
    color: #d7d2e6;
    font-weight: 800;
}

.signup-body {
    background:
        radial-gradient(circle at 12% 20%, rgba(30, 211, 154, .13), transparent 22%),
        radial-gradient(circle at 82% 18%, rgba(139, 92, 246, .14), transparent 28%),
        radial-gradient(circle at 42% 86%, rgba(139, 92, 246, .12), transparent 24%),
        var(--bg);
}

.signup-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
    width: min(1180px, 100%);
    min-height: 100vh;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 70px) clamp(16px, 4vw, 48px);
}

.signup-hero {
    display: grid;
    justify-items: center;
    gap: 16px;
    text-align: center;
}

.signup-hero .brand {
    width: fit-content;
}

.signup-pill {
    margin: 16px 0 0;
    padding: 9px 24px;
    border: 1px solid rgba(139, 92, 246, .34);
    border-radius: 999px;
    background: rgba(139, 92, 246, .12);
    color: #a887ff;
    font-size: 18px;
    font-weight: 900;
}

.signup-hero h1 {
    margin: 0;
    max-width: 780px;
    font-size: clamp(38px, 5vw, 56px);
    line-height: 1.04;
}

.signup-hero h1 span {
    color: var(--purple);
}

.signup-hero .hero-text {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.45;
}

.signup-card {
    padding: clamp(18px, 3vw, 36px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)), #101016;
    box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

.panel-title {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    font-weight: 900;
}

.panel-title small {
    color: var(--muted);
}

.signup-form {
    display: grid;
    gap: 18px;
}

.signup-plan-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.signup-plan-card {
    position: relative;
    display: grid !important;
    grid-template-columns: 72px 1fr;
    gap: 20px !important;
    min-height: 430px;
    padding: 36px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.035);
    color: var(--text) !important;
    cursor: pointer;
    overflow: hidden;
    transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.signup-plan-card:hover,
.signup-plan-card.selected {
    border-color: rgba(124, 92, 255, .68);
}

.signup-plan-card.selected {
    background:
        radial-gradient(circle at 85% 5%, rgba(217, 70, 239, .20), transparent 28%),
        linear-gradient(180deg, rgba(124, 92, 255, .14), rgba(124, 92, 255, .04)),
        rgba(255,255,255,.04);
    box-shadow: 0 18px 60px rgba(124, 92, 255, .12);
}

.signup-plan-card:hover {
    transform: translateY(-1px);
}

.signup-plan-card input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.plan-icon {
    display: inline-grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 16px;
    grid-row: span 2;
}

.basic-icon {
    border: 1px solid rgba(59, 130, 246, .3);
    background: rgba(59, 130, 246, .18);
}

.basic-icon::before {
    content: "";
    width: 28px;
    height: 20px;
    border: 3px solid #4f9cff;
    border-top: 0;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 -13px 0 -8px #4f9cff;
}

.pro-icon {
    border: 1px solid rgba(192, 132, 252, .36);
    background: rgba(192, 132, 252, .18);
}

.pro-icon::before {
    content: "W";
    color: #c084fc;
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
}

.signup-plan-card .plan-copy {
    display: grid;
    gap: 8px;
    align-self: start;
}

.signup-plan-card .plan-name {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
}

.signup-plan-card strong {
    color: #fff;
    font-size: 36px;
    line-height: 1;
}

.signup-plan-card strong span {
    color: var(--muted);
    font-size: 18px;
    font-weight: 600;
}

.signup-plan-card small {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.5;
}

.signup-plan-card ul {
    grid-column: 1 / -1;
    display: grid;
    gap: 16px;
    margin: 16px 0 6px;
    padding: 0;
    list-style: none;
    color: #d7d3e1;
    font-size: 18px;
    font-weight: 800;
}

.signup-plan-card li {
    position: relative;
    padding-left: 38px;
}

.signup-plan-card li::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 7px;
    width: 14px;
    height: 8px;
    border-left: 2px solid #5aa2ff;
    border-bottom: 2px solid #5aa2ff;
    transform: rotate(-45deg);
}

.signup-plan-card.selected li::before,
.signup-plan-card:nth-child(2) li::before {
    border-color: #c084fc;
}

.plan-ribbon {
    position: absolute;
    top: 18px;
    right: 22px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.plan-action {
    grid-column: 1 / -1;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    margin-top: auto;
    border: 1px solid rgba(74, 144, 255, .38);
    border-radius: 12px;
    background: rgba(74, 144, 255, .1);
    color: #5aa2ff;
    font-size: 18px;
    font-weight: 900;
}

.pro-action {
    border: 0;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: #fff;
}

.signup-plan-note {
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid rgba(30, 211, 154, .2);
    border-radius: 8px;
    background: rgba(30, 211, 154, .08);
    color: #dff9f0;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.45;
}

.signup-error {
    margin-bottom: 14px;
    padding: 12px;
    border: 1px solid rgba(255, 93, 104, .3);
    border-radius: 8px;
    background: rgba(255, 93, 104, .12);
    color: #ffd7db;
    font-weight: 800;
}

.signup-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.signup-form label:not(.signup-plan-card) {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.wide-field {
    grid-column: 1 / -1;
}

.signup-form input:not([type="radio"]),
.signup-form select {
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0a0a0e;
    color: var(--text);
    padding: 0 13px;
    font: inherit;
}

.signup-submit {
    justify-self: center;
    width: min(420px, 100%);
    margin-top: 6px;
    border: 0;
    cursor: pointer;
}

.signin-note {
    margin: 18px 0 0;
    color: var(--muted);
    text-align: center;
}

.signin-note a {
    color: var(--purple);
    font-weight: 900;
}

.simple-signup-body {
    display: grid;
    place-items: start center;
    padding: 48px 24px 28px;
    font-family: "Segoe UI", Inter, Arial, sans-serif;
    background: #07050d;
}

.simple-signup-shell {
    width: min(100%, 430px);
}

.signup-topbar {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    margin-bottom: 28px;
}

.signup-back {
    position: absolute;
    left: 0;
    color: #9d98aa;
    font-size: 14px;
    font-weight: 500;
}

.signup-back::before {
    content: "<";
    margin-right: 9px;
    color: #aaa4ba;
}

.simple-signup-card {
    padding: 36px 32px 32px;
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 14px;
    background: #100d17;
    box-shadow: none;
}

.simple-signup-brand {
    justify-content: center;
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}

.simple-signup-brand .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 5px;
}

.simple-signup-heading {
    display: grid;
    gap: 6px;
    margin-bottom: 32px;
    text-align: left;
}

.simple-signup-heading h1 {
    margin: 0;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 800;
}

.simple-signup-heading p {
    margin: 0;
    color: #9b96a9;
    font-size: 16px;
    font-weight: 450;
}

.google-signup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    border: 1px solid #282331;
    border-radius: 10px;
    background: #17131f;
    color: var(--text);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.google-signup-button:hover {
    border-color: #3a3148;
    background: #1d1827;
}

.google-signup-button .google-mark {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: transparent;
    color: #4285f4;
    font-size: 14px;
    font-weight: 900;
}

.signup-divider {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    margin: 26px 0 30px;
    color: #777185;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.signup-divider::before,
.signup-divider::after {
    content: "";
    height: 1px;
    background: #211c29;
}

.simple-signup-form {
    gap: 22px;
}

.simple-signup-form label {
    display: grid;
    gap: 11px;
    color: #eeeaf7;
    font-size: 13px;
    font-weight: 700;
}

.simple-signup-form input {
    width: 100%;
    min-height: 46px;
    border: 1px solid #282331;
    border-radius: 10px;
    background: #1a1621;
    color: var(--text);
    padding: 0 13px;
    font: inherit;
    font-size: 15px;
    font-weight: 450;
}

.simple-signup-form input::placeholder {
    color: #777383;
    font-weight: 450;
}

.simple-signup-form input:focus {
    outline: 0;
    border-color: rgba(139, 92, 246, .72);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, .14);
}

.signup-password-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

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

.password-field input {
    padding-right: 38px;
}

.password-field span {
    position: absolute;
    right: 12px;
    top: 50%;
    width: 14px;
    height: 10px;
    border: 1.5px solid #777185;
    border-radius: 999px;
    transform: translateY(-50%);
    opacity: .85;
}

.password-field span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: #777185;
    transform: translate(-50%, -50%);
}

.simple-signup-form .signup-submit {
    width: 100%;
    min-height: 49px;
    margin-top: -2px;
    border-radius: 10px;
    background: linear-gradient(90deg, #8b3ff2, #8b5cf6);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 0 20px rgba(124, 92, 255, .26);
    gap: 9px;
}

.simple-signup-form .signup-submit:hover {
    background: #8b6cff;
}

.simple-signup-card .signin-note {
    margin-top: 24px;
    font-size: 14px;
    font-weight: 450;
}

.simple-signup-card .signin-note a {
    font-weight: 700;
}

.signup-terms {
    margin: 26px 0 0;
    color: #6f687d;
    text-align: center;
    font-size: 12px;
}

.signup-terms a {
    color: #938aa7;
    text-decoration: underline;
}

.login-shell {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
}

.login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.login-row a {
    color: var(--purple);
}

.remember-row {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 8px !important;
}

.remember-row input {
    width: 16px;
    min-height: 16px;
    padding: 0;
}

.cta-section {
    margin-bottom: 56px;
    text-align: center;
}

.cta-section p { max-width: 720px; margin: 12px auto 22px; }

@media (max-width: 980px) {
    nav { display: none; }
    .hero { grid-template-columns: 1fr; }
    .feature-band,
    .pricing-grid,
    .strategy-video-grid,
    .split-section,
    .signup-shell { grid-template-columns: 1fr; }
    .signup-shell {
        align-items: start;
        gap: 22px;
        padding: 22px;
    }
    .feature-band article + article {
        border-left: 0;
        border-top: 1px solid var(--line);
    }
}

@media (max-width: 620px) {
    .site-header { padding: 0 14px; }
    .signin-link { display: none; }
    .hero { padding: 28px 14px; }
    .product-preview { border-radius: 10px; }
    .preview-grid { grid-template-columns: 1fr; }
    .signup-plan-group { grid-template-columns: 1fr; }
    .signup-shell { padding: 16px; }
    .signup-hero h1 { font-size: 34px; }
    .signup-card { padding: 16px; }
    .signup-plan-card {
        grid-template-columns: 56px 1fr;
        min-height: 0;
        padding: 22px;
    }
    .plan-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }
    .signup-plan-card .plan-name { font-size: 22px; }
    .signup-plan-card strong { font-size: 30px; }
    .signup-plan-card ul { font-size: 16px; }
    .signup-fields { grid-template-columns: 1fr; }
    .wide-field { grid-column: auto; }
    .panel-title { align-items: flex-start; }
    .simple-signup-body { padding: 24px 14px; }
    .simple-signup-card { padding: 28px 22px; }
    .signup-topbar { margin-bottom: 22px; }
    .signup-back { position: static; }
    .signup-topbar {
        justify-content: space-between;
    }
    .simple-signup-brand { font-size: 16px; }
    .signup-password-row { grid-template-columns: 1fr; }
}
