:root {
  --bg: #05070a;
  --panel: #0a0e14;
  --panel-2: #101620;
  --text: #f4f7fb;
  --muted: #aeb8c4;
  --red: #e42535;
  --red-dark: #9f111d;
  --blue: #00a3e0;
  --white: #ffffff;
  --line: rgba(255,255,255,.13);
  --shadow: 0 28px 90px rgba(0,0,0,.55);
  --radius: 20px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 75% 10%, rgba(228,37,53,.18), transparent 36rem),
    radial-gradient(circle at 18% 25%, rgba(0,163,224,.11), transparent 32rem),
    linear-gradient(180deg, #070a0e, var(--bg) 28rem);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 14px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(5,7,10,.82);
  backdrop-filter: blur(18px);
}
.brand img { width: min(260px, 58vw); }
.site-nav { display: flex; gap: clamp(18px, 3vw, 42px); align-items: center; text-transform: uppercase; font-size: .82rem; letter-spacing: .12em; font-weight: 800; }
.site-nav a { color: var(--muted); position: relative; }
.site-nav a:hover { color: var(--white); }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--red); transition: right .2s ease; }
.site-nav a:hover::after { right: 0; }
.nav-toggle { display: none; background: #111722; color: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 9px 12px; font-size: 1.2rem; }
.section-shell { width: min(var(--max), calc(100% - 36px)); margin-inline: auto; }
.hero { min-height: calc(100svh - 82px); display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 20px; padding: clamp(44px, 8vw, 100px) 0 56px; }
.eyebrow { margin: 0 0 18px; color: var(--blue); text-transform: uppercase; letter-spacing: .22em; font-weight: 900; font-size: .9rem; }
.centered { text-align: center; }
h1, h2, h3 { line-height: 1.05; margin: 0; }
h1 { font-size: clamp(3.2rem, 10vw, 7.8rem); letter-spacing: .04em; text-transform: uppercase; font-weight: 950; text-shadow: 0 0 28px rgba(255,255,255,.14); }
.hero h1::first-line { color: var(--white); }
h2 { font-size: clamp(2rem, 5vw, 4rem); letter-spacing: -.04em; }
h3 { font-size: 1.02rem; text-transform: uppercase; letter-spacing: .06em; }
.lead { max-width: 640px; color: #d8dee7; font-size: clamp(1.05rem, 2vw, 1.28rem); margin: 24px 0 24px; }
.tri-stripe { display: flex; gap: 6px; width: 148px; height: 7px; margin: 20px 0 30px; }
.tri-stripe span { flex: 1; background: var(--red); box-shadow: 0 0 20px rgba(228,37,53,.45); }
.tri-stripe span:nth-child(2) { background: var(--white); }
.tri-stripe span:nth-child(3) { background: var(--blue); box-shadow: 0 0 20px rgba(0,163,224,.45); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 18px; margin: 0 0 34px; color: var(--muted); font-weight: 800; text-transform: uppercase; font-size: .9rem; }
.hero-tags span { display: inline-flex; gap: 6px; align-items: center; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--red), var(--red-dark)); border: 1px solid rgba(255,255,255,.16); box-shadow: 0 14px 32px rgba(228,37,53,.25); }
.button-ghost { border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.04); }
.hero-art { min-width: 0; filter: drop-shadow(0 34px 80px rgba(0,0,0,.65)); }
.built { padding: 28px 0 34px; border-top: 1px solid rgba(255,255,255,.08); }
.feature-grid, .creation-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feature-card, .creation-card, .projects, .roots, .site-footer { background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.02)); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-card { padding: 26px 24px; min-height: 218px; }
.feature-card p, .creation-card p, .projects p, .roots p, .site-footer p { color: var(--muted); }
.icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--red); font-size: 1.7rem; margin-bottom: 18px; }
.icon.blue { color: var(--blue); }
.icon.white { color: var(--white); }
.creations { padding: 48px 0; }
.section-heading { display: grid; justify-items: center; text-align: center; margin-bottom: 24px; }
.creation-card { overflow: hidden; }
.creation-art { height: 164px; background: var(--panel-2); position: relative; border-bottom: 1px solid var(--line); }
.creation-art::before, .creation-art::after { content: ""; position: absolute; inset: 22px; border-radius: 14px; background: linear-gradient(135deg, rgba(228,37,53,.85), rgba(0,163,224,.7)); opacity: .86; filter: blur(.1px); }
.creation-art.synth::before { transform: perspective(240px) rotateX(52deg) rotateZ(-4deg); background: repeating-linear-gradient(90deg, #eff3f8 0 22px, #05070a 22px 34px, #eff3f8 34px 55px); }
.creation-art.pad::before { background: conic-gradient(from 90deg, var(--red), var(--blue), var(--white), var(--red)); clip-path: inset(12px round 18px); }
.creation-art.glove::before { border-radius: 45% 45% 20% 20%; background: #05070a; border: 3px solid #263343; box-shadow: inset 0 0 0 20px rgba(255,255,255,.03); }
.creation-art.glove::after { inset: 56px 70px 70px; border-radius: 10px; background: linear-gradient(90deg, var(--red), var(--blue)); box-shadow: -42px -8px 0 -2px #0a1018, 42px -8px 0 -2px #0a1018; }
.creation-art.box::before { inset: 42px 30px; border-radius: 16px; background: #080c12; border: 2px solid #324154; box-shadow: inset 0 0 0 18px rgba(0,163,224,.12), 0 0 30px rgba(0,163,224,.18); }
.creation-art.box::after { inset: 68px 65px; border-radius: 8px; background: repeating-linear-gradient(0deg, #00a3e0 0 5px, transparent 5px 12px); }
.creation-body { padding: 22px; }
.projects { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; padding: clamp(28px, 5vw, 46px); margin-bottom: 30px; }
.project-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.project-list li { display: grid; grid-template-columns: 190px 1fr; gap: 16px; padding: 16px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(0,0,0,.22); }
.project-list strong { color: var(--white); }
.project-list span { color: var(--muted); }
.roots { display: grid; grid-template-columns: auto 1fr 280px; align-items: center; gap: 28px; padding: 28px; margin-bottom: 40px; overflow: hidden; }
.crest-mini { width: 86px; height: 86px; border-radius: 18px; display: grid; place-items: center; color: #f4a623; background: #06090d; border: 2px solid var(--line); font-size: 3rem; box-shadow: inset 0 -6px 0 rgba(228,37,53,.28); }
.skyline { height: 110px; background: linear-gradient(90deg, var(--red), var(--white), var(--blue)); clip-path: polygon(0 100%,0 70%,5% 70%,5% 42%,9% 42%,9% 70%,16% 70%,16% 50%,20% 50%,20% 20%,24% 50%,28% 50%,28% 72%,36% 72%,36% 60%,42% 60%,42% 34%,47% 34%,47% 72%,54% 72%,54% 46%,59% 46%,59% 72%,67% 72%,67% 58%,73% 58%,73% 28%,78% 58%,84% 58%,84% 76%,92% 76%,92% 50%,96% 50%,96% 76%,100% 76%,100% 100%); opacity: .72; }
.site-footer { width: min(var(--max), calc(100% - 36px)); margin: 0 auto 28px; padding: 32px; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 26px; }
.footer-brand img { width: 250px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: var(--blue); }
.copyright { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; margin-bottom: 0; font-size: .9rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
@media (max-width: 940px) {
  .nav-toggle { display: inline-grid; }
  .site-nav { position: absolute; left: 18px; right: 18px; top: 76px; display: none; flex-direction: column; align-items: stretch; padding: 18px; background: #080b10; border: 1px solid var(--line); border-radius: 16px; }
  .site-nav.open { display: flex; }
  .hero, .projects, .roots { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-art { order: -1; max-width: 720px; margin-inline: auto; }
  .feature-grid, .creation-grid { grid-template-columns: repeat(2, 1fr); }
  .roots { text-align: center; justify-items: center; }
  .skyline { width: 100%; }
  .site-footer { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .site-header { min-height: 72px; }
  .feature-grid, .creation-grid { grid-template-columns: 1fr; }
  .project-list li { grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  h1 { font-size: clamp(2.75rem, 16vw, 4.4rem); }
  .brand img { width: 218px; }
}
