@charset "UTF-8";

/* ---------------------------------------------------------- *\
 * Globals.
\* ---------------------------------------------------------- */

html {
  box-sizing: border-box;
}

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

body {
  position: relative;

  min-height: 100vh;
  margin: 0;
}

/* ---------------------------------------------------------- *\
 * Typography & colors.
\* ---------------------------------------------------------- */

html {
  color: #444444;

  font: 62.5%/1.6 "Trebuchet MS", Arial, Helvetica, sans-serif;
}

body {
  font-size: 1.26em;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: normal;
}

::-moz-selection {
  color: white;
  background: #3398ff;
}

::selection {
  color: white;
  background: #3398ff;
}

/* ---------------------------------------------------------- *\
 * Basic elements.
\* ---------------------------------------------------------- */

h1 {
  margin: 0;

  font-size: 2.8em;
}

h2 {
  margin: 25px 0 15px 0;

  font-size: 1.9em;
}

h3 {
  font-size: inherit;
  font-weight: bold;
}

img {
  max-width: 100%;
}

p {
  margin: 15px 0;
}

p:last-child {
  margin-bottom: 0;
}

/* Lists. */

ul,
ol {
  margin: 15px 0;
  padding-left: 30px;
}

ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

ul {
  list-style-type: square;
}

dl {
  margin: 0;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0;
}

dd + dt {
  margin-top: 15px;
}

/* ---------------------------------------------------------- *\
 * Layout.
\* ---------------------------------------------------------- */

body {
  padding: 20px 0;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 25px;
}

@media (min-width: 800px) {
  .page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .page-nav {
    min-width: 25%;
  }

  .page-wrapper {
    max-width: 75%;
  }

  .factsheet {
    min-width: 33%;
  }
}

/* ---------------------------------------------------------- *\
 * Micro Components.
\* ---------------------------------------------------------- */

.clearfix::after {
  display: table;
  clear: both;

  content: " ";
}

.capitalize {
  text-transform: capitalize;
}

/* ---------------------------------------------------------- *\
 * Components - Links.
\* ---------------------------------------------------------- */

a,
a:visited {
  color: #0077dd;

  text-decoration: none;
}

a:hover {
  color: #005599;

  text-decoration: underline;
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  outline: none;
}

/* ---------------------------------------------------------- *\
 * Components - Page Header.
\* ---------------------------------------------------------- */

.page-header img {
  display: block;
}

/* ---------------------------------------------------------- *\
 * Components - Nav.
\* ---------------------------------------------------------- */

.nav {
  margin-bottom: 30px;
}

.nav__title {
  padding: 0 15px;

  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  line-height: 1;
}

.nav__title a,
.nav__title a:visited,
.nav__title a:hover {
  color: inherit;

  text-decoration: none;
}

.nav__subtitle {
  padding: 5px 15px;
}

.nav__list {
  padding: 0;

  list-style: none;
}

.nav__item,
.nav__item:visited {
  display: block;

  padding: 5px 15px;

  color: inherit;
}

.nav__item:hover {
  color: inherit;
  background: rgba(0, 0, 0, 0.05);

  text-decoration: none;
}

.nav__item:focus {
  background: rgba(0, 0, 0, 0.05);
  outline: none;
}

/* ---------------------------------------------------------- *\
 * Nav - Hamburger.
\* ---------------------------------------------------------- */

.nav__toggle {
  display: none;

  margin: 15px 0;
  padding: 0 15px;
}

.nav__toggle .button {
  display: block;

  height: 30px;
}

/* Nav list variant for hamburger feature. */
.nav__list--slider {
  overflow-y: hidden;

  max-height: 0;

  -webkit-transition: max-height 0.5s ease-in-out;
     -moz-transition: max-height 0.5s ease-in-out;
       -o-transition: max-height 0.5s ease-in-out;
          transition: max-height 0.5s ease-in-out;
}


@media (min-width: 800px) {
  .nav__toggle {
    /* Always hide the button on big screens. */
    display: none !important;
  }

  .nav__list--slider {
    /* Always show the list on big screens. So disable slider. */
    max-height: unset !important;
  }
}

/* ---------------------------------------------------------- *\
 * Components - Block.
\* ---------------------------------------------------------- */

.block {
  margin-bottom: 15px;
  padding-bottom: 15px;

  border-bottom: 1px solid rgb(221, 221, 221);
}

.block__notice {
  margin-bottom: 15px;
  padding: 10px;

  color: #027194;
  background: #ebf7fd;
  border: 1px solid rgba(45,112,145,0.3);
  border-radius: 4px;
}

.block__notice a {
  color: inherit;
}

/* ---------------------------------------------------------- *\
 * Components - Grid.
\* ---------------------------------------------------------- */

@media (min-width: 800px) {
  .grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .grid__item:not(:first-child) {
    padding-left: 25px;
  }

  .grid__item--flexible {
    -webkit-box-flex: 1;
    -ms-flex: 1;
        flex: 1;
  }
}

/* ---------------------------------------------------------- *\
 * Components - Images Gallery.
\* ---------------------------------------------------------- */

.gallery {
  margin-left: -25px;

  font-size: 0; /* Disable the small space below the images. */
}

.gallery__item {
  float: left;

  width: 100%;
  padding-bottom: 25px;
  padding-left: 25px;
}

.gallery__item img {
  width: 100%;
}

.gallery__item a[href$=".gif"] {
  position: relative;

  display: block;
}

.gallery__item a[href$=".gif"]:focus:active {
  outline: none;
}

.gallery__item a[href$=".gif"]::after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;

  display: none;

  width: 100%;
  height: 100%;
  padding: 20px;

  background: rgba(0, 0, 0, 0.25);

  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAoCAMAAAC7IEhfAAAABGdBTUEAALGPC/xhBQAAAFFQTFRFAAAA/////////////////////////////Pz8/Pz8/Pz8/f39/f39/f39/f39/f39/f39/Pz8/Pz8/Pz8/Pz8/v7+/f39/f39/f39/f39/f395zF2nQAAABt0Uk5TAAEJCxQeIEpXYGFnc3V2d5WarK2/xNLb3N3m8ZFI2gAAAOlJREFUOMuVlckOgzAMRAdIWUrKUgK4/v8P7QWVLA64c0RPY9mxByBQ3U/LSrQuU18jKzM49uQGI2KVJY5Etkq5ZmNBWxNhheWMbOFz5cxZzaXnd8Exz6en5UvZXx98o6OjarsDtyop/Hrnixt/zm3x/AggGQCj/6UFHpLpAMBFICRTB9Qcg6JpjV4ABdMekwSmphMWGUTRBaYL1gwYma6gLBiYEvYr8HTZ9aXzzVDYjHo88sA7SgaufkJhKRI7Zgdg0K5ZtLiC3bG46lPQH5f6XPUBoI8UdUjpY08fpH9EMwAzqsL+5vfxBcKnb1vURTbUAAAAAElFTkSuQmCC");

  align-items: center;
  justify-content: center;
}

.gallery__item a[href$=".gif"].show-overlay::after {
  display: flex;
}

@media (min-width: 500px) {
  .gallery__item {
    width: 50%;
  }
}

/* ---------------------------------------------------------- *\
 * Components - Logo.
\* ---------------------------------------------------------- */

@media (min-width: 800px) {
  .logo {
    max-width: 49%;
  }
}

/* ---------------------------------------------------------- *\
 * Components - Video player.
\* ---------------------------------------------------------- */

.video-player {
  position: relative;

  padding-bottom: 56.25%; /* 16:9 */
}

.video-player__frame {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;
}

/* ---------------------------------------------------------- *\
 * Components - Quote.
\* ---------------------------------------------------------- */

.quote__content {
  margin: 0;
}

.quote__content::before {
  content: open-quote;
}

.quote__content::after {
  content: close-quote;
}

.quote__author::before {
  content: "-";
}

/* ---------------------------------------------------------- *\
 * Components - Button.
\* ---------------------------------------------------------- */

.button {
  display: inline-block;

  padding: 5px 10px;

  background: -webkit-linear-gradient(top, white, #fafafa);
  background:         linear-gradient(to bottom, white, #fafafa);
  border: 1px solid #cccccc;
  border-radius: 5px;
}

.button:hover {
  cursor: pointer;
  text-decoration: none;
}

.button:focus {
  border: 1px solid #3398ff;
  outline: none;
}

.button:active {
  color: white;
  background: -webkit-linear-gradient(top, #3398ff, #0077dd);
  background:         linear-gradient(to bottom, #3398ff, #0077dd);
}

/* ---------------------------------------------------------- *\
 * Widgets.
\* ---------------------------------------------------------- */

.widget {
  width: 100%;
}

.widget--steam {
  height: 190px;
}

.widget--humble {
  height: 328px;
}

@media (max-width: 505px) {
  .widget--humble {
    height: 205px;
  }
}

.widget--itch {
  height: 167px;
}

.widget--gamejolt {
  height: 245px;
}

.widget--bandcamp {
  width: 100%;
  height: 120px;

  border: 0;
}

/* ---------------------------------------------------------- *\
 * Hacks.
\* ---------------------------------------------------------- */

@media (min-width: 800px) {
  ._team-fix-margin-top {
    margin-top: -15px;
  }
}

/* ---------------------------------------------------------- *\
 * Squad Dunk theme overrides.
\* ---------------------------------------------------------- */

:root {
  --sd-bg: #FFF8EA;
  --sd-surface: #FFFFFF;
  --sd-surface-warm: #FFF2CF;
  --sd-text: #2B2730;
  --sd-muted: #5F5A66;
  --sd-heading: #3B3046;
  --sd-purple: #6E5A7E;
  --sd-orange: #D7894B;
  --sd-sky: #8DB7F2;
  --sd-yellow: #F1C46A;
  --sd-teal: #4FA7A7;
  --sd-border: rgba(110, 90, 126, 0.18);
  --sd-shadow: 0 18px 45px rgba(59, 48, 70, 0.10);
  --sd-radius: 18px;
}

html {
  color: var(--sd-text);
  background:
    radial-gradient(circle at 16% 0%, rgba(141, 183, 242, 0.24), transparent 32rem),
    radial-gradient(circle at 100% 12%, rgba(241, 196, 106, 0.24), transparent 28rem),
    var(--sd-bg);
  font: 62.5%/1.6 "Nunito Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
}

body {
  padding: 28px 0;
  font-size: 1.6em;
  line-height: 1.68;
}

h1,
h2,
h3,
h4,
.nav__title,
.factsheet__title,
dt,
.button,
.block__notice {
  font-family: "Fredoka", "Nunito Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4 {
  color: var(--sd-heading);
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.2rem, 5vw, 5rem);
}

h2 {
  margin: 34px 0 18px;
  font-size: clamp(2.7rem, 3vw, 3.7rem);
  line-height: 1.08;
}

h3 {
  margin: 24px 0 12px;
  font-size: 2.1rem;
  color: var(--sd-purple);
}

h4 {
  margin: 22px 0 12px;
  font-size: 1.75rem;
  color: var(--sd-muted);
}

p,
li,
dd {
  color: var(--sd-text);
}

.page {
  max-width: 1220px;
  padding: 0 28px;
}

.page-wrapper {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  box-shadow: var(--sd-shadow);
  overflow: hidden;
}

.page-content {
  padding: 0 28px 28px;
}

.page-header {
  padding: 0;
  background: linear-gradient(135deg, rgba(141,183,242,0.35), rgba(241,196,106,0.32));
}

.page-header img {
  width: 100%;
  height: auto;
  border-radius: 0 0 22px 22px;
}

.block {
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--sd-border);
}

.block:last-of-type {
  border-bottom: 0;
}

.block__notice {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 9px 15px;
  color: var(--sd-heading);
  background: linear-gradient(135deg, rgba(241,196,106,0.42), rgba(141,183,242,0.24));
  border: 1px solid rgba(110, 90, 126, 0.15);
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(59, 48, 70, 0.08);
  font-size: 1.4rem;
  font-weight: 700;
}

.block__notice a,
.block__notice a:visited {
  color: var(--sd-purple);
}

.description,
.factsheet,
._team-fix-margin-top article {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--sd-border);
  border-radius: var(--sd-radius);
  box-shadow: 0 10px 26px rgba(59, 48, 70, 0.06);
}

.description {
  padding: 2px 22px 20px;
}

.factsheet {
  padding: 18px 18px 20px;
  background:
    linear-gradient(180deg, rgba(255,242,207,0.74), rgba(255,255,255,0.82));
}

.factsheet__title {
  margin-top: 0;
  color: var(--sd-purple);
}

.factsheet__list dt,
dt {
  color: var(--sd-heading);
  font-weight: 700;
}

.factsheet__list dd,
dd {
  color: var(--sd-muted);
}

ul {
  list-style: none;
  padding-left: 0;
}

.description li,
.block li {
  position: relative;
  padding-left: 1.45em;
}

.description li::before,
.block li::before {
  position: absolute;
  left: 0;
  color: var(--sd-orange);
  content: "•";
  font-size: 1.4em;
  line-height: 1;
}

a,
a:visited {
  color: var(--sd-purple);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  color: var(--sd-orange);
  text-decoration: none;
}

.button,
.button:visited,
.block__notice a,
.block__notice a:visited {
  border-radius: 999px;
}

.button {
  padding: 8px 14px;
  color: var(--sd-purple);
  background: var(--sd-surface-warm);
  border: 1px solid rgba(110, 90, 126, 0.20);
  box-shadow: 0 6px 16px rgba(59, 48, 70, 0.08);
}

.button:hover,
.button:focus {
  color: white;
  background: var(--sd-orange);
  border-color: var(--sd-orange);
}

.nav {
  margin-bottom: 24px;
}

.nav__title {
  padding: 0 12px 10px;
  color: var(--sd-heading);
  font-size: clamp(3rem, 4.2vw, 4.4rem);
  font-weight: 700;
  line-height: 0.96;
  text-shadow: 0 5px 0 rgba(110, 90, 126, 0.12);
}

.nav__subtitle {
  padding: 0 12px 14px;
  color: var(--sd-muted);
  font-size: 1.35rem;
}

.nav__list {
  margin-top: 4px;
}

.nav__item,
.nav__item:visited {
  margin: 3px 0;
  padding: 8px 12px;
  color: var(--sd-purple);
  border-radius: 999px;
  font-family: "Fredoka", "Nunito Sans", Arial, sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
}

.nav__item:hover,
.nav__item:focus {
  color: var(--sd-heading);
  background: linear-gradient(135deg, rgba(241,196,106,0.58), rgba(141,183,242,0.28));
  text-decoration: none;
}

.gallery {
  margin-left: -18px;
}

.gallery__item {
  padding-bottom: 18px;
  padding-left: 18px;
}

.gallery__item a {
  display: block;
  overflow: hidden;
  background: var(--sd-surface);
  border: 1px solid rgba(110, 90, 126, 0.15);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(59, 48, 70, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.gallery__item a:hover {
  border-color: rgba(215, 137, 75, 0.42);
  box-shadow: 0 16px 32px rgba(59, 48, 70, 0.13);
  transform: translateY(-2px);
}

.gallery__item img {
  display: block;
}

.logo {
  padding: 18px;
  background: var(--sd-surface);
  border: 1px solid var(--sd-border);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(59, 48, 70, 0.08);
}

.video-player {
  overflow: hidden;
  border: 1px solid var(--sd-border);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(59, 48, 70, 0.08);
}

.page-footer {
  min-height: 18px;
  padding: 10px 0 4px;
  color: var(--sd-muted);
  text-align: center;
}

.privacy-disclosure summary {
  display: inline-block;
  font-size: 0.85em;
  color: var(--sd-muted);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: pointer;
}

.privacy-disclosure summary::-webkit-details-marker {
  display: none;
}

.privacy-disclosure summary:focus-visible {
  outline: 2px solid var(--sd-orange);
  outline-offset: 4px;
}

.privacy-disclosure__content {
  max-width: 680px;
  margin: 14px auto 0;
  padding-top: 12px;
  border-top: 1px solid var(--sd-border);
  text-align: left;
}

.privacy-disclosure__content h2 {
  margin: 0 0 6px;
  font-family: inherit;
  font-size: 1em;
  font-weight: 700;
  color: var(--sd-heading);
}

.privacy-disclosure__content p {
  margin: 0;
  font-size: 0.9em;
}

@media (min-width: 800px) {
  .page-nav {
    min-width: 24%;
    padding-top: 8px;
  }

  .page-wrapper {
    max-width: 76%;
  }

  .grid__item:not(:first-child) {
    padding-left: 22px;
  }

  .factsheet {
    min-width: 34%;
  }
}

@media (max-width: 799px) {
  body {
    padding: 14px 0;
  }

  .page {
    padding: 0 14px;
  }

  .page-wrapper {
    border-radius: 20px;
  }

  .page-content {
    padding: 0 16px 20px;
  }

  .description,
  .factsheet,
  ._team-fix-margin-top article {
    padding: 14px 16px;
  }

  .nav__toggle {
    padding: 0 12px;
  }
}

/* ---------------------------------------------------------- *\
 * Focused cleanup overrides.
\* ---------------------------------------------------------- */
/* ---------------------------------------------------------- *\
 * Focused cleanup overrides.
\* ---------------------------------------------------------- */

body,
.nav__item,
.nav__item:visited,
.factsheet__list dt,
.factsheet__list dd,
dt,
dd,
.button,
.block__notice {
  font-family: "Nunito Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
.nav__title {
  font-family: "Fredoka", "Nunito Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.nav__title {
  text-shadow: none;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 100%;
}

.nav__brand-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(59, 48, 70, 0.12);
}

.nav__brand span {
  display: block;
  min-width: 0;
  font-size: clamp(2.3rem, 3.2vw, 3.4rem);
  line-height: 0.96;
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(141,183,242,0.34), rgba(241,196,106,0.32)),
    #F8EACD;
}

.page-header img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(59, 48, 70, 0.12);
}

.media-placeholders {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 24px;
}

.media-placeholder-card {
  min-height: 128px;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,242,207,0.78));
  border: 1px solid var(--sd-border);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(59, 48, 70, 0.08);
}

.media-placeholder-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sd-heading);
  font-family: "Fredoka", "Nunito Sans", Arial, sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.15;
}

.media-placeholder-card span {
  display: block;
  color: var(--sd-muted);
  font-size: 1.52rem;
  line-height: 1.55;
}

.team-block {
  align-items: stretch;
  gap: 22px;
  margin-top: 0;
}

.team-block.grid .grid__item:not(:first-child) {
  padding-left: 0;
}

.team-card,
._team-fix-margin-top article {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 24px 24px 26px;
  overflow-wrap: anywhere;
}

.team-card h2 {
  margin-top: 0;
  margin-bottom: 18px;
}

.team-card h3 {
  margin-top: 18px;
  margin-bottom: 10px;
}

.team-card h3:first-of-type {
  margin-top: 0;
}

.team-card dl,
.team-card p {
  margin-bottom: 0;
}

.team-card dt {
  margin-top: 14px;
}

.team-card dt:first-child {
  margin-top: 0;
}

.team-card dd + dt {
  margin-top: 16px;
}

.team-card--contact {
  justify-content: flex-start;
}

@media (min-width: 800px) {
  .team-block.grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  }

  ._team-fix-margin-top {
    margin-top: 0;
  }
}

@media (max-width: 799px) {
  .nav__brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
  }

  .media-placeholders {
    grid-template-columns: 1fr;
  }

  .page-header {
    padding: 10px;
  }

  .page-header img {
    border-radius: 14px;
  }
}

/* ---------------------------------------------------------- *\
 * Final polish pass.
\* ---------------------------------------------------------- */

h1,
h2,
h3,
h4,
.nav__title,
.media-placeholder-card strong {
  font-family: "Fredoka", "Nunito Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(3rem, 4.4vw, 4.4rem);
  line-height: 1.04;
}

h2 {
  font-size: clamp(2.35rem, 2.5vw, 3.15rem);
  line-height: 1.12;
}

h3 {
  font-size: 1.95rem;
  line-height: 1.2;
}

h4 {
  font-size: 1.65rem;
  line-height: 1.24;
}

.nav__title span {
  font-size: clamp(2.15rem, 2.85vw, 3.05rem);
  line-height: 1;
}

.nav__item,
.nav__item:visited,
.factsheet__list dt,
.factsheet__list dd,
.media-placeholder-card span,
.button,
.block__notice,
.branding-asset {
  font-family: "Nunito Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
}

@media (min-width: 800px) {
  .grid > .factsheet {
    align-self: flex-start;
    height: auto;
  }
}

.screenshots-gallery-title {
  display: none;
}

.media-placeholder-card {
  min-height: 112px;
  padding: 18px 20px;
}

.media-placeholder-card strong {
  margin-bottom: 6px;
  font-size: 1.78rem;
}

.media-placeholder-card span {
  font-size: 1.48rem;
}

.branding-assets {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 18px;
  margin-top: 18px;
}

.branding-asset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: min(100%, 360px);
  padding: 0;
  color: inherit;
}

.branding-asset:hover {
  transform: translateY(-1px);
}

.branding-asset .logo {
  margin: 0;
}

#logo + .block__notice {
  margin-bottom: 0;
}

.gallery__caption {
  margin: 8px 4px 0;
  color: var(--sd-muted);
  font-size: 1.36rem;
  line-height: 1.4;
}

.media-placeholder-link {
  margin-top: 12px;
}

/* ---------------------------------------------------------- *\
 * Sticky nav, language selector, and structured description.
\* ---------------------------------------------------------- */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

@media (min-width: 800px) {
  .page-nav {
    position: sticky;
    top: 24px;
    align-self: flex-start;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding-right: 8px;
  }
}

.nav__item.is-active,
.nav__item[aria-current="true"] {
  color: var(--sd-heading);
  background: linear-gradient(135deg, rgba(241,196,106,0.68), rgba(141,183,242,0.34));
  box-shadow: inset 0 0 0 1px rgba(110, 90, 126, 0.12);
}

.language-switcher {
  margin: 4px 12px 18px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid var(--sd-border);
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(59, 48, 70, 0.06);
}

.language-switcher__label {
  display: block;
  margin-bottom: 6px;
  color: var(--sd-muted);
  font-family: "Nunito Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.language-switcher__select {
  width: 100%;
  min-height: 38px;
  padding: 7px 34px 7px 12px;
  color: var(--sd-heading);
  background: var(--sd-surface-warm);
  border: 1px solid rgba(110, 90, 126, 0.22);
  border-radius: 999px;
  font-family: "Nunito Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
}

.language-switcher__select:focus {
  border-color: var(--sd-orange);
  outline: 3px solid rgba(215, 137, 75, 0.22);
}

.description-copy {
  display: grid;
  gap: 22px;
}

.description-summary,
.description-long,
.description-features {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(110, 90, 126, 0.13);
  border-radius: 18px;
}

.description-summary {
  background: linear-gradient(135deg, rgba(241,196,106,0.34), rgba(141,183,242,0.20));
}

.description-copy h3 {
  margin-top: 0;
  color: var(--sd-purple);
}

.description-copy p {
  margin-top: 8px;
}

.description-feature-list {
  display: grid;
  gap: 14px;
}

.description-feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(110, 90, 126, 0.14);
}

.description-feature:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.description-feature:last-of-type {
  padding-bottom: 0;
}

.description-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(241,196,106,0.36);
  border: 1px solid rgba(215, 137, 75, 0.22);
  border-radius: 999px;
  font-size: 1.8rem;
}

.description-feature h4 {
  margin: 2px 0 6px;
  color: var(--sd-heading);
  font-size: 1.62rem;
}

.description-feature p {
  margin: 0;
}

@media (max-width: 799px) {
  html {
    scroll-padding-top: 82px;
  }

  .language-switcher {
    margin-bottom: 12px;
  }

  .description-summary,
  .description-long,
  .description-features {
    padding: 15px 16px;
    border-radius: 16px;
  }
}

/* ---------------------------------------------------------- *\
 * Squad Dunk landing hero.
\* ---------------------------------------------------------- */

.product-page {
  padding-top: 0;
}

.product-page .page {
  margin-top: 34px;
  margin-bottom: 34px;
}

.product-page .page-wrapper > .page-header {
  display: none;
}

.product-page .page-content {
  padding-top: 28px;
}

.landing-video {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: clamp(116px, 11vw, 164px) clamp(22px, 5vw, 86px) clamp(84px, 8vw, 142px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 20%, rgba(255,255,255,0.98), transparent 32rem),
    radial-gradient(ellipse at 76% 16%, rgba(218,235,255,0.72), transparent 40rem),
    radial-gradient(ellipse at 52% 90%, rgba(255,255,255,0.92), transparent 28rem),
    linear-gradient(180deg, #FFFFFF 0%, #F7FCFF 52%, #FFFFFF 100%);
}

.landing-video::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.58) 15%, rgba(255,255,255,0) 34%),
    radial-gradient(ellipse at 52% 20%, rgba(255,255,255,0.50), transparent 34rem);
  content: "";
  pointer-events: none;
}

.landing-video::after {
  position: absolute;
  right: 0;
  bottom: -56px;
  left: 0;
  z-index: 2;
  height: clamp(170px, 18vw, 300px);
  background:
    radial-gradient(ellipse at 22% 60%, rgba(255,255,255,0.96), transparent 24rem),
    radial-gradient(ellipse at 70% 54%, rgba(255,255,255,0.88), transparent 30rem),
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.70) 48%, #FFFFFF 82%, rgba(255,255,255,0) 100%);
  content: "";
  pointer-events: none;
}

.landing-video__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(230px, 0.42fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  width: min(100%, 1360px);
  margin: 0 auto;
}

.landing-video__copy {
  color: var(--sd-heading);
}

.landing-video__eyebrow {
  margin: 0 0 10px;
  color: rgba(59, 48, 70, 0.72);
  font-family: "Nunito Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: clamp(1.2rem, 1vw, 1.55rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.landing-video h1 {
  margin: 0 0 18px;
  color: var(--sd-heading);
  font-family: "Fredoka", "Nunito Sans", Arial, sans-serif;
  font-size: clamp(4.3rem, 7vw, 10.8rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 0;
}

.landing-video__copy p:last-child {
  max-width: 32rem;
  margin: 0;
  color: rgba(43, 39, 48, 0.78);
  font-size: clamp(1.7rem, 1.45vw, 2.25rem);
  line-height: 1.45;
}

.landing-video__frame {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.86);
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: 0 26px 76px rgba(83, 113, 146, 0.20);
}

.landing-video__poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.landing-video__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.landing-video__poster::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(43,39,48,0.02), rgba(43,39,48,0.20)),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.14), transparent 15rem);
  content: "";
}

.landing-video__poster:hover img,
.landing-video__poster:focus img {
  transform: scale(1.025);
}

.landing-video__poster:focus {
  outline: 3px solid rgba(110, 90, 126, 0.32);
  outline-offset: 4px;
}

.landing-video__iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #111;
  opacity: 0;
  pointer-events: none;
}

.landing-video__frame.is-playing .landing-video__poster {
  opacity: 0;
  pointer-events: none;
}

.landing-video__frame.is-playing .landing-video__iframe {
  opacity: 1;
  pointer-events: auto;
}

.landing-video__fallback,
.landing-video__fallback:visited {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 3;
  padding: 6px 10px;
  color: var(--sd-heading);
  font-family: "Nunito Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  text-decoration: none;
}

.landing-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(66px, 5.6vw, 88px);
  height: clamp(66px, 5.6vw, 88px);
  padding: 0;
  color: var(--sd-heading);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(43, 39, 48, 0.20);
  transform: translate(-50%, -50%);
}

.landing-video__play-icon {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid var(--sd-heading);
  transform: translateX(2px);
}

.landing-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  margin-top: 0;
  overflow: hidden;
  color: var(--sd-heading);
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F6FBFF 46%, #EEF7FF 100%);
  isolation: isolate;
}

.landing-hero::before {
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: clamp(84px, 10vw, 150px);
  background:
    radial-gradient(ellipse at 30% 0%, rgba(255,255,255,0.90), transparent 22rem),
    radial-gradient(ellipse at 72% 0%, rgba(255,255,255,0.82), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.24) 58%, rgba(255,255,255,0) 100%);
  content: "";
  pointer-events: none;
}

.landing-hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.landing-hero__backdrop::after {
  position: absolute;
  inset: 0;
  background: rgba(255, 248, 234, 0.04);
  content: "";
}

.landing-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.46) 0%, rgba(255,255,255,0.12) 10%, rgba(255,255,255,0) 22%, rgba(246,251,255,0.08) 78%, rgba(246,251,255,0.34) 100%),
    linear-gradient(90deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.02) 18%, rgba(255,255,255,0.02) 82%, rgba(255,255,255,0.24) 100%);
}

.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 124px;
  margin: 0;
  padding: clamp(22px, 3vw, 44px) clamp(22px, 4.2vw, 64px);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.78) 42%, rgba(255,255,255,0) 100%);
  pointer-events: none;
  transition: min-height 260ms ease, padding 260ms ease, background 260ms ease;
}

.landing-nav > * {
  pointer-events: auto;
}

.landing-nav.is-scrolled {
  min-height: 82px;
  padding-top: 14px;
  padding-bottom: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.68) 52%, rgba(255,255,255,0) 100%);
}

.landing-nav__brand,
.landing-nav__brand:visited,
.landing-nav__brand:hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(92px, 8.6vw, 154px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-decoration: none;
  transform-origin: top left;
  transition: opacity 260ms ease, width 260ms ease;
}

.landing-nav.is-scrolled .landing-nav__brand {
  width: clamp(72px, 6.2vw, 108px);
  opacity: 0.94;
}

.landing-nav__brand img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(255,255,255,0.26));
}

.landing-nav__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(18px, 4vw, 74px);
  padding-top: clamp(10px, 2vw, 34px);
  transition: padding 260ms ease, transform 260ms ease;
}

.landing-nav.is-scrolled .landing-nav__links {
  padding-top: 8px;
  transform: translateY(-2px);
}

.landing-nav__links a,
.landing-nav__links a:visited {
  color: rgba(43, 39, 48, 0.92);
  font-family: "Bakbak One", "Fredoka", "Nunito Sans", Arial, sans-serif;
  font-size: clamp(1.65rem, 1.35vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(255,255,255,0.55);
}

.landing-nav__links a:hover,
.landing-nav__links a:focus {
  color: var(--sd-orange);
  text-decoration: none;
}

.landing-hero__title {
  position: absolute;
  top: clamp(42px, 4vw, 76px);
  left: 50%;
  z-index: -1;
  width: min(52vw, 820px);
  max-width: calc(100% - 48px);
  opacity: 0.34;
  transform: translateX(-50%);
  filter: drop-shadow(0 12px 28px rgba(43,39,48,0.18));
  pointer-events: none;
}

.landing-hero__title img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-hero__title span {
  display: block;
  color: rgba(59, 48, 70, 0.28);
  font-family: "Fredoka", "Nunito Sans", Arial, sans-serif;
  font-size: clamp(6.4rem, 13vw, 18rem);
  font-weight: 700;
  line-height: 0.82;
  text-align: center;
  text-transform: uppercase;
}

.landing-hero__cta,
.landing-hero__cta:visited {
  display: none;
}

.landing-hero__cta:hover,
.landing-hero__cta:focus {
  text-decoration: none;
}

.funding-banner {
  display: flex;
  justify-content: center;
  padding: clamp(26px, 4vw, 54px) clamp(18px, 5vw, 72px);
  background: #FFFFFF;
}

.funding-banner img {
  display: block;
  width: min(100%, 1480px);
  height: auto;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 799px) {
  .product-page {
    padding-top: 0;
  }

  .product-page .page {
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .landing-hero {
    min-height: 78svh;
    margin-top: 0;
  }

  .landing-video {
    align-items: flex-start;
    min-height: auto;
    padding: 110px 18px 128px;
  }

  .landing-video__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .landing-video h1 {
    font-size: clamp(4.2rem, 16vw, 6.4rem);
  }

  .landing-video__frame {
    border-width: 6px;
    border-radius: 12px;
  }

  .landing-video__play {
    min-height: 46px;
    padding: 10px 16px;
    font-size: 1.25rem;
  }

  .landing-hero__backdrop {
    background-position: 54% center;
  }

  .landing-nav {
    align-items: flex-start;
    min-height: 82px;
    padding: 20px 18px;
  }

  .landing-nav.is-scrolled {
    min-height: 66px;
    padding-top: 12px;
    padding-bottom: 16px;
  }

  .landing-nav__links {
    gap: 14px;
    padding-top: 8px;
  }

  .landing-nav__links a,
  .landing-nav__links a:visited {
    font-size: 1.35rem;
  }

  .landing-nav__brand {
    width: 82px;
  }

  .landing-nav.is-scrolled .landing-nav__brand {
    width: 64px;
  }

  .landing-hero__title {
    top: 82px;
    width: min(72vw, 520px);
    opacity: 0.28;
  }

  .landing-hero__cta,
  .landing-hero__cta:visited {
    left: 50%;
    bottom: 92px;
    min-width: 142px;
    min-height: 48px;
    padding: 12px 20px;
    font-size: 1.55rem;
  }

}

/* ---------------------------------------------------------- *\
 * Cloud palette refinements for the press kit section.
\* ---------------------------------------------------------- */

.product-page {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.92), transparent 34rem),
    radial-gradient(circle at 78% 8%, rgba(221, 237, 255, 0.78), transparent 36rem),
    linear-gradient(180deg, #FFFFFF 0%, #F5FAFF 28%, #EEF7FF 100%);
}

.product-page .page-wrapper {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(186, 211, 238, 0.66);
  box-shadow: 0 24px 70px rgba(91, 116, 145, 0.14);
}

.product-page .description,
.product-page .factsheet,
.product-page ._team-fix-margin-top article {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(184, 208, 235, 0.72);
  box-shadow: 0 14px 34px rgba(91, 116, 145, 0.10);
}

.product-page .factsheet {
  background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(234,245,255,0.82));
}

.product-page .description-summary,
.product-page .description-long,
.product-page .description-features,
.product-page .media-placeholder-card,
.product-page .language-switcher {
  background: rgba(255, 255, 255, 0.70);
  border-color: rgba(184, 208, 235, 0.76);
}

.product-page .description-summary {
  background: linear-gradient(135deg, rgba(255,255,255,0.88), rgba(224,239,255,0.78));
}

.product-page .nav__item.is-active,
.product-page .nav__item[aria-current="true"],
.product-page .nav__item:hover,
.product-page .nav__item:focus {
  background: linear-gradient(135deg, rgba(224,239,255,0.86), rgba(235,228,248,0.64));
}

.product-page .language-switcher__select,
.product-page .button {
  background: rgba(244, 249, 255, 0.92);
  border-color: rgba(154, 185, 220, 0.48);
}

.product-page .block__notice {
  background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(224,239,255,0.72));
  border-color: rgba(184, 208, 235, 0.76);
}

.product-page .gallery__item a,
.product-page .logo {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(184, 208, 235, 0.72);
  box-shadow: 0 14px 32px rgba(91, 116, 145, 0.12);
}

/* ---------------------------------------------------------- *\
 * Elegant cloud polish.
\* ---------------------------------------------------------- */

.landing-hero__backdrop {
  background-size: cover;
}

.landing-hero__shade {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.40) 0%, rgba(255,255,255,0.14) 8%, rgba(255,255,255,0) 18%, rgba(246,251,255,0.20) 100%);
}

.landing-hero__cta,
.landing-hero__cta:visited {
  min-width: 174px;
  min-height: 54px;
  padding: 13px 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(43, 39, 48, 0.18);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(43, 39, 48, 0.16);
}

.product-page {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F8FCFF 22%, #EEF7FF 100%);
}

.product-page .page-wrapper {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(96, 130, 165, 0.09);
}

.product-page .description,
.product-page .factsheet,
.product-page ._team-fix-margin-top article,
.product-page .description-summary,
.product-page .description-long,
.product-page .description-features,
.product-page .media-placeholder-card,
.product-page .language-switcher,
.product-page .logo,
.product-page .gallery__item a {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(96, 130, 165, 0.07);
}

.product-page .factsheet,
.product-page .description-summary,
.product-page .block__notice {
  background: rgba(255, 255, 255, 0.80);
}

.product-page .nav__item,
.product-page .nav__item:visited {
  border-radius: 7px;
  font-family: "Nunito Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.product-page .nav__item.is-active,
.product-page .nav__item[aria-current="true"],
.product-page .nav__item:hover,
.product-page .nav__item:focus {
  background: rgba(255, 255, 255, 0.42);
  box-shadow: inset 2px 0 0 rgba(126, 142, 175, 0.24);
}

.product-page .language-switcher {
  padding: 12px 14px;
}

.product-page .language-switcher__select {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(255, 255, 255, 0.88);
  border-radius: 7px;
}

.product-page .button,
.product-page .button:visited,
.product-page .block__notice,
.product-page .block__notice a,
.product-page .block__notice a:visited {
  border-radius: 8px;
}

.product-page .button,
.product-page .block__notice {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(96, 130, 165, 0.07);
}

.product-page .gallery__item a:hover {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(96, 130, 165, 0.12);
}

.product-page .description-feature__icon {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.80);
  border-radius: 8px;
}

.product-page .description-summary,
.product-page .description-long,
.product-page .description-features {
  padding: 20px 22px;
}

.product-page .description-inline-features {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.product-page .description-inline-feature {
  padding-top: 14px;
  border-top: 1px solid rgba(126, 142, 175, 0.10);
}

.product-page .description-inline-feature h4 {
  margin: 0 0 6px;
  color: rgba(110, 90, 126, 0.78);
  font-family: "Nunito Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 1.62rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-page .description-inline-feature p {
  margin: 0;
}

.product-page .description-feature {
  border-top-color: rgba(126, 142, 175, 0.10);
}

.product-page .block {
  border-bottom-color: rgba(126, 142, 175, 0.10);
}

.product-page .factsheet {
  border-right: 0;
}

/* ---------------------------------------------------------- *\
 * Screenshot lightbox.
\* ---------------------------------------------------------- */

body.gallery-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 54px);
  background:
    radial-gradient(ellipse at 50% 10%, rgba(255, 255, 255, 0.20), transparent 28rem),
    rgba(26, 24, 30, 0.82);
  backdrop-filter: blur(10px);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox__dialog {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  width: min(100%, 1180px);
  max-height: calc(100vh - clamp(36px, 8vw, 108px));
}

.gallery-lightbox__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  margin: 0;
}

.gallery-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  box-shadow: 0 30px 86px rgba(0, 0, 0, 0.38);
}

.gallery-lightbox__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  padding: 10px 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  font-family: "Nunito Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  line-height: 1.35;
}

.gallery-lightbox__title {
  font-weight: 800;
}

.gallery-lightbox__count {
  color: rgba(255, 255, 255, 0.78);
  white-space: nowrap;
}

.gallery-lightbox__button {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #2b2730;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  font-family: "Nunito Sans", "Trebuchet MS", Arial, Helvetica, sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.gallery-lightbox__button:hover,
.gallery-lightbox__button:focus {
  color: #ffffff;
  background: var(--sd-orange);
  outline: none;
}

.gallery-lightbox__close {
  top: -18px;
  right: -18px;
  font-size: 2.1rem;
}

.gallery-lightbox__prev,
.gallery-lightbox__next {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox__prev {
  left: -22px;
}

.gallery-lightbox__next {
  right: -22px;
}

@media (max-width: 799px) {
  .gallery-lightbox {
    padding: 14px;
  }

  .gallery-lightbox__dialog {
    max-height: calc(100vh - 28px);
  }

  .gallery-lightbox__image {
    max-height: calc(100vh - 142px);
    border-radius: 9px;
  }

  .gallery-lightbox__button {
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox__close {
    top: 8px;
    right: 8px;
  }

  .gallery-lightbox__prev {
    left: 8px;
  }

  .gallery-lightbox__next {
    right: 8px;
  }

  .gallery-lightbox__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    font-size: 1.3rem;
  }
}

@media (max-width: 799px) {
  .landing-hero__backdrop {
    background-position: 52% center;
    background-size: cover;
  }

  .product-page .page-wrapper {
    border-radius: 10px;
  }
}
