:root {
    --nh-ink: #15120c;
    --nh-muted: #5c5141;
    --nh-cream: #fff8eb;
    --nh-soft: #fffaf0;
    --nh-gold: #a5761c;
    --nh-deep-gold: #61450e;
    --nh-line: rgba(97, 69, 14, 0.18);
    --nh-shadow: 8px 18px 30px rgba(69, 44, 10, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.nh-home {
    margin: 0;
    color: var(--nh-ink);
    background: #fff;
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.65;
}

.nh-home a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 80px;
    padding: 10px clamp(20px, 5.5vw, 80px);
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid rgba(165, 118, 28, 0.14);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    font-weight: 400;
}

.brand-mark {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.brand-name {
    color: var(--nh-ink);
    font-size: 21px;
    font-weight: 400;
    line-height: 1;
}

.brand-name strong {
    font-weight: 700;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2vw, 28px);
    color: #2a241b;
    font-size: 16px;
    font-weight: 300;
    white-space: nowrap;
}

.primary-nav a,
.admin-link a {
    border-bottom: 1px solid transparent;
}

.primary-nav a:hover,
.admin-link a:hover {
    border-color: currentColor;
}

.legal-page .legal-nav a {
    position: relative;
    display: inline-flex;
    padding: 6px 0 9px;
    border-bottom: 0;
}

.legal-page .legal-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: #15120c;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.legal-page .legal-nav a:hover::after,
.legal-page .legal-nav a.is-active::after {
    transform: scaleX(1);
}

.legal-page .legal-nav a.is-active {
    color: #15120c;
    font-weight: 500;
}

.legal-page {
    min-height: 100vh;
}

.legal-shell {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(44px, 7vw, 84px) 0;
}

.legal-eyebrow {
    margin: 0 0 12px;
    color: var(--nh-gold);
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
}

.legal-shell h1 {
    margin-bottom: 22px;
}

.legal-shell h2 {
    margin: 34px 0 10px;
    color: var(--nh-gold);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 800;
    line-height: 1.2;
    text-transform: none;
}

.legal-shell h3 {
    margin: 26px 0 10px;
    color: var(--nh-ink);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    font-weight: 800;
    line-height: 1.25;
}

.legal-shell p {
    margin: 0 0 16px;
    color: var(--nh-muted);
    font-weight: 400;
}

.legal-shell a {
    color: var(--nh-gold);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pill-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    height: 42px;
    min-height: 42px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.pill-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(97, 69, 14, 0.16);
}

.pill-button[aria-disabled="true"] {
    cursor: default;
    opacity: 0.72;
    pointer-events: none;
}

.pill-button--gold {
    min-width: 160px;
    color: #17130c;
    border-color: rgba(115, 78, 10, 0.14);
    background: linear-gradient(90deg, #b98520 0%, #d1b063 48%, #ead9aa 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 10px 20px rgba(165, 118, 28, 0.12);
}

.pill-button--outline {
    color: var(--nh-ink);
    border-color: var(--nh-ink);
    background: rgba(255, 255, 255, 0.35);
}

.pill-button--dark-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.04);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.section-fabric,
.section-linen,
.section-dark {
    position: relative;
    overflow: hidden;
}

.section-fabric::before,
.section-linen::before,
.section-dark::before {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
}

.section-fabric::before {
    background:
        linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 255, 255, 0.44) 52%, #fff 96%),
        url("assets/homepage/fabric.png") center 30% / cover no-repeat;
    opacity: 0.9;
}

.section-linen::before {
    background:
        linear-gradient(180deg, rgba(255, 248, 235, 0.94), rgba(255, 248, 235, 0.9)),
        url("assets/homepage/linen.png") center / cover no-repeat;
}

.section-dark::before {
    background:
        radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.28), transparent 24%),
        radial-gradient(circle at 24% 72%, rgba(222, 181, 83, 0.4), transparent 26%),
        linear-gradient(135deg, rgba(97, 69, 14, 0.98), rgba(57, 39, 8, 0.98)),
        url("assets/homepage/linen.png") center / cover no-repeat;
}

.hero {
    min-height: 770px;
    display: grid;
    place-items: center;
    padding: 122px 24px 86px;
}

.hero-content,
.section-heading,
.final-cta,
.faq-section {
    position: relative;
    z-index: 1;
}

.hero-content {
    width: min(930px, 100%);
    text-align: center;
}

h1,
h2 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    line-height: 1.05;
    text-transform: capitalize;
}

h1 {
    font-size: clamp(54px, 7vw, 82px);
}

h1 em {
    color: var(--nh-gold);
    font-style: italic;
}

h2 {
    font-size: clamp(40px, 5.4vw, 65px);
}

h3 {
    margin: 0;
    color: var(--nh-gold);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.35;
}

.hero p,
.section-heading p,
.split-copy p,
.final-cta p {
    margin: 18px auto 0;
    color: var(--nh-muted);
    max-width: 930px;
    font-weight: 300;
}

.hero .button-row {
    margin-top: 34px;
}

.hero strong {
    display: block;
    margin-top: 34px;
    font-size: 17px;
    font-weight: 400;
}

.intro-section,
.program-section,
.read-section,
.faq-section {
    padding: clamp(76px, 8vw, 120px) clamp(20px, 5.5vw, 80px);
}

.orb-divider {
    display: grid;
    grid-template-columns: minmax(80px, 1fr) 86px minmax(80px, 1fr);
    align-items: center;
    gap: 24px;
    width: min(760px, 100%);
    margin: 0 auto 28px;
}

.orb-divider span {
    height: 1px;
    background: var(--nh-line);
}

.orb-divider img {
    width: 86px;
    height: 86px;
    object-fit: contain;
}

.section-heading {
    width: min(980px, 100%);
    margin: 0 auto;
    text-align: center;
}

.section-heading h2 {
    color: var(--nh-ink);
}

.intro-section .section-heading {
    width: min(760px, 100%);
}

.intro-section .section-heading h2 {
    font-size: clamp(32px, 3.25vw, 48px);
    line-height: 1.18;
}

.intro-section .section-heading p {
    max-width: 720px;
}

.intro-section .orb-divider {
    margin-top: 8px;
    margin-bottom: 36px;
}

.eyebrow {
    display: block;
    margin-bottom: 8px;
    color: var(--nh-gold);
    font-size: 18px;
    font-weight: 400;
}

.feature-grid,
.two-card-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    width: min(1280px, 100%);
    margin: 52px auto 0;
}

.feature-card,
.glass-card {
    border: 1px solid rgba(165, 118, 28, 0.22);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 226, 0.42)),
        url("assets/homepage/rainbow-soft.png") center / cover no-repeat;
    box-shadow: var(--nh-shadow);
}

.feature-card {
    min-height: 190px;
    padding: 26px 24px 24px;
    text-align: center;
}

.feature-card::before,
.checklist-card li::before,
.faq-list summary::before {
    display: block;
    width: 42px;
    height: 42px;
    margin: 0 auto 12px;
    background: url("assets/homepage/orb.png") center / contain no-repeat;
    content: "";
}

.feature-card p {
    margin: 0;
    color: var(--nh-ink);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.35;
}

.feature-card span {
    display: block;
    margin-top: 10px;
    color: var(--nh-muted);
    font-size: 15px;
    line-height: 1.5;
}

.feature-card a {
    display: inline-flex;
    margin-top: 16px;
    color: var(--nh-gold);
    font-size: 14px;
    font-weight: 500;
}

.feature-grid--intro {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: min(900px, 100%);
    margin-top: 32px;
}

.feature-grid--intro .feature-card {
    display: grid;
    grid-template-rows: 58px 24px 42px;
    align-content: center;
    justify-items: center;
    gap: 14px;
    height: 204px;
    min-height: 204px;
    padding: 26px 24px;
    border-radius: 10px;
    background:
        radial-gradient(circle at 18% 72%, rgba(246, 226, 101, 0.2), transparent 30%),
        radial-gradient(circle at 30% 52%, rgba(151, 218, 235, 0.16), transparent 28%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 250, 235, 0.82));
    box-shadow: 0 14px 26px rgba(97, 69, 14, 0.12);
}

.feature-grid--intro .feature-card::before {
    content: none;
}

.feature-grid--intro .feature-card p {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    line-height: 1.2;
}

.feature-grid--intro .feature-card > span:not(.pill-button) {
    margin-top: 0;
    font-size: 14px;
    line-height: 1.35;
}

.feature-grid--intro .feature-card .pill-button {
    display: inline-flex;
    align-self: end;
    min-width: 140px;
    height: 42px;
    min-height: 42px;
    padding: 0 20px;
    font-size: 14px;
}

.pill-button--disabled {
    min-width: 160px;
    color: #6f6655;
    border-color: rgba(112, 100, 76, 0.22);
    background: rgba(232, 222, 198, 0.72);
    box-shadow: none;
}

.feature-grid--intro .feature-card .pill-button--gold {
    color: #17130c;
}

.feature-grid--intro .feature-card .pill-button--outline {
    color: var(--nh-ink);
}

.feature-grid--intro .feature-card .pill-button--disabled {
    min-width: 140px;
    color: #6f6655;
}
.split-section {
    display: grid;
    grid-template-columns: minmax(0, 380px) minmax(0, 500px);
    gap: 58px;
    align-items: center;
    padding: 112px max(20px, calc((100vw - 900px) / 2)) 92px;
}

.split-copy,
.glass-card,
.section-cta {
    position: relative;
    z-index: 1;
}

.split-copy h2 {
    margin-top: 6px;
    font-size: clamp(42px, 4.8vw, 60px);
    line-height: 1.06;
}

.split-copy p {
    max-width: 390px;
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.65;
}

.glass-card {
    padding: 44px 48px;
}

.split-section .glass-card {
    min-height: 238px;
    padding: 34px 42px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 38% 44%, rgba(255, 255, 255, 0.78), transparent 46%),
        radial-gradient(circle at 20% 40%, rgba(176, 227, 229, 0.16), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 250, 238, 0.52));
    box-shadow: 0 20px 34px rgba(97, 69, 14, 0.13);
}

.split-section .glass-card h3 {
    font-size: 20px;
    line-height: 1.25;
}

.checklist-card ul {
    display: grid;
    gap: 16px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.checklist-card li {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    color: var(--nh-ink);
    font-weight: 300;
}

.checklist-card li::before {
    width: 36px;
    height: 36px;
    margin: 0;
}

.split-section .checklist-card ul {
    gap: 18px;
    margin-top: 20px;
}

.split-section .checklist-card li {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    font-size: 14px;
    line-height: 1.45;
}

.split-section .checklist-card li::before {
    width: 24px;
    height: 24px;
}

.section-cta {
    grid-column: 1 / -1;
    display: grid;
    justify-items: center;
    gap: 18px;
    text-align: center;
}

.split-section .section-cta {
    margin-top: 4px;
    gap: 16px;
}

.split-section .section-cta p {
    margin: 0;
    color: var(--nh-ink);
    font-size: 16px;
    font-weight: 500;
}

.split-section .section-cta .pill-button {
    min-height: 36px;
    min-width: 138px;
    padding: 8px 20px;
    font-size: 15px;
}

.section-cta p {
    margin: 0;
}

.program-section .button-row {
    margin-top: 32px;
}

.feature-grid--higher-self {
    width: min(1180px, 100%);
    gap: 28px;
}

.feature-grid--higher-self .feature-card {
    display: grid;
    align-content: center;
    justify-items: center;
    min-height: 210px;
    padding: 34px 32px 30px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 26%, rgba(255, 244, 190, 0.34), transparent 26%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 250, 236, 0.82));
    box-shadow: 0 16px 30px rgba(97, 69, 14, 0.12);
}

.feature-grid--higher-self .feature-card::before {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
}

.feature-grid--higher-self .feature-card p {
    width: min(330px, 100%);
    font-family: Inter, "Helvetica Neue", Arial, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.28;
}

.activation-section {
    isolation: isolate;
    padding: 142px clamp(20px, 5.5vw, 80px) 150px;
    text-align: center;
    background: #4b3308;
}

.activation-section::before {
    z-index: 0;
    background:
        linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.82) 5%, rgba(255, 255, 255, 0) 19%, rgba(255, 255, 255, 0) 78%, rgba(255, 255, 255, 0.86) 96%, #fff 100%),
        radial-gradient(ellipse at 50% 10%, rgba(255, 255, 255, 0.28), transparent 34%),
        radial-gradient(ellipse at 26% 76%, rgba(218, 171, 51, 0.44), transparent 28%),
        radial-gradient(ellipse at 76% 42%, rgba(255, 255, 255, 0.24), transparent 31%),
        linear-gradient(135deg, rgba(98, 69, 14, 0.88), rgba(54, 35, 6, 0.94)),
        url("assets/homepage/fabric-clean.png") center 66% / cover no-repeat;
}

.activation-section::after {
    position: absolute;
    inset: 0;
    z-index: 0;
    content: "";
    pointer-events: none;
    background:
        url("assets/homepage/glitter-orbs.png") 5% 82% / 34% auto no-repeat,
        url("assets/homepage/fabric-clean.png") 96% 47% / 56% auto no-repeat;
    opacity: 0.32;
    mix-blend-mode: screen;
}

.section-heading--light h2,
.section-heading--light p,
.section-heading--light .eyebrow,
.section-dark {
    color: #fff;
}

.section-heading--light p {
    color: rgba(255, 255, 255, 0.86);
}

.feature-grid--dark .feature-card {
    color: #fff;
    background:
        linear-gradient(145deg, rgba(128, 94, 30, 0.56), rgba(45, 29, 5, 0.6)),
        radial-gradient(circle at 50% 20%, rgba(255, 231, 166, 0.18), transparent 30%),
        url("assets/homepage/rainbow-wash.png") center / cover no-repeat;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 8px 20px 36px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(3px);
}

.feature-grid--dark .feature-card p {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    text-shadow: 0 2px 14px rgba(30, 19, 2, 0.62);
}

.activation-section > .pill-button {
    position: relative;
    z-index: 1;
    margin-top: 44px;
}

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

.read-section .glass-card,
.program-section .glass-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(165, 118, 28, 0.24);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.62)),
        url("assets/homepage/rainbow-wash.png") center / cover no-repeat;
    box-shadow: 0 18px 34px rgba(97, 69, 14, 0.13);
}

.read-section .glass-card h3,
.read-section .glass-card li,
.program-section .glass-card h3,
.program-section .glass-card p,
.program-section .glass-card .pill-button {
    position: relative;
    z-index: 1;
}

.read-section .checklist-card li {
    color: #231d14;
    font-weight: 400;
}

.faq-section h2 {
    position: relative;
    z-index: 1;
    text-align: center;
}

.faq-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0;
    width: min(1100px, 100%);
    margin: 52px auto 0;
}

.faq-list details {
    border-bottom: 1px solid var(--nh-line);
    padding: 18px 0;
}

.faq-list summary {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 28px;
    gap: 12px;
    align-items: center;
    cursor: pointer;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    line-height: 1.35;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::before {
    width: 38px;
    height: 38px;
    margin: 0;
}

.faq-list summary::after {
    justify-self: end;
    content: "+";
    font-family: Inter, Arial, sans-serif;
    font-size: 24px;
    font-weight: 300;
}

.faq-list details[open] summary::after {
    content: "-";
}

.faq-list p {
    margin: 8px 56px 0;
    color: var(--nh-muted);
    font-weight: 300;
}

.final-cta {
    isolation: isolate;
    width: min(1332px, calc(100% - 40px));
    margin: 72px auto 80px;
    padding: clamp(54px, 7vw, 76px) 24px;
    border-radius: 41px;
    text-align: center;
}

.final-cta::before {
    z-index: 0;
}

.final-cta h2,
.final-cta p,
.final-cta .button-row {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    width: min(980px, 100%);
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

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

.final-cta .button-row {
    margin-top: 30px;
}

.site-footer {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 26px 20px 52px;
    color: var(--nh-muted);
    font-size: 15px;
    text-align: center;
}

.brand--footer {
    color: var(--nh-ink);
    gap: 14px;
    font-size: 28px;
}

.brand--footer .brand-mark {
    width: 84px;
    height: 84px;
}

.brand--footer .brand-name {
    font-size: 28px;
}

.site-footer p {
    margin: 0;
}

.admin-link,
.footer-policy-links {
    margin-top: 6px;
    font-size: 13px;
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 16px;
}

.footer-policy-links a {
    border-bottom: 1px solid transparent;
}

.footer-policy-links a:hover {
    border-color: currentColor;
}

@media (max-width: 1100px) {
    .site-header {
        flex-wrap: wrap;
        justify-content: center;
    }

    .primary-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
        justify-content: flex-start;
    }

    .split-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    body.nh-home {
        font-size: 16px;
    }

    .site-header {
        position: relative;
        padding: 14px 18px;
    }

    .primary-nav {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 78px 20px 68px;
    }

    h1 {
        font-size: clamp(42px, 12vw, 58px);
    }

    h2 {
        font-size: clamp(34px, 10vw, 48px);
    }

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

    .glass-card {
        padding: 30px 24px;
    }

    .split-section,
    .activation-section,
    .intro-section,
    .program-section,
    .read-section,
    .faq-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-list summary {
        grid-template-columns: 36px minmax(0, 1fr) 24px;
        font-size: 21px;
    }

    .faq-list p {
        margin-left: 48px;
        margin-right: 0;
    }
}

@media (max-width: 520px) {
    .site-header {
        justify-content: space-between;
    }

    .brand span {
        font-size: 16px;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .site-header .pill-button {
        min-height: 38px;
        padding: 8px 15px;
        font-size: 14px;
    }

    .button-row,
    .hero .button-row {
        align-items: stretch;
        width: 100%;
    }

    .button-row .pill-button {
        width: 100%;
        white-space: normal;
    }

    .orb-divider {
        grid-template-columns: 1fr 64px 1fr;
    }

    .orb-divider img {
        width: 64px;
        height: 64px;
    }

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

    .checklist-card li {
        grid-template-columns: 32px minmax(0, 1fr);
        align-items: start;
    }
}
