*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

button,
a {
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

:root {
  --black: #000000;
  --ink: #0a0a0a;
  --white: #ffffff;
  --gray: rgba(255, 255, 255, 0.5);
  --gray-dim: rgba(255, 255, 255, 0.32);
  --line: rgba(255, 255, 255, 0.1);
  --sans: system-ui, -apple-system, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --max: 1140px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

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

/* ── Buttons (slim) ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}

.btn--fill {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn--fill:hover {
  background: rgba(255, 255, 255, 0.88);
}

.btn--line {
  background: transparent;
  color: var(--white);
  border-color: var(--line);
}

.btn--line:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.btn--wide {
  width: 100%;
  margin-top: 0.5rem;
}

/* preset: 0262 announcements-top-banner */
.announce-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 2.5rem;
  background: var(--white);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.35s;
}

.announce-bar.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.announce-bar__text {
  white-space: nowrap;
}

.announce-bar__close {
  position: absolute;
  right: 0.65rem;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 2px;
  background: transparent;
  color: var(--black);
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 0.2s;
}

.announce-bar__close:hover {
  opacity: 0.85;
}

.announce-bar__close svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

body.has-banner .nav-float {
  top: 2.35rem;
}

body.has-banner .page {
  padding-top: 6.75rem;
}

@media (max-width: 480px) {
  .announce-bar__text {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }
}

/* ── Navigation ── */
.nav-float {
  position: fixed;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-float a {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.2s;
}

.nav-float a:hover {
  color: var(--white);
}

/* ── Typography helpers ── */
.kicker {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 0.75rem;
}

.heading {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading--lg {
  font-size: clamp(2rem, 4.5vw, 3rem);
}

/* ── Splash hero ── */
.splash {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.splash__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.14);
  filter: grayscale(100%) brightness(0.72);
  z-index: 0;
}

.splash__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(0, 0, 0, 0.62) 45%,
    rgba(0, 0, 0, 0.48) 100%
  );
}

.splash__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad);
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.splash__title {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 7.5vw, 5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.splash__tagline {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  margin-bottom: 2.25rem;
}

.splash__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.splash__actions .btn {
  padding: 0.58rem 1.55rem;
  font-size: 0.78rem;
}

/* ── Gallery filmstrip ── */
.gallery {
  padding: clamp(4rem, 10vw, 6rem) 0;
}

.gallery__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto 2rem;
  flex-wrap: wrap;
}

.gallery__hint {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-dim);
}

.filmstrip {
  display: flex;
  gap: 10px;
  padding: 0 var(--pad) 0.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.filmstrip::-webkit-scrollbar {
  display: none;
}

.film {
  flex: 0 0 clamp(240px, 32vw, 340px);
  scroll-snap-align: start;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  background: var(--ink);
}

.film img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.4s;
}

.film:hover img {
  transform: scale(1.04);
  opacity: 0.85;
}

.film__meta {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  justify-content: space-between;
  padding: 0.75rem;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
}

/* preset: 0373 heroes-trust-icons — included */
.included {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 6rem) var(--pad);
  border-top: 1px solid var(--line);
}

.included__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.included__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.included__card {
  padding: 1.35rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.25s, background 0.25s;
}

.included__card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.included__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--white);
}

.included__icon svg {
  width: 16px;
  height: 16px;
}

.included__card h3 {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.included__card p {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.55;
}

/* preset: 0288 pricing-single-plan */
.pricing {
  padding: clamp(4rem, 10vw, 6rem) var(--pad);
  border-top: 1px solid var(--line);
}

.pricing__inner {
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

.pricing__title {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-dim);
  margin-bottom: 1.25rem;
}

.pricing__row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.pricing__price {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 6vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing__term {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dim);
}

.pricing__desc {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.pricing .btn--fill {
  min-width: 140px;
}

/* ── Footer ── */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem var(--pad) 2rem;
  max-width: var(--max);
  margin: 0 auto;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-dim);
  border-top: 1px solid var(--line);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a:hover {
  color: var(--white);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.94);
  display: none;
  place-items: center;
  padding: 2rem;
  cursor: pointer;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  filter: grayscale(100%);
  border: 1px solid var(--line);
}

.lightbox__x {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 1rem;
  display: grid;
  place-items: center;
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .included__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .included__grid {
    grid-template-columns: 1fr;
  }

  .nav-float {
    gap: 1.1rem;
  }

  .nav-float a {
    font-size: 0.56rem;
  }
}
