@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Source+Serif+4:opsz,wght@8..60,400;8..60,600&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── Tokens ── */
:root {
    --cf-blue:        #2563eb;
    --cf-blue-dark:   #1e40af;
    --cf-blue-light:  #dbeafe;
    --cf-indigo:      #4f46e5;
    --cf-violet:      #7c3aed;
    --cf-sky:         #0ea5e9;
    --cf-teal:        #14b8a6;
    --cf-amber:       #f59e0b;
    --cf-emerald:     #10b981;
    --cf-rose:        #f43f5e;
    --cf-slate-50:    #f8fafc;
    --cf-slate-100:   #f1f5f9;
    --cf-slate-200:   #e2e8f0;
    --cf-slate-300:   #cbd5e1;
    --cf-slate-500:   #64748b;
    --cf-slate-600:   #475569;
    --cf-slate-700:   #334155;
    --cf-slate-800:   #1e293b;
    --cf-slate-900:   #0f172a;
    --cf-white:       #ffffff;
    --cf-radius:      10px;
    --cf-radius-lg:   16px;
    --cf-radius-xl:   24px;
    --cf-shadow:      0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --cf-shadow-md:   0 4px 12px rgba(0,0,0,.07);
    --cf-shadow-lg:   0 12px 40px rgba(0,0,0,.10);
    --cf-font:        'DM Sans', system-ui, -apple-system, sans-serif;
    --cf-font-serif:  'Source Serif 4', Georgia, serif;
    --cf-max-w:       1200px;
    --cf-hero-gradient: linear-gradient(135deg, #0f172a 0%, #1e3a5f 40%, #1e40af 100%);
}

body {
    font-family: var(--cf-font);
    color: var(--cf-slate-800);
    background: var(--cf-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Public Nav ── */
.pub-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 2rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .3s, box-shadow .3s, backdrop-filter .3s;
}
.pub-nav.scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}
.pub-nav .nav-logo {
    font-family: var(--cf-font);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--cf-white);
    letter-spacing: -.02em;
    transition: color .3s;
}
.pub-nav.scrolled .nav-logo { color: var(--cf-slate-900); }

.pub-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.pub-nav .nav-links a {
    font-size: .9375rem;
    font-weight: 500;
    color: rgba(255,255,255,.8);
    transition: color .2s;
}
.pub-nav .nav-links a:hover { color: var(--cf-white); }
.pub-nav.scrolled .nav-links a { color: var(--cf-slate-600); }
.pub-nav.scrolled .nav-links a:hover { color: var(--cf-slate-900); }

.pub-nav .nav-cta {
    padding: .5rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: .875rem;
    transition: all .2s;
}
.pub-nav .nav-cta-outline {
    border: 1.5px solid rgba(255,255,255,.4);
    color: var(--cf-white);
}
.pub-nav .nav-cta-outline:hover {
    border-color: var(--cf-white);
    background: rgba(255,255,255,.1);
}
.pub-nav.scrolled .nav-cta-outline {
    border-color: var(--cf-slate-300);
    color: var(--cf-slate-700);
}
.pub-nav.scrolled .nav-cta-outline:hover {
    border-color: var(--cf-blue);
    color: var(--cf-blue);
}
.pub-nav .nav-cta-solid {
    background: var(--cf-blue);
    color: var(--cf-white);
}
.pub-nav .nav-cta-solid:hover {
    background: var(--cf-blue-dark);
}

.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: .25rem;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--cf-white);
    margin: 5px 0;
    transition: all .3s;
}
.pub-nav.scrolled .nav-hamburger span { background: var(--cf-slate-700); }

/* ── Hero ── */
.hero {
    background: var(--cf-hero-gradient);
    padding: 10rem 2rem 6rem;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 80% 20%, rgba(79,70,229,.25), transparent),
        radial-gradient(ellipse 500px 500px at 20% 80%, rgba(14,165,233,.15), transparent);
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--cf-white), transparent);
    pointer-events: none;
}
.hero-inner {
    max-width: var(--cf-max-w);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-text h1 {
    font-family: var(--cf-font);
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--cf-white);
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}
.hero-text h1 .gradient-text {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-text p {
    font-size: 1.25rem;
    color: rgba(255,255,255,.7);
    max-width: 540px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--cf-radius-xl);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    width: 100%;
    max-width: 460px;
}
.hero-card-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.hero-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cf-blue), var(--cf-violet));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}
.hero-card-title {
    font-weight: 600;
    color: var(--cf-white);
    font-size: 1.1rem;
}
.hero-card-row {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .75rem 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    color: rgba(255,255,255,.7);
    font-size: .9375rem;
}
.hero-card-row:last-child { border-bottom: none; }
.hero-card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.hero-card-dot.blue { background: var(--cf-blue); }
.hero-card-dot.violet { background: var(--cf-violet); }
.hero-card-dot.teal { background: var(--cf-teal); }
.hero-card-dot.amber { background: var(--cf-amber); }
.hero-card-dot.emerald { background: var(--cf-emerald); }
.hero-card-badge {
    margin-left: auto;
    padding: .2rem .6rem;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 600;
}
.hero-card-badge.active {
    background: rgba(16,185,129,.15);
    color: #34d399;
}
.hero-card-badge.aligned {
    background: rgba(79,70,229,.15);
    color: #a78bfa;
}

/* ── Buttons ── */
.btn-pub {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .875rem 2rem;
    border-radius: var(--cf-radius);
    font-family: var(--cf-font);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all .25s;
}
.btn-pub-primary {
    background: var(--cf-blue);
    color: var(--cf-white);
    box-shadow: 0 4px 14px rgba(37,99,235,.3);
}
.btn-pub-primary:hover {
    background: var(--cf-blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37,99,235,.35);
}
.btn-pub-ghost {
    background: rgba(255,255,255,.1);
    color: var(--cf-white);
    border: 1.5px solid rgba(255,255,255,.25);
}
.btn-pub-ghost:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.4);
}
.btn-pub-outline {
    background: transparent;
    color: var(--cf-blue);
    border: 2px solid var(--cf-blue);
}
.btn-pub-outline:hover {
    background: var(--cf-blue);
    color: var(--cf-white);
}

/* ── Sections ── */
.pub-section {
    padding: 6rem 2rem;
    max-width: var(--cf-max-w);
    margin: 0 auto;
}
.pub-section-alt {
    background: var(--cf-slate-50);
}
.pub-section-alt .pub-section {
    padding-left: 0;
    padding-right: 0;
}
.section-label {
    display: inline-block;
    font-size: .8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--cf-blue);
    margin-bottom: .75rem;
}
.section-title {
    font-family: var(--cf-font);
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--cf-slate-900);
    letter-spacing: -.02em;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--cf-slate-500);
    max-width: 640px;
    line-height: 1.7;
    margin-bottom: 3rem;
}
.section-center {
    text-align: center;
}
.section-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ── Value Props Grid ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.value-card {
    background: var(--cf-white);
    border: 1px solid var(--cf-slate-200);
    border-radius: var(--cf-radius-lg);
    padding: 2rem 1.75rem;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cf-blue);
    transform: scaleX(0);
    transition: transform .3s;
}
.value-card:hover {
    box-shadow: var(--cf-shadow-md);
    border-color: var(--cf-blue-light);
    transform: translateY(-3px);
}
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}
.value-icon.blue   { background: var(--cf-blue-light); color: var(--cf-blue); }
.value-icon.violet { background: #ede9fe; color: var(--cf-violet); }
.value-icon.teal   { background: #ccfbf1; color: var(--cf-teal); }
.value-icon.amber  { background: #fef3c7; color: var(--cf-amber); }
.value-card h3 {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--cf-slate-900);
    margin-bottom: .75rem;
}
.value-card p {
    font-size: .9375rem;
    color: var(--cf-slate-500);
    line-height: 1.6;
}

/* ── Process Steps ── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: calc(16.67% + 24px);
    right: calc(16.67% + 24px);
    height: 2px;
    background: linear-gradient(90deg, var(--cf-blue), var(--cf-violet), var(--cf-teal));
    z-index: 0;
}
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}
.process-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--cf-white);
    position: relative;
}
.process-num.s1 { background: var(--cf-blue); }
.process-num.s2 { background: var(--cf-violet); }
.process-num.s3 { background: var(--cf-teal); }
.process-step h3 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: .75rem;
    color: var(--cf-slate-900);
}
.process-step p {
    font-size: .9375rem;
    color: var(--cf-slate-500);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

/* ── Context / Split Section ── */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.split-text .section-label,
.split-text .section-title,
.split-text .section-subtitle { text-align: left; }
.split-text .section-subtitle { margin-bottom: 1.5rem; }
.split-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.split-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .9375rem;
    color: var(--cf-slate-600);
    line-height: 1.6;
}
.split-list .check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--cf-blue-light);
    color: var(--cf-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8125rem;
    font-weight: 700;
    margin-top: 2px;
}
.split-visual {
    background: var(--cf-slate-50);
    border: 1px solid var(--cf-slate-200);
    border-radius: var(--cf-radius-xl);
    padding: 2.5rem;
}
.context-card {
    background: var(--cf-white);
    border: 1px solid var(--cf-slate-200);
    border-radius: var(--cf-radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--cf-shadow);
}
.context-card:last-child { margin-bottom: 0; }
.context-card-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .5rem;
}
.context-card-label.standard  { color: var(--cf-blue); }
.context-card-label.bloom     { color: var(--cf-violet); }
.context-card-label.sources   { color: var(--cf-teal); }
.context-card p {
    font-size: .875rem;
    color: var(--cf-slate-600);
    line-height: 1.6;
}

/* ── Brand / Social Proof ── */
.brand-section {
    background: var(--cf-slate-900);
    border-radius: var(--cf-radius-xl);
    padding: 4rem;
    color: var(--cf-white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.brand-text h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}
.brand-text p {
    color: rgba(255,255,255,.6);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}
.brand-stats {
    display: flex;
    gap: 3rem;
}
.brand-stat {
    text-align: center;
}
.brand-stat-num {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.brand-stat-label {
    font-size: .8125rem;
    color: rgba(255,255,255,.5);
    margin-top: .25rem;
}

/* ── CTA Banner ── */
.cta-banner {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--cf-slate-50), var(--cf-blue-light));
    border-radius: 0;
}
.cta-banner h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cf-slate-900);
    letter-spacing: -.02em;
    margin-bottom: .75rem;
}
.cta-banner p {
    font-size: 1.125rem;
    color: var(--cf-slate-500);
    margin-bottom: 2rem;
}

/* ── How It Works Page ── */
.hiw-hero {
    background: var(--cf-hero-gradient);
    padding: 9rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hiw-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 500px at 50% 40%, rgba(79,70,229,.2), transparent);
    pointer-events: none;
}
.hiw-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cf-white);
    letter-spacing: -.03em;
    position: relative;
    margin-bottom: 1rem;
}
.hiw-hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,.65);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
.hiw-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--cf-white), transparent);
}

.hiw-steps {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.hiw-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}
.hiw-step::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 29px;
    width: 2px;
    bottom: -2rem;
    background: var(--cf-slate-200);
}
.hiw-step:last-child::before { display: none; }
.hiw-step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--cf-white);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.hiw-step-body h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--cf-slate-900);
    margin-bottom: .75rem;
    margin-top: .75rem;
}
.hiw-step-body p {
    font-size: 1rem;
    color: var(--cf-slate-500);
    line-height: 1.7;
    margin-bottom: .75rem;
}
.hiw-detail-list {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.hiw-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .9375rem;
    color: var(--cf-slate-600);
    line-height: 1.5;
}
.hiw-detail-list li::before {
    content: '→';
    color: var(--cf-blue);
    font-weight: 600;
    flex-shrink: 0;
}

/* ── Contact Page ── */
.contact-hero {
    background: var(--cf-hero-gradient);
    padding: 9rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 800px 500px at 50% 40%, rgba(79,70,229,.2), transparent);
    pointer-events: none;
}
.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--cf-white), transparent);
}
.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cf-white);
    position: relative;
    letter-spacing: -.03em;
    margin-bottom: 1rem;
}
.contact-hero p {
    font-size: 1.25rem;
    color: rgba(255,255,255,.65);
    position: relative;
}
.contact-grid {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-form-card {
    background: var(--cf-white);
    border: 1px solid var(--cf-slate-200);
    border-radius: var(--cf-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--cf-shadow-md);
}
.contact-form-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cf-slate-900);
    margin-bottom: 1.5rem;
}
.cf-form-group {
    margin-bottom: 1.25rem;
}
.cf-form-group label {
    display: block;
    font-size: .875rem;
    font-weight: 600;
    color: var(--cf-slate-700);
    margin-bottom: .375rem;
}
.cf-form-group label .req {
    color: var(--cf-rose);
}
.cf-input,
.cf-textarea {
    width: 100%;
    padding: .75rem 1rem;
    border: 1.5px solid var(--cf-slate-200);
    border-radius: var(--cf-radius);
    font-family: var(--cf-font);
    font-size: .9375rem;
    color: var(--cf-slate-800);
    background: var(--cf-white);
    transition: border-color .2s, box-shadow .2s;
}
.cf-input:focus,
.cf-textarea:focus {
    outline: none;
    border-color: var(--cf-blue);
    box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.cf-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-info-block {
    background: var(--cf-slate-50);
    border: 1px solid var(--cf-slate-200);
    border-radius: var(--cf-radius-lg);
    padding: 1.75rem;
}
.contact-info-block h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cf-slate-900);
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}
.contact-info-block p,
.contact-info-block a {
    font-size: .9375rem;
    color: var(--cf-slate-500);
    line-height: 1.6;
}
.contact-info-block a {
    color: var(--cf-blue);
    font-weight: 500;
}
.contact-info-block a:hover { text-decoration: underline; }

/* ── Flash Messages (public) ── */
.pub-flash {
    max-width: 700px;
    margin: 1.5rem auto;
    padding: 1rem 1.5rem;
    border-radius: var(--cf-radius);
    font-size: .9375rem;
    font-weight: 500;
}
.pub-flash-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}
.pub-flash-danger {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
.pub-flash-info {
    background: var(--cf-blue-light);
    color: var(--cf-blue-dark);
    border: 1px solid #93c5fd;
}

/* ── Public Footer ── */
.pub-footer {
    background: var(--cf-slate-900);
    color: rgba(255,255,255,.5);
    padding: 4rem 2rem 2rem;
}
.pub-footer-inner {
    max-width: var(--cf-max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.pub-footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cf-white);
    margin-bottom: .75rem;
}
.pub-footer-brand p {
    font-size: .875rem;
    line-height: 1.7;
    max-width: 300px;
}
.pub-footer-col h4 {
    font-size: .8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255,255,255,.4);
    margin-bottom: 1rem;
}
.pub-footer-col a {
    display: block;
    font-size: .9375rem;
    color: rgba(255,255,255,.6);
    padding: .3rem 0;
    transition: color .2s;
}
.pub-footer-col a:hover { color: var(--cf-white); }
.pub-footer-bottom {
    max-width: var(--cf-max-w);
    margin: 0 auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8125rem;
}
.pub-footer-bottom a {
    color: rgba(255,255,255,.4);
    transition: color .2s;
}
.pub-footer-bottom a:hover { color: var(--cf-white); }

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease-out, transform .6s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Public Locale Switcher ── */
.pub-locale-switcher {
    display: inline-flex;
}
.pub-locale-switcher select {
    padding: .3rem .5rem;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 6px;
    font-size: .8125rem;
    font-family: var(--cf-font);
    background: transparent;
    color: rgba(255,255,255,.7);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}
.pub-nav.scrolled .pub-locale-switcher select {
    border-color: var(--cf-slate-300);
    color: var(--cf-slate-600);
}
.pub-locale-switcher select option {
    color: var(--cf-slate-800);
    background: var(--cf-white);
}

/* ── Auth Pages ── */
.auth-hero {
    background: var(--cf-hero-gradient);
    padding: 9rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.auth-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 70% 30%, rgba(79,70,229,.2), transparent),
        radial-gradient(ellipse 400px 300px at 30% 70%, rgba(14,165,233,.12), transparent);
    pointer-events: none;
}
.auth-card {
    position: relative;
    background: var(--cf-white);
    border-radius: var(--cf-radius-xl);
    padding: 3rem;
    width: 100%;
    max-width: 460px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
    margin-top: 2rem;
}
.auth-card h1 {
    font-family: var(--cf-font);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--cf-slate-900);
    text-align: center;
    margin-bottom: .5rem;
    letter-spacing: -.02em;
}
.auth-card .auth-subtitle {
    text-align: center;
    font-size: .9375rem;
    color: var(--cf-slate-500);
    margin-bottom: 2rem;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    color: var(--cf-slate-300);
    font-size: .8125rem;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--cf-slate-200);
}
.auth-footer-text {
    text-align: center;
    font-size: .875rem;
    color: var(--cf-slate-500);
    margin-top: 1.5rem;
}
.auth-footer-text a {
    color: var(--cf-blue);
    font-weight: 600;
}
.auth-footer-text a:hover { text-decoration: underline; }
.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: .75rem 1rem;
    border: 1.5px solid var(--cf-slate-200);
    border-radius: var(--cf-radius);
    background: var(--cf-white);
    font-family: var(--cf-font);
    font-size: .9375rem;
    font-weight: 500;
    color: var(--cf-slate-400);
    cursor: not-allowed;
    opacity: .6;
    position: relative;
    transition: none;
}
.btn-google svg {
    width: 20px;
    height: 20px;
    opacity: .4;
}
.btn-google .coming-soon {
    position: absolute;
    right: .75rem;
    font-size: .6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: var(--cf-slate-100);
    color: var(--cf-slate-400);
    padding: .15rem .5rem;
    border-radius: 4px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-text h1 { font-size: 2.75rem; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .split-section { grid-template-columns: 1fr; gap: 2.5rem; }
    .brand-section { grid-template-columns: 1fr; }
    .pub-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .pub-nav .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .pub-nav .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cf-white);
        padding: 1.5rem 2rem;
        box-shadow: var(--cf-shadow-lg);
        gap: 1rem;
    }
    .pub-nav .nav-links.open a { color: var(--cf-slate-700); }
    .hero { padding: 8rem 1.5rem 4rem; min-height: auto; }
    .hero-text h1 { font-size: 2.25rem; }
    .hero-text p { font-size: 1.0625rem; }
    .values-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .process-grid::before { display: none; }
    .section-title { font-size: 2rem; }
    .brand-section { padding: 2.5rem 1.5rem; }
    .brand-stats { gap: 2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .pub-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .pub-footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
    .hiw-hero h1, .contact-hero h1 { font-size: 2.25rem; }
}
@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.875rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-pub { width: 100%; justify-content: center; }
    .cta-banner h2 { font-size: 1.75rem; }
    .brand-stats { flex-direction: column; gap: 1rem; }
    .auth-card { padding: 2rem 1.5rem; margin-top: 1rem; }
    .auth-card h1 { font-size: 1.5rem; }
    .auth-hero { padding: 7rem 1rem 3rem; }
}
