/* TIAG App shell — dark cosmic brand (matches the live landing + Globe).
   Mobile-first. CPU-soft: no blur, no heavy shadows, no continuous animation. */

:root {
  --bg: #04070e;
  --bg-raise: #0a1120;
  --panel: #0d1526;
  --text: #eaf3ff;
  --muted: #93a8cc;
  --green: #5da45c;
  --gold: #ffd24d;
  --line: rgba(120, 180, 150, .16);
  --line-strong: rgba(120, 180, 150, .32);
  --radius: 14px;
  --maxw: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: Spectral, Georgia, serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
h1, h2, h3, .brand { font-family: Fraunces, Georgia, serif; font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(1.7rem, 5.5vw, 2.6rem); }
h2 { font-size: clamp(1.25rem, 4vw, 1.7rem); }
h3 { font-size: 1.1rem; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

main { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 1.25rem 1rem 4rem; flex: 1; }
.kicker { color: var(--gold); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; font-family: system-ui, sans-serif; }
.lede { color: var(--muted); max-width: 42rem; margin-top: .5rem; }
section { margin-top: 2.25rem; }

.grid { display: grid; gap: .8rem; grid-template-columns: 1fr; margin-top: 1rem; }
@media (min-width: 620px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 920px) { .grid.three { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--bg-raise);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  color: var(--text);
  display: block;
}
.card:hover { border-color: var(--line-strong); text-decoration: none; }
.card h3 { color: var(--text); }
.card p { color: var(--muted); font-size: .92rem; margin-top: .35rem; }
.card .tag { display: inline-block; margin-top: .7rem; color: var(--gold); font-size: .78rem; font-family: system-ui, sans-serif; letter-spacing: .06em; }

.btn {
  display: inline-block;
  background: var(--green);
  color: #04140c;
  font-family: system-ui, sans-serif;
  font-size: .95rem;
  padding: .65rem 1.3rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}
.btn:hover { text-decoration: none; opacity: .9; }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--line-strong); }

.badge { display: inline-block; font-family: system-ui, sans-serif; font-size: .72rem; letter-spacing: .05em; padding: .15rem .6rem; border-radius: 999px; border: 1px solid var(--line-strong); color: var(--muted); vertical-align: middle; }
.badge.live { color: var(--green); border-color: rgba(93, 164, 92, .4); }
.badge.gold { color: var(--gold); border-color: rgba(255, 210, 77, .4); }

input, button, select { font: inherit; }
input[type="email"], input[type="text"] {
  width: 100%;
  background: var(--panel);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--text);
  padding: .65rem .9rem;
}
input:focus { outline: 2px solid var(--green); outline-offset: 1px; border-color: transparent; }

footer { border-top: 1px solid var(--line); padding: 1.5rem 1rem 2.5rem; }
footer .inner { max-width: var(--maxw); margin: 0 auto; color: var(--muted); font-size: .85rem; display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; }
footer a { color: var(--muted); }
