:root {
  color-scheme: dark;
  --bg: #07090c;
  --panel: #11161b;
  --panel-strong: #171f26;
  --text: #f4f7f8;
  --muted: #aab7bd;
  --line: rgba(255, 255, 255, 0.14);
  --accent: #f6c84c;
  --accent-strong: #f08b32;
  --steel: #72d7e7;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(7, 9, 12, 0.78), rgba(7, 9, 12, 0.92)),
    url("../assets/gen/intro/edificiosdestruidos.png") center bottom / cover no-repeat,
    var(--bg);
}

a {
  color: inherit;
}

.gen-web-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 24px 0 40px;
}

.gen-web-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
}

.gen-web-back,
.gen-web-status,
.gen-web-action,
.gen-web-chip {
  border: 1px solid var(--line);
  border-radius: 6px;
  text-decoration: none;
}

.gen-web-back,
.gen-web-status {
  padding: 10px 12px;
  font-size: 0.88rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.gen-web-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 32px;
  min-height: calc(100vh - 260px);
  padding: 54px 0 36px;
}

.gen-web-copy {
  max-width: 720px;
}

.gen-web-kicker {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gen-web-copy h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.45rem, 8vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.gen-web-copy p {
  max-width: 68ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.gen-web-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gen-web-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.gen-web-action.primary {
  border-color: transparent;
  color: #111;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
}

.gen-web-signal {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(114, 215, 231, 0.28);
  border-radius: 8px;
  margin: 0;
  background: var(--panel-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.gen-web-signal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gen-web-signal figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: var(--steel);
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75);
}

.gen-web-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gen-web-grid article {
  min-height: 176px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 22, 27, 0.82);
}

.gen-web-chip {
  display: inline-flex;
  padding: 6px 8px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
}

.gen-web-grid h2 {
  margin: 16px 0 0;
  font-size: 1.1rem;
  letter-spacing: 0;
}

.gen-web-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .gen-web-shell {
    width: min(100% - 24px, 1120px);
    padding-top: 14px;
  }

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

  .gen-web-hero {
    gap: 24px;
    min-height: auto;
    padding: 34px 0 28px;
  }

  .gen-web-copy h1 {
    max-width: 11ch;
  }

  .gen-web-signal {
    max-width: 360px;
  }
}
