@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap');

:root {
  --bg: #090b09;
  --panel: #101410;
  --panel-2: #151915;
  --line: #2a3129;
  --line-soft: #20261f;
  --gold: #c7a052;
  --gold-2: #e0bf76;
  --text: #f1efe7;
  --muted: #939b92;
  --muted-2: #646d64;
  --green: #65b87a;
  --red: #d26763;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 70% 8%, rgba(71,78,55,.13), transparent 32%),
    linear-gradient(180deg, #0b0e0b 0%, #080a08 100%);
  font-family: Inter, Segoe UI, Arial, sans-serif;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.01) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 80%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - 1280px) / 2));
  background: rgba(9, 12, 9, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-family: Oswald, sans-serif;
  font-size: 17px;
  letter-spacing: .06em;
}

.brand span {
  display: block;
  color: var(--muted-2);
  font-size: 9px;
  margin-top: 2px;
  letter-spacing: .1em;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

nav a {
  color: #afb6ad;
  text-decoration: none;
  font-size: 12px;
  transition: .2s ease;
}

nav a:hover {
  color: var(--gold-2);
}

nav .discord {
  border: 1px solid #40473f;
  border-radius: 7px;
  padding: 9px 14px;
}

main {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding: 72px 0 34px;
}

.hero-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 18px;
}

.hero-copy,
.hero-emblem {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(30,36,28,.9), rgba(13,16,13,.96) 52%, rgba(8,10,8,.98));
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -180px;
  top: -180px;
  border: 1px solid rgba(199,160,82,.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 50px rgba(199,160,82,.025),
    0 0 0 100px rgba(199,160,82,.018);
}

.hero-copy {
  padding: 58px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

h1, h2 {
  font-family: Oswald, sans-serif;
  margin: 0;
  letter-spacing: -.015em;
}

h1 {
  margin-top: 14px;
  font-size: clamp(54px, 6vw, 84px);
  line-height: .98;
  text-transform: uppercase;
}

h1 span {
  color: var(--gold-2);
}

.lead {
  max-width: 690px;
  color: #abb2aa;
  font-size: 15px;
  line-height: 1.7;
  margin: 26px 0 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 22px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 11px;
  font-weight: 800;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #11130f;
  background: linear-gradient(180deg, #dab666, #b78d42);
  border: 1px solid #e2c57f;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.button.secondary {
  color: #daddd5;
  background: #171b17;
  border: 1px solid #343c34;
}

.button.full {
  width: 100%;
  margin-top: 18px;
}

.download-icon {
  font-size: 18px;
}

.build-info {
  margin-top: 35px;
  display: flex;
  gap: 36px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.build-info div {
  min-width: 110px;
}

.build-info span {
  display: block;
  color: var(--muted-2);
  font-size: 8px;
  letter-spacing: .12em;
  margin-bottom: 6px;
}

.build-info strong {
  font-size: 13px;
}

.download-hint {
  color: #626b62;
  font-size: 10px;
  margin: 14px 0 0;
}

.hero-emblem {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.emblem-frame {
  width: min(330px, 90%);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border: 1px solid #4b4735;
  border-radius: 18px;
  background:
    radial-gradient(circle, rgba(199,160,82,.08), transparent 62%),
    #0b0e0b;
  box-shadow: inset 0 0 60px rgba(0,0,0,.6);
}

.emblem-frame img {
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.system-box {
  width: 100%;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: rgba(11,14,11,.9);
  border-radius: 9px;
  padding: 15px;
}

.system-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-soft);
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7c837b;
}

.pulse.online {
  background: var(--green);
  box-shadow: 0 0 12px rgba(101,184,122,.6);
}

.pulse.offline {
  background: var(--red);
}

.system-line,
.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 10px;
}

.system-line span,
.info-row span {
  color: var(--muted-2);
  font-size: 9px;
}

.system-line strong,
.info-row strong {
  color: #cfd2ca;
  font-size: 10px;
  text-align: right;
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 78px;
  border: 1px solid var(--line);
  border-radius: 11px;
  overflow: hidden;
  background: #0f130f;
}

.strip > div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.strip > div:last-child {
  border-right: 0;
}

.strip span {
  color: var(--gold);
  font: 600 18px Oswald, sans-serif;
}

.strip strong {
  display: block;
  margin-top: 13px;
  font-size: 11px;
  letter-spacing: .08em;
}

.strip p {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
  margin: 6px 0 0;
}

.content-section {
  padding-bottom: 78px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.section-heading h2,
.installation h2 {
  margin-top: 8px;
  font-size: 38px;
  text-transform: uppercase;
}

.remote-badge {
  color: #667066;
  font-size: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  letter-spacing: .08em;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.news-card {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background:
    linear-gradient(145deg, #141814, #0d100d);
  position: relative;
  overflow: hidden;
}

.news-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  background: #8a713e;
}

.news-card span {
  color: var(--muted-2);
  font-size: 8px;
  letter-spacing: .12em;
}

.news-card h3 {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: #d7dad3;
  margin: 14px 0 0;
}

.installation {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 18px;
  padding: 0 0 78px;
}

.installation-copy,
.info-card {
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #101410;
}

.installation-copy {
  padding: 36px;
}

.installation-copy > p {
  max-width: 700px;
  color: #969f96;
  font-size: 13px;
  line-height: 1.7;
}

.steps {
  margin-top: 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.step {
  display: flex;
  align-items: center;
  gap: 13px;
  background: #151915;
  border: 1px solid #292f29;
  border-radius: 8px;
  padding: 13px;
}

.step b {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  background: #22271f;
  border: 1px solid #454633;
  border-radius: 7px;
  color: var(--gold);
  font-family: Oswald, sans-serif;
}

.step strong,
.step span {
  display: block;
}

.step strong {
  font-size: 11px;
}

.step span {
  color: #737d73;
  font-size: 9px;
  line-height: 1.5;
  margin-top: 3px;
}

.info-card {
  padding: 28px;
  align-self: stretch;
}

.info-card .eyebrow {
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.info-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

footer {
  min-height: 90px;
  padding: 0 max(28px, calc((100vw - 1280px) / 2));
  border-top: 1px solid var(--line);
  color: #586158;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #080a08;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 900px) {
  .topbar {
    padding: 0 18px;
  }

  nav a:not(.discord) {
    display: none;
  }

  main {
    width: min(100% - 24px, 1280px);
  }

  .hero {
    padding-top: 26px;
  }

  .hero-grid,
  .installation {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 38px 28px;
  }

  .hero-emblem {
    min-height: 450px;
  }

  .strip {
    grid-template-columns: 1fr 1fr;
  }

  .strip > div:nth-child(2) {
    border-right: 0;
  }

  .strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .hero-actions,
  .build-info {
    flex-direction: column;
  }

  .build-info {
    gap: 14px;
  }

  .strip,
  .steps {
    grid-template-columns: 1fr;
  }

  .strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip > div:last-child {
    border-bottom: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  footer {
    padding: 20px;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}


/* ===== V9 · Web del Clan + sección Launcher ===== */
.brand { text-decoration:none; color:inherit; }
nav a.active { color: var(--gold-2); }
nav .command-link { color:#d9c17a; border-left:1px solid #30362f; padding-left:22px; }
footer a { color:#aeb5ab; text-decoration:none; }
footer a:hover { color:var(--gold-2); }
.button.is-disabled { opacity:.48; cursor:not-allowed; filter:grayscale(.35); transform:none !important; }
.status-ok { color:var(--green) !important; }
.status-warn { color:var(--gold-2) !important; }

.home-hero { padding:72px 0 28px; display:grid; grid-template-columns:1.35fr .65fr; gap:18px; min-height:620px; }
.home-hero-copy, .home-hero-mark { border:1px solid var(--line); border-radius:14px; background:linear-gradient(135deg,rgba(27,33,26,.92),rgba(10,13,10,.98)); overflow:hidden; position:relative; }
.home-hero-copy { padding:64px 58px; display:flex; flex-direction:column; justify-content:center; }
.home-hero-copy::after { content:""; position:absolute; width:620px; height:620px; right:-330px; top:-270px; border:1px solid rgba(199,160,82,.12); border-radius:50%; box-shadow:0 0 0 70px rgba(199,160,82,.02),0 0 0 140px rgba(199,160,82,.012); pointer-events:none; }
.home-hero-copy h1 { position:relative; z-index:1; }
.home-hero-copy .lead,.home-hero-copy .hero-actions,.home-status-row { position:relative; z-index:1; }
.home-hero-mark { padding:42px 32px; display:flex; flex-direction:column; justify-content:center; align-items:center; gap:28px; }
.home-emblem { width:min(330px,90%); }
.unit-stamp { width:100%; border-top:1px solid var(--line); padding-top:20px; text-align:center; }
.unit-stamp span,.unit-stamp small { display:block; color:var(--muted-2); font-size:9px; letter-spacing:.18em; }
.unit-stamp strong { display:block; font-family:Oswald,sans-serif; color:var(--gold-2); font-size:18px; letter-spacing:.12em; margin:6px 0; }
.home-status-row { margin-top:38px; border-top:1px solid var(--line); padding-top:20px; display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:20px; }
.home-status-row span,.operation-facts span { display:block; color:var(--muted-2); font-size:8px; letter-spacing:.12em; margin-bottom:7px; }
.home-status-row strong,.operation-facts strong { font-size:13px; }
.home-section { padding:62px 0 20px; }
.feature-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:22px; }
.feature-card { min-height:220px; border:1px solid var(--line); border-radius:12px; background:linear-gradient(180deg,#121612,#0d100d); padding:28px; }
.feature-card>span { color:var(--gold); font-family:Oswald,sans-serif; font-size:13px; }
.feature-card h3 { font-family:Oswald,sans-serif; font-size:24px; margin:28px 0 10px; }
.feature-card p { color:#939b92; font-size:13px; line-height:1.7; margin:0; }
.operation-panel, .launcher-promo, .join-panel { margin-top:44px; border:1px solid var(--line); border-radius:14px; background:linear-gradient(100deg,#121712,#0b0e0b); padding:34px 38px; display:grid; grid-template-columns:1.15fr .85fr; gap:28px; align-items:center; }
.operation-panel h2,.launcher-promo h2,.join-panel h2 { font-size:36px; margin-top:8px; }
.operation-panel p,.launcher-promo p,.join-panel p { color:var(--muted); line-height:1.7; font-size:13px; max-width:720px; }
.operation-facts { display:grid; grid-template-columns:1fr; gap:14px; }
.operation-facts>div { border:1px solid var(--line-soft); background:#0c100c; border-radius:8px; padding:14px; }
.launcher-promo-actions { display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
.launcher-promo-actions span { color:var(--muted-2); font-size:11px; }
.join-panel { margin-bottom:50px; grid-template-columns:1fr auto; }

.launcher-benefits { padding-top:30px; }
.system-row { display:flex; align-items:center; justify-content:space-between; gap:20px; padding:10px 0; border-top:1px solid var(--line-soft); font-size:11px; }
.system-row:first-of-type { margin-top:10px; }
.system-row span { color:var(--muted); }
.faq-section { padding:55px 0 65px; }
.faq-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:22px; }
.faq-grid details { border:1px solid var(--line); border-radius:10px; background:#101410; padding:18px 20px; }
.faq-grid summary { cursor:pointer; font-weight:700; font-size:13px; }
.faq-grid p { color:var(--muted); line-height:1.65; font-size:12px; margin:13px 0 2px; }

@media(max-width:980px){
  .home-hero{grid-template-columns:1fr}.home-hero-mark{min-height:420px}.feature-grid{grid-template-columns:1fr}.operation-panel,.launcher-promo{grid-template-columns:1fr}.launcher-promo-actions{align-items:flex-start}.faq-grid{grid-template-columns:1fr}.home-status-row{grid-template-columns:1fr 1fr}.join-panel{grid-template-columns:1fr}
}
@media(max-width:760px){
  .topbar{height:auto;min-height:72px;padding:10px 18px;align-items:flex-start}.brand img{width:40px;height:40px}nav{gap:12px;flex-wrap:wrap;justify-content:flex-end}nav a{font-size:10px}.command-link{padding-left:0!important;border-left:0!important}.home-hero{padding-top:30px}.home-hero-copy{padding:38px 28px}.home-hero-copy h1{font-size:52px}.home-status-row{grid-template-columns:1fr}.operation-panel,.launcher-promo,.join-panel{padding:26px 22px}.hero-copy{padding:38px 28px}.hero-grid{grid-template-columns:1fr}.build-info{gap:18px;flex-wrap:wrap}.installation{grid-template-columns:1fr!important}
}
