/* Ushers Ridge Research — Institutional Website */
/* Theme: light, editorial, institutional research */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg:           #FFFFFF;
    --surface:      #F7F8FA;
    --elevated:     #EDEEF1;
    --navy:         #0B1F3A;
    --navy-light:   #1A3355;
    --blue:         #2563EB;
    --blue-light:   #EFF6FF;
    --green:        #059669;
    --green-light:  #ECFDF5;
    --amber:        #B45309;
    --amber-light:  #FFFBEB;
    --red:          #DC2626;
    --text:         #111827;
    --text-2:       #4B5563;
    --text-3:       #9CA3AF;
    --border:       #E5E7EB;
    --border-2:     #D1D5DB;
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body:    'Inter', 'Helvetica Neue', Arial, sans-serif;
    --font-mono:    'SF Mono', 'Fira Code', 'Courier New', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; transition: opacity 0.15s; }
a:hover { opacity: 0.75; }
img { max-width: 100%; }

/* ── Layout ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ── NAV ── */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(8px);
    height: 60px;
}
.nav-inner {
    max-width: 1100px; margin: 0 auto; padding: 0 24px;
    height: 60px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--navy);
    text-decoration: none;
}
.nav-logo:hover { opacity: 1; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    transition: color 0.15s;
    text-decoration: none;
}
.nav-links a:hover { color: var(--text); opacity: 1; }
.nav-cta {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: var(--bg) !important;
    background: var(--navy);
    padding: 8px 18px;
    border-radius: 4px;
    transition: background 0.15s !important;
    letter-spacing: 0.01em !important;
}
.nav-cta:hover { background: var(--navy-light) !important; opacity: 1 !important; }

/* ── HERO ── */
.hero {
    min-height: 90vh;
    display: flex; align-items: center;
    padding-top: 80px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}
.hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
}
.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 22px;
    max-width: 760px;
}
.hero-headline em {
    font-style: italic;
    color: var(--blue);
}
.hero-sub {
    font-size: 17px;
    color: var(--text-2);
    max-width: 560px;
    margin-bottom: 40px;
    line-height: 1.75;
    font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-primary {
    display: inline-block;
    background: var(--navy);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 13px 26px;
    border-radius: 4px;
    transition: background 0.15s;
    text-decoration: none;
}
.btn-primary:hover { background: var(--navy-light); opacity: 1; color: #ffffff; }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 13px 26px;
    border: 1px solid var(--border-2);
    border-radius: 4px;
    transition: border-color 0.15s, color 0.15s;
    text-decoration: none;
}
.btn-secondary:hover { border-color: var(--text-3); color: var(--navy); opacity: 1; }

.btn-blue {
    display: inline-block;
    background: var(--blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 4px;
    transition: opacity 0.15s;
    text-decoration: none;
}
.btn-blue:hover { opacity: 0.88; color: #ffffff; }

/* ── SECTION LABELS ── */
.label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
}
h2.section-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 12px;
}
.section-body {
    font-size: 16px;
    color: var(--text-2);
    max-width: 540px;
    line-height: 1.75;
}

/* ── RESEARCH CARDS ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.insight-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.insight-card:hover {
    border-color: var(--border-2);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.card-ticker {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.card-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.35;
}
.card-excerpt {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.65;
    margin-bottom: 16px;
}
.card-meta {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 11px;
    color: var(--text-3);
}

/* ── CONVICTION PILLS ── */
.conviction-pill {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
}
.pill-high  { background: var(--green-light);  color: var(--green);  border: 1px solid #A7F3D0; }
.pill-mod   { background: var(--amber-light);  color: var(--amber);  border: 1px solid #FDE68A; }
.pill-watch { background: var(--blue-light);   color: var(--blue);   border: 1px solid #BFDBFE; }

/* ── ACCESS LEVEL BADGES ── */
.access-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 3px;
}
.badge-free        { background: var(--green-light);  color: var(--green);  border: 1px solid #A7F3D0; }
.badge-premium     { background: var(--blue-light);   color: var(--blue);   border: 1px solid #BFDBFE; }
.badge-flagship    { background: var(--surface);      color: var(--text-2); border: 1px solid var(--border); }
.badge-institution { background: var(--navy);         color: #ffffff; }

/* ── SIGNAL STACK / PROCESS ── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
    margin-top: 48px;
}
.process-step {
    border-left: 2px solid var(--border);
    padding: 0 0 0 18px;
}
.process-step:first-child { border-left-color: var(--navy); }
.step-number {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--text-3);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}
.step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}
.step-desc {
    font-size: 13px;
    color: var(--text-2);
    line-height: 1.6;
}

/* ── STATS ── */
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    margin-top: 40px;
    overflow: hidden;
}
.stat-item {
    text-align: center;
    padding: 32px 24px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-value {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-3);
}

/* ── PULL QUOTE ── */
.pullquote {
    border-left: 3px solid var(--navy);
    padding: 20px 28px;
    margin: 48px 0;
    background: var(--surface);
    border-radius: 0 4px 4px 0;
}
.pullquote-text {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--navy);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 8px;
}
.pullquote-credit {
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ── INSIGHT SAMPLE (homepage research preview) ── */
.insight-sample {
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--navy);
    border-radius: 0 6px 6px 0;
    padding: 28px 32px;
    margin-top: 20px;
}
.sample-ticker {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 700;
    color: var(--blue);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.sample-thesis {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--navy);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 14px;
}
.sample-meta {
    font-size: 11px;
    color: var(--text-3);
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* ── EMAIL CAPTURE ── */
.email-capture {
    background: var(--navy);
    border-radius: 6px;
    padding: 48px;
    margin-top: 48px;
}
.email-capture-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}
.email-capture-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 24px;
    max-width: 420px;
    line-height: 1.6;
}
.email-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    flex-wrap: wrap;
}
.email-input {
    flex: 1;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    min-width: 200px;
    transition: border-color 0.15s;
}
.email-input::placeholder { color: rgba(255,255,255,0.4); }
.email-input:focus { border-color: rgba(255,255,255,0.5); }
.email-submit {
    background: #ffffff;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: opacity 0.15s;
    white-space: nowrap;
}
.email-submit:hover { opacity: 0.88; }
.email-disclaimer {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
}

/* ── CTA BLOCK ── */
.cta-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 56px;
    text-align: center;
}
.cta-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.cta-sub {
    font-size: 15px;
    color: var(--text-2);
    max-width: 460px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

/* ── WHAT WE BUILD / MISS LIST ── */
.miss-block {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 40px;
    margin-top: 40px;
}
.miss-item {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}
.miss-item:last-child { border-bottom: none; padding-bottom: 0; }
.miss-item:first-child { padding-top: 0; }
.miss-icon {
    width: 28px; height: 28px; border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; flex-shrink: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--navy);
    font-weight: 700;
}
.miss-content h4 {
    font-size: 14px; font-weight: 700;
    color: var(--navy); margin-bottom: 4px;
}
.miss-content p {
    font-size: 13px; color: var(--text-2); line-height: 1.65;
}

/* ── RESEARCH GRID (library page) ── */
.research-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}
.research-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 28px;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.research-card:hover {
    border-color: var(--border-2);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.report-badge {
    position: absolute; top: 20px; right: 20px;
    font-size: 9px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 3px 10px; border-radius: 3px;
}
.badge-flagship-card {
    background: var(--surface);
    color: var(--text-2);
    border: 1px solid var(--border);
}

/* ── PRICING TIERS ── */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    align-items: start;
}
.tier-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 36px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.tier-card.featured {
    border-color: var(--navy);
    border-width: 2px;
}
.featured-badge {
    position: absolute; top: -11px; left: 50%;
    transform: translateX(-50%);
    background: var(--navy); color: #ffffff;
    font-size: 9px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 3px 14px; border-radius: 10px;
    white-space: nowrap;
}
.tier-name {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--text-3); margin-bottom: 14px;
}
.tier-price {
    font-family: var(--font-heading);
    font-size: 40px; font-weight: 700; color: var(--navy);
    line-height: 1; margin-bottom: 4px;
}
.tier-period {
    font-size: 12px; color: var(--text-3);
    margin-bottom: 22px; letter-spacing: 0.01em;
}
.tier-desc {
    font-size: 13px; color: var(--text-2);
    line-height: 1.65; margin-bottom: 22px;
    padding-bottom: 22px; border-bottom: 1px solid var(--border);
}
.tier-features {
    list-style: none; display: flex; flex-direction: column;
    gap: 10px; margin-bottom: 28px; flex: 1;
}
.tier-features li {
    font-size: 13px; color: var(--text-2);
    display: flex; gap: 10px; align-items: flex-start; line-height: 1.4;
}
.tier-features li::before {
    content: '—'; color: var(--text-3); font-weight: 700;
    flex-shrink: 0; font-size: 11px; margin-top: 1px;
}

/* ── COMPARISON TABLE ── */
.compare-table { overflow-x: auto; margin-top: 24px; }
.compare-table table { width: 100%; border-collapse: collapse; }
.compare-table th {
    font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--text-3);
    padding: 12px 20px; text-align: left;
    border-bottom: 2px solid var(--border); background: var(--surface);
}
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td {
    font-size: 13px; color: var(--text-2);
    padding: 13px 20px; border-bottom: 1px solid var(--border);
}
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--surface); }
.chk { color: var(--green); font-size: 14px; }
.dsh { color: var(--border-2); font-size: 16px; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.faq-item { border-left: 2px solid var(--border); padding-left: 18px; }
.faq-q { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.faq-a { font-size: 13px; color: var(--text-2); line-height: 1.65; }

/* ── CUSTOM RESEARCH ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.service-card {
    background: var(--bg); border: 1px solid var(--border);
    border-radius: 6px; padding: 28px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
    border-color: var(--border-2);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.service-code {
    font-family: var(--font-mono); font-size: 10px; font-weight: 700;
    letter-spacing: 0.12em; color: var(--blue); margin-bottom: 10px;
    text-transform: uppercase;
}
.service-name {
    font-family: var(--font-heading); font-size: 19px;
    font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.2;
}
.service-desc { font-size: 13px; color: var(--text-2); line-height: 1.7; margin-bottom: 18px; }
.service-deliverables {
    display: flex; flex-direction: column; gap: 6px;
    padding-top: 18px; border-top: 1px solid var(--border);
}
.deliverable {
    font-size: 12px; color: var(--text-3);
    display: flex; gap: 8px; align-items: flex-start;
}
.deliverable::before { content: '→'; color: var(--text-3); flex-shrink: 0; }
.timeline-badge {
    display: inline-block; font-size: 10px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--text-3); background: var(--surface);
    border: 1px solid var(--border); padding: 3px 10px;
    border-radius: 3px; margin-top: 14px;
}

/* ── FORMS ── */
.contact-form { max-width: 520px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--text-3); margin-bottom: 7px;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; background: var(--bg); border: 1px solid var(--border);
    border-radius: 4px; padding: 11px 14px; color: var(--text);
    font-size: 14px; font-family: var(--font-body);
    outline: none; transition: border-color 0.15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--navy);
}
.form-group textarea { min-height: 110px; resize: vertical; }

/* ── DIVIDERS AND SURFACES ── */
.surface-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

/* ── FOOTER ── */
footer {
    border-top: 1px solid var(--border);
    padding: 40px 0;
    background: var(--surface);
}
.footer-inner {
    display: flex; justify-content: space-between;
    align-items: flex-start; flex-wrap: wrap; gap: 24px;
}
.footer-nav {
    display: flex; gap: 20px; flex-wrap: wrap; margin-top: 8px;
}
.footer-nav a {
    font-size: 12px; color: var(--text-3);
    text-decoration: none; transition: color 0.15s;
}
.footer-nav a:hover { color: var(--text-2); opacity: 1; }
.footer-brand {
    font-size: 13px; font-weight: 700;
    color: var(--navy); margin-bottom: 4px;
}
.footer-sub {
    font-size: 11px; color: var(--text-3);
}
.footer-disclaimer {
    font-size: 11px; color: var(--text-3);
    max-width: 460px; line-height: 1.6;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .tier-grid { grid-template-columns: 1fr; }
    .faq-grid  { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .research-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .stat-row  { grid-template-columns: repeat(2, 1fr); }
    .nav-links { display: none; }
    .cta-block { padding: 36px 20px; }
    .hero-headline { font-size: 30px; }
    .email-capture { padding: 32px 20px; }
    .miss-block { padding: 24px; }
    .process-row { grid-template-columns: repeat(2, 1fr); }
}
