:root {
  --page: #070b09;
  --page-deep: #030504;
  --surface: #101713;
  --surface-strong: #16231d;
  --surface-soft: rgba(223, 231, 223, 0.07);
  --ink: #f4f1e7;
  --muted: #c8cec2;
  --quiet: #8e9c91;
  --gold: #e2b857;
  --gold-strong: #f2cc72;
  --blood: #a63d32;
  --forest: #0e302a;
  --steel: #83aeb1;
  --line: rgba(244, 241, 231, 0.17);
  --line-strong: rgba(226, 184, 87, 0.42);
  --shadow: rgba(0, 0, 0, 0.5);
  --max: 1160px;
  --header-height: 64px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--gold);
  color: var(--page-deep);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--page-deep);
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 28px;
  border-bottom: 1px solid rgba(244, 241, 231, 0.12);
  background: rgba(7, 11, 9, 0.8);
  backdrop-filter: blur(16px);
}

.brand-link {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}

.main-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-link:hover,
.brand-link:focus-visible,
.main-nav a:hover,
.main-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

:focus-visible {
  outline: 3px solid var(--steel);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("assets/lautaro-cover.jpg");
  background-size: cover;
  background-position: center 18%;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 11, 9, 0.96) 0%, rgba(7, 11, 9, 0.74) 39%, rgba(7, 11, 9, 0.24) 74%, rgba(7, 11, 9, 0.08) 100%),
    linear-gradient(0deg, rgba(7, 11, 9, 0.96) 0%, rgba(7, 11, 9, 0.25) 54%, rgba(7, 11, 9, 0.62) 100%);
}

.hero-content,
.section-shell {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.hero-content {
  padding: calc(var(--header-height) + 42px) 0 54px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
}

h1 {
  max-width: 840px;
  margin-bottom: 14px;
  font-size: 7.25rem;
}

h2 {
  margin-bottom: 20px;
  font-size: 4.4rem;
}

.hero-kicker {
  max-width: 700px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.2rem;
}

.hero-actions,
.release-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button,
.platform-link {
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.platform-link:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: #101008;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--gold-strong);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(226, 184, 87, 0.1);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
  background: rgba(226, 184, 87, 0.18);
  color: var(--gold-strong);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(244, 241, 231, 0.06);
  color: var(--ink);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--steel);
  background: rgba(131, 174, 177, 0.12);
  color: var(--steel);
}

.hero-facts {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(244, 241, 231, 0.14);
  border-radius: 8px;
  background: rgba(7, 11, 9, 0.56);
  color: var(--ink);
  font-weight: 800;
}

.hero-facts span {
  display: block;
  margin-bottom: 4px;
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.release-section,
.signal-section,
.platforms-section,
.videos-section,
.visual-section,
.identity-section,
.final-cta {
  padding: 86px 0;
}

.release-section {
  background: linear-gradient(180deg, var(--page) 0%, #0b1411 100%);
}

.release-grid,
.signal-grid,
.visual-grid,
.identity-grid {
  display: grid;
  gap: 58px;
  align-items: center;
}

.release-grid {
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1fr);
}

.cover-block {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 231, 0.2);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 26px 68px var(--shadow);
}

.cover-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.release-lead,
.signal-copy p,
.visual-copy p,
.identity-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0;
}

.facts div,
.status-panel div {
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
}

.facts dt,
.status-panel span,
.platform-link span {
  color: var(--quiet);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.facts dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.text-link {
  color: var(--steel);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.signal-section {
  background:
    linear-gradient(135deg, rgba(14, 48, 42, 0.96), rgba(7, 11, 9, 0.98)),
    var(--forest);
}

.signal-grid {
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.72fr);
}

.status-panel {
  display: grid;
  gap: 12px;
}

.status-panel strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 1.2rem;
}

.platforms-section {
  background: #0c100f;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.platform-link {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  text-decoration: none;
}

.platform-link.featured {
  border-color: var(--line-strong);
  background: linear-gradient(180deg, rgba(226, 184, 87, 0.18), rgba(166, 61, 50, 0.11));
}

.platform-link:hover,
.platform-link:focus-visible {
  border-color: var(--gold);
  background: rgba(226, 184, 87, 0.12);
}

.platform-link strong {
  margin: 18px 0 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.72rem;
  line-height: 1.05;
}

.platform-link small {
  color: var(--muted);
  font-size: 0.95rem;
}

.videos-section {
  background:
    linear-gradient(180deg, rgba(7, 11, 9, 0.98), rgba(12, 16, 15, 0.96)),
    var(--page);
  border-top: 1px solid var(--line);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.social-video-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 241, 231, 0.055);
}

.social-video-media {
  aspect-ratio: 9 / 16;
  background: #000;
}

.social-video-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-video-copy {
  padding: 18px;
}

.social-video-copy h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.82rem;
  line-height: 1.08;
}

.social-video-copy p:not(.section-label) {
  margin-bottom: 16px;
  color: var(--muted);
}

.social-video-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.visual-section {
  background: linear-gradient(180deg, #0c100f 0%, var(--surface) 100%);
}

.visual-grid {
  grid-template-columns: minmax(260px, 0.62fr) minmax(340px, 1fr);
}

.video-frame {
  width: min(390px, 100%);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
  box-shadow: 0 22px 58px var(--shadow);
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.identity-section {
  background:
    linear-gradient(180deg, rgba(22, 35, 29, 0.96), rgba(7, 11, 9, 0.98)),
    var(--surface-strong);
}

.identity-grid {
  grid-template-columns: minmax(280px, 0.78fr) minmax(340px, 1fr);
}

.identity-copy {
  padding-top: 6px;
}

.identity-copy p:last-child {
  margin-bottom: 0;
}

.identity-note {
  padding-left: 16px;
  border-left: 3px solid var(--blood);
}

.final-cta {
  background-image:
    linear-gradient(90deg, rgba(7, 11, 9, 0.94), rgba(7, 11, 9, 0.7)),
    url("assets/lautaro-reel-teaser-30s-frame.png");
  background-size: cover;
  background-position: center 38%;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-cta-inner {
  max-width: 760px;
}

.site-footer {
  padding: 30px 0 36px;
  background: var(--page-deep);
  color: var(--quiet);
}

.footer-inner {
  width: min(var(--max), calc(100% - 44px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.share-status {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (max-width: 980px) {
  h1 {
    font-size: 5.6rem;
  }

  h2 {
    font-size: 3.6rem;
  }

  .platform-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 58px;
  }

  .site-header {
    padding: 0 18px;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 0.86rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 11, 9, 0.96) 0%, rgba(7, 11, 9, 0.7) 56%, rgba(7, 11, 9, 0.46) 100%);
  }

  .hero-content {
    padding-bottom: 38px;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 3rem;
  }

  .hero-kicker {
    font-size: 1.55rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .release-section,
  .signal-section,
  .platforms-section,
  .videos-section,
  .visual-section,
  .identity-section,
  .final-cta {
    padding: 66px 0;
  }

  .release-grid,
  .signal-grid,
  .visual-grid,
  .identity-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cover-block,
  .video-frame {
    max-width: 520px;
  }

  .visual-grid .video-frame {
    order: 2;
  }

  .visual-grid .visual-copy {
    order: 1;
  }
}

@media (max-width: 600px) {
  .hero-content,
  .section-shell,
  .footer-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .main-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-top: calc(var(--header-height) + 58px);
    padding-bottom: 32px;
  }

  h1 {
    font-size: 3.35rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-actions .button,
  .final-actions .button,
  .release-actions .button {
    width: 100%;
  }

  .hero-facts,
  .facts,
  .platform-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    display: none;
  }

  .platform-link {
    min-height: 148px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  h1 {
    font-size: 2.95rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .main-nav a {
    font-size: 0.82rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
