:root {
  --bg: #f4f8ff;
  --panel: #ffffff;
  --ink: #1f2a32;
  --muted: #5b6b7a;
  --accent: #ff8fb1;
  --accent-strong: #ffb86c;
  --card: rgba(255, 255, 255, 0.82);
  --stroke: rgba(31, 42, 50, 0.12);
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 8%, rgba(255, 143, 177, 0.16), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(126, 226, 173, 0.18), transparent 30%),
    linear-gradient(180deg, #cde8ff 0%, #fef4d8 100%);
  color: var(--ink);
  font-family: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

.footer__brand-logo img {
  border-radius: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

p a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 143, 177, 0.9);
}

p a:hover {
  text-decoration-color: currentColor;
}

p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

h1, h2, h3, h4 {
  margin: 0;
  letter-spacing: -0.02em;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 0 6vw 104px;
  max-width: 1180px;
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 6vw 48px;
  max-width: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 56vh;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 50px;
  background: linear-gradient(
    180deg,
    rgba(205, 232, 255, 0) 0%,
    rgba(205, 232, 255, 0.92) 75%,
    #cde8ff 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  min-height: 56vh;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
}

.hero__logo {
  width: min(520px, 90vw);
}

.hero__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 16, 24, 0.55) 0%,
    rgba(12, 16, 24, 0.38) 20%,
    rgba(12, 16, 24, 0) 50%
  );
}

.lede {
  margin-top: 12px;
  max-width: 520px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: auto 0 10px;
  padding-top: 18px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #3b1b15;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 15px 40px rgba(255, 143, 177, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(255, 143, 177, 0.3);
}

.cta.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--stroke);
  box-shadow: none;
}

.sub-links {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  color: var(--muted);
}

.sub-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.embed-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: #eef6ff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section__header h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.description {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.description p {
  color: var(--ink);
  font-size: clamp(18px, 3vw, 22px);
  line-height: 1.7;
  letter-spacing: -0.01em;
}

.about {
  text-align: left;
  gap: 18px;
}

.about p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.about__actions {
  display: flex;
  justify-content: flex-start;
}

.trailer {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trailer__frame {
  max-width: 1100px;
  margin: 0 auto;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
  gap: 16px;
  justify-content: center;
}

.platform-card {
  padding: 20px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 150ms ease, transform 150ms ease;
}

.platform-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.platform-card__name {
  font-weight: 600;
}

.platform-card__cta {
  color: var(--accent);
  font-weight: 600;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.screen-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: var(--card);
}

.screen-item a {
  display: block;
}

.screen-item img {
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.screen-item a:hover img,
.screen-item a:focus-visible img {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* .presskit {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 143, 177, 0.14), rgba(255, 184, 108, 0.1));
} */

.presskit {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 28px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.presskit__content {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.presskit__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  margin: 0 auto 0;
  padding: 28px 6vw 42px;
  max-width: 1180px;
  border-top: 1px solid var(--stroke);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.footer__brand {
  font-weight: 700;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__brand-label {
  font-weight: 700;
  color: var(--ink);
}

.footer__brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0;
  background: transparent;
  border-radius: 0;
  border: none;
  transition: transform 140ms ease, filter 140ms ease;
}

.footer__brand-logo img {
  display: block;
  height: 26px;
  width: auto;
  filter: brightness(0) contrast(100%);
}

.footer__brand-logo:hover {
  transform: translateY(-2px);
  filter: brightness(0) contrast(160%);
}

.footer__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__meta {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .hero {
    padding-top: 72px;
  }

  .topbar {
    padding: 14px 5vw;
  }

  main {
    padding: 0 5vw 96px;
    gap: 56px;
  }

  .footer {
    align-items: center;
    gap: 10px;
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
