@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --sm-red: #f90000;
  --sm-black: #000000;
  --sm-dark: #0a0a0a;
  --sm-gray: #1a1a1a;
  --sm-muted: #8c8c8c;
  --sm-white: #ffffff;
  --sm-max: 1440px;
  --sm-topbar-h: 40px;
  --sm-header-h: 96px;
  --sm-bg-base: #060606;
  --sm-grain: url('/img/sony-careers/grain-texture.png');
  --sm-grain-tile: 512px;
  --sm-content-narrow: min(78%, 1040px);
}

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

html { scroll-behavior: smooth; }

body.sm-careers {
  margin: 0;
  padding-top: calc(var(--sm-topbar-h) + var(--sm-header-h));
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--sm-bg-base);
  background-image: var(--sm-grain);
  background-repeat: repeat;
  background-size: var(--sm-grain-tile);
  color: var(--sm-white);
  -webkit-font-smoothing: antialiased;
}

/* Cursor dot grid (careers.sonymusic.com) */
.cursor-gradient-canvas {
  top: 0;
  left: 0;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  position: fixed;
  backface-visibility: hidden;
  display: none;
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 1200px) {
  .cursor-gradient-canvas {
    display: block;
  }
}

.sm-careers a,
.sm-careers button,
.sm-careers input,
.sm-careers .sm-btn-ghost,
.sm-careers .sm-search,
.sm-careers .sm-footer,
.sm-careers .sm-menu-toggle {
  position: relative;
  z-index: 1;
}

/* Keep sticky header above canvas; do not set position:relative here */
.sm-careers .sm-header-wrap {
  z-index: 200;
}

#app-main {
  position: relative;
  z-index: 0;
}

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

.sm-header-wrap img {
  max-width: none;
}

.sm-careers a { color: inherit; text-decoration: none; }

.sm-container {
  width: min(100% - 48px, var(--sm-max));
  margin-inline: auto;
}

/* Header — fixed + hide on scroll down, show on scroll up */
.sm-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background-color: var(--sm-bg-base);
  background-image: var(--sm-grain);
  background-repeat: repeat;
  background-size: var(--sm-grain-tile);
  width: 100%;
  transform: translateY(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.sm-header-wrap.is-hidden {
  transform: translateY(-100%);
  pointer-events: none;
}

.sm-topbar {
  background: transparent;
}

.sm-topbar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: var(--sm-topbar-h);
  padding: 8px 40px 6px;
  max-width: var(--sm-max);
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.sm-topbar__link {
  display: inline-flex;
  line-height: 0;
  flex-shrink: 0;
  margin-left: auto;
}

.sm-topbar__sony {
  display: block;
  height: 18px;
  width: auto;
}

.sm-header {
  position: relative;
  background: transparent;
  border-bottom: 2px solid rgba(255, 255, 255, 0.65);
}

.sm-header__inner {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr minmax(0, auto);
  align-items: center;
  gap: 40px;
  min-height: var(--sm-header-h);
  padding: 16px 40px;
  max-width: var(--sm-max);
  margin: 0 auto;
  width: 100%;
}

.sm-header__logo {
  flex-shrink: 0;
  justify-self: start;
}

.sm-header__logo .sm-sony-logo--header {
  display: block;
  height: 48px;
  width: auto;
  max-width: none;
}

.sm-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: nowrap;
  min-width: 0;
}

.sm-nav a {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 0.95;
  transition: opacity 0.25s ease;
  position: relative;
  padding: 8px 0 12px;
}

.sm-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--sm-red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sm-nav a:hover,
.sm-nav a.is-active {
  opacity: 1;
}

.sm-nav a:hover::after,
.sm-nav a.is-active::after {
  transform: scaleX(1);
}

.sm-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-shrink: 0;
  justify-self: end;
}

.sm-btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  color: var(--sm-white);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  line-height: 1.2;
}

.sm-btn-ghost:hover {
  background: var(--sm-white);
  color: var(--sm-black);
}

.sm-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 14px;
  background: #1c1c1c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: default;
}

.sm-lang__arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--sm-red);
}

.sm-menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  color: var(--sm-white);
  flex-shrink: 0;
}

.sm-menu-toggle__bars {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
  flex-shrink: 0;
}

.sm-menu-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transform-origin: center center;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sm-menu-toggle__bars span:nth-child(1) {
  top: 0;
}

.sm-menu-toggle__bars span:nth-child(2) {
  top: 7px;
}

.sm-menu-toggle__bars span:nth-child(3) {
  top: 14px;
}

.sm-menu-toggle.is-active .sm-menu-toggle__bars span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.sm-menu-toggle.is-active .sm-menu-toggle__bars span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.sm-menu-toggle.is-active .sm-menu-toggle__bars span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.sm-menu-label {
  font-size: 14px;
  font-weight: 500;
}

.sm-hero__search-wrap {
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  width: min(92%, 640px);
  z-index: 5;
}

.sm-search {
  display: flex;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.sm-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--sm-white);
  font-size: 15px;
  padding: 18px 20px;
  outline: none;
}

.sm-search input::placeholder { color: rgba(255, 255, 255, 0.55); }

.sm-search button {
  width: 56px;
  background: var(--sm-red);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sm-search button svg {
  width: 22px;
  height: 22px;
  fill: var(--sm-white);
}

.sm-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
}

/* Section divider (careers-style) */
.sm-section-rule {
  display: block;
  width: var(--sm-content-narrow);
  height: 0;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: none;
}

/* Hero → intro: in-flow seam only (no overlap on slider) */
.sm-hero-intro-seam {
  display: block;
  width: 100%;
  height: clamp(72px, 9vh, 112px);
  margin: 0;
  padding: 0;
  border: 0;
  background: linear-gradient(to bottom, #000 0%, transparent 100%);
  pointer-events: none;
  position: relative;
  z-index: 3;
}

/* Intro */
.sm-intro {
  margin-top: 0;
  padding: clamp(48px, 6vw, 72px) 0 72px;
  background: transparent;
  position: relative;
  z-index: 2;
}

.sm-intro > .sm-container {
  width: var(--sm-content-narrow);
  max-width: 1040px;
  position: relative;
  z-index: 2;
}

.sm-intro__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  position: relative;
  z-index: 2;
}

.sm-intro h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 28px;
  max-width: none;
}

.sm-intro p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 20px;
  max-width: 52ch;
}

.sm-intro__cta {
  font-size: 16px;
  font-weight: 600;
  margin-top: 8px;
}

.sm-careers .sm-intro__cta-link {
  color: var(--sm-red);
  text-decoration: none;
  font-weight: 700;
  transition: opacity 0.2s ease;
}

.sm-careers .sm-intro__cta-link:hover {
  color: var(--sm-red);
  opacity: 0.85;
  text-decoration: underline;
}

.sm-intro__logo-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sm-intro__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

.sm-intro__logo-lottie {
  width: 226px;
  height: 226px;
  margin: 0 auto;
  --lottie-animation-container-width: 226px;
  --lottie-animation-container-height: 226px;
  --lottie-animation-container-background-color: transparent;
}

.sm-intro__logo-lottie svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

/* Video / team section */
.sm-working {
  padding: 72px 0 100px;
  background: transparent;
  position: relative;
}

.sm-working::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
}

.sm-working__head {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.sm-working h2 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.02em;
}

.sm-working__video {
  position: relative;
  width: min(100%, 960px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.sm-working__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Why cards */
/* Decorative red ambient glow (not on hero/intro transition) */
.sm-section-glow {
  position: relative;
  overflow: hidden;
}

.sm-section-glow::before {
  content: '';
  position: absolute;
  top: 8%;
  right: -6%;
  width: min(52%, 520px);
  height: 72%;
  background: radial-gradient(ellipse, rgba(249, 0, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.sm-section-glow > .sm-container {
  position: relative;
  z-index: 1;
}

.sm-why {
  padding: 100px 0;
  background: transparent;
}

.sm-why h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin: 0 0 48px;
}

.sm-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sm-card {
  background: var(--sm-gray);
  display: flex;
  flex-direction: column;
}

.sm-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.sm-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}

.sm-card__body {
  padding: 28px 24px 32px;
}

.sm-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.25;
}

.sm-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* Split sections */
.sm-split {
  padding: 100px 0;
  background: transparent;
}

.sm-split:nth-child(even) {
  background: rgba(0, 0, 0, 0.18);
}

.sm-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.sm-split--reverse .sm-split__inner {
  direction: rtl;
}

.sm-split--reverse .sm-split__inner > * {
  direction: ltr;
}

.sm-split__label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sm-split__label::before {
  content: '/';
  color: var(--sm-red);
  font-weight: 700;
}

.sm-split h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.sm-split__lead {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 32px;
  max-width: 36ch;
}

.sm-split__lead strong {
  color: var(--sm-white);
  font-weight: 600;
}

.sm-split__visual {
  position: relative;
}

.sm-split__visual--video {
  width: 100%;
  max-width: min(100%, 560px);
  margin-left: auto;
  margin-right: 0;
}

#collaborations-preview .sm-split__inner {
  align-items: start;
}

#collaborations-preview .sm-split__visual--video {
  margin-left: 0;
  margin-right: auto;
}

.sm-split__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.sm-split__video::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.sm-split__video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sm-split__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.sm-split__video--locked {
  pointer-events: none;
  user-select: none;
}

#payments .sm-split__visual--video {
  max-width: min(100%, 360px);
  margin-left: 0;
  margin-right: auto;
  position: relative;
  isolation: isolate;
}

/* Left-side half-circle accents for Payments section */
#payments {
  position: relative;
  overflow: hidden;
  --payments-circle-size: clamp(360px, 38vw, 620px);
  --payments-circle-left: clamp(-360px, -24vw, -240px);
  --payments-circle-top: clamp(10px, 6%, 70px);
  --payments-circle-small-size: clamp(170px, 18vw, 300px);
}

#payments::before {
  content: '';
  position: absolute;
  width: var(--payments-circle-size);
  height: var(--payments-circle-size);
  left: var(--payments-circle-left);
  top: var(--payments-circle-top);
  border-radius: 50%;
  border: 2px solid rgba(250, 1, 0, 0.34);
  box-shadow:
    0 0 0 16px rgba(250, 1, 0, 0.13),
    0 0 0 46px rgba(250, 1, 0, 0.08);
  z-index: 0;
  pointer-events: none;
}

#payments::after {
  content: '';
  position: absolute;
  width: var(--payments-circle-small-size);
  height: var(--payments-circle-small-size);
  left: calc(var(--payments-circle-left) + (var(--payments-circle-size) - var(--payments-circle-small-size)) / 2);
  top: calc(var(--payments-circle-top) + (var(--payments-circle-size) - var(--payments-circle-small-size)) / 2);
  border-radius: 50%;
  border: 2px solid rgba(250, 1, 0, 0.28);
  box-shadow: 0 0 0 10px rgba(250, 1, 0, 0.08);
  z-index: 0;
  pointer-events: none;
}

#payments .sm-split__video {
  aspect-ratio: 9 / 19;
  border-radius: 30px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  position: relative;
  z-index: 1;
}

#payments .sm-split__video::after {
  border-radius: 20px;
}

#payments .sm-split__video video {
  border-radius: 20px;
  background: #0a0a0a;
  object-position: center center;
  transform: scale(1.59);
  transform-origin: center center;
  will-change: transform;
}

#payments .sm-split__inner {
  align-items: center;
  gap: clamp(24px, 3vw, 42px);
}

#payments .sm-split__lead {
  max-width: 42ch;
}

.sm-split__visual--square {
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: min(100%, 520px);
  margin-left: auto;
  overflow: hidden;
}

.sm-split__visual img {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(100%);
}

.sm-split__visual--square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sm-deco {
  position: absolute;
  z-index: 2;
}

.sm-deco--stripe {
  width: 80px;
  height: 80px;
  background: repeating-linear-gradient(
    -45deg,
    var(--sm-red),
    var(--sm-red) 8px,
    var(--sm-black) 8px,
    var(--sm-black) 16px
  );
  top: -20px;
  left: -20px;
}

.sm-deco--circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--sm-white);
  top: 20px;
  right: 40px;
}

.sm-deco--dots {
  width: 100px;
  height: 100px;
  background: var(--sm-red);
  bottom: -20px;
  right: -20px;
  background-image: radial-gradient(var(--sm-black) 18%, transparent 20%);
  background-size: 14px 14px;
  background-position: center;
}

/* Footer */
.sm-footer {
  padding: 80px 0 40px;
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sm-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.sm-footer__logo .sm-sony-logo--footer {
  display: block;
  height: 72px;
  width: auto;
  margin-bottom: 24px;
}

.sm-footer__nav h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.sm-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sm-footer__links li { margin-bottom: 10px; }

.sm-footer__links a {
  font-size: 14px;
  opacity: 0.85;
}

.sm-footer__links a:hover { opacity: 1; }

.sm-footer__mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.sm-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sm-social a {
  opacity: 0.85;
  font-size: 12px;
}

.sm-social__icons {
  display: flex;
  gap: 12px;
}

.sm-social__link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sm-white);
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}

.sm-social__link:hover {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
  opacity: 1;
}

.sm-social__link img {
  display: block;
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.sm-social__link:hover img {
  opacity: 1;
}

.sm-footer__legal {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 11px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.sm-footer__legal a {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 6px;
}

/* Mobile */
@media (max-width: 1200px) {
  .sm-topbar__inner,
  .sm-header__inner {
    gap: 20px;
    padding-inline: 24px;
  }

  .sm-nav {
    gap: 20px;
  }

  .sm-nav a {
    font-size: 15px;
  }

  .sm-header__logo .sm-sony-logo--header {
    height: 40px;
  }

  .sm-topbar__sony {
    height: 16px;
  }
}

@media (max-width: 1024px) {
  .sm-header__inner {
    grid-template-columns: auto 1fr auto;
  }

  .sm-menu-toggle {
    display: flex;
  }

  .sm-nav {
    display: none;
  }

  .sm-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 300;
    margin: 0;
    padding: 20px 24px 28px;
    gap: 4px;
    background: rgba(0, 0, 0, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  }

  .sm-nav.is-open a {
    padding: 14px 4px;
    font-size: 17px;
    white-space: normal;
  }

  body.sm-menu-open {
    overflow: hidden;
  }

  .sm-header__actions .sm-btn-ghost { display: none; }
  .sm-intro__grid,
  .sm-split__inner,
  .sm-why__grid,
  .sm-footer__top { grid-template-columns: 1fr; }
  .sm-split--reverse .sm-split__inner { direction: ltr; }

  .sm-intro {
    text-align: center;
  }

  .sm-intro p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .sm-intro__logo-block {
    margin-top: 8px;
  }

  .sm-split__lead {
    max-width: none;
  }

  .sm-split__visual--video {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }

  #payments .sm-split__visual--video {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .sm-container { width: min(100% - 32px, var(--sm-max)); }
  .sm-why__grid { grid-template-columns: 1fr; }
}
