:root {
    --ink: #08050F;
    --ink-2: #171124;
    --ink-3: #211532;
    --paper: #FFF7FB;
    --paper-2: #FFF1F8;
    --line: #FFD4E8;
    --text: #171124;
    --muted: #777993;
    --accent: #FF2D8D;
    --accent-hover: #FF5EAA;
    --accent-2: #22D3EE;
    --accent-2-soft: #67E8F9;
    --white: #ffffff;
    --danger: #EF4444;
    --warning: #F59E0B;
    --success: #10B981;
    --dark-border: #332247;
    --dark-text: #F9F4FF;
    --dark-muted: #9D94B2;
    --shadow: 0 18px 42px rgba(23, 17, 36, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

a {
    color: inherit;
}

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

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 50;
    padding: 10px 14px;
    background: var(--accent);
    color: var(--ink);
    border-radius: 6px;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(255, 247, 251, 0.94);
    border-bottom: 1px solid rgba(255, 212, 232, 0.86);
    backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    text-decoration: none;
    color: var(--ink);
}

.brand img,
.footer-brand img {
    width: 34px;
    height: 34px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-menu {
    display: none;
}

.main-nav a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 7px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.main-nav a:hover,
.main-nav a.is-active {
    background: var(--paper-2);
    color: var(--ink);
}

.main-nav .nav-cta {
    background: var(--accent);
    color: var(--white);
}

.main-nav .nav-cta:hover {
    background: var(--accent-hover);
    color: var(--white);
}

.hero {
    min-height: min(820px, calc(100vh - 68px));
    display: grid;
    align-items: center;
    padding: clamp(58px, 8vw, 112px) clamp(20px, 6vw, 84px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(8, 5, 15, 0.98) 0%, rgba(23, 17, 36, 0.95) 58%, rgba(255, 45, 141, 0.28) 100%),
        var(--ink);
}

.hero-shell,
.section-inner {
    width: min(1160px, 100%);
    margin: 0 auto;
}

.hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 440px);
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}

.hero-content {
    width: 100%;
    max-width: 720px;
    margin: 0;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    font-size: clamp(44px, 9vw, 92px);
    line-height: 0.95;
    letter-spacing: 0;
}

.hero-lead {
    margin: 18px 0 0;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--accent-2-soft);
}

.hero-copy,
.page-hero p,
.section-heading p {
    max-width: 760px;
    color: inherit;
}

.hero-copy {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.83);
    font-size: 18px;
}

.hero-actions,
.section-action,
.link-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.hero-store-actions {
    display: grid;
    align-items: start;
    justify-items: start;
    gap: 6px;
}

.store-badge-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.store-caption {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.2;
    margin-left: 2px;
}

.google-play-badge-button {
    width: 210px;
    display: inline-flex;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: default;
    opacity: 0.96;
    filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.26));
}

.google-play-badge-button img {
    width: 100%;
    height: auto;
}

.hero-secondary-cta {
    min-height: 46px;
    padding: 0 18px;
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 0;
    border-radius: 8px;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
}

.button.primary {
    color: var(--white);
    background: var(--accent);
}

.button.primary:hover {
    background: var(--accent-hover);
}

.button.secondary {
    color: var(--ink);
    background: var(--paper-2);
}

.button.secondary:hover {
    background: #FFE3F0;
}

.button.light {
    color: var(--ink);
    background: var(--white);
}

.trust-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.trust-notes span {
    padding: 8px 10px;
    border: 1px solid rgba(103, 232, 249, 0.4);
    border-radius: 999px;
    color: var(--dark-text);
    background: rgba(103, 232, 249, 0.12);
    font-size: 13px;
    font-weight: 850;
}

.hero-product-shot {
    position: relative;
    justify-self: center;
    width: min(420px, 100%);
    animation: auraFloat 5.8s ease-in-out infinite;
    will-change: transform;
}

.hero-product-shot::before {
    content: "";
    position: absolute;
    inset: 7% -7% 5%;
    border-radius: 34px;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 45, 141, 0.45), transparent 30%),
        radial-gradient(circle at 85% 56%, rgba(34, 211, 238, 0.32), transparent 34%);
    filter: blur(22px);
    opacity: 0.9;
}

.hero-product-shot img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid rgba(255, 212, 232, 0.2);
    border-radius: 32px;
    box-shadow:
        0 34px 80px rgba(0, 0, 0, 0.44),
        0 0 42px rgba(255, 45, 141, 0.16),
        0 0 30px rgba(34, 211, 238, 0.12);
}

.floating-label {
    position: absolute;
    z-index: 2;
    padding: 9px 11px;
    border: 1px solid rgba(255, 212, 232, 0.22);
    border-radius: 999px;
    color: var(--dark-text);
    background: rgba(23, 17, 36, 0.84);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
    font-size: 13px;
    font-weight: 850;
    backdrop-filter: blur(12px);
}

.label-signal {
    top: 18%;
    right: -24px;
}

.label-ai {
    left: -18px;
    bottom: 18%;
}

@keyframes auraFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -12px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-product-shot {
        animation: none;
    }
}

.app-mockup {
    justify-self: center;
    width: min(390px, 100%);
}

.phone-frame {
    position: relative;
    aspect-ratio: 9 / 19;
    padding: 12px;
    border: 1px solid rgba(255, 212, 232, 0.24);
    border-radius: 34px;
    background: linear-gradient(180deg, #211532, #08050F);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
}

.phone-frame::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    width: 96px;
    height: 18px;
    transform: translateX(-50%);
    border-radius: 0 0 14px 14px;
    background: #08050F;
    z-index: 1;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    background: var(--ink);
}

.section {
    padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 64px);
    background: var(--paper);
}

.section-light {
    background: var(--paper-2);
}

.section-ink {
    color: var(--white);
    background: var(--ink);
}

.section-ink .section-heading p,
.section-ink .rich-copy,
.section-ink .note-list {
    color: rgba(255, 255, 255, 0.78);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(32px, 6vw, 84px);
    align-items: start;
}

.section h2,
.final-cta h2 {
    margin: 0;
    color: inherit;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: 0;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 34px;
}

.rich-copy p:first-child {
    margin-top: 0;
}

.feature-grid,
.account-grid,
.account-detail-grid,
.contact-grid,
.split-list {
    display: grid;
    gap: 16px;
}

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

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

.feature-card,
.account-card,
.detail-card,
.contact-card,
.split-list article {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    padding: 22px;
    box-shadow: 0 10px 28px rgba(23, 17, 36, 0.08);
}

.feature-card h2,
.feature-card h3,
.account-card h3,
.detail-card h2,
.contact-card h2,
.split-list h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 20px;
    line-height: 1.2;
}

.feature-card p,
.account-card p,
.detail-card p,
.contact-card p {
    margin: 0;
    color: var(--muted);
}

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

.feature-visual-card {
    padding: 0;
    overflow: hidden;
}

.feature-visual-card > div:not(.feature-shot) {
    padding: 22px;
}

.feature-shot {
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    padding: 18px;
    background: linear-gradient(135deg, var(--ink), var(--ink-3));
}

.feature-shot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-group ul {
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--muted);
}

.feature-group li + li {
    margin-top: 8px;
}

.inline-note {
    margin-top: 16px;
    padding: 12px 13px;
    border-radius: 12px;
    color: #7C4A03;
    background: #FFF7E6;
    font-size: 14px;
    font-weight: 750;
}

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

.account-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 18px;
}

.account-card {
    color: var(--ink);
    background: var(--white);
    box-shadow: none;
}

.account-stat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.account-stat-list li {
    padding: 7px 9px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: var(--paper);
    font-size: 13px;
    font-weight: 850;
}

.account-card dl,
.detail-card dl {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
}

.account-card dl div,
.detail-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

dt {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

dd {
    margin: 0;
    color: var(--ink);
    font-weight: 850;
    text-align: right;
}

.step-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.step-list li {
    min-height: 220px;
    padding: 20px;
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 10px 26px rgba(23, 17, 36, 0.08);
}

.step-list span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--ink-2);
    color: var(--white);
    font-weight: 900;
}

.step-list strong {
    display: block;
    color: var(--ink);
    line-height: 1.25;
}

.step-list p,
.note-list {
    margin: 10px 0 0;
    color: var(--muted);
}

.link-row a {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--ink);
    background: var(--white);
    font-weight: 800;
    text-decoration: none;
}

.faq-preview,
.faq-list {
    display: grid;
    gap: 12px;
}

details {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    overflow: hidden;
}

summary {
    padding: 18px 20px;
    color: var(--ink);
    font-weight: 850;
    cursor: pointer;
}

details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--muted);
}

.final-cta {
    padding: clamp(72px, 8vw, 116px) 20px;
    color: var(--white);
    text-align: center;
    background:
        linear-gradient(180deg, rgba(8, 5, 15, 0.9), rgba(23, 17, 36, 0.97)),
        url("../images/logo.png") center / min(360px, 70vw) no-repeat,
        var(--ink);
}

.final-cta > div {
    width: min(760px, 100%);
    margin: 0 auto;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.78);
}

.page-hero {
    padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 64px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(8, 5, 15, 0.98), rgba(33, 21, 50, 0.92), rgba(255, 45, 141, 0.18)),
        url("../images/logo.png") right clamp(28px, 8vw, 120px) center / min(34vw, 320px) no-repeat,
        var(--ink);
}

.page-hero h1 {
    max-width: 880px;
    font-size: clamp(40px, 7vw, 76px);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.narrow {
    width: min(860px, 100%);
}

.notice,
.success-message {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 12px;
    background: #FFF7E6;
    color: #7C4A03;
    border: 1px solid #FDE4B4;
    font-weight: 700;
}

.success-message {
    background: #ECFDF5;
    color: #065F46;
    border-color: #BBF7D0;
}

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
}

.account-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
}

.account-table th,
.account-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.account-table thead th {
    color: var(--white);
    background: var(--ink-2);
    font-size: 13px;
}

.account-table tbody th {
    color: var(--ink);
}

.account-table tbody tr:last-child th,
.account-table tbody tr:last-child td {
    border-bottom: 0;
}

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

.detail-card dl div {
    align-items: start;
}

.note-list {
    margin: 0;
    padding-left: 20px;
}

.note-list li + li,
.legal-copy li + li,
.split-list li + li {
    margin-top: 8px;
}

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

.contact-card a,
.contact-card span {
    display: inline-flex;
    max-width: 100%;
    overflow-wrap: anywhere;
    margin-top: 14px;
    color: var(--ink);
    font-weight: 850;
}

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

.split-list ul {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.legal-copy {
    width: min(900px, 100%);
}

.legal-copy h2 {
    margin: 34px 0 10px;
    color: var(--ink);
    font-size: 28px;
}

.legal-copy h3 {
    margin: 24px 0 8px;
    color: var(--ink);
    font-size: 20px;
}

.legal-copy p,
.legal-copy li {
    color: var(--muted);
}

.legal-copy a {
    color: var(--accent);
    font-weight: 800;
}

.request-form {
    display: grid;
    gap: 14px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.request-form label {
    display: grid;
    gap: 6px;
    color: var(--ink);
    font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    padding: 12px 13px;
    border: 1px solid var(--line);
    border-radius: 7px;
    color: var(--text);
    background: var(--white);
    font: inherit;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
    outline: 3px solid rgba(255, 45, 141, 0.18);
    border-color: var(--accent);
}

.request-form label span,
.field-error {
    color: var(--danger);
    font-size: 13px;
    font-weight: 700;
}

.checkbox-label {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
}

.checkbox-label input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    padding: 0;
    accent-color: var(--accent);
}

.checkbox-label span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 750;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.risk-strip {
    padding: 16px 20px;
    background: #FFF7E6;
    color: #7C4A03;
    border-top: 1px solid #FDE4B4;
    border-bottom: 1px solid #FDE4B4;
    font-weight: 750;
}

.risk-strip div {
    width: min(1160px, 100%);
    margin: 0 auto;
}

.site-footer {
    padding: 48px clamp(20px, 5vw, 64px) 28px;
    color: rgba(255, 255, 255, 0.76);
    background: var(--ink);
}

.footer-grid {
    width: min(1160px, 100%);
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 0.9fr 1fr;
    gap: 28px;
    margin: 0 auto;
}

.footer-brand {
    color: var(--white);
}

.site-footer h2 {
    margin: 0 0 12px;
    color: var(--white);
    font-size: 16px;
}

.site-footer a:not(.footer-brand) {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    width: min(1160px, 100%);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin: 34px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
}

@media (max-width: 980px) {
    .site-header {
        align-items: center;
        flex-direction: row;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu {
        position: relative;
        display: block;
    }

    .mobile-menu summary {
        min-height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 8px 13px;
        border-radius: 8px;
        background: var(--accent);
        color: var(--white);
        font-size: 14px;
        font-weight: 850;
        list-style: none;
    }

    .mobile-menu summary::-webkit-details-marker {
        display: none;
    }

    .mobile-menu div {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: min(78vw, 260px);
        display: grid;
        gap: 6px;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .mobile-menu a {
        padding: 10px 12px;
        border-radius: 8px;
        color: var(--ink);
        font-weight: 800;
        text-decoration: none;
    }

    .mobile-menu a:hover {
        background: var(--paper-2);
    }

    .hero {
        min-height: auto;
        background:
            linear-gradient(180deg, rgba(8, 5, 15, 0.98), rgba(33, 21, 50, 0.9)),
            var(--ink);
    }

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

    .hero-product-shot {
        width: min(340px, 86vw);
    }

    .label-signal {
        right: -10px;
    }

    .label-ai {
        left: -10px;
    }

    .app-mockup {
        width: min(320px, 82vw);
    }

    .two-column,
    .feature-grid,
    .feature-grid.large,
    .feature-group-grid,
    .account-grid,
    .account-grid.compact,
    .account-detail-grid,
    .contact-grid,
    .split-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 620px) {
    .site-header {
        padding: 12px 16px;
    }

    .main-nav {
        display: none;
    }

    .hero {
        padding-top: 64px;
        padding-bottom: 56px;
        background:
            linear-gradient(180deg, rgba(8, 5, 15, 0.98), rgba(33, 21, 50, 0.9)),
            var(--ink);
    }

    .hero h1,
    .page-hero h1 {
        font-size: 44px;
    }

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

    .hero-store-actions {
        align-items: flex-start;
        gap: 14px;
    }

    .google-play-badge-button {
        width: 190px;
    }

    .hero-product-shot {
        width: min(304px, 82vw);
    }

    .floating-label {
        font-size: 12px;
    }

    .page-hero {
        background:
            linear-gradient(180deg, rgba(8, 5, 15, 0.98), rgba(33, 21, 50, 0.9)),
            var(--ink);
    }

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

    .step-list li {
        min-height: auto;
    }

    .feature-shot {
        aspect-ratio: 4 / 3;
    }

    .account-card dl div,
    .detail-card dl div {
        display: grid;
        gap: 4px;
    }

    dd {
        text-align: left;
    }

    .footer-bottom {
        display: grid;
    }
}
