/* Sound of Chi Modern Home - Premium, Spacious, Bold */
:root {
    --cream: #fffffa;
    --gray: #515052;
    --black: #000103;
    --charcoal: #333138;
    --red: #ff312e;
    --radius-lg: 2rem;
    --radius-md: 1.25rem;
    --shadow-soft: 0 24px 60px rgba(0, 1, 3, 0.12);
    --shadow-card: 0 14px 30px rgba(0, 1, 3, 0.08);
}

body {
    background: var(--cream);
    color: var(--charcoal);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
}

.site-header {
    background: var(--black);
    color: var(--cream);
    border-bottom: 2px solid var(--red);
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.site-header a {
    color: var(--cream);
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.site-header a:hover {
    color: var(--red);
}

.page-shell {
    width: min(1120px, 96vw);
    margin: 0 auto;
    padding: 2.5rem 0 4rem;
}

/* Full-bleed pages (e.g. contact hero) — no max-width shell; avoids 100vw breakout hacks */
.page-shell.page-shell--flush {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.hero-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(120deg, var(--black) 60%, var(--gray) 100%);
    color: var(--cream);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 3.5rem 2.5rem 3rem 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}
.hero-panel::before {
    content: "";
    position: absolute;
    right: -6rem;
    bottom: -8rem;
    width: 22rem;
    height: 22rem;
    background: radial-gradient(circle, var(--red) 0%, transparent 80%);
    opacity: 0.18;
    border-radius: 50%;
    z-index: 0;
}
.hero-panel > * { position: relative; z-index: 1; }

.eyebrow {
    display: inline-block;
    margin-bottom: 1.2rem;
    padding: 0.4rem 1.1rem;
    background: rgba(255,49,46,0.13);
    color: var(--red);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}
.hero-panel h1 {
    font-size: clamp(2.5rem, 6vw, 5.2rem);
    margin: 0 0 1.2rem 0;
    color: var(--cream);
    letter-spacing: -0.04em;
    line-height: 1.05;
}
.lead {
    font-size: 1.25rem;
    color: #f7f7f2;
    margin-bottom: 2.2rem;
    max-width: 600px;
}
.cta-row {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.2rem;
}
.button {
    background: var(--red);
    color: var(--cream);
    border: none;
    border-radius: 999px;
    padding: 1rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(255,49,46,0.08);
    transition: background 0.2s, color 0.2s, transform 0.18s;
}
.button:hover {
    background: var(--cream);
    color: var(--red);
    transform: translateY(-2px) scale(1.03);
}
.button-secondary {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--red);
}
.button-secondary:hover {
    background: var(--red);
    color: var(--cream);
}
.hero-card {
    background: rgba(255,255,250,0.13);
    border: 1px solid rgba(255,255,250,0.22);
    border-radius: var(--radius-md);
    padding: 1.7rem 1.3rem;
    min-width: 260px;
    max-width: 340px;
    margin-left: 2.5rem;
    box-shadow: 0 2px 18px rgba(0,0,0,0.06);
}
.hero-card .eyebrow {
    margin-bottom: 0.7rem;
    background: rgba(255,49,46,0.18);
    color: var(--red);
    border: 1px solid rgba(255,49,46,0.22);
}
.hero-card h2 {
    margin: 0 0 0.7rem 0;
    color: var(--cream);
    font-size: 1.25rem;
}
.hero-card p {
    margin: 0;
    color: #f7f7f2;
    font-size: 1.05rem;
}
.grid-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}
.collection-card {
    background: #fff;
    color: var(--charcoal);
    border: 1.5px solid var(--gray);
    border-radius: var(--radius-md);
    padding: 2.1rem 1.5rem 1.7rem 1.5rem;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.18s, border-color 0.18s, transform 0.18s;
    position: relative;
    overflow: hidden;
}
.collection-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 0.32rem;
    background: var(--red);
    border-radius: 0 1rem 1rem 0;
    opacity: 0.7;
}
.collection-card:hover {
    box-shadow: 0 12px 32px rgba(255,49,46,0.13);
    border-color: var(--red);
    transform: translateY(-3px) scale(1.01);
}
.collection-card h2 {
    color: var(--black);
    font-size: 1.35rem;
    margin: 0 0 0.7rem 0;
    line-height: 1.13;
}
.collection-card p {
    color: var(--gray);
    margin: 0 0 0.7rem 0;
}
.collection-card .meta {
    display: inline-flex;
    align-items: center;
    margin-top: 1.1rem;
    padding: 0.35rem 0.75rem;
    color: var(--red);
    background: rgba(255,49,46,0.08);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
}
@media (max-width: 900px) {
    .hero-panel {
        flex-direction: column;
        padding: 2.5rem 1.2rem 2rem 1.2rem;
    }
    .hero-card {
        margin-left: 0;
        margin-top: 2rem;
        max-width: 100%;
    }
    .grid-section {
        grid-template-columns: 1fr;
    }
}

/* -------------------------------------------------------------------------
   Sales homepage (public/home.html)
   ------------------------------------------------------------------------- */
.sales-home {
    background: linear-gradient(180deg, var(--black) 0%, #1a1a1e 55%, #25252a 100%);
    color: var(--cream);
    border-radius: var(--radius-lg);
    padding: 0 clamp(0.75rem, 3vw, 2rem) 2.5rem;
    box-shadow: var(--shadow-soft);
}

.sales-home h1,
.sales-home h2,
.sales-home h3 {
    color: var(--cream);
}

.sales-home .eyebrow {
    color: var(--red);
    background: rgba(255, 49, 46, 0.15);
}

.sales-home .button-secondary {
    border-color: var(--red);
    color: var(--cream);
}

.sales-hero {
    padding: 5rem 0 3rem;
}

.sales-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.sales-hero h1 {
    font-size: clamp(3rem, 7vw, 6.5rem);
    line-height: 0.92;
    margin: 0.6rem 0 1.2rem;
    letter-spacing: -0.04em;
}

.sales-hero .lead {
    max-width: 760px;
    font-size: 1.15rem;
}

.sales-letter-section {
    padding: 3rem 0;
}

.sales-letter-section + .pricing-section {
    padding-top: 1rem;
}

.sales-letter-section.alt {
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sales-letter-copy {
    max-width: 820px;
    margin: 0 auto;
}

.sales-letter-copy h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    margin-bottom: 1.25rem;
}

.sales-letter-copy p {
    font-size: 1.08rem;
    line-height: 1.8;
    margin: 0 0 1rem;
}

.big-line {
    font-size: 1.35rem !important;
    font-weight: 700;
    color: #fffffa;
}

.feeling-list,
.feature-list {
    margin: 1.25rem 0 1.5rem 1.25rem;
    padding: 0;
}

.feeling-list li,
.feature-list li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.sales-proof-band {
    padding: 2rem 0 3rem;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.proof-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 1.25rem;
}

.proof-card-media {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.proof-card h2 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.pricing-section,
.how-it-works,
.faq-section,
.final-cta-section {
    padding: 4rem 0;
}

.section-intro {
    max-width: 780px;
    margin-bottom: 2rem;
}

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

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.75rem;
    padding: 1.5rem;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.18);
}

.pricing-card.featured {
    border-color: rgba(255, 49, 46, 0.45);
    transform: translateY(-4px);
}

.pricing-card.premium {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.tier-badge {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: #ff312e;
    color: #fffffa;
    font-size: 0.8rem;
    font-weight: 700;
}

.tier-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    opacity: 0.7;
    margin-bottom: 0.4rem;
}

.tier-price {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0.4rem 0 0.8rem;
}

.tier-summary {
    color: rgba(255, 255, 250, 0.75);
    line-height: 1.7;
}

.pricing-card ul {
    margin: 1rem 0 1.25rem 1.2rem;
    padding: 0;
}

.pricing-card li {
    margin-bottom: 0.65rem;
    line-height: 1.6;
}

.tier-license {
    font-size: 0.88rem;
    line-height: 1.45;
    margin: 0.35rem 0 0.85rem;
    color: #515052;
}

.sales-home .tier-license {
    color: rgba(255, 255, 250, 0.78);
}

.pricing-license-footnote {
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 0;
    color: #515052;
}

.sales-home .pricing-license-footnote {
    color: rgba(255, 255, 250, 0.82);
    text-align: center;
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem 2rem;
}

.sales-home .pricing-license-footnote a {
    color: #ffccc9;
    font-weight: 700;
}

.sales-home .pricing-license-footnote a:hover {
    color: #fffffa;
}

section.pricing-license-callout {
    padding: 1.25rem 1.5rem 2rem;
    max-width: 52rem;
    margin: 0 auto;
}

section.pricing-license-callout .pricing-license-footnote {
    text-align: center;
}

section.pricing-license-callout .pricing-license-footnote a {
    color: #ff312e;
    font-weight: 700;
}

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

.step-card,
.faq-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 1.25rem;
}

.step-number {
    display: inline-flex;
    width: 2rem;
    height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #ff312e;
    color: #fffffa;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.final-cta-section {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 5rem;
}

.final-cta-section p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .proof-grid,
    .pricing-grid,
    .steps-grid,
    .faq-list {
        grid-template-columns: 1fr;
    }

    .sales-hero {
        padding-top: 3.5rem;
    }

    .sales-hero h1 {
        font-size: clamp(2.4rem, 12vw, 4rem);
    }
}

/* -------------------------------------------------------------------------
   FAQ page (public/faq.html)
   ------------------------------------------------------------------------- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.faq-hero {
    text-align: center;
    padding: 3.5rem 0 1rem;
    max-width: 38rem;
    margin: 0 auto;
}

.faq-hero h1 {
    font-size: clamp(2.35rem, 5.8vw, 3.6rem);
    line-height: 1.06;
    letter-spacing: -0.035em;
    margin: 0.45rem 0 1rem;
}

.faq-hero .lead {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.65;
    opacity: 0.9;
    color: rgba(255, 255, 250, 0.9);
}

.faq-section-inner {
    padding: 1.5rem 0 3rem;
}

.faq-list.faq-list--page {
    grid-template-columns: 1fr;
    max-width: 42rem;
    margin: 0 auto;
    gap: 1.15rem;
}

.sales-home .faq-item {
    padding: 1.35rem 1.4rem 1.4rem;
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.sales-home .faq-item:hover {
    border-color: rgba(255, 49, 46, 0.4);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.sales-home .faq-item h3 {
    margin: 0 0 0.7rem;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.sales-home .faq-item p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.72;
    color: rgba(255, 255, 250, 0.84);
}

.sales-home .faq-item p + p {
    margin-top: 0.85rem;
}

.sales-home .faq-item a {
    color: var(--red);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.sales-home .faq-item a:hover {
    color: #fffffa;
}

.faq-subfoot {
    text-align: center;
    padding: 2.5rem 0 3rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-subfoot p {
    margin: 0 0 1.35rem;
    font-size: 1.02rem;
    color: rgba(255, 255, 250, 0.82);
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
}

/* -------------------------------------------------------------------------
   Contact page — text-first hero (gradient + glow, no image) + dark cards
   (public/contact.html)
   ------------------------------------------------------------------------- */
.contact-hero-clean {
    max-width: 820px;
    margin: 0 auto 2rem;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.25rem, 3vw, 2rem);
    border-radius: var(--radius-md);
    box-sizing: border-box;
    background:
        radial-gradient(ellipse 90% 80% at 20% 0%, rgba(255, 49, 46, 0.22), transparent 55%),
        radial-gradient(ellipse 70% 60% at 100% 100%, rgba(255, 255, 250, 0.06), transparent 50%),
        linear-gradient(165deg, #151318 0%, #0b0a0d 55%, #080709 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 1, 3, 0.28);
    color: #fffffa;
}

.contact-hero-clean .eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 143, 140, 0.95);
}

.contact-hero-clean h1 {
    font-size: clamp(2.25rem, 6vw, 3.35rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0.35rem 0 1rem;
    color: #fffffa;
}

.contact-hero-clean .lead {
    max-width: 40rem;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 250, 0.78);
}

.contact-direct-email {
    margin: 1.15rem 0 0;
    font-size: 0.98rem;
    line-height: 1.5;
    color: rgba(255, 255, 250, 0.72);
}

.contact-direct-email a {
    color: #fffffa;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.contact-direct-email a:hover {
    color: #ff8f8c;
}

.contact-clean-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
    gap: 1.25rem;
    align-items: start;
    padding-bottom: 4rem;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.contact-help-card,
.contact-clean-layout .contact-form-card {
    background: linear-gradient(165deg, #141218 0%, #0c0b0e 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
    box-sizing: border-box;
    color: rgba(255, 255, 250, 0.92);
}

.contact-help-card .eyebrow {
    margin: 0 0 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 143, 140, 0.9);
}

.contact-help-card h2 {
    margin: 0 0 0.35rem;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #fffffa;
}

.contact-help-card ul {
    margin: 1rem 0 0;
    padding-left: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 250, 0.82);
}

.contact-help-card li {
    margin-bottom: 0.75rem;
}

.contact-help-card li:last-child {
    margin-bottom: 0;
}

.contact-clean-layout .contact-form {
    margin-top: 0;
    position: relative;
}

.contact-clean-layout .form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-clean-layout .form-group {
    margin-bottom: 1rem;
}

.contact-clean-layout .form-grid .form-group {
    margin-bottom: 0;
}

.contact-clean-layout .form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: rgba(255, 255, 250, 0.78);
}

.contact-clean-layout .label-optional {
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: rgba(255, 255, 250, 0.45);
    font-size: 0.8rem;
}

.contact-clean-layout .form-group input,
.contact-clean-layout .form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 250, 0.06);
    color: #fffffa;
    border-radius: 1rem;
    padding: 0.85rem 1rem;
    font: inherit;
    font-size: 1.02rem;
    line-height: 1.45;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-clean-layout .form-group input::placeholder,
.contact-clean-layout .form-group textarea::placeholder {
    color: rgba(255, 255, 250, 0.42);
}

.contact-clean-layout .form-group input:focus,
.contact-clean-layout .form-group textarea:focus {
    outline: none;
    border-color: var(--red);
    background: rgba(255, 255, 250, 0.09);
    box-shadow: 0 0 0 3px rgba(255, 49, 46, 0.2);
}

.contact-clean-layout .form-group textarea {
    resize: vertical;
    min-height: 9rem;
}

.contact-clean-layout .honeypot-wws {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Overrides public.css .button (public loads after modern-home) */
.contact-clean-layout .contact-form-card .button {
    display: block;
    width: 100%;
    margin: 0.35rem 0 0;
    margin-right: 0;
    padding: 0.9rem 1.5rem;
    background: var(--red);
    color: #fffffa;
    border: none;
    border-radius: 1rem;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-clean-layout .contact-form-card .button:hover {
    background: #e62e2b;
    color: #fffffa;
    transform: translateY(-1px);
}

.contact-note {
    margin-top: 0.85rem;
    margin-bottom: 0;
    color: rgba(255, 255, 250, 0.55);
    font-size: 0.9rem;
    line-height: 1.45;
}

.contact-clean-layout .form-response {
    margin-bottom: 1.1rem;
    padding: 1rem 1.15rem;
    border-radius: 0.75rem;
    font-size: 0.98rem;
    line-height: 1.5;
}

.contact-clean-layout .form-response.success {
    background: rgba(184, 244, 208, 0.14);
    border: 1px solid rgba(134, 239, 172, 0.35);
    color: #bbf7d0;
}

.contact-clean-layout .form-response.error {
    background: rgba(254, 205, 211, 0.12);
    border: 1px solid rgba(251, 113, 133, 0.4);
    color: #fecdd3;
}

@media (max-width: 900px) {
    .contact-clean-layout,
    .contact-clean-layout .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-clean-layout .form-grid .form-group {
        margin-bottom: 0;
    }

    .contact-clean-layout .form-grid {
        gap: 1rem;
    }
}
