/* ══════════════════════════════════════
   Regina — Dedicated Page Styles
   Depends on styles.css for base tokens
══════════════════════════════════════ */

/* Active nav link */
.nav-link--active {
    color: var(--emerald) !important;
}

.nav-link--active::after {
    width: 100% !important;
}

/* Shared page primitives */
.rp-section {
    padding: 7rem 0;
}

.rp-kicker {
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald);
    opacity: 0.75;
    margin-bottom: 1rem;
}

.rp-section-header {
    margin-bottom: 3.5rem;
}

.rp-section-title {
    font-size: 2.75rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--light-text) 0%, rgba(248, 250, 252, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.rp-section-sub {
    font-size: 1rem;
    color: var(--gray-text);
    line-height: 1.65;
    max-width: 520px;
}

/* ══════════════
   Hero
══════════════ */
.rp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 6rem;
}

.rp-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.rp-orb-center {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(34, 229, 127, 0.07) 0%, transparent 60%);
}

.rp-orb-left {
    top: 30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(28, 183, 232, 0.04) 0%, transparent 65%);
}

.rp-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.rp-hero-content .regina-eyebrow {
    margin-bottom: 2rem;
}

.rp-hero-title {
    font-size: 7.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--light-text) 0%, rgba(248, 250, 252, 0.65) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rp-hero-sub {
    font-size: 1.3rem;
    color: var(--gray-text);
    line-height: 1.7;
    max-width: 620px;
    margin: 0 auto 3rem;
    font-weight: 400;
}

.rp-hero-cta {
    display: inline-flex;
}

/* ══════════════
   Power Statement
══════════════ */
.rp-power-section {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 7rem 0;
}

.rp-power-block {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.rp-power-lead {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--light-text);
    line-height: 1.25;
    letter-spacing: -0.025em;
    margin-bottom: 1.75rem;
}

.rp-power-body {
    font-size: 1.15rem;
    color: var(--gray-text);
    line-height: 1.75;
}

/* ══════════════
   Compounding Intelligence
══════════════ */
.rp-compound-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.rp-compound-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rp-compound-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 0 0 20px 20px;
}

.rp-compound-card::after         { background: linear-gradient(90deg, rgba(34, 229, 127, 0.4), transparent); }
.rp-compound-card--mid::after    { background: linear-gradient(90deg, var(--emerald), var(--cyan)); opacity: 0.8; }
.rp-compound-card--end::after    { background: linear-gradient(90deg, var(--cyan), var(--emerald)); }

.rp-compound-card--mid {
    border-color: rgba(34, 229, 127, 0.14);
    background: rgba(34, 229, 127, 0.025);
}

.rp-compound-card--end {
    border-color: rgba(28, 183, 232, 0.1);
}

.rp-compound-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.rp-compound-num {
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    color: var(--emerald);
    opacity: 0.45;
    margin-bottom: 1.5rem;
    display: block;
}

.rp-compound-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--light-text);
    line-height: 1.65;
    letter-spacing: -0.01em;
}

.rp-compound-card--mid .rp-compound-text {
    font-size: 1.2rem;
}

/* ══════════════
   Industry-Aware Intelligence
══════════════ */
.rp-industry-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.rp-industry-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 2rem;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.rp-industry-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.rp-industry-list li {
    font-size: 0.95rem;
    color: var(--gray-text);
    line-height: 1.65;
    padding-left: 1.1rem;
    position: relative;
}

.rp-industry-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--emerald);
    opacity: 0.55;
}

.rp-industry-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.rp-industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 229, 127, 0.3), transparent);
}

.rp-industry-card-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--emerald);
    opacity: 0.75;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(34, 229, 127, 0.1);
}

.rp-score-rows {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 1.25rem;
}

.rp-score-row {
    display: grid;
    grid-template-columns: 90px 1fr 40px;
    align-items: center;
    gap: 0.8rem;
}

.rp-score-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-text);
}

.rp-score-bar-wrap {
    height: 5px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.rp-score-bar {
    height: 100%;
    width: var(--pct);
    background: linear-gradient(90deg, var(--emerald), var(--emerald-light));
    border-radius: 4px;
}

.rp-score-bar--high { background: linear-gradient(90deg, #22E57F, #00ffaa); }
.rp-score-bar--mid  { background: linear-gradient(90deg, #1CB7E8, #22E57F); }

.rp-score-val {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--emerald);
    text-align: right;
}

.rp-card-footnote {
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-text);
    opacity: 0.45;
    text-align: right;
}

/* ══════════════
   How Regina Operates
══════════════ */
.rp-operates-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
}

.rp-op-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.925rem;
    color: var(--gray-text);
    line-height: 1.5;
    transition: background 0.2s ease, color 0.2s ease;
}

.rp-op-item:nth-child(even)       { border-right: none; }
.rp-op-item:nth-last-child(-n+2)  { border-bottom: none; }

.rp-op-item:hover {
    background: rgba(34, 229, 127, 0.03);
    color: var(--light-text);
}

.rp-op-dot {
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: var(--emerald);
    opacity: 0.55;
}

/* ══════════════
   Visual Proof Block
══════════════ */
.rp-proof-section {
    background: var(--darker-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 6rem 0;
}

.rp-proof-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.rp-proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 5rem;
}

.rp-proof-stat--peak .rp-proof-num {
    background: linear-gradient(135deg, #22E57F, #00ffaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rp-proof-num {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rp-proof-pct {
    font-size: 2.5rem;
    font-weight: 800;
}

.rp-proof-name {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-text);
    opacity: 0.65;
}

.rp-proof-divider {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.rp-proof-label {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-text);
    opacity: 0.45;
}

/* ══════════════
   Always Moving
══════════════ */
.rp-always-section {
    position: relative;
}

.rp-always-block {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.rp-always-title {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--light-text) 0%, rgba(248, 250, 252, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rp-always-body {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.75;
}

/* ══════════════
   What This Looks Like in Practice
══════════════ */
.rp-practice-section {
    position: relative;
}

.rp-practice-header {
    margin-bottom: 3rem;
}

.rp-practice-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Briefing Card */
.rp-briefing-card {
    background: rgba(6, 10, 15, 0.92);
    border: 1px solid rgba(34, 229, 127, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 96px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(34, 229, 127, 0.06), 0 0 60px rgba(34, 229, 127, 0.04);
    max-width: 480px;
}

.rp-bc-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    background: rgba(34, 229, 127, 0.06);
    border-bottom: 1px solid rgba(34, 229, 127, 0.12);
}

.rp-bc-signal {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--emerald);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

.rp-bc-header-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald);
    flex: 1;
}

.rp-bc-today {
    font-size: 0.67rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-text);
    opacity: 0.55;
}

.rp-bc-body {
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.rp-bc-contact-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1.25rem;
}

.rp-bc-contact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.rp-bc-micro {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gray-text);
    opacity: 0.5;
}

.rp-bc-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--light-text);
    letter-spacing: -0.02em;
}

.rp-bc-amount {
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rp-bc-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 1rem 0;
}

.rp-bc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.25rem 0;
}

.rp-bc-row-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-text);
    opacity: 0.55;
    flex-shrink: 0;
}

.rp-bc-row-val {
    font-size: 0.875rem;
    color: var(--gray-text);
    text-align: right;
}

.rp-bc-row--risk .rp-bc-row-val {
    color: #f59e0b;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 600;
}

.rp-bc-say {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rp-bc-quote {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.6;
    font-style: italic;
    padding: 0.75rem 1rem;
    background: rgba(34, 229, 127, 0.04);
    border-left: 2px solid rgba(34, 229, 127, 0.3);
    border-radius: 0 8px 8px 0;
}

.rp-bc-outcome-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.rp-bc-outcome {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--emerald);
    letter-spacing: -0.01em;
}

/* Practice CTA */
.rp-practice-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rp-bridge-statement {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--light-text);
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.rp-practice-note {
    font-size: 0.8rem;
    color: var(--gray-text);
    opacity: 0.55;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .rp-practice-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .rp-briefing-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .rp-bridge-statement {
        font-size: 1.4rem;
    }
}

/* ══════════════
   Closing
══════════════ */
.rp-closing {
    padding: 9rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, transparent, var(--darker-bg));
}

.rp-closing-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 229, 127, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.rp-closing-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.rp-closing-line {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.rp-closing-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.rp-back-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.65;
}

.rp-back-link:hover {
    color: var(--emerald);
    opacity: 1;
}

/* ══════════════
   Responsive
══════════════ */
@media (max-width: 1024px) {
    .rp-hero-title          { font-size: 5.5rem; }
    .rp-compound-grid       { grid-template-columns: 1fr; gap: 1rem; }
    .rp-industry-layout     { grid-template-columns: 1fr; gap: 3rem; }
    .rp-proof-stat          { padding: 0 3rem; }
    .rp-proof-num           { font-size: 4rem; }
    .rp-proof-pct           { font-size: 2rem; }
}

@media (max-width: 768px) {
    .rp-hero-title          { font-size: 4rem; }
    .rp-hero-sub            { font-size: 1.1rem; }
    .rp-power-lead          { font-size: 1.65rem; }
    .rp-section-title       { font-size: 2.1rem; }
    .rp-operates-grid       { grid-template-columns: 1fr; }
    .rp-op-item             { border-right: none; }
    .rp-op-item:nth-last-child(2) { border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    .rp-op-item:last-child  { border-bottom: none; }
    .rp-proof-strip         { flex-direction: column; gap: 2.5rem; }
    .rp-proof-divider       { width: 60px; height: 1px; }
    .rp-proof-stat          { padding: 0; }
    .rp-proof-num           { font-size: 3.5rem; }
    .rp-closing-line        { font-size: 2.75rem; }
    .rp-always-title        { font-size: 2.25rem; }
    .rp-section             { padding: 5rem 0; }
    .rp-power-section       { padding: 5rem 0; }
    .rp-industry-card       { padding: 2rem; }
}

@media (max-width: 480px) {
    .rp-hero-title          { font-size: 3rem; }
    .rp-power-lead          { font-size: 1.35rem; }
    .rp-section-title       { font-size: 1.85rem; }
    .rp-closing-line        { font-size: 2rem; }
    .rp-closing-actions     { flex-direction: column; gap: 1.25rem; }
    .rp-proof-num           { font-size: 3rem; }
    .rp-proof-pct           { font-size: 1.5rem; }
}
