* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #0f1419;
  color: #e7e9ea;
  line-height: 1.6;
}

a {
  color: #66c0f4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Hero */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.studio {
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8b98a5;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.tagline {
  font-size: 1.125rem;
  color: #8b98a5;
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero-note {
  font-size: 0.875rem;
  color: #6e7a86;
  margin-top: 0.75rem;
  margin-bottom: 2.5rem;
}

/* Buttons */

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: #1a9fff;
  color: #fff;
}

.btn-primary:hover {
  background: #3aadff;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: #66c0f4;
  border: 1px solid #3d4f5f;
}

.btn-secondary:hover {
  background: #1a2634;
  color: #66c0f4;
}

/* Trailer */

.trailer {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.trailer iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Content sections */

main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

section {
  margin-bottom: 4rem;
}

section:last-child {
  margin-bottom: 0;
}

#platoon2 {
  background: #1a222d;
  border: 1px solid #2a3544;
  border-radius: 8px;
  padding: 2rem;
}

h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

section p {
  color: #8b98a5;
  margin-bottom: 1.25rem;
}

.features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.features li {
  color: #8b98a5;
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.features li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #1a9fff;
}

/* Footer */

footer {
  text-align: center;
  padding: 2rem 1.5rem 3rem;
  border-top: 1px solid #2a3544;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.copyright {
  font-size: 0.875rem;
  color: #6e7a86;
}
