@font-face { font-family: StrongHead; src: url("fonts/strong-header.woff") format("woff"); font-display: swap; }
@font-face { font-family: StrongBody; src: url("fonts/strong-body.woff") format("woff"); font-display: swap; }

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #0d0d0d;
  font-family: StrongBody, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: #fff; }
a:hover { color: #98c8eb; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

h1, h2 {
  font-family: StrongHead, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -.025em;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .92) 0%, rgba(0, 0, 0, .66) 46%, rgba(0, 0, 0, .52) 100%);
}

.hero-top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 44px;
}

.wordmark {
  height: clamp(26px, 3vw, 36px);
  width: auto;
  min-width: 0;
}

.lang-toggle {
  margin-left: auto;
  display: flex;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 99px;
  overflow: hidden;
}

.lang-toggle button {
  border: 0;
  cursor: pointer;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  background: transparent;
  color: #c2c2c2;
}

.lang-toggle button[aria-pressed="true"] {
  background: #fff;
  color: #0d0d0d;
}

.hero-content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 44px 56px;
  max-width: 1200px;
}

.eyebrow {
  margin: 0;
  font-size: clamp(16px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, .6);
}

.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(48px, 8.6vw, 124px);
  line-height: .9;
  letter-spacing: -.03em;
  color: #fff;
}

.hero-lead {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .4);
  max-width: 640px;
}

.lead { margin: 0; font-size: clamp(18px, 2vw, 22px); line-height: 1.55; color: #fff; }
.sublead { margin: 8px 0 0; font-size: 16px; line-height: 1.6; color: #fff; }

/* Launch banner */
.banner {
  background: #98c8eb;
  padding: 22px 44px;
  display: flex;
  justify-content: center;
}

.banner span {
  font-family: StrongHead, sans-serif;
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  color: #0d0d0d;
  text-align: center;
}

/* What is STRONG */
.what { background: #fff; padding: clamp(72px, 9vw, 120px) 44px; }

.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(420px, 100%), 1fr));
  gap: 44px 64px;
  align-items: center;
}

.what h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: .96;
  color: #0d0d0d;
}

.what-lead { margin: 32px 0 0; max-width: 520px; font-size: 21px; line-height: 1.55; color: #1a1a1a; text-wrap: pretty; }
.what-body { margin: 24px 0 0; max-width: 520px; font-size: 18px; line-height: 1.7; color: #5a5a5a; text-wrap: pretty; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 520px;
  margin-top: 44px;
  border-top: 1px solid rgba(0, 0, 0, .14);
}

.stat { padding: 24px 14px 0 0; }
.stat + .stat { border-left: 1px solid rgba(0, 0, 0, .14); padding-left: 14px; }

.stat-num {
  display: block;
  font-family: StrongHead, sans-serif;
  font-size: clamp(26px, 7vw, 34px);
  line-height: 1;
  color: #0d0d0d;
}

.stat-label {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #6b6b6b;
}

/* Film */
.film { position: relative; aspect-ratio: 16 / 9; background: #0d0d0d; overflow: hidden; }

.film-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: none;
  font-family: inherit;
}

.film-poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.film-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .32) 60%);
}

.film-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(20px, 3vw, 36px);
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.film-caption {
  font-family: StrongHead, sans-serif;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
}

.film-btn {
  margin-left: auto;
  width: clamp(56px, 6vw, 74px);
  height: clamp(56px, 6vw, 74px);
  border-radius: 50%;
  background: #98c8eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.film-btn::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-left: 20px solid #0d0d0d;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
}

.film iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Own a STRONG */
.owner { position: relative; background: #0d0d0d; overflow: hidden; }

.owner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .72) 46%, rgba(0, 0, 0, .25) 100%);
}

.owner-content { position: relative; padding: clamp(72px, 9vw, 120px) 44px; }

.owner h2 {
  margin: 0;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: .96;
  color: #fff;
}

.owner p {
  margin: 32px 0 0;
  max-width: 520px;
  font-size: 21px;
  line-height: 1.55;
  color: #fff;
  text-wrap: pretty;
}

.owner-cta {
  margin-top: 44px;
  min-height: 56px;
  padding: 0 38px;
  border-radius: 99px;
  border: 0;
  cursor: pointer;
  background: #98c8eb;
  color: #0d0d0d;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: all .25s ease;
}

.owner-cta:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .4);
}

.owner-form {
  margin-top: 44px;
  background: #fff;
  padding: 10px 12px 24px;
  max-width: 640px;
}

@media (min-width: 700px) {
  .owner-form { padding: 14px 28px 36px; }
}

.owner-form[hidden] { display: none; }

.owner-form-head { display: flex; justify-content: flex-end; margin-bottom: 4px; }

.owner-collapse {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}

.owner-collapse:hover { background: #f2f2f2; }

/* Opt-in */
.optin { background: #98c8eb; padding: clamp(72px, 9vw, 96px) 44px; }
.optin-inner { max-width: 760px; }

.optin h2 {
  margin: 0;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: .96;
  color: #0d0d0d;
}

.optin-sub { margin: 18px 0 0; font-size: 17px; line-height: 1.6; color: #0d0d0d; }

.optin form { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

.optin input {
  flex: 1 1 260px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 99px;
  border: 1px solid #0d0d0d;
  background: #fff;
  color: #0d0d0d;
  font-family: inherit;
  font-size: 15px;
}

.optin input::placeholder { color: #5a5a5a; opacity: 1; }

.optin form button {
  min-height: 56px;
  padding: 0 38px;
  border-radius: 99px;
  border: 0;
  cursor: pointer;
  background: #0d0d0d;
  color: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: all .25s ease;
}

.optin form button:hover {
  background: #fff;
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(13, 13, 13, .22);
}

.thanks {
  display: inline-flex;
  margin: 30px 0 0;
  padding: 18px 28px;
  border-radius: 99px;
  background: #0d0d0d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.thanks[hidden] { display: none; }

.consent { margin: 16px 0 0; font-size: 13px; line-height: 1.7; color: #0d0d0d; }
.consent a { color: #0d0d0d; text-decoration: underline; }
.consent a:hover { color: #33688f; }

/* Footer */
.footer { background: #fff; padding: 64px 44px 44px; border-top: 1px solid rgba(0, 0, 0, .1); }

.footer-top { display: flex; align-items: center; gap: 16px 28px; flex-wrap: wrap; }
.footer-top img { height: 24px; }

.socials { display: flex; gap: 22px; margin-left: auto; align-items: center; }
.socials a { color: #0d0d0d; display: inline-flex; padding: 13px; margin: -13px; }
.socials a:hover { color: #33688f; }

.footer-legal {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, .1);
  display: flex;
  gap: 16px 28px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: #5a5a5a;
}

.footer-legal a { color: #5a5a5a; text-decoration: none; }
.footer-legal a:hover { color: #33688f; }
.copyright { margin-left: auto; }

/* Mobile */
@media (max-width: 699px) {
  .hero-top, .hero-content, .banner, .what, .owner-content, .optin, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .socials, .copyright { margin-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
