/* Realti Intel — page styles: home (loaded after styles.css) */

nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(15,23,42,0.45); backdrop-filter: blur(20px) saturate(1.6); -webkit-backdrop-filter: blur(20px) saturate(1.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    height: 64px;
    display: flex; align-items: center;
  }

.nav-links a:hover { color: var(--white); }

section { width: 100%; }

#hero {
    background: var(--navy);
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative; overflow: hidden;
  }

.hero-grid {
    display: grid; grid-template-columns: 1fr 480px; gap: 72px; align-items: center;
  }

.hero-h1 {
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 900; line-height: 1.04; letter-spacing: -2.5px;
    color: var(--white); margin-bottom: 22px;
  }

.hero-sub {
    font-size: 17px; line-height: 1.65; color: var(--muted);
    max-width: 540px; margin-bottom: 36px; font-weight: 400;
  }

.hero-cta-row { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }

.btn-hero {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green); color: var(--white);
    font-size: 15px; font-weight: 800; letter-spacing: -0.1px;
    padding: 14px 26px; border-radius: 8px;
    text-decoration: none; border: none; cursor: pointer;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 24px rgba(18,183,106,0.35);
  }

.hero-trust {
    display: grid; grid-template-columns: repeat(2, auto); gap: 12px 32px;
    font-size: 12.5px; color: var(--muted); font-weight: 500; width: fit-content;
  }

.trust-item { display: flex; align-items: center; gap: 6px; }

.trust-check { color: var(--green); font-size: 13px; }

.mps-widget {
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5);
    position: relative;
  }

.mps-widget::before {
    content: '';
    position: absolute; inset: -1px; border-radius: 16px;
    background: linear-gradient(135deg, rgba(18,183,106,0.2), transparent 50%);
    pointer-events: none;
  }

.widget-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px;
  }

.widget-title { font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }

.widget-badge {
    font-size: 10px; font-weight: 600; color: var(--green);
    background: rgba(18,183,106,0.12); border: 1px solid rgba(18,183,106,0.25);
    padding: 3px 8px; border-radius: 100px; letter-spacing: 0.06em;
  }

.widget-filter {
    display: flex; gap: 8px; margin-bottom: 24px;
  }

.filter-chip {
    font-size: 11.5px; font-weight: 600; padding: 5px 12px; border-radius: 100px;
    background: rgba(255,255,255,0.06); color: var(--muted);
    border: 1px solid rgba(255,255,255,0.08);
  }

.filter-chip.active { background: var(--green); color: var(--white); border-color: var(--green); font-weight: 700; }

.mps-score-row { display: flex; align-items: flex-end; gap: 16px; margin-bottom: 8px; }

.mps-number { font-size: 64px; font-weight: 900; color: var(--white); letter-spacing: -3px; line-height: 1; }

.mps-of { font-size: 18px; color: var(--muted); margin-bottom: 10px; font-weight: 500; }

.mps-label-row { margin-bottom: 24px; }

.mps-label { font-size: 15px; font-weight: 700; color: var(--green); margin-bottom: 4px; }

.mps-sublabel { font-size: 12px; color: var(--muted); }

.gauge-track {
    height: 6px; background: rgba(255,255,255,0.08); border-radius: 100px;
    margin-bottom: 24px; overflow: hidden;
  }

.gauge-fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, #16A34A, #22C55E); width: 54%; }

.gauge-labels { display: flex; justify-content: space-between; font-size: 10px; color: var(--muted); margin-top: -18px; margin-bottom: 20px; }

.pillars { display: grid; gap: 10px; }

.pillar-row { display: flex; align-items: center; gap: 10px; }

.pillar-name { font-size: 11.5px; color: var(--muted); width: 100px; flex-shrink: 0; font-weight: 500; }

.pillar-track { flex: 1; height: 5px; background: rgba(255,255,255,0.07); border-radius: 100px; overflow: hidden; }

.pillar-fill { height: 100%; border-radius: 100px; background: var(--green); }

.pillar-score { font-size: 11.5px; color: var(--white); font-weight: 600; width: 28px; text-align: right; flex-shrink: 0; }

.cockpit-bar {
    margin-top: 20px; padding: 14px 16px;
    background: rgba(18,183,106,0.08); border: 1px solid rgba(18,183,106,0.2);
    border-radius: 10px;
    display: flex; justify-content: space-between; align-items: center;
  }

.cockpit-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }

.cockpit-values { display: flex; gap: 12px; }

.cockpit-val { font-size: 12.5px; font-weight: 700; color: var(--green); }

.cockpit-dot { color: var(--muted); font-size: 10px; margin: 0 2px; }

.widget-footer {
    margin-top: 14px;
    display: flex; align-items: center; gap: 6px;
    font-size: 10.5px; color: rgba(148,163,184,0.5);
  }

.live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: pulse 1.5s infinite; }

#gap {
    background: var(--near-black);
    padding: 100px 0;
    text-align: center;
  }

.gap-inner { max-width: 720px; margin: 0 auto; padding: 0 28px; }

.section-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
    color: var(--green); text-transform: uppercase; margin-bottom: 20px;
  }

.gap-h2 {
    font-size: clamp(28px, 4vw, 44px); font-weight: 800;
    letter-spacing: -1.5px; line-height: 1.15; color: var(--white);
    margin-bottom: 28px;
  }

.gap-body { font-size: 16px; line-height: 1.75; color: #94A3B8; }

.gap-body em { color: var(--white); font-style: normal; font-weight: 600; }

.visual-placeholder {
    border: 1.5px dashed rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 48px 28px;
    text-align: center;
    margin: 40px 0;
    background: rgba(255,255,255,0.02);
  }

.visual-placeholder .ph-icon { font-size: 32px; margin-bottom: 10px; opacity: 0.4; }

.visual-placeholder .ph-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
    color: #F59E0B; text-transform: uppercase; margin-bottom: 6px;
  }

.visual-placeholder .ph-desc { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 460px; margin: 0 auto; }

#before-after {
    background: var(--white);
    padding: 100px 0;
  }

.ba-section-label { color: var(--green-dim); margin-bottom: 16px; }

.ba-h2 {
    font-size: clamp(26px, 3.5vw, 40px); font-weight: 800;
    letter-spacing: -1.2px; color: var(--navy); margin-bottom: 48px;
  }

table.comparison {
    width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  }

table.comparison thead th {
    padding: 16px 24px; font-size: 12px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    background: var(--navy); color: var(--white);
  }

table.comparison thead th:first-child { border-right: 1px solid rgba(255,255,255,0.1); }

table.comparison tbody tr:nth-child(odd) { background: #F8FAFC; }

table.comparison tbody tr:nth-child(even) { background: var(--white); }

table.comparison tbody tr:hover { background: #F0FDF4; }

table.comparison tbody td {
    padding: 20px 24px; font-size: 14.5px; line-height: 1.6;
    border-bottom: 1px solid #E5E7EB; vertical-align: top;
  }

table.comparison tbody td:first-child {
    color: #6B7280; font-style: italic; border-right: 1px solid #E5E7EB;
    width: 40%;
  }

table.comparison tbody td:last-child { color: var(--text-dark); font-weight: 500; }

.data-highlight { color: var(--green-dim); font-weight: 700; }

#platform {
    background: var(--navy);
    padding: 100px 0;
  }

.platform-header { text-align: center; margin-bottom: 64px; }

.platform-h2 {
    font-size: clamp(26px, 3.5vw, 40px); font-weight: 800;
    letter-spacing: -1.2px; color: var(--white); margin-bottom: 12px;
  }

.platform-sub { font-size: 16px; color: var(--muted); }

.cards-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
    margin-bottom: 48px;
  }

.card {
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 30px;
    transition: border-color .2s, transform .2s;
    position: relative; overflow: hidden;
  }

.card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--green), transparent);
    opacity: 0; transition: opacity .2s;
  }

.card:hover { border-color: rgba(18,183,106,0.3); transform: translateY(-2px); }

.card:hover::before { opacity: 1; }

.card-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: rgba(18,183,106,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 16px;
  }

.card-title { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }

.card-body { font-size: 14px; line-height: 1.7; color: var(--muted); margin-bottom: 16px; }

.card-ph {
    border: 1px dashed rgba(255,255,255,0.1); border-radius: 8px;
    padding: 16px; text-align: center; background: rgba(0,0,0,0.15);
  }

.card-ph span { font-size: 11px; color: rgba(148,163,184,0.4); letter-spacing: 0.06em; text-transform: uppercase; }

.platform-cta { text-align: center; }

.platform-cta a {
    font-size: 14px; color: var(--green); font-weight: 600;
    text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
    transition: gap .2s;
  }

.platform-cta a:hover { gap: 10px; }

#testimonial {
    background: var(--near-black);
    padding: 100px 0;
    text-align: center;
  }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    text-align: left;
  }

@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; } }

.testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

.testimonial-card:first-child {
    border-color: rgba(18,183,106,0.2);
    background: rgba(18,183,106,0.04);
  }

.quote-mark-sm { font-size: 36px; color: var(--green); opacity: 0.4; line-height: 1; font-family: Georgia, serif; margin-bottom: -8px; }

.quote-text-card {
    font-size: 15px; font-weight: 500;
    line-height: 1.65; color: rgba(255,255,255,0.88);
    font-style: italic; flex: 1;
  }

.quote-attr-card {
    font-size: 12px; font-weight: 700; color: var(--green);
    letter-spacing: 0.05em; text-transform: uppercase;
  }

.quote-market { font-size: 11px; color: var(--muted); font-weight: 500; font-style: normal; margin-top: 2px; }

.quote-text {
    font-size: clamp(18px, 2.5vw, 26px); font-weight: 500;
    line-height: 1.6; color: var(--white);
    font-style: italic; max-width: 800px; margin: 0 auto 28px;
    letter-spacing: -0.3px;
  }

.quote-attr { font-size: 13px; font-weight: 600; color: var(--green); letter-spacing: 0.04em; }

.visual-placeholder.dark { background: rgba(0,0,0,0.2); border-color: rgba(255,255,255,0.06); }

#coverage {
    background: var(--white);
    padding: 100px 0;
  }

.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.coverage-label { color: var(--green-dim); margin-bottom: 16px; }

.coverage-h2 {
    font-size: clamp(26px, 3.5vw, 40px); font-weight: 800;
    letter-spacing: -1.2px; color: var(--navy); margin-bottom: 18px;
  }

.coverage-body { font-size: 15.5px; line-height: 1.7; color: var(--text-body); margin-bottom: 32px; }

.region-list { display: grid; gap: 10px; }

.region-item {
    padding: 12px 16px; border-radius: 9px;
    background: var(--off-white); border: 1px solid #E5E7EB;
  }

.region-name { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }

.region-towns { font-size: 12px; color: var(--text-muted); }

.region-item.live { border-color: #BBF7D0; background: #F0FDF4; }

.region-item.live .region-name { color: var(--green-dim); }

.region-badge {
    display: inline-block; font-size: 9.5px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 2px 7px; border-radius: 100px; margin-left: 8px;
    background: var(--green); color: var(--white);
    vertical-align: middle;
  }

.region-badge.soon { background: #E5E7EB; color: #6B7280; }

.coverage-map-placeholder {
    border: 1.5px dashed #D1D5DB; border-radius: 14px;
    background: #F9FAFB; padding: 48px 24px; text-align: center;
    min-height: 420px; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
  }

.coverage-map-placeholder .ph-icon { opacity: 0.25; margin-bottom: 10px; }

.coverage-map-placeholder .ph-label { color: #F59E0B; }

.coverage-map-placeholder .ph-desc { color: #9CA3AF; }

.coverage-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--green-dim); font-weight: 600; font-size: 14px;
    text-decoration: none; margin-top: 8px;
    transition: gap .2s;
  }

.coverage-link:hover { gap: 10px; }

#founding {
    background: var(--navy);
    padding: 100px 0;
  }

.founding-inner { max-width: 860px; margin: 0 auto; padding: 0 28px; }

.founding-label { color: var(--green); margin-bottom: 20px; text-align: center; }

.founding-h2 {
    font-size: clamp(30px, 4vw, 50px); font-weight: 900;
    letter-spacing: -2px; line-height: 1.1; color: var(--white);
    text-align: center; margin-bottom: 20px;
  }

.founding-body { font-size: 16px; line-height: 1.7; color: var(--muted); text-align: center; margin-bottom: 48px; max-width: 620px; margin-left: auto; margin-right: auto; }

.perks-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }

.perk {
    background: var(--navy-mid); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px; padding: 24px; text-align: center;
  }

.perk-icon { font-size: 24px; margin-bottom: 12px; }

.perk-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 8px; }

.perk-body { font-size: 13px; color: var(--muted); line-height: 1.6; }

.founding-cta { text-align: center; }

.founding-cta .btn-hero { font-size: 16px; padding: 16px 32px; }

.founding-sub { font-size: 12.5px; color: var(--muted); margin-top: 14px; letter-spacing: 0.02em; }

.btn-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); color: var(--navy);
    font-size: 15px; font-weight: 700; padding: 14px 28px;
    border-radius: 8px; text-decoration: none;
    transition: transform .15s, box-shadow .2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  }

.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }

footer {
    background: #070D19;
    padding: 64px 0 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

.footer-brand { }

.footer-logo {
    font-size: 18px; font-weight: 700; color: var(--white);
    display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
  }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12.5px; color: #475569;
  }

.footer-bottom-left { display: flex; align-items: center; gap: 6px; }

.ma-badge {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(18,183,106,0.1); border: 1px solid rgba(18,183,106,0.2);
    border-radius: 100px; padding: 3px 10px;
    font-size: 11px; font-weight: 600; color: var(--green);
  }

h1, h2, h3 { text-wrap: balance; }

.sticky-bar-text strong { color: #12B76A; }

.sticky-bar-close:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
