:root {
  --red: #ea0020;
  --red-dark: #a90018;
  --black: #090909;
  --ink: #151515;
  --paper: #f2f2f0;
  --white: #ffffff;
  --gray: #a7a7a7;
  --line: rgba(255, 255, 255, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(22px);
  background: rgba(9, 9, 9, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 72px;
  left: 0;
  padding: 0 clamp(24px, 4vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 50;
}

.admin-bar .site-header {
  top: 32px;
}

.wp-content-shell {
  margin: 0 auto;
  max-width: 900px;
  min-height: 70vh;
  padding: 140px 24px 80px;
}

.brand img {
  height: auto;
  width: 220px;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  justify-content: center;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  letter-spacing: -0.01em;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: white;
}

.nav-cta {
  align-items: center;
  background: var(--red);
  border-radius: 999px;
  display: flex;
  font-size: 13px;
  font-weight: 650;
  gap: 10px;
  justify-self: end;
  padding: 11px 17px;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  background: #ff1633;
  transform: translateY(-2px);
}

.hero {
  align-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(234, 0, 32, 0.22), transparent 24%),
    linear-gradient(160deg, #080808 0%, #111 48%, #050505 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 136px 24px 80px;
  position: relative;
  text-align: center;
}

.hero::before {
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  position: absolute;
}

.hero-orbit {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.hero-orbit-dot {
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(234, 0, 32, 0.8);
  height: 7px;
  left: 50%;
  margin: -3.5px 0 0 -3.5px;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  will-change: transform;
  width: 7px;
}

.hero-orbit--one {
  height: 780px;
  width: 780px;
}

.hero-orbit--two {
  height: 1080px;
  width: 1080px;
}

.hero-brand-mark {
  filter: drop-shadow(0 0 36px rgba(234, 0, 32, .28));
  height: 118px;
  left: 50%;
  opacity: .055;
  pointer-events: none;
  position: absolute;
  top: 47%;
  transform: translate(-50%, -50%);
  width: 118px;
  z-index: 1;
}

.eyebrow {
  color: #d2d2d2;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0 0 28px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.eyebrow::before {
  background: var(--red);
  content: "";
  display: inline-block;
  height: 7px;
  margin: 0 12px 1px 0;
  width: 7px;
}

.hero h1 {
  font-size: clamp(64px, 9.5vw, 148px);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.82;
  margin: 0;
  max-width: 1300px;
  position: relative;
  z-index: 2;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.48);
}

.hero-copy {
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.035em;
  line-height: 1.35;
  margin: 38px auto 0;
  max-width: 670px;
  position: relative;
  z-index: 2;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  position: relative;
  z-index: 3;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 650;
  gap: 18px;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button--primary {
  background: var(--red);
  color: white;
}

.button--primary:hover {
  background: #ff1734;
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
}

.button--ghost:hover {
  background: white;
  color: black;
}

.motto-wrap {
  align-items: center;
  bottom: 32px;
  display: flex;
  gap: 24px;
  left: clamp(24px, 4vw, 72px);
  position: absolute;
  z-index: 2;
}

.motto-wrap p {
  color: rgba(255, 255, 255, 0.44);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.motto-wrap .motto-accent {
  color: var(--red);
}

.scroll-cue {
  align-items: center;
  bottom: 30px;
  color: rgba(255,255,255,.38);
  display: flex;
  font-size: 10px;
  gap: 10px;
  letter-spacing: .12em;
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  text-transform: uppercase;
}

.scroll-cue span {
  background: rgba(255,255,255,.25);
  height: 1px;
  width: 48px;
}

.section-shell {
  padding: clamp(90px, 12vw, 180px) clamp(24px, 6vw, 96px);
}

.section-label {
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 20px;
  grid-template-columns: 50px 1fr;
  padding-top: 17px;
}

.section-label span {
  color: var(--red);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
}

.section-label p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0;
  text-transform: uppercase;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  gap: clamp(56px, 9vw, 140px);
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  margin-top: clamp(72px, 8vw, 120px);
}

.portrait-stage {
  align-self: end;
  background:
    radial-gradient(ellipse at 58% 38%, rgba(234,0,32,.2), transparent 36%),
    #171717;
  min-height: 640px;
  overflow: hidden;
  position: relative;
}

.portrait-stage::before {
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom right, black, transparent 78%);
  position: absolute;
}

.portrait-stage::after {
  background: var(--red);
  box-shadow: 0 0 34px rgba(234,0,32,.55);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 0;
  width: 34%;
}

.portrait-stage img {
  bottom: 0;
  height: 94%;
  left: 50%;
  object-fit: contain;
  object-position: center bottom;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
  z-index: 2;
}

.portrait-glow {
  background: linear-gradient(90deg, var(--red), transparent);
  bottom: 0;
  height: 1px;
  left: 24px;
  opacity: .7;
  position: absolute;
  right: 24px;
  z-index: 3;
}

.portrait-caption {
  bottom: 22px;
  color: white;
  font-size: 13px;
  left: 24px;
  margin: 0;
  position: absolute;
  z-index: 3;
}

.portrait-caption span {
  color: rgba(255,255,255,.55);
  display: block;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: .08em;
  margin-top: 5px;
  text-transform: uppercase;
}

.intro-copy {
  align-self: center;
  max-width: 760px;
}

.kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .12em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.intro-copy h2,
.film h2,
.app h2 {
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 590;
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin: 0;
}

.intro-copy h2 em {
  color: var(--red);
  font-style: normal;
}

.intro-copy > p:not(.kicker) {
  color: #666;
  font-size: 17px;
  line-height: 1.65;
  max-width: 620px;
}

.intro-copy .large-copy {
  color: var(--ink) !important;
  font-size: clamp(20px, 2vw, 27px) !important;
  letter-spacing: -0.03em;
  line-height: 1.45 !important;
  margin-top: 42px;
}

.text-link {
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 13px;
  font-weight: 650;
  gap: 20px;
  margin-top: 24px;
  padding: 0 0 8px;
}

.work {
  background: var(--black);
  color: white;
}

.section-label--light {
  border-color: rgba(255,255,255,.18);
}

.work-heading {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.3fr .7fr;
  margin: clamp(72px, 8vw, 120px) 0 70px;
}

.work-heading h2 {
  font-size: clamp(50px, 7vw, 102px);
  font-weight: 590;
  letter-spacing: -.07em;
  line-height: .92;
  margin: 0;
}

.work-heading p {
  color: rgba(255,255,255,.52);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
  max-width: 430px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.25fr .75fr;
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  position: relative;
}

.feature-card--red {
  background:
    radial-gradient(circle at 76% 24%, rgba(234, 0, 32, .34), transparent 29%),
    linear-gradient(145deg, #1b1b1b 0%, #111 66%, #090909 100%);
  border: 1px solid rgba(234, 0, 32, .38);
  grid-row: span 2;
  min-height: 820px;
}

.feature-card--red::before {
  background: var(--red);
  box-shadow: 0 0 28px rgba(234, 0, 32, .55);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  width: 38%;
}

.feature-card--red .feature-copy h3 {
  color: white;
}

.feature-card--red .feature-number {
  color: var(--red);
  opacity: 1;
}

.feature-card--dark {
  background: #191919;
  border: 1px solid rgba(255,255,255,.12);
}

.feature-card--light {
  background: #ececea;
  color: var(--ink);
}

.feature-number {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  margin: 0;
  opacity: .66;
}

.feature-copy {
  margin-top: auto;
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.feature-copy h3 {
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 570;
  letter-spacing: -.055em;
  line-height: .98;
  margin: 0 0 24px;
}

.feature-copy > p {
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 26px;
  max-width: 510px;
  opacity: .68;
}

.feature-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.feature-links a {
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  padding: 11px 15px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.feature-links a:hover {
  background: white;
  color: black;
  transform: translateY(-2px);
}

.feature-card--light .feature-links a:hover {
  background: black;
  color: white;
}

.card-decoration {
  aspect-ratio: 1 / 1;
  height: auto;
  opacity: .7;
  position: absolute;
  right: -12%;
  top: 6%;
  width: min(72%, 720px);
}

.card-decoration span {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid currentColor;
  border-radius: 50%;
  inset: 0;
  opacity: .4;
  position: absolute;
  -webkit-transform: translateZ(0) rotate(0deg);
  transform: translateZ(0) rotate(0deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  will-change: transform;
}

.card-decoration span:nth-child(2) {
  inset: 12%;
}

.card-orbit-dot {
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 18px currentColor;
  height: 8px;
  left: 50%;
  margin: -4px 0 0 -4px;
  position: absolute;
  top: 50%;
  transform: translate3d(0, -50%, 0);
  will-change: transform;
  width: 8px;
}

.card-decoration span:nth-child(2) .card-orbit-dot {
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  opacity: .32;
  width: 5px;
}

.card-decoration span:nth-child(3) {
  display: none;
}

.feature-card--red .card-decoration {
  color: rgba(255, 255, 255, .6);
}

.feature-card--dark .card-decoration,
.feature-card--light .card-decoration {
  right: -22%;
  width: min(72%, 430px);
}

.film {
  background: var(--paper);
}

.film-heading {
  align-items: end;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr auto;
  margin: clamp(72px, 8vw, 120px) 0 50px;
}

.film-heading h2 {
  max-width: 1000px;
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #111;
  box-shadow: 0 40px 100px rgba(0,0,0,.18);
  overflow: hidden;
  position: relative;
}

.video-frame::before {
  border: 1px solid rgba(255,255,255,.18);
  content: "";
  inset: 12px;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.video-frame iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.club {
  align-items: center;
  background:
    radial-gradient(circle at 50% 25%, rgba(234,0,32,.36), transparent 30%),
    #080808;
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 780px;
  overflow: hidden;
  padding: 110px 24px;
  position: relative;
  text-align: center;
}

.club::before {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  content: "";
  height: 700px;
  left: 50%;
  position: absolute;
  top: 54%;
  transform: translate(-50%,-50%);
  width: 700px;
}

.club h2 {
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 600;
  letter-spacing: -.075em;
  line-height: .88;
  margin: 10px auto 36px;
  max-width: 1100px;
  position: relative;
}

.club-copy {
  color: rgba(255,255,255,.58);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 auto 32px;
  max-width: 590px;
  position: relative;
}

.button--light {
  background: white;
  color: black;
  position: relative;
}

.button--light:hover {
  background: var(--red);
  color: white;
}

.app {
  align-items: center;
  background: #e9e9e7;
  display: grid;
  gap: 90px;
  grid-template-columns: .8fr 1.2fr;
  min-height: 800px;
  overflow: hidden;
}

.app-copy {
  max-width: 670px;
}

.app-copy > p:not(.kicker) {
  color: #666;
  font-size: 17px;
  line-height: 1.6;
  max-width: 540px;
}

.web-app-steps {
  border-bottom: 1px solid rgba(0,0,0,.16);
  border-top: 1px solid rgba(0,0,0,.16);
  margin: 30px 0;
  padding: 12px 0;
}

.web-app-steps p {
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,.08);
  color: var(--ink) !important;
  display: grid;
  font-size: 13px !important;
  gap: 16px;
  grid-template-columns: 34px 1fr;
  margin: 0 !important;
  padding: 12px 0;
}

.web-app-steps p:last-child {
  border-bottom: 0;
}

.web-app-steps span {
  color: var(--red);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
}

.button--dark {
  background: var(--black);
  color: white;
}

.button--dark:hover {
  background: var(--red);
}

.app-visual {
  height: 560px;
  position: relative;
}

.phone {
  background: #0b0b0b;
  border: 7px solid #252525;
  border-radius: 54px;
  box-shadow: 0 40px 80px rgba(0,0,0,.28);
  height: 560px;
  overflow: hidden;
  position: absolute;
  width: 280px;
}

.phone::before {
  background: #252525;
  border-radius: 999px;
  content: "";
  height: 23px;
  left: 50%;
  position: absolute;
  top: 10px;
  transform: translateX(-50%);
  width: 88px;
}

.phone--back {
  background:
    radial-gradient(circle at 50% 34%, rgba(234,0,32,.55), transparent 28%),
    #090909;
  left: 44%;
  transform: rotate(-11deg) translateX(-50%);
}

.phone--back img {
  filter: drop-shadow(0 0 32px rgba(234,0,32,.35));
  height: 108px;
  left: 50%;
  opacity: .62;
  object-fit: contain;
  position: absolute;
  top: 46%;
  transform: translate(-50%,-50%);
  width: 108px;
}

.phone--front {
  color: white;
  left: 60%;
  padding: 90px 28px 30px;
  transform: rotate(7deg) translateX(-50%);
}

.phone--front img {
  margin-bottom: 130px;
  width: 180px;
}

.phone--front p,
.phone--front strong {
  display: block;
  font-size: 20px;
  letter-spacing: -.04em;
  margin: 0 0 4px;
}

.phone--front strong {
  color: var(--red);
}

.social-strip {
  background: var(--red);
  color: white;
  padding: 32px clamp(24px, 6vw, 96px);
}

.social-strip > p {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: .14em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.social-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 30px;
}

.social-strip a {
  font-size: clamp(22px, 2.6vw, 38px);
  font-weight: 580;
  letter-spacing: -.04em;
}

.social-strip a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

footer {
  background: var(--black);
  color: white;
  padding: 80px clamp(24px, 6vw, 96px) 34px;
}

.footer-top {
  align-items: end;
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
}

.footer-top img {
  width: min(330px, 50vw);
}

.footer-top p {
  color: rgba(255,255,255,.45);
  font-size: clamp(22px, 3vw, 42px);
  letter-spacing: -.045em;
  line-height: 1.12;
  margin: 0;
  text-align: right;
}

.footer-top strong {
  color: var(--red);
  font-weight: 580;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.4);
  display: flex;
  font-size: 11px;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-bottom div {
  display: flex;
  gap: 24px;
}

.footer-bottom a:hover {
  color: white;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: reveal .9s cubic-bezier(.2,.7,.2,1) both;
  }

  .hero h1.reveal { animation-delay: .12s; }
  .hero-copy.reveal { animation-delay: .22s; }
  .hero-actions.reveal { animation-delay: .3s; }

  @keyframes reveal {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @supports (animation-timeline: view()) {
    .portrait-stage {
      animation: portrait-stage-reveal both cubic-bezier(.2,.75,.2,1);
      animation-range: entry 12% cover 44%;
      animation-timeline: view();
      clip-path: inset(0 0 0 0);
    }

    .portrait-stage img {
      animation: portrait-image-reveal both cubic-bezier(.2,.75,.2,1);
      animation-range: entry 12% cover 50%;
      animation-timeline: view();
    }

    .intro-copy > * {
      animation: intro-copy-reveal both cubic-bezier(.2,.75,.2,1);
      animation-range: entry 16% cover 42%;
      animation-timeline: view();
    }

    .intro-copy > :nth-child(2) {
      animation-range: entry 20% cover 46%;
    }

    .intro-copy > :nth-child(n+3) {
      animation-range: entry 24% cover 50%;
    }

    @keyframes portrait-stage-reveal {
      from {
        clip-path: inset(12% 0 0 0);
        opacity: 0;
        transform: translateY(54px);
      }
      to {
        clip-path: inset(0 0 0 0);
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes portrait-image-reveal {
      from {
        filter: saturate(.6) brightness(.7);
        opacity: 0;
        transform: translateX(-50%) scale(1.075);
      }
      to {
        filter: saturate(1) brightness(1);
        opacity: 1;
        transform: translateX(-50%) scale(1);
      }
    }

    @keyframes intro-copy-reveal {
      from {
        opacity: 0;
        transform: translateY(34px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 66px;
  }

  .brand img {
    width: 184px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-cta {
    font-size: 11px;
  }

  .motto-wrap {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .hero-orbit--one {
    height: 600px;
    width: 600px;
  }

  .hero-orbit--two {
    height: 820px;
    width: 820px;
  }

  .hero-brand-mark {
    height: 90px;
    width: 90px;
  }

  .intro-grid,
  .work-heading,
  .film-heading,
  .app {
    grid-template-columns: 1fr;
  }

  .portrait-stage {
    min-height: 560px;
  }

  .work-heading {
    gap: 30px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--red {
    min-height: 650px;
  }

  .feature-card {
    min-height: 470px;
  }

  .film-heading .text-link {
    justify-self: start;
  }

  .club {
    min-height: 680px;
  }

  .app-visual {
    order: -1;
  }

  .phone--back {
    left: 40%;
  }

  .phone--front {
    left: 60%;
  }

  .footer-top {
    align-items: start;
    flex-direction: column;
    gap: 50px;
  }

  .footer-top p {
    text-align: left;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 600px) {
  .nav-cta {
    padding: 10px 13px;
  }

  .hero {
    min-height: 820px;
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 59px;
    line-height: .88;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 340px);
  }

  .section-shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .intro-grid,
  .film-heading {
    margin-top: 58px;
  }

  .portrait-stage {
    min-height: 500px;
  }

  .feature-card {
    min-height: 440px;
    padding: 26px;
  }

  .feature-card--red {
    min-height: 570px;
  }

  .club::before {
    height: 470px;
    width: 470px;
  }

  .app {
    gap: 60px;
  }

  .app-visual {
    height: 460px;
  }

  .phone {
    border-radius: 42px;
    height: 450px;
    width: 225px;
  }

  .phone--front {
    padding: 75px 22px 25px;
  }

  .phone--front img {
    margin-bottom: 100px;
    width: 150px;
  }

  .phone--front p,
  .phone--front strong {
    font-size: 16px;
  }

  .social-strip div {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    gap: 14px 20px;
  }
}
