/* Florida Market Report prototype — light theme. Chart colors follow the dataviz reference palette. */
:root {
  /* SeaGlass palette: navy #153e69, deep navy #003c69, teal #0090b4 / #0d84a9 / #0a6a8a, Montserrat light headings */
  --page: #f5f7f9;
  --surface: #ffffff;
  --ink: #1d2b3a;
  --ink-2: #4d5a68;
  --muted: #8a949e;
  --hairline: #e3e7eb;
  --axis: #c5ccd3;
  --border: rgba(21, 62, 105, 0.12);
  --navy: #153e69;
  --navy-deep: #003c69;
  --accent: #0090b4;
  --accent-ink: #0a6a8a;
  --gold: #7fd3e6;   /* light sea-glass highlight used on the dark header */
  --series-1: #2a78d6;  /* sold / close price */
  --series-2: #eb6834;  /* new listings / list price */
  --series-3: #1baf7a;  /* active */
  --series-4: #eda100;
  --good: #006300;
  --bad: #d03b3b;
  --warn-bg: #fff7e0;
  --warn-ink: #7a5a00;
  --radius: 6px;
  --shadow: 0 1px 2px rgba(21,62,105,.04), 0 6px 20px rgba(21,62,105,.05);
  --font: Montserrat, "Open Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --heading-weight: 300;
  --heading-transform: none;
  --hero-2: #0f3557;
  font-family: var(--font);
}
* { box-sizing: border-box; }
html { color-scheme: light; }
body { margin: 0; background: var(--page); color: var(--ink); font-size: 15px; line-height: 1.45; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; }
[hidden] { display: none !important; }

/* header */
.hdr { background: var(--navy); color: #fff; }
.hdr__in { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 12px; color: #fff; text-decoration: none; }
.brand__mark { width: 36px; height: 36px; }
.brand__logo { height: 30px; width: auto; display: block; max-width: 300px; }
.hdr__logout { margin: 0; }
.linkbtn { border: 0; background: transparent; color: rgba(255,255,255,.75); font: inherit; font-size: 12.5px; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.linkbtn:hover { color: #fff; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font); font-size: 17px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; }
.brand__sub { font-size: 11.5px; color: rgba(255,255,255,.65); letter-spacing: .3px; text-transform: uppercase; }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; font-size: 12.5px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); white-space: nowrap; }
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: #9aa; }
.pill--ok .pill__dot { background: #35d07f; box-shadow: 0 0 0 3px rgba(53,208,127,.25); }
.pill--off .pill__dot { background: var(--gold); }
.pill--error .pill__dot { background: #ff6b6b; }
.pill--checking .pill__dot { animation: pulse 1.2s infinite; }
@keyframes pulse { 0%,100% { opacity: .4 } 50% { opacity: 1 } }

/* hero */
.hero { background: linear-gradient(180deg, var(--navy) 0%, var(--hero-2) 100%); color: #fff; padding: 36px 0 30px; }
.hero__eyebrow { margin: 0 0 6px; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.hero__title { font-family: var(--font); font-weight: var(--heading-weight); text-transform: none; letter-spacing: calc(var(--heading-weight) / 300 * 0.2px - 0.2px + 0px); font-size: clamp(24px, 3vw, 34px); margin-bottom: 18px; max-width: 900px; }
.ask { position: relative; max-width: 960px; }
.ask__box { display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 4px; padding: 8px 8px 8px 16px; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.ask__icon { width: 22px; height: 22px; color: var(--accent); flex: none; }
.ask__input { flex: 1; border: 0; outline: 0; font: inherit; font-size: 17px; color: var(--ink); min-width: 0; padding: 8px 0; }
.ask__input::placeholder { color: #9aa2aa; }
.ask__clear { border: 0; background: transparent; font-size: 22px; color: var(--muted); cursor: pointer; padding: 0 6px; }
.ask__go { flex: none; }
.progress { position: absolute; left: 16px; right: 16px; bottom: -3px; height: 3px; overflow: hidden; border-radius: 3px; opacity: 0; transition: opacity .2s; }
.progress span { display: block; height: 100%; width: 35%; background: var(--gold); border-radius: 3px; animation: slide 1.1s infinite ease-in-out; }
.progress.on { opacity: 1; }
@keyframes slide { 0% { transform: translateX(-100%) } 100% { transform: translateX(300%) } }
.examples { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; max-width: 960px; }
.examples button { border: 1px solid rgba(255,255,255,.28); background: rgba(255,255,255,.08); color: #fff; border-radius: 3px; padding: 6px 13px; font: inherit; font-size: 13px; cursor: pointer; transition: background .15s; }
.examples button:hover { background: rgba(255,255,255,.18); }

/* buttons */
.btn { border-radius: 3px; text-transform: uppercase; letter-spacing: 1px; font-size: 12.5px; padding: 10px 16px; font: inherit; font-weight: 600; font-size: 14px; cursor: pointer; border: 1px solid transparent; }
.btn--primary { background: var(--navy-deep); color: #fff; }
.btn--primary:hover { background: var(--navy); }
.btn--ghost { background: transparent; color: var(--accent); border-color: var(--border); }
.btn--ghost:hover, .btn--ghost[aria-pressed="true"], .btn--ghost[aria-expanded="true"] { background: #eef4f6; }

/* answer */
.answer { margin: 26px 0 8px; background: var(--surface); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 20px 24px; box-shadow: var(--shadow); }
.answer__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.answer__eyebrow { font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.answer__meta { font-size: 12px; color: var(--muted); }
.answer__headline { font-family: var(--font); font-weight: 400; color: var(--navy); font-size: clamp(19px, 2.2vw, 24px); line-height: 1.4; margin: 8px 0 8px; }
.answer__narrative { margin: 4px 0 8px; color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }
.answer__details { margin: 4px 0 8px; padding-left: 18px; color: var(--ink-2); }
.answer__details li { margin: 2px 0; }
.answer__caveats { font-size: 13px; color: var(--warn-ink); }
.answer__caveats p { margin: 4px 0; background: var(--warn-bg); padding: 6px 10px; border-radius: 8px; display: inline-block; }
.understood { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--hairline); }
.understood__label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); font-weight: 600; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip { display: inline-flex; align-items: center; gap: 6px; background: #eef4f6; color: var(--accent-ink); border-radius: 999px; padding: 4px 11px; font-size: 13px; }
.chip small { color: var(--muted); font-size: 11px; }
.chip--warn { background: var(--warn-bg); color: var(--warn-ink); }
.warnings { margin-top: 8px; font-size: 13px; color: var(--warn-ink); }
.warnings p { margin: 2px 0; }
.error { margin: 12px 0; background: #fdecec; color: #8a1f1f; border: 1px solid #f3c3c3; padding: 10px 14px; border-radius: 10px; font-size: 14px; }

/* filters */
.filters { margin: 22px 0 18px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow); }
.filters__row { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 12px 14px; }
.filters__row--types { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--hairline); align-items: center; }
.filters__label { font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); font-weight: 600; }
.filters__spacer { flex: 1; }
.field { display: flex; flex-direction: column; gap: 4px; min-width: 130px; }
.field--grow { flex: 1 1 260px; }
.field--narrow { min-width: 90px; }
.field label { font-size: 12px; color: var(--ink-2); font-weight: 600; }
.field input, .field select { font: inherit; font-size: 14px; color: var(--ink); border: 1px solid var(--axis); border-radius: 9px; padding: 9px 11px; background: #fff; min-width: 0; }
.field input:focus, .field select:focus { outline: 2px solid rgba(21,94,117,.25); border-color: var(--accent); }
.field__pair { display: flex; align-items: center; gap: 6px; }
.field__pair input { width: 110px; }
.field__pair span { color: var(--muted); }
.combo { position: relative; }
.combo__list { position: absolute; z-index: 30; top: 100%; left: 0; right: 0; margin: 4px 0 0; padding: 4px; list-style: none; background: #fff; border: 1px solid var(--border); border-radius: 10px; box-shadow: 0 12px 30px rgba(18,34,45,.14); max-height: 320px; overflow: auto; }
.combo__list li { padding: 8px 10px; border-radius: 7px; cursor: pointer; display: flex; justify-content: space-between; gap: 10px; font-size: 14px; }
.combo__list li small { color: var(--muted); font-size: 12px; white-space: nowrap; }
.combo__list li[aria-selected="true"], .combo__list li:hover { background: #eef4f6; }
.combo__list .combo__empty { color: var(--muted); cursor: default; }
.types { display: flex; flex-wrap: wrap; gap: 6px; }
.type { position: relative; }
.type input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.type span { display: inline-block; padding: 5px 11px; border-radius: 999px; border: 1px solid var(--axis); font-size: 13px; color: var(--ink-2); background: #fff; }
.type input:checked + span { background: var(--accent); border-color: var(--accent); color: #fff; }
.type input:focus-visible + span { outline: 2px solid rgba(21,94,117,.35); }
.compare { display: flex; gap: 6px; flex-wrap: wrap; }
.compare .chip button { border: 0; background: transparent; cursor: pointer; font-size: 15px; line-height: 1; color: inherit; padding: 0 0 0 2px; }
.compare .chip i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; }

/* report */
.report { transition: opacity .2s; }
.report[aria-busy="true"] { opacity: .55; pointer-events: none; }
.report__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin: 6px 0 14px; }
.report__eyebrow { margin: 0 0 4px; font-size: 12px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.report__title { font-family: var(--font); color: var(--navy); font-size: clamp(26px, 3vw, 36px); font-weight: var(--heading-weight); text-transform: var(--heading-transform); line-height: 1.15; }
.report__sub { margin: 6px 0 0; color: var(--ink-2); font-size: 14px; }
.report__tools { display: flex; gap: 8px; }
.report__grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 18px; align-items: start; }
.report__main { min-width: 0; }
.report__side { display: flex; flex-direction: column; gap: 14px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); }
.card--wide { margin-bottom: 14px; }
.card__title { font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 8px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.card__sub { font-weight: 400; color: var(--muted); font-size: 12.5px; }

/* kpis */
.kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-bottom: 14px; }
.kpi { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px 12px; box-shadow: var(--shadow); min-width: 0; }
.kpi__label { font-size: 12.5px; color: var(--ink-2); margin: 0 0 6px; }
.kpi__value { font-size: 26px; font-weight: 600; letter-spacing: -.3px; line-height: 1.1; }
.kpi__delta { font-size: 12.5px; margin-top: 6px; color: var(--muted); display: flex; align-items: center; gap: 5px; flex-wrap: wrap; }
.kpi__delta b { font-weight: 600; }
.kpi__delta .up { color: var(--good); }
.kpi__delta .down { color: var(--bad); }
.kpi__delta .flat { color: var(--ink-2); }
.kpi__delta .neutral { color: var(--ink-2); }
.kpi__spark { height: 26px; margin-top: 8px; }
.kpi__spark svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* charts */
.charts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.chart { margin: 0; }
.chart__canvas { position: relative; height: 230px; }
.chart__legend { display: flex; gap: 14px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-2); margin: -2px 0 6px; }
.chart__legend i { display: inline-block; width: 14px; height: 3px; border-radius: 2px; vertical-align: middle; margin-right: 6px; }
.chart__legend i.rect { height: 10px; width: 10px; border-radius: 2px; }
.hbars { display: flex; flex-direction: column; gap: 9px; padding-top: 4px; }
.hbar { display: grid; grid-template-columns: 120px 1fr 190px; align-items: center; gap: 10px; font-size: 13px; }
.hbar__label { color: var(--ink-2); }
.hbar__track { height: 14px; background: transparent; position: relative; }
.hbar__fill { height: 14px; background: var(--series-1); border-radius: 0 4px 4px 0; min-width: 2px; }
.hbar__value { color: var(--ink-2); font-size: 12.5px; white-space: nowrap; }
.hbar__value b { color: var(--ink); font-weight: 600; }
.hbar__empty { color: var(--muted); font-size: 13px; }

/* tables */
.tables { margin-top: 14px; }
.table-scroll { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 13px; }
.table th, .table td { padding: 7px 10px; border-bottom: 1px solid var(--hairline); text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.table th:first-child, .table td:first-child { text-align: left; }
.table th { color: var(--ink-2); font-weight: 600; font-size: 12px; border-bottom: 1px solid var(--axis); }
.table tr.prior td { color: var(--muted); }
.table tr.total td { font-weight: 600; border-top: 1px solid var(--axis); }
.table td.up { color: var(--good); }
.table td.down { color: var(--bad); }

/* side */
.map-card { padding: 0; overflow: hidden; }
.map { height: 260px; background: #e8eef0; }
.map__legend { display: flex; flex-wrap: wrap; gap: 10px; padding: 8px 12px; font-size: 12.5px; color: var(--ink-2); }
.map__legend i { display: inline-block; width: 10px; height: 10px; border-radius: 2px; margin-right: 5px; vertical-align: -1px; }
.map__legend:empty { display: none; }
.kv { margin: 0; display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; font-size: 13.5px; }
.kv dt { color: var(--ink-2); }
.kv dd { margin: 0; font-weight: 600; text-align: right; font-variant-numeric: tabular-nums; }
.kv dd small { color: var(--muted); font-weight: 400; margin-left: 4px; }

/* drawer */
.drawer { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: #1b2730; color: #dfe6ea; border-radius: var(--radius); padding: 16px 18px; margin-bottom: 16px; font-size: 12.5px; }
.drawer h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; color: #9fb3bf; margin: 8px 0 6px; display: flex; gap: 8px; align-items: center; }
.drawer pre { margin: 0; white-space: pre-wrap; word-break: break-word; font: 12px/1.45 ui-monospace, SFMono-Regular, Menlo, monospace; background: rgba(255,255,255,.05); padding: 10px; border-radius: 8px; max-height: 260px; overflow: auto; }
.drawer__tag { background: rgba(255,255,255,.1); border-radius: 999px; padding: 1px 8px; font-size: 11px; text-transform: none; letter-spacing: 0; }
.drawer__calls { font: 11.5px/1.4 ui-monospace, SFMono-Regular, Menlo, monospace; max-height: 260px; overflow: auto; }
.drawer__calls div { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; padding: 3px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.drawer__calls span:first-child { word-break: break-all; color: #cfe3ec; }
.drawer__calls .cached { color: #9fd6b3; }

.attribution { margin: 18px 0 30px; font-size: 12.5px; color: var(--muted); }
.foot { border-top: 1px solid var(--hairline); padding: 18px 0 36px; font-size: 12.5px; color: var(--muted); }
.foot .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1000px) {
  .report__grid { grid-template-columns: 1fr; }
  .kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .drawer { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .charts { grid-template-columns: 1fr; }
  .hbar { grid-template-columns: 90px 1fr; }
  .hbar__value { grid-column: 2; }
  .ask__box { flex-wrap: wrap; }
  .ask__go { width: 100%; }
}

/* loading states */
.spinner { display: none; width: 12px; height: 12px; border: 2px solid rgba(0,144,180,.25); border-top-color: var(--accent); border-radius: 50%; margin-right: 8px; vertical-align: -1px; animation: spin .8s linear infinite; }
.answer--loading .spinner { display: inline-block; }
.answer--loading .answer__headline { color: var(--ink-2); font-weight: 300; }
@keyframes spin { to { transform: rotate(360deg); } }
.answer__writing { margin: 6px 0 10px; color: var(--muted); font-size: 14px; font-style: italic; display: flex; align-items: center; gap: 10px; }
.dots { display: inline-flex; gap: 4px; }
.dots i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: .3; animation: blink 1.2s infinite; }
.dots i:nth-child(2) { animation-delay: .2s; } .dots i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }
.answer__narrative { animation: fadein .5s ease-out; }
@keyframes fadein { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }

/* KPI groups: last month at a glance, then the trailing window */
.kpi-group { margin-bottom: 18px; }
.group__head { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin: 0 0 10px; }
.group__title { font-size: 12px; letter-spacing: 1.8px; text-transform: uppercase; color: var(--navy); font-weight: 600; }
.group__sub { font-size: 12.5px; color: var(--muted); }
.kpis--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.kpi__label { text-transform: uppercase; letter-spacing: 1.2px; font-size: 11px; color: var(--ink-2); font-weight: 600; }
.kpi__value { font-weight: 300; font-size: 30px; color: var(--navy); }
.kpi__delta + .kpi__delta { margin-top: 2px; }
@media (max-width: 1000px) { .kpis--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.map__note { margin: 0; padding: 6px 12px 8px; font-size: 11.5px; color: var(--muted); }

/* sign-in and landing */
.login-body { background: linear-gradient(180deg, var(--navy) 0%, var(--hero-2) 100%); min-height: 100vh; margin: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font); }
.login { width: 100%; padding: 24px; }
.login__card { max-width: 420px; margin: 0 auto; background: var(--surface); border-radius: var(--radius); padding: 34px 34px 26px; box-shadow: 0 24px 60px rgba(0,0,0,.28); text-align: center; }
.login__card--wide { max-width: 720px; }
.login__logo { display: block; margin: 0 auto 14px; width: auto; max-width: 100%; }
.login__name { font-size: 20px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--navy); }
.login__title { font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 4px 0 10px; }
.login__sub { color: var(--ink-2); font-size: 14px; margin: 0 0 20px; }
.login__form { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.login__form label { font-size: 12px; color: var(--ink-2); font-weight: 600; }
.login__form input { font: inherit; font-size: 16px; padding: 11px 12px; border: 1px solid var(--axis); border-radius: 4px; }
.login__form input:focus { outline: 2px solid rgba(0,144,180,.25); border-color: var(--accent); }
.login__form .btn { margin-top: 8px; padding: 12px; }
.login__error { margin: 0; color: var(--bad); font-size: 13px; }
.login__foot { margin: 18px 0 0; font-size: 12.5px; }
.login__foot a { color: var(--muted); }
.landing { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; margin-top: 8px; }
.landing__site { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 34px 20px; border-radius: var(--radius); background: linear-gradient(180deg, var(--tile) 0%, var(--tile-2) 100%); color: #fff; text-decoration: none; min-height: 150px; transition: transform .15s; }
.landing__site:hover { transform: translateY(-2px); }
.landing__site img { width: auto; max-width: 100%; }
.landing__site small { color: rgba(255,255,255,.75); font-size: 12px; }

/* ---- "What kind of market is it?" dial ---- */
.dial-card { margin: 0; text-align: center; padding: 18px 18px 14px; }
.dial__question { font-size: 13px; color: var(--muted); font-weight: 500; }
.dial__verdict { font-size: 26px; font-weight: 600; color: var(--navy); margin: 4px 0 2px; letter-spacing: -.2px; }
.dial { width: 100%; max-width: 260px; margin: 0 auto; aspect-ratio: 2 / 1.05; }
.dial svg { width: 100%; height: 100%; display: block; overflow: visible; }
.dial__labels { display: grid; grid-template-columns: 1fr 1.2fr 1fr; align-items: start; margin-top: -4px; }
.dial__labels span { display: flex; flex-direction: column; line-height: 1.1; }
.dial__labels b { font-size: 15px; font-weight: 500; color: var(--ink); }
.dial__labels small { font-size: 12px; color: var(--muted); }
.dial__center b { font-size: 26px; font-weight: 600; color: var(--ink); margin-top: -34px; position: relative; z-index: 1; }
.dial { position: relative; z-index: 0; }
.dial__center small { font-size: 12.5px; color: var(--ink-2); }
.dial__period { margin-top: 14px; font-size: 15px; color: var(--ink); padding-bottom: 6px; border-bottom: 3px solid var(--gold); display: inline-block; min-width: 150px; }
.dial__note { margin-top: 10px; font-size: 12.5px; color: var(--ink-2); line-height: 1.4; }
.dial__note .up { color: var(--good); font-weight: 600; }
.dial__note .down { color: var(--bad); font-weight: 600; }

/* ---- splash page with drifting squares ---- */
.splash { margin: 0; min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(160deg, #0f2f3f 0%, #153e69 55%, #0a6a8a 100%); font-family: Montserrat, system-ui, sans-serif; overflow: hidden; position: relative; }
.splash__main { position: relative; z-index: 1; text-align: center; padding: 24px; }
.splash__title { color: #fff; font-weight: 300; font-size: clamp(28px, 5vw, 54px); letter-spacing: 1px; text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.squares { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.squares span { position: absolute; bottom: -160px; display: block; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 6px; animation-name: rise; animation-timing-function: linear; animation-iteration-count: infinite; }
@keyframes rise { 0% { transform: translateY(0) rotate(var(--rot, 0deg)); opacity: 0; } 8% { opacity: 1; } 100% { transform: translateY(-120vh) rotate(calc(var(--rot, 0deg) + 180deg)); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .squares span { animation: none; opacity: .5; bottom: auto; top: 30%; } }
