/* ============================================================
   george.firexrwt.com - витрина George Droid
   C-deep flat (палитра лого firexrwt) + бирюзовый LED George как вторичный акцент.
   ============================================================ */

:root{
  --bg:#05080d;
  --bg-raised:#0d1014;
  --surface:#1a1d22;
  --surface-hover:#22262c;
  --border:rgba(255,255,255,.10);
  --accent:#fff5b3;          /* кремовый - акцент семьи firexrwt */
  --accent-2:#ffb84d;        /* тёплый halo - hover */
  --led:#2adcc8;             /* бирюзовый LED George - вторичный акцент */
  --text:#eaeaea;
  --text-dim:#9a9a9a;
  --text-mute:#6a6a6a;
  --radius:14px;
  --radius-sm:8px;
  --wrap:1080px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;background:var(--bg);color:var(--text);
  font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;
  font-weight:400;line-height:1.5;-webkit-font-smoothing:antialiased;overflow-x:hidden;
}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
::selection{background:var(--accent);color:#0d1014;}
:focus-visible{outline:2px solid var(--accent);outline-offset:3px;border-radius:4px;}

.wrap{max-width:var(--wrap);margin:0 auto;padding:0 24px;}
section{padding:80px 0;}
h1,h2,h3{font-weight:700;letter-spacing:-.02em;margin:0;}
p{margin:0;}

/* ── topbar ── */
.topbar{position:sticky;top:0;z-index:20;background:rgba(5,8,13,.85);
  backdrop-filter:blur(10px);border-bottom:1px solid var(--border);}
.topbar-inner{max-width:var(--wrap);margin:0 auto;padding:14px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;font-size:16px;}
.brand img{width:30px;height:30px;border-radius:8px;background:var(--surface);}
.topbar nav{display:flex;gap:22px;}
.topbar nav a{font-size:14px;font-weight:500;color:var(--text-dim);transition:color .15s;}
.topbar nav a:hover{color:var(--accent);}
@media(max-width:600px){.topbar nav{display:none;}}

/* ── hero ── */
.hero{padding:72px 0 64px;text-align:center;}
.hero-avatar{width:180px;height:180px;margin:0 auto 28px;border-radius:28px;
  border:1px solid var(--border);background:
    radial-gradient(60% 60% at 50% 42%, rgba(42,220,200,.12), transparent 70%),
    var(--surface);
  padding:14px;}
.hero h1{font-size:clamp(38px,7vw,64px);line-height:1.02;}
.hero .tagline{margin-top:16px;font-size:clamp(16px,2.4vw,20px);font-weight:500;color:var(--led);}
.hero .bio{margin:18px auto 0;max-width:600px;font-size:16px;color:var(--text-dim);}
.hero .cta{margin-top:34px;display:flex;gap:12px;justify-content:center;flex-wrap:wrap;}
.status-chip{display:inline-flex;align-items:center;gap:8px;padding:7px 16px;border-radius:999px;
  background:var(--surface);border:1px solid var(--border);font-size:13px;font-weight:500;color:var(--text-dim);}
.status-chip .dot{width:8px;height:8px;border-radius:50%;background:var(--led);
  box-shadow:0 0 8px var(--led);}
.btn{display:inline-flex;align-items:center;gap:8px;padding:12px 24px;border-radius:10px;
  font-weight:600;font-size:15px;border:1px solid transparent;cursor:pointer;transition:.15s;}
.btn-secondary{background:transparent;color:var(--text);border-color:var(--border);}
.btn-secondary:hover{border-color:var(--accent);color:var(--accent);}

/* ── section head ── */
.section-head{margin-bottom:36px;}
.section-head .eyebrow{display:block;font-size:13px;font-weight:600;letter-spacing:.08em;
  text-transform:uppercase;color:var(--led);margin-bottom:10px;}
.section-head h2{font-size:clamp(24px,4vw,32px);}
.section-head .sub{margin-top:10px;color:var(--text-dim);font-size:15.5px;max-width:600px;}

.raised{background:var(--bg-raised);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}

/* ── prose ── */
.prose p{color:var(--text-dim);font-size:16px;line-height:1.8;max-width:680px;}
.prose p+p{margin-top:14px;}
.prose b{color:var(--text);}

/* ── surface/tech cards ── */
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:18px;}
.card{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);
  padding:24px;transition:background .18s,transform .18s;}
.card:hover{background:var(--surface-hover);transform:translateY(-3px);}
.card .tag{display:inline-block;font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  color:var(--bg);background:var(--led);padding:3px 9px;border-radius:6px;margin-bottom:12px;}
.card .tag.dim{background:var(--surface-hover);color:var(--text-mute);}
.card h3{font-size:18px;margin-bottom:8px;}
.card p{color:var(--text-dim);font-size:14.5px;line-height:1.65;}

/* ── tech list ── */
.tech{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px;}
.tech .row{display:flex;gap:12px;align-items:baseline;padding:14px 16px;
  background:var(--surface);border:1px solid var(--border);border-radius:var(--radius-sm);}
.tech .k{color:var(--accent);font-weight:600;font-size:14px;white-space:nowrap;}
.tech .v{color:var(--text-dim);font-size:13.5px;line-height:1.5;}

/* ── avatar states ── */
.states{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:16px;}
.state{background:var(--surface);border:1px solid var(--border);border-radius:var(--radius);
  padding:16px;text-align:center;}
.state img{width:100%;max-width:130px;margin:0 auto 10px;image-rendering:auto;}
.state .name{font-size:13px;font-weight:600;color:var(--text);}
.state .desc{font-size:11.5px;color:var(--text-mute);margin-top:2px;}

/* ── emotes ── */
.emotes{display:flex;flex-wrap:wrap;gap:14px;}
.emote{width:72px;height:72px;display:grid;place-items:center;background:var(--surface);
  border:1px solid var(--border);border-radius:var(--radius-sm);transition:transform .15s,border-color .15s;}
.emote:hover{transform:scale(1.08);border-color:var(--led);}
.emote img{width:52px;height:52px;}

/* ── footer ── */
footer{border-top:1px solid var(--border);padding:32px 0;}
.footer-inner{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:14px;
  font-size:13.5px;color:var(--text-mute);}
.footer-inner a{color:var(--text-mute);transition:color .15s;}
.footer-inner a:hover{color:var(--accent);}

@media(max-width:600px){section{padding:52px 0;}.hero{padding:52px 0 44px;}}
