:root {
    --bg-color: #F8F5F0;
    --text-color: #1A1A1A;
    --muted-color: #7D756D;
    --border-color: #E2DBD2;
    --burgundy-accent: #4A2B30;
    --surface-color: #EFEBE4;
    --white: #FFFFFF;

    --font-serif: 'Instrument Serif', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 4.5rem;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

/* Typography Styles */
h1, h2, h3, h4, .serif-heading {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.015em;
}

.eyebrow {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--muted-color);
    font-weight: 500;
}

/* Header / Navigation */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2.5rem 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.6s var(--transition-smooth);
    background: transparent;
    color: var(--white);
}

#site-header.scrolled {
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 1.5rem 5rem;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: rgba(248, 245, 240, 0.94);
}

.brand-logo {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    text-decoration: none;
    color: inherit;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    line-height: 1;
    position: relative;
    z-index: 1002;
}

.brand-logo span {
    font-family: var(--font-sans);
    font-size: 0.45rem;
    letter-spacing: 0.3em;
    color: inherit;
    opacity: 0.65;
    margin-top: 4px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-decoration: none;
    color: inherit;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-apply-btn {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 0.85rem 2rem;
    border: 1px solid currentColor;
    border-radius: 0px;
    text-decoration: none;
    color: inherit;
    background: transparent;
    transition: all 0.4s var(--transition-smooth);
}

#site-header.scrolled .nav-apply-btn {
    border-color: var(--text-color);
}

.nav-apply-btn:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

#site-header.scrolled .nav-apply-btn:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: inherit;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

/* Mobile Overlay Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    color: var(--text-color);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--transition-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mobile-menu-links a {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.mobile-menu-links a:hover {
    opacity: 0.6;
}

.mobile-menu-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: flex-end;
    padding: 0 5rem 7rem 5rem;
    color: var(--white);
    background-color: #2a2522;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.85) contrast(1.05) saturate(1.1);
    transform: scale(1.02);
    transition: transform 12s var(--transition-smooth);
}

@media (min-width: 1025px) {
    .hero-bg {
        background-size: cover;
        background-position: center 40%;
    }
}

.hero:hover .hero-bg {
    transform: scale(1.0);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20,18,16,0.1) 0%, rgba(20,18,16,0.25) 50%, rgba(20,18,16,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    display: block;
}

.hero h1 {
    font-size: clamp(4rem, 7.5vw, 8.5rem);
    line-height: 0.95;
    margin-bottom: 2rem;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 span {
    display: block;
    white-space: nowrap;
}

.hero p {
    font-family: var(--font-sans);
    font-size: clamp(1.05rem, 1.3vw, 1.3rem);
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 520px;
    letter-spacing: 0.02em;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
}

.hero-actions .btn-primary {
    white-space: nowrap;
}

.btn-primary {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    padding: 1.35rem 3rem;
    background-color: var(--white);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    border: 1px solid var(--white);
    transition: all 0.4s var(--transition-smooth);
    text-align: center;
    line-height: 1.55;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

.hero-subnote {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    opacity: 0.75;
    text-transform: uppercase;
}

/* Section Commons */
section {
    padding: 14rem 5rem;
    border-bottom: 1px solid var(--border-color);
}

/* Problem Section */
.problem-section {
    background-color: var(--bg-color);
    padding: 16rem 5rem;
    text-align: center;
}

.problem-container {
    max-width: 1000px;
    margin: 0 auto;
}

.problem-section h2 {
    font-size: clamp(3rem, 6vw, 6.5rem);
    line-height: 1.05;
    margin-bottom: 5rem;
    font-weight: 400;
}

.problem-sequence {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.problem-step {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.5vw, 3.8rem);
    color: var(--muted-color);
    font-style: italic;
    font-weight: 400;
}

.problem-sequence span:not(:last-child)::after {
    content: "·";
    margin-left: 2.5rem;
    color: var(--border-color);
    font-style: normal;
}

.problem-paragraph {
    font-family: var(--font-sans);
    font-size: clamp(1.15rem, 1.5vw, 1.45rem);
    color: var(--muted-color);
    font-weight: 300;
    line-height: 1.9;
    max-width: 650px;
    margin: 0 auto;
}

/* Philosophy Section */
.philosophy-section {
    background-color: var(--surface-color);
    text-align: center;
    padding: 18rem 5rem;
}

.philosophy-container {
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-section .eyebrow {
    margin-bottom: 2.5rem;
}

.philosophy-headline {
    font-size: clamp(2.5rem, 4.5vw, 4.8rem);
    margin-bottom: 5rem;
    font-weight: 400;
    line-height: 1.15;
}

.philosophy-statement {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 7.5vw, 8.5rem);
    line-height: 0.98;
    font-weight: 400;
    color: var(--text-color);
}

.philosophy-statement span {
    display: block;
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--burgundy-accent);
}

/* Four Principles Section */
.principles-section {
    background-color: var(--bg-color);
    padding: 16rem 5rem;
}

.principles-container {
    max-width: 1200px;
    margin: 0 auto;
}

.principles-header {
    margin-bottom: 8rem;
    text-align: center;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.principle-row {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 6rem;
    align-items: baseline;
    border-top: 1px solid var(--border-color);
    padding-top: 4rem;
}

@media(max-width: 900px) {
    .principle-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.principle-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 4.2rem);
    font-weight: 400;
    line-height: 1;
}

.principle-desc {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 1.3vw, 1.35rem);
    line-height: 1.8;
    color: var(--muted-color);
    font-weight: 300;
    max-width: 580px;
}

/* Signature Image Section */
.signature-image-section {
    position: relative;
    height: 90vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 3rem;
    background-color: #222;
    overflow: hidden;
    border-bottom: none;
}

.signature-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/signature.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.65) contrast(1.1) saturate(1.15);
}

@media (min-width: 1025px) {
    .signature-bg {
        background-size: cover;
        background-position: center center;
    }
}

.signature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15,13,11,0.3);
}

.signature-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 1000px;
}

.signature-content h2 {
    font-size: clamp(3.2rem, 6.5vw, 7.5rem);
    font-weight: 400;
    line-height: 1.05;
}

.signature-content h2 span {
    display: block;
    font-style: italic;
    margin-top: 1rem;
}

/* How It Works - The Process */
.how-section {
    background-color: var(--bg-color);
    padding: 16rem 5rem 8rem;
}

.how-container {
    max-width: 1100px;
    margin: 0 auto;
}

.how-header {
    max-width: 820px;
    margin-bottom: 8rem;
}

.how-header .eyebrow {
    display: block;
    margin-bottom: 2rem;
}

.how-header h2 {
    font-size: clamp(3rem, 5.5vw, 6rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 2rem;
}

.how-lede {
    font-size: clamp(1.15rem, 1.5vw, 1.4rem);
    color: var(--muted-color);
    font-weight: 300;
    line-height: 1.8;
    max-width: 560px;
}

.process-editorial {
    display: flex;
    flex-direction: column;
}

.process-step {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 4rem;
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    align-items: start;
}

.process-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.process-index {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-top: 0.35rem;
    align-self: start;
}

.process-num {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    letter-spacing: 0.18em;
    color: var(--muted-color);
    font-weight: 400;
}

.process-rule {
    width: 1px;
    flex: 1;
    min-height: 3rem;
    background: linear-gradient(180deg, var(--border-color), transparent);
}

.process-step:last-child .process-rule {
    display: none;
}

.process-title {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.process-copy {
    max-width: 640px;
}

.process-copy p {
    font-size: clamp(1.05rem, 1.25vw, 1.25rem);
    color: var(--muted-color);
    font-weight: 300;
    line-height: 1.85;
}

.process-copy p + p {
    margin-top: 1rem;
}

.process-lead {
    color: var(--text-color) !important;
    font-size: clamp(1.2rem, 1.5vw, 1.45rem) !important;
    font-weight: 400 !important;
}

.process-note {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.25rem !important;
    color: var(--burgundy-accent) !important;
    margin-top: 2rem !important;
    line-height: 1.6 !important;
}

.process-emphasis {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2vw, 1.85rem) !important;
    color: var(--text-color) !important;
    font-weight: 400 !important;
    margin-top: 2rem !important;
    line-height: 1.35 !important;
}

.process-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    align-items: start;
}

.process-split-item {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-width: 0;
}

.process-split-label {
    font-family: var(--font-sans);
    font-size: 0.7rem !important;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted-color) !important;
    font-weight: 500 !important;
}

.process-split-value {
    font-size: 1.05rem !important;
    color: var(--text-color) !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
}

.matters-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 1.75rem 0 0;
    max-width: 480px;
    border-top: 1px solid var(--border-color);
}

.matters-list li {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.matters-list li:nth-child(odd) {
    padding-right: 1.5rem;
}

.matters-list li:nth-child(even) {
    padding-left: 1.5rem;
    border-left: 1px solid var(--border-color);
}

.reject-list {
    list-style: none;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.reject-list li {
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 400;
    padding-left: 1.5rem;
    position: relative;
}

.reject-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--muted-color);
}

/* Process chat screens (intro + feedback) - screen only */
.chat-screen {
    margin: 3rem 0 0;
    max-width: 360px;
    border-radius: 22px;
    overflow: hidden;
    background:
        radial-gradient(120% 80% at 50% 0%, #2a2622 0%, #141210 55%, #0e0c0b 100%);
    color: #F0ECE4;
    font-family: var(--font-sans);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.chat-screen .phone-chat-header {
    padding-top: 14px;
}

.chat-screen-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 14px 12px 18px;
}

.intro-bubble {
    max-width: 92%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 12px 12px 20px;
}

.intro-brand-chip {
    font-family: var(--font-sans);
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b7a79a;
    font-weight: 500;
}

.intro-bubble .intro-headline {
    font-family: var(--font-sans);
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.4;
    color: #F5F1EA;
    display: block;
}

.intro-bubble .intro-meta {
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    text-transform: none;
    color: #9E958D;
    margin: 0;
}

.intro-photos {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    width: 100%;
    margin: 0.15rem 0 0.2rem;
    border-radius: 10px;
    overflow: hidden;
    background: #1a1714;
}

.intro-photos img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 0;
}

.intro-photos img:first-child {
    grid-row: 1 / 3;
    aspect-ratio: 3 / 4;
    min-height: 168px;
}

.intro-photos img:not(:first-child) {
    aspect-ratio: 1;
    min-height: 82px;
}

.intro-bubble .intro-body {
    font-size: 0.78rem;
    font-weight: 300;
    line-height: 1.5;
    color: #D8D0C6;
    margin: 0;
}

.intro-bubble .intro-ask {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: 0.78rem;
    font-weight: 500;
    color: #F5F1EA;
    margin: 0.15rem 0 0;
}

.intro-replies {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 92%;
    align-self: flex-start;
}

.intro-reply {
    display: block;
    text-align: center;
    padding: 0.7rem 0.9rem;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, #2f2b28, #262320);
    color: #E8E0D6;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.intro-reply--yes {
    color: #d4e8d8;
    border-color: rgba(143, 191, 154, 0.28);
}

.intro-reply--no {
    color: #b8b0a6;
}

@media (max-width: 900px) {
    .process-step {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 3.5rem 0;
    }

    .process-index {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .process-rule {
        width: auto;
        flex: 1;
        min-height: 1px;
        height: 1px;
        background: var(--border-color);
    }

    .process-split {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

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

    .matters-list li:nth-child(odd),
    .matters-list li:nth-child(even) {
        padding-left: 0;
        padding-right: 0;
        border-left: none;
    }
}

.text-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: gap 0.3s ease;
}

.text-link:hover {
    gap: 1.5rem;
}

/* WhatsApp / Telegram Experience */
.chat-section {
    background-color: var(--surface-color);
    padding: 10rem 5rem 16rem;
}

.chat-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}

@media(max-width: 992px) {
    .chat-container {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
}

.chat-info h2 {
    font-size: clamp(3rem, 5vw, 5.2rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.chat-info p {
    font-size: 1.2rem;
    color: var(--muted-color);
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.chat-caption {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--burgundy-accent);
}

/* Smartphone Mockup */
.phone-stage {
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.phone-mockup {
    position: relative;
    width: min(100%, 320px);
    aspect-ratio: 9 / 19.2;
    border-radius: 48px;
    background:
        linear-gradient(145deg, #3a3734 0%, #1c1a18 42%, #2a2724 100%);
    padding: 11px;
    box-shadow:
        0 2px 0 rgba(255, 255, 255, 0.08) inset,
        0 -2px 0 rgba(0, 0, 0, 0.35) inset,
        0 28px 50px rgba(0, 0, 0, 0.18),
        0 60px 100px rgba(0, 0, 0, 0.12),
        0 8px 16px rgba(0, 0, 0, 0.08);
    transform: rotateY(-6deg) rotateX(2deg);
    transition: transform 0.8s var(--transition-smooth);
}

.phone-stage:hover .phone-mockup {
    transform: rotateY(0deg) rotateX(0deg);
}

.phone-bezel {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 38px;
    background: #0b0a09;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 0 0 1px rgba(0, 0, 0, 0.6);
}

.phone-bezel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 255, 255, 0) 28%,
        rgba(255, 255, 255, 0) 72%,
        rgba(255, 255, 255, 0.05) 100%
    );
    pointer-events: none;
    z-index: 5;
    mix-blend-mode: soft-light;
}

.phone-btn {
    position: absolute;
    background: linear-gradient(90deg, #2f2c29, #1a1816);
    border-radius: 2px;
    box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.08);
}

.phone-btn-silent {
    left: -2.5px;
    top: 110px;
    width: 3px;
    height: 28px;
    border-radius: 2px 0 0 2px;
}

.phone-btn-vol-up {
    left: -2.5px;
    top: 160px;
    width: 3px;
    height: 52px;
    border-radius: 2px 0 0 2px;
}

.phone-btn-vol-down {
    left: -2.5px;
    top: 222px;
    width: 3px;
    height: 52px;
    border-radius: 2px 0 0 2px;
}

.phone-btn-power {
    right: -2.5px;
    top: 180px;
    width: 3px;
    height: 78px;
    border-radius: 0 2px 2px 0;
    background: linear-gradient(90deg, #1a1816, #2f2c29);
}

.phone-screen {
    position: relative;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(120% 80% at 50% 0%, #2a2622 0%, #141210 55%, #0e0c0b 100%);
    color: #F0ECE4;
    font-family: var(--font-sans);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.phone-status-bar {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 18px 8px;
    z-index: 3;
}

.phone-time {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #f5f1ea;
}

.phone-island {
    width: 82px;
    height: 22px;
    background: #000;
    border-radius: 20px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    position: relative;
}

.phone-island::after {
    content: "";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #1d3a55, #061018 70%);
    box-shadow: 0 0 0 1.5px #000;
}

.phone-status-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    color: #f5f1ea;
}

.phone-status-icons svg {
    fill: currentColor;
    display: block;
}

.phone-icon-signal {
    width: 15px;
    height: 10px;
}

.phone-icon-wifi {
    width: 14px;
    height: 10px;
}

.phone-battery {
    width: 22px;
    height: 10px;
    border: 1.2px solid rgba(245, 241, 234, 0.85);
    border-radius: 2.5px;
    position: relative;
    padding: 1.5px;
    margin-left: 1px;
}

.phone-battery::after {
    content: "";
    position: absolute;
    right: -3px;
    top: 2.5px;
    width: 1.5px;
    height: 4px;
    background: rgba(245, 241, 234, 0.85);
    border-radius: 0 1px 1px 0;
}

.phone-battery span {
    display: block;
    width: 78%;
    height: 100%;
    background: #f5f1ea;
    border-radius: 1px;
}

.phone-chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.phone-back {
    color: #cfc6bc;
    display: flex;
    align-items: center;
    opacity: 0.85;
}

.phone-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background:
        linear-gradient(145deg, #5a4038, #2f1f22);
    color: #f0e8df;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-chat-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.2;
}

.phone-chat-name {
    font-size: 0.78rem;
    font-weight: 500;
    color: #f5f1ea;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.phone-chat-status {
    font-size: 0.62rem;
    color: #8fbf9a;
    margin-top: 2px;
}

.phone-chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 12px 10px;
    overflow: hidden;
}

.chat-day {
    align-self: center;
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8a827a;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 4px;
}

.chat-bubble {
    position: relative;
    max-width: 86%;
    padding: 10px 12px 18px;
    border-radius: 18px;
    line-height: 1.45;
    font-size: 0.78rem;
    font-weight: 400;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.chat-bubble time {
    position: absolute;
    right: 10px;
    bottom: 5px;
    font-size: 0.55rem;
    opacity: 0.55;
    letter-spacing: 0.02em;
}

.chat-bubble.system {
    background: linear-gradient(180deg, #2f2b28, #262320);
    color: #F0ECE4;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.chat-bubble.user {
    background: linear-gradient(180deg, #5a5048, #463f39);
    color: #FFFFFF;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.chat-bubble.user time {
    opacity: 0.65;
}

.voice-bubble {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    background: linear-gradient(180deg, #2f2b28, #262320);
    padding: 10px 12px;
    border-radius: 18px;
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    width: 84%;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}

.voice-bubble.user {
    align-self: flex-end;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 5px;
    background: linear-gradient(180deg, #5a5048, #463f39);
}

.voice-bubble.user .voice-play {
    background: #F0ECE4;
    color: #463f39;
}

.voice-bubble.user .voice-waves i {
    background: #D8D0C6;
}

.voice-bubble.user .voice-duration {
    color: #E8E0D6;
}

.voice-bubble.user .voice-meta time {
    color: rgba(232, 224, 214, 0.65);
}

.voice-play {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #F0ECE4;
    color: #171513;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    padding-left: 2px;
    cursor: default;
    flex-shrink: 0;
}

.voice-waves {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 22px;
    min-width: 0;
}

.voice-waves i {
    display: block;
    width: 2px;
    border-radius: 2px;
    background: #9E958D;
    opacity: 0.85;
    transform-origin: center;
    animation: voicePulse 1.6s ease-in-out infinite;
}

.voice-waves i:nth-child(1) { height: 6px; animation-delay: 0.05s; }
.voice-waves i:nth-child(2) { height: 10px; animation-delay: 0.1s; }
.voice-waves i:nth-child(3) { height: 14px; animation-delay: 0.15s; }
.voice-waves i:nth-child(4) { height: 8px; animation-delay: 0.2s; }
.voice-waves i:nth-child(5) { height: 16px; animation-delay: 0.25s; }
.voice-waves i:nth-child(6) { height: 11px; animation-delay: 0.3s; }
.voice-waves i:nth-child(7) { height: 18px; animation-delay: 0.35s; }
.voice-waves i:nth-child(8) { height: 9px; animation-delay: 0.4s; }
.voice-waves i:nth-child(9) { height: 13px; animation-delay: 0.45s; }
.voice-waves i:nth-child(10) { height: 7px; animation-delay: 0.5s; }
.voice-waves i:nth-child(11) { height: 15px; animation-delay: 0.55s; }
.voice-waves i:nth-child(12) { height: 10px; animation-delay: 0.6s; }
.voice-waves i:nth-child(13) { height: 17px; animation-delay: 0.65s; }
.voice-waves i:nth-child(14) { height: 8px; animation-delay: 0.7s; }
.voice-waves i:nth-child(15) { height: 12px; animation-delay: 0.75s; }
.voice-waves i:nth-child(16) { height: 16px; animation-delay: 0.8s; }
.voice-waves i:nth-child(17) { height: 9px; animation-delay: 0.85s; }
.voice-waves i:nth-child(18) { height: 14px; animation-delay: 0.9s; }
.voice-waves i:nth-child(19) { height: 7px; animation-delay: 0.95s; }
.voice-waves i:nth-child(20) { height: 11px; animation-delay: 1s; }
.voice-waves i:nth-child(21) { height: 15px; animation-delay: 1.05s; }
.voice-waves i:nth-child(22) { height: 8px; animation-delay: 1.1s; }

@keyframes voicePulse {
    0%, 100% { opacity: 0.45; transform: scaleY(0.75); }
    50% { opacity: 1; transform: scaleY(1); }
}

.voice-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.voice-duration {
    font-size: 0.62rem;
    color: #c8bfb5;
}

.voice-meta time {
    font-size: 0.55rem;
    color: #8a827a;
}

.phone-composer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px 6px;
    margin-top: auto;
}

.phone-composer-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 9px 14px;
    font-size: 0.72rem;
    color: #7d756d;
}

.phone-composer-send {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4A2B30;
    color: #f5f1ea;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-home-bar {
    width: 108px;
    height: 4px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    margin: 6px auto 10px;
}

@media (max-width: 992px) {
    .phone-mockup {
        transform: none;
        width: min(100%, 300px);
    }

    .phone-stage:hover .phone-mockup {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .voice-waves i {
        animation: none;
    }

    .phone-mockup,
    .phone-stage:hover .phone-mockup {
        transition: none;
        transform: none;
    }
}

/* Human + Technology Section */
.tech-human-section {
    background-color: var(--bg-color);
    padding: 16rem 5rem;
    text-align: center;
}

.tech-human-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tech-human-section h2 {
    font-size: clamp(3rem, 5.5vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 3rem;
}

.tech-human-section p {
    font-size: 1.25rem;
    color: var(--muted-color);
    font-weight: 300;
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 8rem auto;
}

.editorial-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 3rem);
    flex-wrap: nowrap;
    padding-top: 4rem;
    border-top: 1px solid var(--border-color);
}

.flow-step-name {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 1.8vw, 2rem);
    font-weight: 400;
    color: var(--text-color);
    white-space: nowrap;
}

.flow-separator {
    color: var(--muted-color);
    font-size: 1.2rem;
    font-weight: 300;
    flex-shrink: 0;
}

@media(max-width: 900px) {
    .editorial-flow {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .flow-separator {
        transform: rotate(90deg);
    }
}

/* Membership Preview */
.membership-section {
    background-color: var(--surface-color);
    padding: 16rem 5rem;
}

.membership-container {
    max-width: 1100px;
    margin: 0 auto;
}

.membership-header {
    text-align: center;
    margin-bottom: 10rem;
}

.membership-header h2 {
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 400;
    margin-bottom: 2rem;
}

.membership-header p {
    font-size: 1.2rem;
    color: var(--muted-color);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

.tiers-editorial {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    margin-bottom: 8rem;
}

.tier-row {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    gap: 4rem;
    align-items: start;
    border-top: 1px solid var(--border-color);
    padding-top: 5rem;
}

@media(max-width: 992px) {
    .tier-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: flex-start;
    }
}

.tier-info .tier-eyebrow {
    margin-bottom: 1rem;
}

.tier-info .tier-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
}

.tier-desc {
    font-size: 1.15rem;
    color: var(--muted-color);
    font-weight: 300;
    line-height: 1.8;
}

.tier-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    min-width: max-content;
}

.membership-section .btn-primary,
.membership-section .btn-primary:visited {
    background-color: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
}

.membership-section .btn-primary:hover,
.membership-section .btn-primary:focus-visible {
    background-color: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
    opacity: 0.88;
}

@media(max-width: 992px) {
    .tier-action {
        align-items: flex-start;
        min-width: 0;
    }
}

.tier-price-tag {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
}

.tier-sub-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted-color);
    margin-bottom: 1rem;
    text-align: right;
    line-height: 1.7;
    width: max-content;
    max-width: 100%;
}

.tier-sub-line {
    display: block;
    white-space: nowrap;
}

@media(max-width: 992px) {
    .tier-sub-tag {
        text-align: left;
    }
}

.membership-note {
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--muted-color);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.membership-flow {
    text-align: center;
    margin: 2rem auto 0;
    max-width: 750px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-color);
    font-weight: 500;
}

.tier-desc p + p {
    margin-top: 1rem;
}

.tier-perks {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.tier-perks li {
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 300;
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.5;
}

.tier-perks li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: var(--muted-color);
}

.tier-desc .tier-emphasis,
.apply-callout .tier-emphasis {
    color: var(--text-color);
    font-weight: 500;
}

/* Privacy Section */
.privacy-section {
    background-color: var(--bg-color);
    padding: 18rem 5rem;
    text-align: center;
}

.privacy-container {
    max-width: 950px;
    margin: 0 auto;
}

.privacy-section h2 {
    font-size: clamp(3.5rem, 6.5vw, 7.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 4rem;
}

.privacy-copy {
    font-size: clamp(1.2rem, 1.4vw, 1.45rem);
    color: var(--muted-color);
    font-weight: 300;
    line-height: 2;
    max-width: 700px;
    margin: 0 auto;
}

.privacy-copy p + p {
    margin-top: 2rem;
}

/* Final CTA Section */
.final-cta-section {
    background-color: #1A1816;
    color: var(--white);
    padding: 10rem 5rem;
    text-align: center;
    border-bottom: none;
}

.final-cta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.final-cta-section .eyebrow {
    margin-bottom: 1.75rem;
}

.final-cta-section h2 {
    font-size: clamp(3.5rem, 7vw, 8rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 1.75rem;
}

.final-cta-section p {
    font-size: 1.3rem;
    color: #A39B93;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.02em;
}

.location-tag {
    margin-top: 3.5rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #777;
}

/* Footer & Language Selector */
footer {
    background-color: #12100E;
    color: #999;
    padding: 8rem 5rem 5rem 5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1fr;
    gap: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 6rem;
}

@media(max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.footer-brand .brand-logo {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
    margin: 0;
}

.footer-sub-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.footer-chat-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.footer-chat-icon {
    display: inline-flex;
    color: #fff;
    opacity: 0.85;
    line-height: 0;
}

.footer-chat-icon svg {
    display: block;
}

.footer-nav-groups {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-col a {
    text-decoration: none;
    color: #999;
    transition: color 0.3s ease;
    letter-spacing: 0.03em;
}

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

/* Language Switcher Styling */
.language-switcher {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lang-options {
    display: flex;
    gap: 1.25rem;
}

.lang-btn {
    background: transparent;
    border: none;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
}

.lang-btn:hover {
    color: #fff;
}

.lang-btn.active {
    color: var(--white);
    border-bottom-color: var(--white);
    font-weight: 500;
}

.footer-meta {
    max-width: 1300px;
    margin: 4rem auto 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 1440px) {
    section:not(.hero):not(.signature-image-section),
    .problem-section,
    .philosophy-section,
    .principles-section,
    .how-section,
    .chat-section,
    .tech-human-section,
    .membership-section,
    .privacy-section,
    .final-cta-section {
        padding-top: 7rem;
        padding-bottom: 7rem;
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .how-section {
        padding-bottom: 5rem;
    }

    .chat-section {
        padding-top: 5rem;
        padding-bottom: 7rem;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 5vw, 5.6rem);
    }

    .hero {
        min-height: 100vh;
        padding-bottom: 5rem;
    }

    .signature-image-section {
        min-height: 560px;
        height: 70vh;
    }

    .how-header,
    .principles-header,
    .membership-header {
        margin-bottom: 4rem;
    }

    .problem-section h2 {
        margin-bottom: 3rem;
    }

    .process-step {
        padding: 3rem 0;
        gap: 2.5rem;
    }

    .principles-list {
        gap: 3.5rem;
    }

    .principle-row {
        gap: 3rem;
        padding-top: 2.5rem;
    }

    .tiers-editorial {
        gap: 4.5rem;
        margin-bottom: 4.5rem;
    }

    .tier-row {
        gap: 2.5rem;
        padding-top: 3rem;
    }

    .chat-container {
        gap: 4rem;
    }

    footer {
        padding: 5rem 4rem 3.5rem;
    }

    .apply-main {
        padding: 5.25rem 1.75rem 1.75rem;
    }
}

@media (max-height: 900px) {
    section:not(.hero):not(.signature-image-section),
    .problem-section,
    .philosophy-section,
    .principles-section,
    .how-section,
    .chat-section,
    .tech-human-section,
    .membership-section,
    .privacy-section,
    .final-cta-section {
        padding-top: 5.5rem;
        padding-bottom: 5.5rem;
    }

    .how-section {
        padding-bottom: 4rem;
    }

    .chat-section {
        padding-top: 4rem;
        padding-bottom: 5.5rem;
    }

    .hero h1 {
        font-size: clamp(3rem, 4.6vw, 5rem);
    }

    .hero {
        min-height: 100vh;
        padding-bottom: 4rem;
    }

    .signature-image-section {
        min-height: 480px;
        height: 65vh;
    }

    .process-step {
        padding: 2.25rem 0;
    }

    .how-header,
    .membership-header,
    .principles-header {
        margin-bottom: 3rem;
    }

    .tiers-editorial {
        gap: 3.5rem;
        margin-bottom: 3.5rem;
    }
}

@media(max-width: 992px) {
    #site-header, #site-header.scrolled {
        padding: 1.5rem 2rem;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .hero {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 0;
        padding-bottom: 4rem;
        min-height: 100vh;
        height: 100vh;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8.4vw, 4rem);
    }

    section:not(.hero):not(.signature-image-section), .problem-section, .philosophy-section, .principles-section, .how-section, .chat-section, .tech-human-section, .membership-section, .privacy-section, .final-cta-section {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .how-section {
        padding-bottom: 3.5rem;
    }

    .chat-section {
        padding-top: 4rem;
        padding-bottom: 5rem;
    }

    .process-step {
        padding: 2.5rem 0;
    }

    .tiers-editorial {
        gap: 3.5rem;
        margin-bottom: 3.5rem;
    }

    .membership-header,
    .how-header,
    .principles-header {
        margin-bottom: 3rem;
    }
}

/* Application page */
.apply-page {
    background-color: var(--bg-color);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.apply-header {
    position: fixed;
}

.apply-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 5.25rem 1.75rem 1.75rem;
    box-sizing: border-box;
}

.apply-panel {
    width: 100%;
}

.apply-intro {
    margin-bottom: 2.25rem;
}

.apply-intro .eyebrow {
    display: block;
    margin-bottom: 0.85rem;
}

.apply-intro h1 {
    font-size: clamp(1.9rem, 3.8vw, 2.6rem);
    font-weight: 400;
    line-height: 1.12;
    margin-bottom: 0.75rem;
}

.apply-intro p {
    font-size: 0.95rem;
    color: var(--muted-color);
    font-weight: 300;
    line-height: 1.55;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 1.45rem;
}

.apply-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border: none;
    padding: 0;
    margin: 0;
}

.apply-field label,
.apply-field legend {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted-color);
    font-weight: 500;
}

.apply-field input,
.apply-field textarea,
.apply-field select {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-color);
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 0.65rem 0;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s ease;
    resize: vertical;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.apply-field textarea {
    min-height: 2.75rem;
    resize: none;
}

.apply-field input::placeholder,
.apply-field textarea::placeholder {
    color: var(--muted-color);
    opacity: 0.75;
    font-weight: 300;
}

.apply-field select {
    cursor: pointer;
    background-image: linear-gradient(45deg, transparent 50%, var(--muted-color) 50%), linear-gradient(135deg, var(--muted-color) 50%, transparent 50%);
    background-position: calc(100% - 12px) calc(50% + 2px), calc(100% - 7px) calc(50% + 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 1.5rem;
}

.apply-field input:focus,
.apply-field textarea:focus,
.apply-field select:focus {
    border-bottom-color: var(--text-color);
}

.apply-field-email {
    margin-top: 0.85rem;
}

/* Hide browser autofill / contact icons inside inputs */
.apply-field input::-webkit-contacts-auto-fill-button,
.apply-field input::-webkit-credentials-auto-fill-button,
.apply-field input::-webkit-strong-password-auto-fill-button {
    visibility: hidden;
    display: none !important;
    pointer-events: none;
    position: absolute;
    right: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
}

.apply-field input,
.apply-field textarea {
    background-image: none;
}

.apply-input-locked {
    color: #9a9188 !important;
    background-color: rgba(0, 0, 0, 0.03) !important;
    cursor: not-allowed;
}

.apply-hint {
    font-size: 0.7rem;
    color: var(--muted-color);
    font-weight: 300;
    line-height: 1.35;
}

.apply-phone-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    border-bottom: 1px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.apply-phone-wrap:focus-within {
    border-bottom-color: var(--text-color);
}

.apply-phone-prefix {
    flex-shrink: 0;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.02em;
    padding: 0.65rem 0;
    user-select: none;
}

.apply-phone-wrap input {
    flex: 1;
    min-width: 0;
    border-bottom: none !important;
    padding-left: 0;
}

.apply-phone-wrap.is-invalid,
.apply-field input.is-invalid,
.apply-field textarea.is-invalid,
.apply-field select.is-invalid {
    border-bottom-color: #8b4540;
}

.apply-error {
    font-size: 0.7rem;
    color: #8b4540;
    font-weight: 400;
    line-height: 1.35;
}

.apply-optional {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 300;
    color: var(--muted-color);
}

.apply-group {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding-top: 0.15rem;
    margin-top: 0;
    border-top: none;
}

.apply-group + .apply-group {
    border-top: none;
    padding-top: 1.35rem;
    margin-top: 0.25rem;
}

.apply-group:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.apply-row {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 1rem;
}

.apply-row + .apply-hint {
    margin-top: -0.35rem;
}

.apply-group-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-color);
    margin: 0;
}

.apply-group-note {
    font-size: 0.85rem;
    color: var(--muted-color);
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

.apply-choice {
    gap: 0.75rem;
    padding-top: 0.25rem;
}

.apply-inline-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted-color);
    font-weight: 500;
}

.apply-channel-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.apply-channel-option {
    position: relative;
    margin: 0;
    cursor: pointer;
}

.apply-channel-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.apply-channel-option span {
    display: block;
    text-align: center;
    padding: 0.75rem 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-color);
    background: transparent;
    border-right: 1px solid var(--border-color);
    transition: background-color 0.25s ease, color 0.25s ease;
}

.apply-channel-option:last-child span {
    border-right: none;
}

.apply-channel-option input:checked + span {
    background: var(--text-color);
    color: var(--bg-color);
}

.apply-radio {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 1rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--text-color) !important;
    font-weight: 300 !important;
    cursor: pointer;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border-color);
}

.apply-radio input {
    accent-color: var(--burgundy-accent);
    width: 1rem;
    height: 1rem;
}

.apply-submit {
    align-self: flex-start;
    margin-top: 0.65rem;
    padding: 1rem 2.25rem;
    background-color: var(--text-color);
    color: var(--bg-color);
    border-color: var(--text-color);
    cursor: pointer;
}

.apply-submit:hover {
    background-color: transparent;
    color: var(--text-color);
}

.apply-note {
    font-size: 0.75rem;
    color: var(--muted-color);
    font-weight: 300;
    line-height: 1.45;
    max-width: 420px;
    margin: 0;
}

.apply-form > .apply-note {
    margin-top: -0.35rem;
}

.apply-form-status {
    font-size: 0.8rem;
    color: #8b4540;
    font-weight: 400;
    line-height: 1.45;
    max-width: 420px;
    margin: 0.15rem 0 0;
}

.apply-submit.is-loading,
.apply-submit:disabled {
    opacity: 0.55;
    cursor: wait;
    pointer-events: none;
}

.apply-page.is-success .apply-main {
    align-items: flex-start;
    max-width: 560px;
    padding-top: 6rem;
    padding-bottom: 3rem;
}

.apply-success .apply-intro {
    margin-bottom: 1.75rem;
}

.apply-success-body {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.apply-success-body p {
    font-size: 1rem;
    color: var(--muted-color);
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
}

.apply-success-body .tier-emphasis {
    color: var(--text-color);
}

.apply-success-founding {
    margin: 0 0 2rem;
    padding-top: 1.25rem;
}

.apply-success-founding-meta {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted-color);
    margin: 0 0 1rem;
}

.apply-success-founding > p:last-child {
    font-size: 0.95rem;
    color: var(--muted-color);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.apply-next {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    padding-top: 0.25rem;
    margin-bottom: 2rem;
}

.apply-next .apply-group-title {
    margin-bottom: 0.25rem;
}

.apply-next-step {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 0.85rem;
    align-items: start;
}

.apply-next-num {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--muted-color);
    padding-top: 0.2rem;
}

.apply-next-step h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.25;
    margin: 0 0 0.35rem;
}

.apply-next-step p {
    font-size: 0.92rem;
    color: var(--muted-color);
    font-weight: 300;
    line-height: 1.55;
    margin: 0;
}

.apply-success-final {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-color);
    margin: 0;
}

.apply-panel[hidden] {
    display: none !important;
}

.apply-path-choices {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.apply-path-btn {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    padding: 1rem 1.25rem;
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    cursor: pointer;
    text-align: left;
    transition: border-color 0.35s var(--transition-smooth), background-color 0.35s var(--transition-smooth);
}

.apply-path-btn:hover {
    border-color: var(--text-color);
    background: var(--surface-color);
}

.apply-callout {
    margin-top: 1.5rem;
    margin-bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    max-width: 520px;
}

.apply-callout p {
    font-size: 0.95rem;
    color: var(--muted-color);
    font-weight: 300;
    line-height: 1.5;
}

.apply-founding {
    margin-bottom: 0;
    padding-top: 1.15rem;
    border-top: 1px solid var(--border-color);
}

.apply-founding .eyebrow {
    display: block;
    margin-bottom: 0.75rem;
}

.apply-founding-price {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0.85rem;
}

.apply-founding-terms {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.apply-founding-terms li {
    font-size: 0.9rem;
    color: var(--muted-color);
    font-weight: 300;
    padding-left: 1.1rem;
    position: relative;
}

.apply-founding-terms li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--muted-color);
}

@media (max-width: 992px) {
    .apply-main {
        padding: 5rem 1.5rem 1.5rem;
        align-items: flex-start;
    }

    .apply-row {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}

@media (max-height: 820px) {
    .apply-main {
        padding-top: 4.75rem;
        padding-bottom: 1.25rem;
    }

    .apply-intro {
        margin-bottom: 1.75rem;
    }

    .apply-intro h1 {
        font-size: clamp(1.7rem, 3.5vw, 2.2rem);
    }

    .apply-form {
        gap: 1.15rem;
    }

    .apply-group {
        gap: 0.9rem;
    }

    .apply-group + .apply-group {
        padding-top: 1.1rem;
    }
}


/* Legal pages */
.legal-page #site-header,
.apply-page #site-header {
    background-color: rgba(248, 245, 240, 0.94);
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 5rem;
}

@media (max-width: 992px) {
    .legal-page #site-header,
    .apply-page #site-header {
        padding: 1.5rem 2rem;
    }
}

.legal-main {
    flex: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10rem 5rem 6rem;
    box-sizing: border-box;
}

.legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem 2rem;
    margin-bottom: 4rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-nav a {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--muted-color);
    transition: color 0.3s ease;
}

.legal-nav a:hover,
.legal-nav a.is-active {
    color: var(--text-color);
}

.legal-doc {
    max-width: 760px;
}

.legal-header {
    margin-bottom: 4rem;
    position: static;
    width: auto;
    padding: 0;
    display: block;
    background: transparent;
    color: inherit;
    border: none;
    backdrop-filter: none;
}

.legal-header .eyebrow {
    display: block;
    margin-bottom: 1.5rem;
}

.legal-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.legal-lede {
    font-size: clamp(1.05rem, 1.4vw, 1.2rem);
    color: var(--muted-color);
    font-weight: 300;
    line-height: 1.75;
    max-width: 36rem;
    margin-bottom: 1.25rem;
}

.legal-updated {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-color);
    font-weight: 400;
}

.legal-prose {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.legal-page .legal-prose section,
.legal-page .legal-prose section:not(.hero):not(.signature-image-section) {
    padding: 2.75rem 0;
    margin: 0;
    border: none;
    border-bottom: 1px solid var(--border-color);
    background: transparent;
}

.legal-page .legal-prose section:first-child {
    padding-top: 0;
}

.legal-page .legal-prose section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-prose h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.6vw, 2.1rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin: 0 0 1.25rem;
    padding: 0;
    border: none;
    color: var(--text-color);
}

.legal-prose h3 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    margin: 1.75rem 0 0.85rem;
    color: var(--text-color);
}

.legal-prose p,
.legal-prose li {
    font-family: var(--font-sans);
    font-size: 1.02rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-color);
}

.legal-prose p + p {
    margin-top: 1rem;
}

.legal-prose ul,
.legal-prose ol {
    margin: 1rem 0 0 1.15rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.legal-prose li::marker {
    color: var(--muted-color);
}

.legal-doc[hidden] {
    display: none !important;
}

.legal-page footer {
    margin-top: auto;
    width: 100%;
}

@media (max-width: 1440px) {
    .legal-main {
        padding: 8.5rem 4rem 5rem;
    }
}

@media (max-width: 992px) {
    .legal-main {
        padding: 7rem 2rem 4rem;
    }

    .legal-nav {
        gap: 0.7rem 1.25rem;
        margin-bottom: 2.75rem;
    }

    .legal-page .legal-prose section,
    .legal-page .legal-prose section:not(.hero):not(.signature-image-section) {
        padding: 2.25rem 0;
    }
}

@media (max-height: 900px) {
    .legal-page .legal-prose section,
    .legal-page .legal-prose section:not(.hero):not(.signature-image-section) {
        padding: 2rem 0;
    }
}
