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

:root {
    --xr-blue: #4b5cff;
    --xr-purple: #7a5fe6;
    --xr-pink: #d76ad9;
    --xr-soft: #f5f8ff;
    --xr-line: rgba(75, 92, 255, 0.12);
    --xr-text: #15233a;
    --xr-muted: #5f6e82;
    --xr-shadow: 0 24px 56px rgba(64, 83, 140, 0.12);
}

body {
    font-family: "Manrope", Arial, sans-serif;
    color: var(--xr-text);
    background:
        radial-gradient(circle at top right, rgba(75, 92, 255, 0.06), transparent 24%),
        radial-gradient(circle at top left, rgba(75, 92, 255, 0.04), transparent 18%),
        linear-gradient(180deg, #fbfcff 0%, #f4f7fc 100%);
}

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

.page-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 16px 72px;
}

#why-aimos,
#how-it-works,
#offers {
    scroll-margin-top: 74px;
}

.sale-header {
    position: sticky;
    top: 0;
    z-index: 50;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

.sale-navbar {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    padding: 14px 22px;
    background: linear-gradient(90deg, #4b5cff 0%, #7a5fe6 45%, #d76ad9 100%);
    box-shadow: 0 12px 28px rgba(84, 92, 214, 0.22);
    border-radius: 0 0 22px 22px;
}

.sale-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.sale-logo-orb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(90deg, #4b5cff 0%, #7a5fe6 45%, #d76ad9 100%);
    box-shadow: 0 8px 22px rgba(122, 95, 230, 0.28);
}

.sale-logo-orb-image {
    background: white;
    overflow: hidden;
    padding: 0;
}

.sale-logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.sale-logo-lockup {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sale-logo-text {
    font-size: 20px;
    line-height: 1;
}

.sale-logo-sub {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.sale-nav-center {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    flex-wrap: wrap;
}

.sale-nav-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}

.sale-nav-link:hover {
    color: #f3f6ff;
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.hero-band,
.compare-card,
.step-card,
.offer-card,
.manifesto-card,
.final-cta-card {
    box-shadow: var(--xr-shadow);
}

.hero-band {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 34px;
    margin-top: 24px;
    padding: 38px;
    border-radius: 36px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.98) 100%);
    border: 1px solid rgba(75, 92, 255, 0.08);
}

.hero-band::before {
    content: "";
    position: absolute;
    inset: auto -120px -150px auto;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(75, 92, 255, 0.07) 0%, rgba(75, 92, 255, 0.03) 40%, rgba(75, 92, 255, 0) 72%);
    pointer-events: none;
}

.hero-left,
.hero-right {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-kicker,
.section-kicker,
.offer-tag,
.compare-label {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    margin-bottom: 14px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.hero-kicker,
.section-kicker,
.offer-tag {
    background: rgba(255, 255, 255, 0.98);
    color: var(--xr-blue);
    border: 1px solid rgba(75, 92, 255, 0.12);
    box-shadow: 0 8px 18px rgba(84, 92, 214, 0.05);
}

.section-kicker-light,
.offer-tag-light {
    background: rgba(255, 255, 255, 0.18);
    color: white;
}

.hero-left h1 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 0.95;
    letter-spacing: -0.04em;
    max-width: 680px;
    margin-bottom: 18px;
}

.hero-left h1 span {
    color: var(--xr-blue);
}

.hero-copy,
.section-head p,
.compare-card ul,
.step-card p,
.offer-card p,
.manifesto-card p,
.final-cta-card p {
    color: var(--xr-muted);
}

.hero-copy {
    font-size: 21px;
    line-height: 1.48;
    max-width: 620px;
    margin-bottom: 28px;
}

.hero-difference-list {
    display: grid;
    gap: 12px;
    max-width: 640px;
    margin-bottom: 30px;
    list-style: none;
}

.hero-difference-list li {
    position: relative;
    padding-left: 34px;
    color: var(--xr-muted);
    font-size: 18px;
    line-height: 1.45;
}

.hero-difference-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 119, 242, 0.12);
    color: #1877f2;
    font-size: 14px;
    font-weight: 800;
}

.hero-difference-list strong {
    color: var(--xr-text);
}

.hero-actions,
.manifesto-tags,
.cta-stack {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    margin-top: 8px;
    margin-bottom: 6px;
    gap: 18px;
    max-width: 580px;
}

.hero-actions .btn,
.hero-actions .btn:visited {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 62px !important;
    padding: 0 32px !important;
    border-radius: 14px !important;
    text-decoration: none !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    width: 100% !important;
    min-width: 0 !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 0 26px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

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

.btn-primary {
    min-width: 280px;
    padding: 0 32px;
    background: #3467e8;
    color: white;
    border: 1px solid #3467e8;
    box-shadow: 0 14px 30px rgba(52, 103, 232, 0.24);
    text-shadow: none;
}

.hero-actions .btn-primary,
.hero-actions .btn-primary:visited {
    background: #3467e8 !important;
    color: #ffffff !important;
    border: 1px solid #3467e8 !important;
    box-shadow: 0 14px 30px rgba(52, 103, 232, 0.24) !important;
}

.btn-primary:hover {
    background: #2b58cb;
    border-color: #2b58cb;
    box-shadow: 0 18px 34px rgba(52, 103, 232, 0.3);
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-primary:focus {
    background: #2b58cb !important;
    color: #ffffff !important;
    border-color: #2b58cb !important;
}

.btn-secondary {
    min-width: 280px;
    padding: 0 32px;
    background: #3467e8;
    color: white;
    border: 1px solid #3467e8;
    box-shadow: 0 14px 30px rgba(52, 103, 232, 0.24);
}

.hero-actions .btn-secondary,
.hero-actions .btn-secondary:visited {
    background: #3467e8 !important;
    color: #ffffff !important;
    border: 1px solid #3467e8 !important;
    box-shadow: 0 14px 30px rgba(52, 103, 232, 0.24) !important;
}

.btn-secondary:hover {
    background: #2b58cb;
    border-color: #2b58cb;
    box-shadow: 0 18px 34px rgba(52, 103, 232, 0.3);
}

.hero-actions .btn-secondary:hover,
.hero-actions .btn-secondary:focus {
    background: #2b58cb !important;
    color: #ffffff !important;
    border-color: #2b58cb !important;
}

.btn-light {
    background: white;
    color: #1877f2;
    border: 1px solid #1877f2;
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: white;
}

.hero-scene {
    display: grid;
    gap: 16px;
}

.hero-scene-window {
    padding: 20px;
    border-radius: 28px;
    background: linear-gradient(145deg, #1d2f67 0%, #3150c7 62%, #5d72db 100%);
    box-shadow: 0 22px 44px rgba(46, 67, 151, 0.22);
}

.scene-window-bar {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
}

.scene-window-bar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
}

.scene-window-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.scene-label {
    color: rgba(255, 255, 255, 0.74);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.scene-window-head h3 {
    color: white;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 28px;
    line-height: 1.02;
    max-width: 360px;
}

.scene-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

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

.scene-card {
    min-height: 126px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.scene-card-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.scene-card strong {
    color: white;
    font-size: 18px;
    line-height: 1.25;
}

.scene-card-warm {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 224, 208, 0.14));
}

.scene-card-cool {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(214, 244, 255, 0.14));
}

.scene-card-dark {
    background: linear-gradient(145deg, rgba(13, 20, 48, 0.28), rgba(39, 56, 126, 0.3));
}

.scene-card-wide {
    grid-column: 1 / -1;
    min-height: 112px;
}

.hero-offer-stack {
    display: grid;
    gap: 12px;
}

.offer-chip {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: center;
    min-height: 68px;
    padding: 0 18px;
    border-radius: 18px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 28px rgba(18, 24, 68, 0.16);
}

.offer-chip span {
    color: var(--xr-text);
    font-weight: 800;
    font-size: 20px;
    line-height: 1.1;
}

.offer-chip strong {
    font-size: 28px;
    line-height: 1;
}

.offer-chip-primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 226, 209, 0.96));
}

.offer-chip-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(222, 252, 247, 0.96));
}

.offer-chip-accent {
    background: linear-gradient(90deg, #4b5cff 0%, #7a5fe6 45%, #d76ad9 100%);
    border-color: transparent;
}

.offer-chip-accent span,
.offer-chip-accent strong {
    color: white;
}

.info-section,
.steps-section,
.offers-section,
.manifesto-section,
.final-cta-section {
    margin-top: 54px;
}

.section-head {
    max-width: 860px;
    margin-bottom: 26px;
    padding: 0 4px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.narrow-head {
    max-width: 720px;
}

.section-head h2 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.03;
    margin-bottom: 14px;
    max-width: 920px;
}

.section-head p {
    max-width: 860px;
    font-size: 18px;
    line-height: 1.6;
}

.compare-grid,
.steps-grid,
.offers-grid {
    display: grid;
    gap: 24px;
}

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

.steps-grid,
.offers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compare-card,
.step-card,
.offer-card {
    padding: 30px;
    border-radius: 30px;
}

.offer-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
}

.compare-card-light,
.step-card,
.offer-card-white {
    background: white;
    border: 1px solid rgba(75, 92, 255, 0.08);
}

.compare-card-gradient,
.offer-card-highlight,
.final-cta-card {
    background: linear-gradient(90deg, #4b5cff 0%, #7a5fe6 45%, #d76ad9 100%);
    color: white;
}

.compare-label {
    background: rgba(75, 92, 255, 0.1);
    color: var(--xr-blue);
}

.compare-label-strong {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

.compare-card ul {
    padding-left: 22px;
    line-height: 1.7;
    font-size: 17px;
}

.compare-card li + li {
    margin-top: 10px;
}

.compare-card-gradient ul,
.offer-card-highlight p,
.offer-card-highlight h3,
.offer-card-highlight .offer-price,
.final-cta-card p,
.final-cta-card h2 {
    color: white;
}

.step-number {
    margin-bottom: 12px;
    color: var(--xr-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.step-card h3,
.offer-card h3 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 28px;
    line-height: 1.05;
    margin-bottom: 12px;
}

.step-card p,
.offer-card p {
    font-size: 17px;
    line-height: 1.6;
}

.step-card-strong {
    background: linear-gradient(135deg, rgba(75, 92, 255, 0.08), rgba(215, 106, 217, 0.12));
}

.offer-price {
    margin: 22px 0 22px;
    font-size: 34px;
    font-weight: 800;
}

.offer-card .btn {
    margin-top: auto;
    width: 100%;
    min-width: 0;
}

.offer-card p {
    margin-bottom: 24px;
}

.offer-card .btn-light {
    color: var(--xr-blue);
    border-width: 2px;
}

.manifesto-card,
.final-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 34px;
    border-radius: 32px;
}

.final-cta-card h2 {
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 18px;
}

.manifesto-card {
    background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
    border: 1px solid rgba(75, 92, 255, 0.1);
}

.manifesto-tags {
    justify-content: flex-end;
    max-width: 420px;
}

.manifesto-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(75, 92, 255, 0.08);
    color: var(--xr-blue);
    font-weight: 700;
}

.cta-stack {
    flex-direction: column;
    align-items: stretch;
    min-width: 260px;
}

.subpage-shell {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
    padding: 36px 0 64px;
}

.detail-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 16px 72px;
}

.subpage-card {
    padding: 34px;
    border-radius: 30px;
    background: white;
    box-shadow: var(--xr-shadow);
}

.detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    gap: 26px;
    margin-top: 24px;
    padding: 36px;
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 255, 0.98) 100%);
    border: 1px solid rgba(75, 92, 255, 0.08);
    box-shadow: var(--xr-shadow);
}

.detail-hero-accent {
    background: linear-gradient(90deg, #4256ec 0%, #6d63e3 46%, #ca61cf 100%);
    border: 0;
}

.detail-hero-copy,
.detail-side-card {
    min-width: 0;
}

.detail-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.detail-topbar .back-link {
    margin-bottom: 0;
}

.detail-topbar .section-kicker {
    margin-bottom: 0;
}

.detail-lead {
    color: var(--xr-muted);
    font-size: 20px;
    line-height: 1.55;
    margin-top: 14px;
}

.detail-lead-light,
.detail-title-light,
.detail-side-title-light,
.detail-side-copy-light {
    color: white;
}

.detail-bullet-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
    padding-left: 22px;
    color: var(--xr-muted);
    font-size: 17px;
    line-height: 1.6;
}

.detail-bullet-list-light {
    color: rgba(255, 255, 255, 0.92);
}

.detail-bullet-list-light li::marker {
    color: white;
}

.detail-side-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(145deg, #1d2f67 0%, #3150c7 62%, #5d72db 100%);
    color: white;
    box-shadow: 0 22px 44px rgba(46, 67, 151, 0.22);
}

.detail-side-card-light {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.detail-price-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    width: fit-content;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: white;
    font-size: 13px;
    font-weight: 800;
}

.detail-price-eyebrow-light {
    background: rgba(255, 255, 255, 0.14);
    color: white;
}

.detail-price {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 52px;
    line-height: 1;
    font-weight: 700;
}

.detail-price-light {
    color: white;
}

.detail-side-card h2 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 34px;
    line-height: 1.02;
}

.detail-side-copy-light,
.detail-side-card p {
    font-size: 17px;
    line-height: 1.6;
}

.detail-cta-stack {
    display: grid;
    gap: 14px;
    margin-top: auto;
    padding-top: 12px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.detail-card {
    padding: 30px;
    border-radius: 30px;
    background: white;
    border: 1px solid rgba(75, 92, 255, 0.08);
    box-shadow: var(--xr-shadow);
}

.detail-card-accent {
    background: linear-gradient(135deg, rgba(75, 92, 255, 0.08), rgba(215, 106, 217, 0.12));
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 24px;
    margin-top: 28px;
}

.checkout-summary,
.status-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    border-radius: 28px;
    background: white;
    border: 1px solid rgba(75, 92, 255, 0.1);
    box-shadow: var(--xr-shadow);
}

.checkout-summary-accent,
.status-card-accent {
    background: linear-gradient(135deg, #3150b4 0%, #5368ef 45%, #b85fd7 100%);
    color: white;
    border-color: rgba(255, 255, 255, 0.12);
}

.checkout-kicker,
.status-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    color: #4b5cff;
    background: rgba(75, 92, 255, 0.08);
    border: 1px solid rgba(75, 92, 255, 0.1);
}

.checkout-summary-accent .checkout-kicker,
.status-card-accent .status-kicker {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.14);
}

.checkout-summary h2,
.status-card h2 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 34px;
    line-height: 1.02;
}

.checkout-price-line {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid rgba(75, 92, 255, 0.12);
    border-bottom: 1px solid rgba(75, 92, 255, 0.12);
}

.checkout-summary-accent .checkout-price-line,
.status-card-accent .checkout-price-line {
    border-color: rgba(255, 255, 255, 0.18);
}

.checkout-price-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--xr-muted);
}

.checkout-summary-accent .checkout-price-label,
.status-card-accent .checkout-price-label {
    color: rgba(255, 255, 255, 0.78);
}

.checkout-price-value {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.checkout-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-list li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.6;
}

.checkout-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4b5cff;
}

.checkout-summary-accent .checkout-list li::before,
.status-card-accent .checkout-list li::before {
    background: white;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.checkout-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-field label {
    font-size: 14px;
    font-weight: 800;
    color: var(--xr-text);
}

.checkout-field input {
    min-height: 60px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(75, 92, 255, 0.16);
    background: #f7f9ff;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    color: var(--xr-text);
    outline: none;
}

.checkout-field input:focus {
    border-color: rgba(75, 92, 255, 0.42);
    box-shadow: 0 0 0 4px rgba(75, 92, 255, 0.08);
}

.checkout-note {
    font-size: 14px;
    line-height: 1.6;
    color: var(--xr-muted);
}

.checkout-error {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(209, 41, 41, 0.08);
    color: #a32727;
    font-size: 14px;
    line-height: 1.55;
    border: 1px solid rgba(209, 41, 41, 0.12);
}

.checkout-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-button-reset {
    appearance: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-full {
    width: 100%;
    min-width: 0;
}

.status-shell {
    width: min(100% - 32px, 1040px);
    margin: 32px auto 72px;
}

.status-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.status-grid-single {
    grid-template-columns: 1fr;
}

.status-grid-single .status-card {
    max-width: 820px;
}

.status-card p {
    font-size: 17px;
    line-height: 1.7;
}

.status-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.setup-route-shell {
    max-width: 1120px;
}

.setup-route-hero {
    max-width: 860px;
}

.setup-route-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
    margin-top: 28px;
}

.setup-route-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 30px;
    border-radius: 30px;
    background: white;
    border: 1px solid rgba(75, 92, 255, 0.08);
    box-shadow: var(--xr-shadow);
}

.setup-route-card-primary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(244, 248, 255, 0.99) 100%);
}

.setup-route-card h2,
.setup-delivery-strip h2 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.03;
    letter-spacing: -0.03em;
}

.setup-route-card p,
.setup-delivery-strip p,
.setup-route-note,
.setup-custom-note {
    color: var(--xr-muted);
    font-size: 17px;
    line-height: 1.65;
}

.setup-os-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 4px;
}

.setup-custom-actions {
    margin-top: auto;
}

.setup-delivery-strip {
    margin-top: 28px;
    padding: 30px;
    border-radius: 30px;
    background: white;
    border: 1px solid rgba(75, 92, 255, 0.08);
    box-shadow: var(--xr-shadow);
}

.setup-success-card {
    margin-top: 28px;
}

.setup-readiness-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.setup-readiness-card {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(247, 250, 255, 0.98) 0%, rgba(241, 246, 255, 0.98) 100%);
    border: 1px solid rgba(75, 92, 255, 0.08);
}

.setup-readiness-card h3 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 28px;
    line-height: 1.05;
    margin-bottom: 10px;
}

.setup-readiness-card p {
    color: var(--xr-muted);
    font-size: 16px;
    line-height: 1.65;
}

.setup-steps-board {
    margin-top: 28px;
}

.setup-steps-grid {
    margin-top: 0;
}

.detail-card-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(75, 92, 255, 0.08);
    color: var(--xr-blue);
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.detail-card h3 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 30px;
    line-height: 1.04;
    margin-bottom: 12px;
}

.detail-card p {
    color: var(--xr-muted);
    font-size: 17px;
    line-height: 1.6;
}

.detail-side-meta,
.status-meta {
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

.masterclass-video-card,
.practical-flow-card,
.locked-guide-card {
    margin-top: 28px;
    padding: 30px;
    border-radius: 30px;
    background: white;
    border: 1px solid rgba(75, 92, 255, 0.08);
    box-shadow: var(--xr-shadow);
}

.masterclass-video-head,
.practical-flow-head {
    align-items: flex-start;
}

.masterclass-video-head h2,
.practical-flow-head h3,
.locked-guide-card h3 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 34px;
    line-height: 1.05;
}

.masterclass-video-copy {
    margin-top: 0;
    margin-bottom: 22px;
}

.masterclass-video-frame {
    position: relative;
    overflow: hidden;
    width: min(100%, 920px);
    margin: 0 auto;
    border-radius: 24px;
    background: #0d1733;
    box-shadow: 0 18px 34px rgba(13, 23, 51, 0.2);
}

.masterclass-video-player {
    display: block;
    width: 100%;
    height: auto;
    max-height: 70vh;
    background: #0d1733;
}

.masterclass-video-note {
    margin-top: 16px;
    color: var(--xr-muted);
    font-size: 14px;
    line-height: 1.6;
}

.masterclass-preview-grid {
    margin-top: 24px;
    grid-template-columns: minmax(0, 1fr);
}

.masterclass-preview-grid .detail-card {
    max-width: 760px;
    margin: 0 auto;
}

.practical-shell {
    margin-top: 34px;
}

.infographic-hero,
.connections-board,
.execution-strip,
.video-placeholder-card,
.why-setup-card {
    margin-top: 28px;
    padding: 30px;
    border-radius: 30px;
    background: white;
    border: 1px solid rgba(75, 92, 255, 0.08);
    box-shadow: var(--xr-shadow);
}

.infographic-head h2,
.connections-copy h2,
.execution-strip h2,
.video-placeholder-copy h2,
.why-setup-copy h2 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.03;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.infographic-head p,
.connections-copy p,
.video-placeholder-copy p,
.why-setup-copy p {
    color: var(--xr-muted);
    font-size: 18px;
    line-height: 1.65;
}

.stack-orbit {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.stack-node {
    min-height: 160px;
    padding: 22px;
    border-radius: 28px;
    color: white;
    box-shadow: 0 20px 34px rgba(49, 80, 180, 0.14);
}

.stack-node-core {
    grid-column: 2;
    background: linear-gradient(135deg, #233b8f 0%, #3f5ef7 48%, #9160db 100%);
}

.stack-node-left {
    grid-column: 1;
    background: linear-gradient(135deg, #1d8fe1 0%, #33b4ff 100%);
}

.stack-node-top {
    grid-column: 2;
    background: linear-gradient(135deg, #4055d8 0%, #6d63e3 100%);
}

.stack-node-right {
    grid-column: 3;
    background: linear-gradient(135deg, #d65c8f 0%, #ff7c72 100%);
}

.stack-node-bottom {
    grid-column: 2;
    background: linear-gradient(135deg, #0f7c66 0%, #30b88a 100%);
}

.stack-node-label {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 12px;
    font-weight: 800;
}

.stack-node strong {
    display: block;
    margin-top: 14px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 28px;
    line-height: 1.02;
}

.stack-node p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
}

.module-grid,
.connections-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
    align-items: stretch;
}

.module-card,
.connection-card,
.execution-step {
    border-radius: 28px;
    padding: 26px;
    border: 1px solid rgba(75, 92, 255, 0.08);
    background: white;
    box-shadow: var(--xr-shadow);
}

.module-card {
    display: flex;
    flex-direction: column;
    color: white;
    border: 0;
    min-height: 100%;
}

.module-card-blue {
    background: linear-gradient(135deg, #1d8fe1 0%, #35b8ff 100%);
}

.module-card-indigo {
    background: linear-gradient(135deg, #3856d6 0%, #6f6ae8 100%);
}

.module-card-pink {
    background: linear-gradient(135deg, #d75e90 0%, #f7897a 100%);
}

.module-card-gold {
    background: linear-gradient(135deg, #d49221 0%, #f1bf53 100%);
}

.module-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.18);
    font-weight: 800;
}

.module-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.module-card h3,
.connection-card h3,
.execution-step h3 {
    margin-top: 16px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 28px;
    line-height: 1.04;
}

.module-heading h3 {
    margin-top: 0;
}

.module-card p {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.65;
}

.module-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 18px;
}

.module-list li {
    position: relative;
    padding-left: 22px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 15px;
    line-height: 1.55;
}

.module-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.file-pill-grid,
.why-setup-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.file-pill,
.why-setup-points span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    font-size: 13px;
    font-weight: 800;
}

.mini-flow {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.mini-flow span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.18);
    color: white;
    font-weight: 700;
}

.connection-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(246,249,255,0.98) 100%);
    min-height: 100%;
}

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

.connection-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(75, 92, 255, 0.08);
    color: var(--xr-blue);
    font-size: 13px;
    font-weight: 800;
}

.connection-head h3 {
    margin: 0;
}

.connection-card p,
.execution-step p {
    margin-top: 10px;
    color: var(--xr-muted);
    font-size: 16px;
    line-height: 1.65;
}

.connections-board {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 28px;
    align-items: start;
}

.connections-copy {
    max-width: 460px;
}

.connections-grid {
    margin-top: 0;
}

.execution-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.video-placeholder-card,
.why-setup-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: center;
}

.video-placeholder-card {
    grid-template-columns: 1fr;
}

.video-placeholder-frame {
    width: min(100%, 920px);
    margin: 0 auto;
}

.why-setup-card {
    grid-template-columns: minmax(0, 1.24fr) minmax(320px, 0.76fr);
    gap: 28px;
    align-items: start;
}

.why-setup-actions {
    grid-column: auto;
    width: min(100%, 340px);
    max-width: 340px;
    justify-self: end;
    margin-top: 0;
    padding-top: 0;
    align-self: end;
    justify-items: end;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.why-setup-cta {
    width: auto;
    min-width: 280px;
    justify-content: center;
}

.why-setup-points {
    margin-bottom: 4px;
}

.why-setup-points span {
    background: rgba(52, 103, 232, 0.08);
    border: 1px solid rgba(52, 103, 232, 0.14);
    color: #2f56c7;
}

.why-setup-note {
    margin: 0;
    padding-left: 0;
    color: var(--xr-muted);
    font-size: 15px;
    line-height: 1.6;
    text-align: right;
}

.video-placeholder-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
}

.video-example-player {
    display: block;
    width: 100%;
    height: auto;
    border: 0;
    border-radius: 24px;
    background: #0d1733;
    box-shadow: 0 18px 34px rgba(13, 23, 51, 0.2);
    max-height: 70vh;
}

.video-placeholder-screen {
    width: 100%;
    min-height: 260px;
    border-radius: 28px;
    padding: 26px;
    background: linear-gradient(135deg, #1f2f6e 0%, #4364f0 50%, #b467dd 100%);
    color: white;
    box-shadow: 0 22px 42px rgba(49, 80, 180, 0.22);
}

.video-placeholder-screen span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    font-size: 12px;
    font-weight: 800;
}

.video-placeholder-screen strong {
    display: block;
    margin-top: 22px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 34px;
    line-height: 1.05;
}

.practical-head h2 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.practical-grid,
.practical-flow-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.practical-step-card {
    padding: 28px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 255, 0.98) 100%);
    border: 1px solid rgba(75, 92, 255, 0.08);
}

.practical-step-card h4 {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 26px;
    line-height: 1.05;
    margin: 14px 0 10px;
}

.practical-step-card p {
    color: var(--xr-muted);
    font-size: 16px;
    line-height: 1.65;
}

.locked-guide-card {
    background: linear-gradient(135deg, #1b2a5d 0%, #3a56c4 44%, #9160db 100%);
    border: 0;
    color: white;
}

.locked-guide-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    width: fit-content;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: white;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}

.locked-guide-card p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    line-height: 1.7;
    margin-top: 14px;
}

.locked-guide-list {
    margin-top: 22px;
}

.locked-guide-list li,
.locked-guide-card .checkout-list li {
    color: rgba(255, 255, 255, 0.92);
}

.locked-guide-card .checkout-list li::before {
    background: white;
}

.locked-guide-actions {
    max-width: 340px;
    margin: 0 auto;
}

.locked-guide-cta {
    background: #ffffff;
    color: #3467e8;
    border: 1px solid #ffffff;
}

.locked-guide-cta:hover,
.locked-guide-cta:focus {
    background: #f3f6ff;
    color: #2b58cb;
    border-color: #f3f6ff;
}

.detail-back-link-light {
    color: #ffffff !important;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.14);
}

.subpage-meta {
    margin-bottom: 18px;
    color: var(--xr-muted);
}

.back-link {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--xr-blue);
    text-decoration: none;
    font-weight: 800;
}

@media (max-width: 1100px) {
    .hero-band,
    .compare-grid,
    .steps-grid,
    .offers-grid,
    .manifesto-card,
    .final-cta-card,
    .detail-hero,
    .detail-grid,
    .module-grid,
    .connections-grid,
    .practical-grid,
    .practical-flow-steps,
    .execution-steps,
    .checkout-grid,
    .status-grid {
        grid-template-columns: 1fr;
    }

    .video-placeholder-card,
    .why-setup-card,
    .stack-orbit {
        grid-template-columns: 1fr;
    }

    .connections-board {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .setup-route-grid {
        grid-template-columns: 1fr;
    }

    .connections-copy {
        max-width: none;
    }

    .connections-grid {
        margin-top: 0;
    }

    .stack-node-core,
    .stack-node-left,
    .stack-node-top,
    .stack-node-right,
    .stack-node-bottom {
        grid-column: auto;
    }

    .hero-band {
        gap: 24px;
    }

    .sale-navbar {
        grid-template-columns: 1fr;
        align-items: flex-start;
        border-radius: 0 0 18px 18px;
    }

    .sale-nav-center {
        justify-content: flex-start;
        gap: 14px;
    }

    .manifesto-tags {
        justify-content: flex-start;
        max-width: none;
    }

    .cta-stack {
        min-width: 0;
    }

    .detail-topbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

@media (max-width: 760px) {
    .page-shell,
    .sale-header,
    .subpage-shell,
    .detail-shell {
        width: min(100% - 20px, 1180px);
        padding-left: 0;
        padding-right: 0;
    }

    .hero-band,
    .compare-card,
    .step-card,
    .offer-card,
    .manifesto-card,
    .final-cta-card,
    .subpage-card,
    .detail-hero,
    .detail-card,
    .detail-side-card,
    .checkout-summary,
    .status-card,
    .masterclass-video-card,
    .infographic-hero,
    .connections-board,
    .execution-strip,
    .practical-flow-card,
    .video-placeholder-card,
    .why-setup-card,
    .locked-guide-card,
    .practical-step-card,
    .module-card,
    .connection-card,
    .execution-step {
        padding: 24px;
        border-radius: 24px;
    }

    .hero-left h1 {
        font-size: clamp(34px, 10vw, 52px);
        line-height: 0.96;
    }

    .hero-copy {
        font-size: 18px;
    }

    .hero-difference-list li {
        font-size: 17px;
    }

    .section-head {
        margin-bottom: 20px;
        padding: 0;
    }

    .section-head p,
    .step-card p,
    .offer-card p,
    .compare-card ul {
        font-size: 16px;
    }

    .hero-actions {
        grid-template-columns: 1fr;
        max-width: none;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .scene-window-head {
        display: grid;
    }

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

    .scene-card {
        min-height: 0;
    }

    .offer-chip {
        grid-template-columns: auto 1fr;
        padding: 16px;
    }

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

    .detail-side-card h2,
    .detail-card h3 {
        font-size: 28px;
    }

    .masterclass-video-head h2,
    .practical-flow-head h3,
    .locked-guide-card h3 {
        font-size: 28px;
    }

    .masterclass-video-frame {
        width: 100%;
    }

    .masterclass-video-player {
        max-height: none;
    }

    .video-example-player {
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 16 / 9;
    }

    .connections-board {
        gap: 18px;
    }

    .setup-route-card,
    .setup-delivery-strip {
        padding: 24px;
        border-radius: 24px;
    }

    .setup-os-grid {
        grid-template-columns: 1fr;
    }

    .connections-copy {
        order: 0;
    }

    .connections-grid {
        order: 1;
    }

    .why-setup-points {
        margin-top: 14px;
        margin-bottom: 0;
    }

    .why-setup-actions {
        margin-top: 12px;
        width: 100%;
        max-width: none;
        justify-self: stretch;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: none;
        box-shadow: none;
        justify-items: stretch;
    }

    .why-setup-note {
        text-align: left;
        padding-left: 10px;
    }

    .detail-lead,
    .detail-bullet-list,
    .detail-card p {
        font-size: 16px;
    }

    .checkout-summary h2,
    .status-card h2 {
        font-size: 28px;
    }
}
