:root {
    --navy: #12304a;
    --navy-dark: #0a2236;
    --teal: #3c8d86;
    --teal-dark: #286d68;
    --coral: #e9784a;
    --gold: #b7832f;
    --cream: #f7f3ec;
    --cream-deep: #eee4d6;
    --ink: #173044;
    --muted: #5e6e76;
    --white: #ffffff;
    --line: #d8dedc;
    --shadow: 0 20px 60px rgba(18, 48, 74, 0.14);
    --shell: 1180px;
    --radius: 1.5rem;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Aptos, "Segoe UI", Arial, sans-serif;
    font-size: 1.0625rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
    text-wrap: balance;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.75rem);
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(2.35rem, 4vw, 4rem);
    letter-spacing: -0.035em;
}

h3 {
    font-size: 1.55rem;
}

p {
    text-wrap: pretty;
}

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 4px;
}

h1:focus {
    outline: none;
}

.shell {
    margin-inline: auto;
    max-width: var(--shell);
    padding-inline: 1.5rem;
    width: 100%;
}

.skip-link {
    background: var(--white);
    border: 2px solid var(--navy);
    border-radius: 0.5rem;
    color: var(--navy);
    font-weight: 800;
    left: 1rem;
    padding: 0.75rem 1rem;
    position: fixed;
    top: -6rem;
    z-index: 9999;
}

.skip-link:focus {
    top: 1rem;
}

.announcement-bar {
    background: var(--navy);
    color: #eef7f5;
    font-size: 0.89rem;
}

.announcement-inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 2.4rem;
}

.announcement-note {
    color: #b9ddd8;
    font-weight: 700;
}

.site-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(18, 48, 74, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-row {
    align-items: center;
    display: grid;
    gap: 1.75rem;
    grid-template-columns: minmax(270px, 1fr) auto auto;
    min-height: 5.8rem;
}

.brand {
    align-items: center;
    display: inline-flex;
    gap: 0.8rem;
    text-decoration: none;
    width: fit-content;
}

.brand-mark {
    align-items: center;
    background: var(--teal);
    border-radius: 50% 46% 50% 43%;
    color: var(--white);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.92rem;
    font-weight: 900;
    height: 2.85rem;
    justify-content: center;
    letter-spacing: -0.03em;
    transform: rotate(-4deg);
    width: 2.85rem;
}

.brand-mark::first-letter {
    transform: rotate(4deg);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-copy strong {
    color: var(--navy);
    font-size: 1.12rem;
    letter-spacing: -0.015em;
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.72rem;
    margin-top: 0.23rem;
}

.desktop-nav,
.desktop-actions {
    align-items: center;
    display: flex;
    gap: 1.25rem;
}

.desktop-nav a,
.text-link {
    color: var(--navy);
    font-size: 0.94rem;
    font-weight: 750;
    position: relative;
    text-decoration: none;
}

.desktop-nav a::after {
    background: var(--coral);
    bottom: -0.55rem;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 160ms ease;
    width: 100%;
}

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

.button {
    align-items: center;
    background: var(--coral);
    border: 2px solid var(--coral);
    border-radius: 999px;
    color: var(--navy-dark);
    cursor: pointer;
    display: inline-flex;
    font-size: 0.98rem;
    font-weight: 850;
    justify-content: center;
    line-height: 1.2;
    min-height: 3.2rem;
    padding: 0.85rem 1.35rem;
    text-align: center;
    text-decoration: none;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
    background: #f58c61;
    box-shadow: 0 10px 25px rgba(233, 120, 74, 0.25);
    transform: translateY(-2px);
}

.button-small {
    font-size: 0.9rem;
    min-height: 2.7rem;
    padding: 0.68rem 1.05rem;
}

.button-secondary {
    background: transparent;
    border-color: rgba(18, 48, 74, 0.35);
    color: var(--navy);
}

.button-secondary:hover {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

.button-light {
    background: var(--cream);
    border-color: var(--cream);
    color: var(--navy);
}

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

.button-disabled,
.button-disabled:hover {
    background: #d5d9d7;
    border-color: #d5d9d7;
    box-shadow: none;
    color: #5c6568;
    cursor: not-allowed;
    transform: none;
    width: 100%;
}

.mobile-menu {
    display: none;
    margin-left: auto;
    position: relative;
}

.mobile-menu summary {
    border: 2px solid var(--navy);
    border-radius: 999px;
    color: var(--navy);
    cursor: pointer;
    font-weight: 800;
    list-style: none;
    padding: 0.55rem 0.9rem;
}

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

.mobile-menu nav {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 1rem;
    box-shadow: var(--shadow);
    display: grid;
    gap: 0.25rem;
    padding: 0.75rem;
    position: absolute;
    right: 0;
    top: 3.4rem;
    width: min(78vw, 300px);
}

.mobile-menu nav > a:not(.button) {
    border-radius: 0.7rem;
    color: var(--navy);
    font-weight: 750;
    padding: 0.75rem;
    text-decoration: none;
}

.mobile-menu nav > a:not(.button):hover,
.mobile-menu nav > a.active:not(.button) {
    background: var(--cream);
}

.hero-section {
    background: linear-gradient(180deg, var(--cream) 0%, #fbf9f5 70%, var(--white) 100%);
    overflow: hidden;
    padding: clamp(4.5rem, 8vw, 7rem) 0 4rem;
    position: relative;
}

.hero-section::before {
    background: var(--teal);
    border-radius: 50%;
    content: "";
    filter: blur(1px);
    height: 24rem;
    opacity: 0.09;
    position: absolute;
    right: -10rem;
    top: -12rem;
    width: 24rem;
}

.hero-copy {
    margin-bottom: 3rem;
    position: relative;
    text-align: center;
}

.hero-copy h1 {
    margin: 0 auto 1.5rem;
    max-width: 1000px;
}

.hero-copy h1 span {
    color: var(--teal-dark);
    font-style: italic;
    font-weight: 500;
}

.eyebrow {
    color: var(--coral);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #f3c69c;
}

.hero-lead {
    color: #445d69;
    font-size: clamp(1.2rem, 2vw, 1.48rem);
    line-height: 1.5;
    margin: 0 auto 2rem;
    max-width: 740px;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.hero-reassurance {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 1.25rem 0 0;
}

.hero-reassurance span {
    color: var(--teal-dark);
    font-weight: 900;
}

.carousel {
    background: var(--white);
    border: 1px solid rgba(18, 48, 74, 0.1);
    border-radius: 1.8rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.carousel-frame {
    background: var(--cream-deep);
    position: relative;
}

.carousel-frame img {
    aspect-ratio: 2.5 / 1;
    object-fit: cover;
    width: 100%;
}

.carousel-caption {
    align-items: center;
    background: rgba(10, 34, 54, 0.93);
    bottom: 1.25rem;
    color: var(--white);
    display: grid;
    gap: 0.25rem 1rem;
    grid-template-columns: auto 1fr;
    left: 1.25rem;
    max-width: 560px;
    padding: 0.95rem 1.1rem;
    position: absolute;
}

.carousel-caption span {
    color: #b9ddd8;
    font-size: 0.74rem;
    font-weight: 850;
    grid-row: 1 / 3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.carousel-caption strong {
    font-size: 1.1rem;
}

.carousel-caption p {
    color: #dce8e8;
    font-size: 0.86rem;
    line-height: 1.4;
    margin: 0;
}

.carousel-controls {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 0.85rem 1rem;
}

.carousel-arrow {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 50%;
    color: var(--navy);
    cursor: pointer;
    display: inline-flex;
    font-size: 1.5rem;
    height: 2.7rem;
    justify-content: center;
    width: 2.7rem;
}

.carousel-arrow:hover {
    background: var(--cream);
}

.carousel-dots {
    align-items: center;
    display: flex;
    gap: 0.65rem;
    margin: 0 1rem;
}

.carousel-dot {
    background: #aeb9b8;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 0.65rem;
    padding: 0;
    transition: background 160ms ease, width 160ms ease;
    width: 0.65rem;
}

.carousel-dot.is-active {
    background: var(--coral);
    width: 2.1rem;
}

.section {
    padding-block: clamp(4.5rem, 8vw, 7rem);
}

.warm-section {
    background: var(--cream);
}

.intro-grid,
.split-content,
.membership-grid,
.founder-story {
    align-items: start;
    display: grid;
    gap: clamp(2rem, 7vw, 7rem);
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.intro-grid h2,
.split-content h2,
.membership-grid h2,
.founder-story h2 {
    margin-bottom: 0;
}

.large-copy {
    color: #37515e;
    font-size: 1.22rem;
    line-height: 1.7;
}

.large-copy p:last-child {
    margin-bottom: 0;
}

.section-heading {
    align-items: end;
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.35fr 0.65fr;
    margin-bottom: 3rem;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading > p {
    color: var(--muted);
    margin-bottom: 0.35rem;
}

.feature-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    min-height: 400px;
    overflow: hidden;
    padding: 2rem;
    position: relative;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-card::before {
    background: var(--teal);
    border-radius: 50%;
    content: "";
    height: 12rem;
    opacity: 0.1;
    position: absolute;
    right: -5rem;
    top: -5rem;
    width: 12rem;
}

.feature-card:hover {
    border-color: var(--teal);
    box-shadow: var(--shadow);
    transform: translateY(-6px);
}

.feature-events::before {
    background: var(--coral);
}

.feature-education::before {
    background: var(--gold);
}

.feature-number {
    color: #829298;
    float: right;
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.feature-icon {
    align-items: center;
    background: var(--teal);
    border-radius: 44% 56% 52% 48%;
    color: var(--white);
    display: flex;
    font-family: Georgia, serif;
    font-size: 1.55rem;
    font-weight: 800;
    height: 4rem;
    justify-content: center;
    margin: 1rem 0 2.2rem;
    width: 4rem;
}

.feature-events .feature-icon {
    background: var(--coral);
}

.feature-education .feature-icon {
    background: var(--gold);
}

.feature-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--muted);
}

.card-link,
.text-arrow {
    color: var(--navy);
    display: inline-block;
    font-weight: 850;
    margin-top: 1.25rem;
    text-decoration: none;
}

.navy-section {
    background: var(--navy);
    color: #dce8e8;
}

.navy-section h2,
.navy-section h3 {
    color: var(--white);
}

.section-heading-light > p {
    color: #bed0d3;
}

.week-grid {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.week-grid article {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    padding: 2rem 1.4rem;
}

.week-grid article:last-child {
    border-right: 0;
}

.week-grid span {
    color: #f3c69c;
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.week-grid h3 {
    font-size: 1.25rem;
    line-height: 1.22;
}

.week-grid p {
    color: #b9c9cc;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 0;
}

.founder-section {
    overflow: hidden;
}

.founder-grid {
    align-items: center;
    display: grid;
    gap: clamp(2.5rem, 7vw, 7rem);
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.founder-image-wrap {
    position: relative;
}

.founder-image-wrap::before {
    background: var(--gold);
    border-radius: 49% 51% 42% 58%;
    content: "";
    inset: 8% -8% -6% 6%;
    opacity: 0.15;
    position: absolute;
    transform: rotate(4deg);
}

.founder-image-wrap img {
    border-radius: 48% 52% 46% 54%;
    box-shadow: var(--shadow);
    position: relative;
}

.founder-label {
    background: var(--navy);
    bottom: 1rem;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    padding: 0.65rem 0.9rem;
    position: absolute;
    right: -1rem;
    text-transform: uppercase;
}

.founder-grid h2 {
    font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.membership-section {
    background: #f1f7f6;
}

.membership-steps {
    list-style: none;
    margin: 0;
    padding: 0;
}

.membership-steps li {
    align-items: start;
    border-bottom: 1px solid #cbdcda;
    display: grid;
    gap: 1.25rem;
    grid-template-columns: auto 1fr;
    padding: 1.5rem 0;
}

.membership-steps li:first-child {
    padding-top: 0;
}

.membership-steps li > span,
.horizontal-steps li > span {
    align-items: center;
    background: var(--teal);
    border-radius: 50%;
    color: var(--white);
    display: inline-flex;
    font-weight: 900;
    height: 2.35rem;
    justify-content: center;
    width: 2.35rem;
}

.membership-steps h3 {
    font-family: Aptos, "Segoe UI", sans-serif;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.membership-steps p {
    color: var(--muted);
    margin-bottom: 0;
}

.final-cta-section {
    background: var(--coral);
    color: var(--navy-dark);
}

.final-cta {
    align-items: center;
    display: flex;
    gap: 3rem;
    justify-content: space-between;
}

.final-cta h2 {
    color: var(--navy-dark);
    margin-bottom: 1rem;
}

.final-cta p:last-child {
    font-size: 1.15rem;
    margin-bottom: 0;
    max-width: 690px;
}

.page-hero {
    color: var(--white);
    padding-block: clamp(5rem, 9vw, 8rem);
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(3rem, 5.8vw, 5.4rem);
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 680px;
}

.page-hero-teal {
    background: var(--teal-dark);
}

.page-hero-coral {
    background: #a9482f;
}

.page-hero-gold {
    background: #e8c777;
    color: var(--navy-dark);
}

.page-hero-gold h1 {
    color: var(--navy-dark);
}

.page-hero-navy {
    background: var(--navy);
}

.page-hero-grid {
    align-items: end;
    display: grid;
    gap: clamp(2.5rem, 8vw, 8rem);
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.page-hero-note {
    background: rgba(255, 255, 255, 0.12);
    border-left: 4px solid #f3c69c;
    padding: 1.5rem;
}

.page-hero-note > span {
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.page-hero-note strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.55rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
}

.page-hero-note p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 0;
}

.page-hero-note-light {
    background: rgba(255, 255, 255, 0.4);
    border-color: var(--coral);
}

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

.topic-grid article,
.values-grid article,
.learning-grid article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
}

.topic-grid article {
    background: #fbfcfb;
}

.topic-tag,
.learning-kicker {
    color: var(--teal-dark);
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.topic-grid h3,
.learning-grid h3,
.values-grid h3 {
    font-size: 1.75rem;
}

.topic-grid p,
.learning-grid p,
.values-grid p {
    color: var(--muted);
}

.topic-grid small,
.event-card small {
    color: var(--coral);
    font-weight: 800;
}

.check-list p {
    border-bottom: 1px solid #d9cec0;
    margin: 0;
    padding: 1.2rem 0;
}

.check-list span {
    color: var(--teal-dark);
    font-weight: 900;
    margin-right: 0.7rem;
}

.compact-cta-section {
    padding-block: 4rem;
}

.compact-cta {
    align-items: center;
    background: #e7f1ef;
    border-radius: var(--radius);
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    padding: clamp(2rem, 5vw, 3.5rem);
}

.compact-cta h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    margin-bottom: 0.5rem;
}

.compact-cta p {
    margin-bottom: 0;
}

.event-grid {
    display: grid;
    gap: 1.25rem;
}

.event-card {
    align-items: start;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    display: grid;
    gap: 2rem;
    grid-template-columns: 150px 1fr;
    padding: 1.75rem;
}

.event-date {
    background: var(--navy);
    border-radius: 1rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    min-height: 120px;
    padding: 1.2rem;
}

.event-date span {
    color: #b9ddd8;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.event-date strong {
    font-family: Georgia, serif;
    font-size: 1.55rem;
    margin-top: auto;
}

.event-card h3 {
    font-size: 1.9rem;
    margin-bottom: 0.65rem;
}

.event-card p {
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.horizontal-steps {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    margin: 0;
    padding: 0;
}

.horizontal-steps li {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
}

.horizontal-steps h3 {
    margin: 1.5rem 0 0.6rem;
}

.horizontal-steps p {
    color: var(--muted);
    margin-bottom: 0;
}

.learning-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, 1fr);
}

.learning-grid article {
    background: #fbfcfb;
}

.learning-grid ul {
    color: var(--ink);
    margin: 1.5rem 0 0;
    padding-left: 1.2rem;
}

.learning-grid li {
    margin-bottom: 0.4rem;
}

.split-content-light {
    align-items: center;
}

.format-list {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    padding-left: 2rem;
}

.format-list p {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin: 0;
    padding: 1rem 0;
}

.about-hero-grid {
    align-items: center;
    display: grid;
    gap: clamp(2rem, 8vw, 8rem);
    grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
}

.about-hero-grid img {
    border: 8px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.values-grid article span {
    color: var(--coral);
    display: block;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.account-section {
    background: linear-gradient(135deg, var(--cream), #eef6f4);
    min-height: 70vh;
    padding-block: clamp(4rem, 8vw, 7rem);
}

.account-grid {
    align-items: center;
    display: grid;
    gap: clamp(2.5rem, 8vw, 7rem);
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.account-copy h1 {
    font-size: clamp(3rem, 5.5vw, 5rem);
}

.account-copy > p {
    color: var(--muted);
    font-size: 1.2rem;
}

.benefit-list {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
}

.benefit-list li {
    border-bottom: 1px solid #cbd8d5;
    font-weight: 750;
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
}

.benefit-list li::before {
    color: var(--teal-dark);
    content: "✓";
    font-weight: 900;
    left: 0;
    position: absolute;
}

.account-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: clamp(2rem, 5vw, 3rem);
}

.account-card h2,
.account-card h1 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.account-card h3 {
    font-family: Aptos, "Segoe UI", sans-serif;
    font-size: 1.05rem;
    margin-top: 1.5rem;
}

.account-card p,
.account-card ol {
    color: var(--muted);
}

.account-card ol {
    margin-bottom: 1.75rem;
    padding-left: 1.2rem;
}

.account-card hr {
    border: 0;
    border-top: 1px solid var(--line);
    margin: 1.5rem 0;
}

.status-pill {
    background: #e7f1ef;
    border-radius: 999px;
    color: var(--teal-dark);
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
    padding: 0.4rem 0.7rem;
    text-transform: uppercase;
}

.price {
    align-items: baseline;
    color: var(--navy);
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.price strong {
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 1;
}

.price span {
    color: var(--muted);
    font-weight: 750;
}

.fine-print {
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 1rem 0 0;
    text-align: center;
}

.sign-in-wrap {
    display: flex;
    justify-content: center;
}

.sign-in-card {
    max-width: 520px;
    width: 100%;
}

.preview-fields {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.preview-fields span {
    border: 1px solid var(--line);
    border-radius: 0.7rem;
    color: #899395;
    padding: 0.9rem 1rem;
}

.site-footer {
    background: var(--navy-dark);
    color: #c7d5d8;
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1.5fr 0.65fr 0.65fr 1fr;
}

.footer-brand {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
}

.brand-mark-footer {
    background: var(--coral);
    color: var(--navy-dark);
}

.footer-brand strong {
    color: var(--white);
    font-size: 1.1rem;
}

.footer-brand p {
    font-size: 0.85rem;
    margin: 0.35rem 0 0;
}

.site-footer h2 {
    color: var(--white);
    font-family: Aptos, "Segoe UI", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.11em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.site-footer a {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    text-decoration: none;
}

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

.footer-note p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    font-size: 0.74rem;
    gap: 2rem;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 1.5rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 2px solid #26b050;
}

.invalid {
    outline: 2px solid #b32121;
}

.validation-message {
    color: #b32121;
}

.blazor-error-boundary {
    background: #b32121;
    color: white;
    padding: 1rem;
}

@media (max-width: 1050px) {
    .nav-row {
        grid-template-columns: 1fr auto;
    }

    .desktop-nav,
    .desktop-actions {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

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

    .week-grid article:nth-child(3) {
        border-right: 0;
    }

    .week-grid article:nth-child(-n + 3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .week-grid article:nth-child(5) {
        border-right: 0;
    }

    .footer-grid {
        grid-template-columns: 1.4fr repeat(2, 0.7fr);
    }

    .footer-note {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    body {
        font-size: 1rem;
    }

    .announcement-note {
        display: none;
    }

    .hero-section {
        padding-top: 4rem;
    }

    .carousel-caption {
        bottom: 0;
        left: 0;
        max-width: none;
        position: relative;
    }

    .intro-grid,
    .split-content,
    .membership-grid,
    .founder-story,
    .founder-grid,
    .section-heading,
    .page-hero-grid,
    .about-hero-grid,
    .account-grid {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: start;
        gap: 1rem;
    }

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

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

    .founder-image-wrap {
        margin-inline: auto;
        max-width: 420px;
    }

    .final-cta,
    .compact-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .horizontal-steps {
        grid-template-columns: 1fr;
    }

    .about-hero-grid img {
        margin-inline: auto;
        max-width: 340px;
        order: -1;
    }

    .account-grid {
        align-items: start;
    }
}

@media (max-width: 620px) {
    .shell {
        padding-inline: 1.1rem;
    }

    .announcement-inner {
        justify-content: center;
        text-align: center;
    }

    .brand-copy small {
        display: none;
    }

    .nav-row {
        min-height: 4.8rem;
    }

    .hero-copy h1 br,
    .final-cta h2 br {
        display: none;
    }

    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .button {
        width: 100%;
    }

    .carousel {
        border-radius: 1rem;
    }

    .carousel-frame img {
        aspect-ratio: 16 / 8;
    }

    .carousel-caption {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .carousel-caption span {
        grid-row: auto;
    }

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

    .week-grid article,
    .week-grid article:nth-child(3),
    .week-grid article:nth-child(5) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        border-right: 0;
    }

    .topic-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

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

    .event-date {
        min-height: 100px;
    }

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

    .account-card {
        padding: 1.5rem;
    }

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

    .footer-brand,
    .footer-note {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
