:root {
  color-scheme: light;
  --ink: #151d24;
  --muted: #62717c;
  --line: #d7e0e7;
  --soft: #f3f7f9;
  --panel: #ffffff;
  --blue: #1768ac;
  --blue-dark: #0f4f86;
  --teal: #1f9b8e;
  --green: #4f8f4f;
  --amber: #d99a2b;
  --rose: #c45f71;
  --shadow: 0 28px 70px rgba(26, 42, 56, 0.16);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle, rgba(23, 104, 172, 0.12) 1px, transparent 1.4px),
    #f4f6f7;
  background-size: 24px 24px;
  background-attachment: fixed;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(215, 224, 231, 0.74);
  background: rgba(247, 250, 251, 0.84);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.hero-actions,
.download-facts,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 10px;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 9px);
  grid-template-rows: repeat(2, 9px);
  gap: 3px;
  width: 24px;
  height: 24px;
}

.brand-mark span {
  border-radius: 3px;
}

.brand-mark span:nth-child(1) {
  background: var(--blue);
}

.brand-mark span:nth-child(2) {
  background: var(--teal);
}

.brand-mark span:nth-child(3) {
  background: var(--amber);
}

.brand-mark span:nth-child(4) {
  background: var(--green);
}

.main-nav {
  justify-self: center;
  gap: 30px;
  color: #465763;
  font-size: 14px;
  font-weight: 680;
}

.main-nav a:hover,
.brand:hover,
.site-footer a:hover {
  color: var(--blue-dark);
}

.header-download {
  position: relative;
  isolation: isolate;
  overflow: visible;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38));
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 760;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 30px rgba(23, 104, 172, 0.12);
  backdrop-filter: blur(18px) saturate(1.25);
}

.board-hero {
  position: relative;
  padding: 86px 32px 96px;
  border-bottom: 1px solid rgba(215, 224, 231, 0.62);
}

.hero-scroll-arrow {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 26px;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 59px;
  height: 59px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.2)),
    linear-gradient(105deg, rgba(23, 104, 172, 0.72), rgba(31, 155, 142, 0.62), rgba(217, 154, 43, 0.66), rgba(196, 95, 113, 0.66), rgba(116, 78, 194, 0.62));
  background-size: auto, 240% 240%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 34px rgba(26, 42, 56, 0.13);
  backdrop-filter: blur(18px) saturate(1.32);
  transform: translateX(-50%);
  animation: assemblyArrowButtonGradient 8s ease-in-out infinite;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.hero-scroll-arrow::before {
  content: "";
  width: 23px;
  height: 23px;
  border-right: 5px solid rgba(255, 255, 255, 0.9);
  border-bottom: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  filter: drop-shadow(0 1px 2px rgba(15, 79, 134, 0.16));
  transform: translateY(-4px) rotate(45deg);
}

@keyframes assemblyArrowButtonGradient {
  0% {
    background-position: 0 0, 0% 50%;
  }

  50% {
    background-position: 0 0, 100% 50%;
  }

  100% {
    background-position: 0 0, 0% 50%;
  }
}

.hero-scroll-arrow:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 22px 48px rgba(26, 42, 56, 0.16);
}

.freeform-board {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 28px;
  width: min(1240px, 100%);
  min-height: 720px;
  margin: 0 auto;
  overflow: visible;
  padding: 42px 68px;
  background: transparent;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 980px);
  max-width: 980px;
  overflow: visible;
  text-align: center;
  isolation: isolate;
}

.hero-copy > :not(.logo-icon-burst) {
  position: relative;
  z-index: 2;
}

.logo-icon-burst {
  position: absolute;
  inset: -96px -40px 120px;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}

.logo-icon-burst::after {
  content: "";
  position: absolute;
  inset: 18px 4%;
  border-radius: 42%;
  background: radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.05), transparent 42%);
  backdrop-filter: none;
  pointer-events: none;
}

.widget-icon {
  --x: 0px;
  --y: 0px;
  --r: 0deg;
  --delay: 0s;
  --icon-color: var(--blue);
  position: absolute;
  left: 50%;
  top: 48%;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: #b7c2ca;
  filter: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.35);
  animation: widgetIconShoot 8.6s ease-in-out infinite;
  animation-delay: var(--delay);
}

.widget-icon::before,
.widget-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.widget-icon::after {
  display: none;
  pointer-events: none;
}

.note-icon {
  --x: -368px;
  --y: -72px;
  --r: -13deg;
  --delay: -0.4s;
  --icon-color: var(--amber);
}

.note-icon::before {
  left: 14px;
  right: 14px;
  top: 15px;
  height: 5px;
  background: currentColor;
  box-shadow:
    0 11px 0 currentColor,
    0 22px 0 currentColor;
}

.chart-icon {
  --x: -242px;
  --y: -138px;
  --r: 9deg;
  --delay: -1.4s;
  --icon-color: var(--teal);
}

.chart-icon::before {
  left: 13px;
  bottom: 12px;
  width: 7px;
  height: 18px;
  background: currentColor;
  box-shadow:
    13px -10px 0 currentColor,
    26px -3px 0 currentColor;
}

.task-icon {
  --x: -118px;
  --y: -182px;
  --r: -8deg;
  --delay: -2.2s;
  --icon-color: var(--green);
}

.task-icon::before {
  left: 14px;
  top: 15px;
  width: 24px;
  height: 13px;
  border-left: 6px solid currentColor;
  border-bottom: 6px solid currentColor;
  border-radius: 2px;
  transform: rotate(-45deg);
}

.calendar-icon {
  --x: 86px;
  --y: -188px;
  --r: 11deg;
  --delay: -3s;
  --icon-color: var(--rose);
}

.calendar-icon::before {
  left: 11px;
  top: 12px;
  width: 31px;
  height: 27px;
  border: 4px solid currentColor;
  border-top-color: currentColor;
  border-radius: 6px;
}

.package-icon {
  --x: 246px;
  --y: -132px;
  --r: -10deg;
  --delay: -3.8s;
  --icon-color: var(--amber);
}

.package-icon::before {
  left: 15px;
  top: 14px;
  width: 24px;
  height: 24px;
  border: 4px solid currentColor;
  border-radius: 5px;
  transform: rotate(45deg);
}

.contact-icon {
  --x: 352px;
  --y: -46px;
  --r: 8deg;
  --delay: -4.8s;
  --icon-color: var(--teal);
}

.contact-icon::before {
  left: 19px;
  top: 9px;
  width: 16px;
  height: 16px;
  background: currentColor;
  box-shadow: 0 20px 0 8px color-mix(in srgb, currentColor 55%, transparent);
}

.card-icon {
  --x: -326px;
  --y: 92px;
  --r: 12deg;
  --delay: -5.6s;
  --icon-color: var(--blue);
}

.card-icon::before {
  left: 10px;
  top: 14px;
  width: 33px;
  height: 23px;
  border: 4px solid currentColor;
  border-radius: 6px;
  box-shadow: inset 0 7px 0 color-mix(in srgb, currentColor 18%, transparent);
}

.store-icon {
  --x: 306px;
  --y: 86px;
  --r: -14deg;
  --delay: -6.5s;
  --icon-color: var(--rose);
}

.store-icon::before {
  left: 9px;
  top: 13px;
  width: 35px;
  height: 10px;
  background: currentColor;
  box-shadow: 0 12px 0 currentColor;
}

@keyframes widgetIconShoot {
  0% {
    color: #c6d0d7;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.35) rotate(0deg);
  }

  18% {
    color: #c6d0d7;
    opacity: 0.46;
  }

  54% {
    color: #b7c2ca;
    opacity: 0.78;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(1) rotate(var(--r));
  }

  78% {
    color: var(--icon-color);
    opacity: 0.96;
  }

  100% {
    color: var(--icon-color);
    opacity: 0;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) scale(0.88) rotate(var(--r));
  }
}

.hero-logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  margin-bottom: 18px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(215, 224, 231, 0.78);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(26, 42, 56, 0.09);
}

.hero-logo-lockup > span:last-child {
  color: var(--blue-dark);
  font-size: 22px;
  font-weight: 820;
}

.assembly-rainbow-logo {
  display: grid;
  grid-template-columns: repeat(2, 22px);
  grid-template-rows: repeat(2, 22px);
  gap: 7px;
  width: 51px;
  height: 51px;
}

.assembly-rainbow-logo span {
  border-radius: 8px;
  background: linear-gradient(135deg, #1768ac, #1f9b8e, #d99a2b, #c45f71, #744ec2);
  background-size: 320% 320%;
  animation: assemblyRainbow 8s ease-in-out infinite;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.assembly-rainbow-logo span:nth-child(2) {
  animation-delay: -2s;
}

.assembly-rainbow-logo span:nth-child(3) {
  animation-delay: -4s;
}

.assembly-rainbow-logo span:nth-child(4) {
  animation-delay: -6s;
}

@keyframes assemblyRainbow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  display: block;
  width: max-content;
  max-width: calc(100vw - 32px);
  margin: 0 auto 24px;
  padding: 0.12em 1.55em 0.5em;
  font-family: "Pacifico", cursive;
  font-size: clamp(85px, 9.25vw, 148px);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
  text-align: center;
  background: linear-gradient(105deg, #1768ac 4%, #1f9b8e 28%, #d99a2b 54%, #c45f71 76%, #744ec2 100%);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: none;
  animation: assemblyTitleGradient 10s ease-in-out infinite;
}

h1::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.36) 34%, rgba(255, 255, 255, 0.78) 66%, rgba(255, 255, 255, 0.26) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0.68;
  pointer-events: none;
}

@keyframes assemblyTitleGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-subtitle {
  max-width: 680px;
  margin: -46px auto 18px;
  color: #98a4ad;
  font-size: 10px;
  line-height: 1.25;
  font-weight: 650;
}

.hero-text {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  overflow: visible;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  font-weight: 800;
  backdrop-filter: blur(18px) saturate(1.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 16px 36px rgba(26, 42, 56, 0.12);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.header-download:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, rgba(23, 104, 172, 0.84), rgba(31, 155, 142, 0.68));
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 18px 38px rgba(23, 104, 172, 0.24);
}

.button.primary:hover {
  background: linear-gradient(135deg, rgba(15, 79, 134, 0.9), rgba(31, 155, 142, 0.74));
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.68);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34));
  color: #26343d;
}

.button:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.button-burst {
  position: absolute;
  left: var(--burst-x, 50%);
  top: var(--burst-y, 50%);
  z-index: -1;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background:
    radial-gradient(circle, var(--burst-a) 0 18%, var(--burst-b) 38%, transparent 72%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  animation: buttonColorBurst 860ms ease-out forwards;
  pointer-events: none;
  filter: blur(4px);
}

@keyframes buttonColorBurst {
  0% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(0.2);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(5.8);
  }
}

.download-mark {
  position: relative;
  width: 18px;
  height: 18px;
}

.download-mark::before,
.download-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: currentColor;
}

.download-mark::before {
  top: 2px;
  width: 3px;
  height: 14px;
  border-radius: 99px;
}

.download-mark::after {
  bottom: 1px;
  width: 11px;
  height: 11px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  background: transparent;
  transform: translateX(-50%) rotate(45deg);
}

.download-facts {
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.download-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(98, 113, 124, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #465763;
  font-size: 13px;
  font-weight: 720;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  width: min(100%, 620px);
}

.newsletter-form label {
  color: rgba(98, 113, 124, 0.92);
  font-size: 14px;
  font-weight: 820;
}

.newsletter-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.34)),
    rgba(248, 251, 252, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 16px 38px rgba(26, 42, 56, 0.1);
  backdrop-filter: blur(18px) saturate(1.12);
}

.newsletter-row input {
  width: 100%;
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 720;
  outline: none;
  padding: 0 8px 0 16px;
}

.newsletter-row input::placeholder {
  color: rgba(98, 113, 124, 0.7);
}

.newsletter-row .button {
  min-height: 46px;
  padding-inline: 18px;
  white-space: nowrap;
}

.newsletter-status {
  min-height: 20px;
  margin: 0;
  color: rgba(98, 113, 124, 0.86);
  font-size: 13px;
  font-weight: 760;
}

.newsletter-status[data-tone="success"] {
  color: #1f7b6f;
}

.newsletter-status[data-tone="error"] {
  color: #b94455;
}

.hero-screenshot-panel {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.screenshot-window {
  overflow: hidden;
  border: 1px solid rgba(122, 143, 158, 0.3);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 70px rgba(26, 42, 56, 0.15);
}

.screenshot-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(215, 224, 231, 0.84);
  background: rgba(250, 252, 253, 0.94);
}

.screenshot-window-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.screenshot-window-bar span:nth-child(1) {
  background: var(--rose);
}

.screenshot-window-bar span:nth-child(2) {
  background: var(--amber);
}

.screenshot-window-bar span:nth-child(3) {
  background: var(--green);
}

.screenshot-dropzone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
  overflow: hidden;
  background:
    linear-gradient(rgba(23, 104, 172, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 104, 172, 0.052) 1px, transparent 1px),
    #f8fbfc;
  background-size: 24px 24px;
}

.screenshot-dropzone img {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.screenshot-dropzone.has-image img {
  display: block;
}

.screenshot-dropzone.has-image .screenshot-empty {
  display: none;
}

.screenshot-empty {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(340px, calc(100% - 48px));
  padding: 34px;
  border: 1px dashed rgba(23, 104, 172, 0.36);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
  text-align: center;
}

.screenshot-empty strong {
  color: var(--ink);
  font-size: 18px;
}

.screenshot-empty span:last-child {
  font-size: 14px;
  line-height: 1.45;
}

.screenshot-icon {
  position: relative;
  width: 44px;
  height: 38px;
  border: 3px solid var(--blue);
  border-radius: 8px;
}

.screenshot-icon::before,
.screenshot-icon::after {
  content: "";
  position: absolute;
}

.screenshot-icon::before {
  right: 8px;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.screenshot-icon::after {
  left: 7px;
  right: 7px;
  bottom: 7px;
  height: 13px;
  background: linear-gradient(135deg, var(--teal) 0 50%, var(--green) 50% 100%);
  clip-path: polygon(0 100%, 33% 30%, 52% 68%, 68% 42%, 100% 100%);
}

.screenshot-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 14px;
}

.screenshot-upload-button,
.screenshot-clear-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 780;
  cursor: pointer;
}

.screenshot-upload-button {
  border: 1px solid rgba(23, 104, 172, 0.28);
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(23, 104, 172, 0.22);
}

.screenshot-clear-button {
  border: 1px solid rgba(98, 113, 124, 0.2);
  background: rgba(255, 255, 255, 0.78);
  color: #34444e;
}

.screenshot-controls input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.board-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(126, 143, 154, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(26, 42, 56, 0.12);
}

.board-card h2,
.board-card p {
  margin-bottom: 0;
}

.card-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.note-card {
  right: 76px;
  top: 72px;
  width: 320px;
  padding: 24px;
  background: #fff7cb;
  transform: rotate(2deg);
}

.note-card h2 {
  margin-bottom: 10px;
}

.note-card p {
  color: #5c5638;
  line-height: 1.55;
}

.note-swatches {
  display: flex;
  gap: 7px;
  margin-top: 18px;
}

.note-swatches span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.note-swatches span:nth-child(1) {
  background: var(--amber);
}

.note-swatches span:nth-child(2) {
  background: var(--teal);
}

.note-swatches span:nth-child(3) {
  background: var(--rose);
}

.reminders-card {
  right: 310px;
  bottom: 78px;
  width: 290px;
  padding: 22px;
  transform: rotate(-1.6deg);
}

.reminders-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.reminders-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #465763;
  font-weight: 650;
}

.reminders-card li::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.contact-card {
  right: 52px;
  bottom: 180px;
  width: 280px;
  padding: 22px;
  transform: rotate(1deg);
}

.contact-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.contact-row > span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.contact-row strong,
.contact-row small {
  display: block;
}

.contact-row small {
  color: var(--muted);
}

.download-card {
  left: 72px;
  bottom: 62px;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: center;
  width: min(360px, calc(100% - 144px));
  padding: 16px;
}

.download-card strong,
.download-card span {
  display: block;
}

.download-card strong {
  margin-bottom: 4px;
}

.download-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.download-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(23, 104, 172, 0.98), rgba(31, 155, 142, 0.92));
}

.apps-section,
.section,
.install-section {
  width: min(1120px, calc(100% - 48px));
  margin: 48px auto;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.36)),
    rgba(248, 251, 252, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 22px 60px rgba(26, 42, 56, 0.1);
  backdrop-filter: blur(18px) saturate(1.16);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.asset-library-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: none;
}

.asset-library-heading > div {
  max-width: 760px;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2,
.download-section h2 {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.asset-library-title {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.asset-library-title span {
  display: block;
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.04;
  background: linear-gradient(105deg, #1768ac 4%, #1f9b8e 30%, #d99a2b 58%, #c45f71 82%, #744ec2 100%);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: assemblyTitleGradient 10s ease-in-out infinite;
}

.asset-library-title small {
  display: block;
  color: var(--ink);
  font-size: 0.5em;
  line-height: 1.08;
  font-weight: 820;
}

.asset-library-download {
  min-width: 220px;
  min-height: 64px;
  font-size: 18px;
}

.section-heading p,
.download-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.asset-intro {
  display: grid;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.asset-intro .eyebrow {
  margin-bottom: 12px;
}

.asset-intro h2 {
  max-width: 860px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.asset-intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 650;
  line-height: 1.5;
}

.app-showcase {
  display: grid;
  gap: 22px;
  margin-top: 0;
}

.app-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(280px, 0.52fr);
  gap: 48px;
  align-items: center;
  min-height: 420px;
  overflow: hidden;
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(249, 251, 252, 0.78), rgba(240, 245, 247, 0.56)),
    rgba(244, 248, 250, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -1px 0 rgba(204, 218, 226, 0.28),
    0 22px 54px rgba(26, 42, 56, 0.1);
  backdrop-filter: blur(22px) saturate(1.14);
}

.app-panel::before {
  content: "";
  position: absolute;
  inset: -40%;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 26%, rgba(23, 104, 172, 0.34), transparent 32%),
    radial-gradient(circle at 47% 14%, rgba(31, 155, 142, 0.26), transparent 34%),
    radial-gradient(circle at 86% 24%, rgba(217, 154, 43, 0.3), transparent 32%),
    radial-gradient(circle at 82% 82%, rgba(196, 95, 113, 0.28), transparent 34%),
    radial-gradient(circle at 24% 86%, rgba(116, 78, 194, 0.2), transparent 34%);
  filter: blur(24px);
  opacity: 0.96;
  animation: appCardColorDrift 16s ease-in-out infinite alternate;
}

.app-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(245, 248, 250, 0.2)),
    linear-gradient(115deg,
      rgba(23, 104, 172, 0.22) 0%,
      rgba(31, 155, 142, 0.18) 26%,
      rgba(217, 154, 43, 0.19) 52%,
      rgba(196, 95, 113, 0.17) 74%,
      rgba(116, 78, 194, 0.18) 100%);
  background-size: 100% 100%, 240% 240%;
  backdrop-filter: blur(16px) saturate(1.18);
  animation: appCardSurfaceGradient 18s ease-in-out infinite;
}

.app-panel > * {
  position: relative;
  z-index: 1;
}

@keyframes appCardColorDrift {
  0% {
    transform: translate3d(-2%, -1%, 0) rotate(0deg) scale(1);
  }

  50% {
    transform: translate3d(3%, 2%, 0) rotate(12deg) scale(1.04);
  }

  100% {
    transform: translate3d(-1%, 3%, 0) rotate(-8deg) scale(1.02);
  }
}

@keyframes appCardSurfaceGradient {
  0% {
    background-position: 0 0, 0% 50%;
  }

  50% {
    background-position: 0 0, 100% 50%;
  }

  100% {
    background-position: 0 0, 0% 50%;
  }
}

.app-panel:nth-child(even) {
  grid-template-columns: minmax(360px, 1fr) minmax(280px, 0.52fr);
}

.app-panel:nth-child(even) .panel-preview {
  order: 0;
}

.panel-preview {
  position: relative;
  min-height: 360px;
  border-radius: 22px;
}

.import-photo-preview {
  display: grid;
  grid-template-areas:
    "media"
    "screenshots";
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, auto) auto;
  align-content: start;
  gap: 14px;
  min-height: 360px;
  padding: 12px;
  border: 1px solid rgba(198, 214, 224, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(247, 250, 251, 0.82), rgba(237, 243, 246, 0.6)),
    rgba(244, 248, 250, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 42px rgba(26, 42, 56, 0.08);
  overflow: hidden;
}

.import-photo-preview img {
  grid-area: media;
  display: none;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: clamp(340px, 36vw, 580px);
  object-fit: contain;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 10px 28px rgba(26, 42, 56, 0.08);
}

.import-photo-preview.has-photo img {
  display: block;
}

.import-photo-preview.has-photo .apps-photo-default {
  display: none;
}

.apps-photo-default {
  grid-area: media;
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(340px, 36vw, 580px);
  overflow: hidden;
  border: 1px solid rgba(198, 214, 224, 0.68);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.7), transparent 32%),
    linear-gradient(135deg, rgba(247, 250, 251, 0.82), rgba(229, 238, 243, 0.54)),
    rgba(255, 255, 255, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 10px 28px rgba(26, 42, 56, 0.08);
}

.apps-photo-default::before {
  content: "";
  width: min(168px, 42%);
  aspect-ratio: 1.35;
  border: 2px dashed rgba(23, 104, 172, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 16px 36px rgba(26, 42, 56, 0.08);
}

.apps-photo-default .floating-note {
  display: none;
}

.apps-photo-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.software-gallery-strip {
  grid-area: screenshots;
  position: relative;
  left: auto;
  bottom: auto;
  order: 2;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-self: stretch;
  justify-content: center;
  gap: 6px;
  width: 100%;
  min-height: 30px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 248, 250, 0.34)),
    rgba(241, 246, 248, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 20px rgba(26, 42, 56, 0.1);
  backdrop-filter: blur(14px) saturate(1.12);
}

.gallery-thumb {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  min-width: 26px;
  min-height: 26px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(195, 212, 222, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.gallery-thumb.active {
  border-color: rgba(23, 104, 172, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 0 0 2px rgba(23, 104, 172, 0.1);
}

.gallery-thumb:not(.has-image) {
  opacity: 0.42;
}

.gallery-thumb:not(.has-image) .thumb-screen::after {
  opacity: 0;
}

.thumb-screen {
  position: absolute;
  inset: 3px;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(184, 205, 217, 0.76);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 248, 250, 0.62)),
    rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 8px 18px rgba(26, 42, 56, 0.08);
}

.thumb-screen::before {
  display: none;
}

.thumb-screen img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-screen.has-image img {
  display: block;
  position: relative;
  z-index: 3;
}

.thumb-screen::after {
  content: "";
  position: absolute;
  inset: 8px 5px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(23, 104, 172, 0.18), rgba(31, 155, 142, 0.14)),
    rgba(255, 255, 255, 0.6);
}

.thumb-label {
  position: relative;
  z-index: 4;
  color: #42525d;
  font-size: 11px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.82);
}

.gallery-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  background: transparent;
  color: #60717c;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.thumb-import {
  background:
    linear-gradient(135deg, rgba(217, 154, 43, 0.16), rgba(196, 95, 113, 0.12)),
    rgba(255, 255, 255, 0.7);
}

.thumb-detail {
  background:
    linear-gradient(135deg, rgba(31, 155, 142, 0.16), rgba(116, 78, 194, 0.12)),
    rgba(255, 255, 255, 0.7);
}

.admin-only {
  display: none;
}

.gallery-admin-controls {
  justify-self: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  width: min(100%, 520px);
}

.gallery-admin-controls label,
.gallery-admin-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.34));
  color: #29414f;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 24px rgba(26, 42, 56, 0.12);
  backdrop-filter: blur(14px) saturate(1.18);
  cursor: pointer;
}

.gallery-admin-controls input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.photo-import-button,
.photo-clear-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.34));
  color: #29414f;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 24px rgba(26, 42, 56, 0.12);
  backdrop-filter: blur(14px) saturate(1.18);
  cursor: pointer;
}

.photo-clear-button {
  color: #5f6d76;
}

.apps-photo-controls input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
  pointer-events: none;
}

.panel-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

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

.gallery-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 22%, rgba(23, 104, 172, 0.16), transparent 34%),
    radial-gradient(circle at 82% 30%, rgba(217, 154, 43, 0.14), transparent 34%),
    rgba(241, 246, 248, 0.68);
  backdrop-filter: blur(14px);
}

.gallery-dialog {
  position: relative;
  width: min(940px, 100%);
  max-height: min(760px, calc(100vh - 56px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(240, 246, 248, 0.52)),
    rgba(244, 248, 250, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 28px 80px rgba(26, 42, 56, 0.22);
  backdrop-filter: blur(22px) saturate(1.12);
}

.gallery-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(26, 42, 56, 0.12);
  cursor: pointer;
}

.gallery-close::before,
.gallery-close::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 20px;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: #51636f;
}

.gallery-close::before {
  transform: rotate(45deg);
}

.gallery-close::after {
  transform: rotate(-45deg);
}

.gallery-stage {
  position: relative;
  min-height: 470px;
  padding: 58px 58px 0;
}

.gallery-slide {
  display: none;
  min-height: 470px;
}

.gallery-slide.active {
  display: grid;
  place-items: center;
}

.gallery-slide img {
  display: none;
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  border: 1px solid rgba(198, 214, 224, 0.74);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 46px rgba(26, 42, 56, 0.12);
}

.gallery-slide.has-image img {
  display: block;
}

.gallery-slide.has-image .gallery-empty {
  display: none;
}

.gallery-empty {
  display: grid;
  place-items: center;
  width: min(760px, 100%);
  min-height: 430px;
  border: 1px dashed rgba(198, 214, 224, 0.86);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(240, 247, 249, 0.42)),
    rgba(255, 255, 255, 0.52);
  color: #74838c;
  font-size: 22px;
  font-weight: 820;
  box-shadow: 0 18px 46px rgba(26, 42, 56, 0.08);
}

.gallery-window {
  position: relative;
  width: min(760px, 100%);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(198, 214, 224, 0.74);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(240, 247, 249, 0.58)),
    repeating-linear-gradient(0deg, rgba(23, 104, 172, 0.06) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(90deg, rgba(23, 104, 172, 0.06) 0 1px, transparent 1px 34px);
  box-shadow: 0 18px 46px rgba(26, 42, 56, 0.12);
}

.window-dot {
  position: absolute;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-dot.red {
  left: 20px;
  background: #c45f71;
}

.window-dot.amber {
  left: 40px;
  background: #d99a2b;
}

.window-dot.green {
  left: 60px;
  background: #51965e;
}

.gallery-sidebar {
  position: absolute;
  left: 0;
  top: 52px;
  bottom: 0;
  width: 168px;
  border-right: 1px solid rgba(198, 214, 224, 0.62);
  background: rgba(255, 255, 255, 0.5);
}

.gallery-content {
  position: absolute;
  left: 206px;
  top: 96px;
  right: 56px;
  display: grid;
  gap: 18px;
}

.gallery-content span {
  width: 42%;
  height: 12px;
  border-radius: 999px;
  background: rgba(31, 155, 142, 0.2);
}

.gallery-content strong {
  color: var(--ink);
  font-size: 34px;
}

.gallery-bars {
  height: 210px;
  border-radius: 18px;
  background:
    linear-gradient(to top, rgba(23, 104, 172, 0.78) 0 42%, transparent 42%),
    linear-gradient(to top, rgba(31, 155, 142, 0.68) 0 66%, transparent 66%),
    linear-gradient(to top, rgba(217, 154, 43, 0.72) 0 52%, transparent 52%);
  background-size: 24% 100%;
  background-position: 8% 0, 42% 0, 76% 0;
  background-repeat: no-repeat;
}

.gallery-import-view,
.gallery-detail-view {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
  align-items: center;
  padding: 76px 54px 46px;
}

.gallery-dropzone,
.gallery-model-card {
  display: grid;
  place-items: center;
  min-height: 230px;
  border: 2px dashed rgba(23, 104, 172, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(23, 104, 172, 0.1), rgba(217, 154, 43, 0.1)),
    rgba(255, 255, 255, 0.62);
  color: var(--blue-dark);
  font-size: 42px;
  font-weight: 860;
}

.gallery-model-card::before {
  content: "";
  width: 148px;
  height: 108px;
  border-radius: 42% 58% 44% 56%;
  background:
    radial-gradient(circle at 32% 36%, rgba(255, 255, 255, 0.8) 0 18%, transparent 19%),
    linear-gradient(135deg, rgba(23, 104, 172, 0.32), rgba(31, 155, 142, 0.22), rgba(217, 154, 43, 0.24));
  box-shadow: 0 20px 36px rgba(26, 42, 56, 0.14);
}

.gallery-checklist,
.gallery-metadata {
  display: grid;
  gap: 12px;
}

.gallery-checklist strong,
.gallery-metadata strong {
  color: var(--ink);
  font-size: 32px;
}

.gallery-checklist span,
.gallery-metadata span {
  min-height: 46px;
  padding: 12px 16px;
  border: 1px solid rgba(198, 214, 224, 0.66);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  color: #526673;
  font-weight: 760;
}

.gallery-footer {
  display: grid;
  grid-template-columns: 54px 1fr 54px;
  gap: 18px;
  align-items: center;
  padding: 24px 58px 36px;
  text-align: center;
}

.gallery-footer h2 {
  margin: 0 0 6px;
  font-size: 30px;
}

.gallery-footer p {
  margin: 0;
  color: var(--muted);
}

.gallery-nav {
  position: relative;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.34)),
    rgba(244, 248, 250, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 12px 28px rgba(26, 42, 56, 0.12);
  cursor: pointer;
}

.gallery-nav::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 18px;
  width: 13px;
  height: 13px;
  border-left: 4px solid #1768ac;
  border-bottom: 4px solid #1768ac;
  border-radius: 2px;
}

.gallery-nav.prev::before {
  transform: rotate(45deg);
}

.gallery-nav.next::before {
  left: 17px;
  transform: rotate(-135deg);
}

.panel-copy p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.software-lockup {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.software-lockup span {
  display: block;
  padding: 0.1em 0.6em 0.28em;
  font-family: "Pacifico", cursive;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.2;
  background: linear-gradient(105deg, #1768ac 4%, #1f9b8e 30%, #d99a2b 58%, #c45f71 82%, #744ec2 100%);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: assemblyTitleGradient 10s ease-in-out infinite;
}

.software-lockup small {
  color: var(--ink);
  font-size: clamp(16px, 1.45vw, 22px);
  font-weight: 850;
  line-height: 1.06;
}

.software-download {
  min-width: 164px;
  min-height: 46px;
  font-size: 14px;
}

.download-reviews {
  display: grid;
  width: min(100%, 520px);
  margin-top: 8px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 241, 214, 0.94), rgba(238, 248, 246, 0.92)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(26, 42, 56, 0.09);
  text-align: left;
  overflow: hidden;
}

.download-reviews-toggle {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 86px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.download-reviews-toggle::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #24786f;
  font-size: 22px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(26, 42, 56, 0.08);
}

.download-reviews.is-open .download-reviews-toggle::after {
  content: "-";
}

.download-reviews-body {
  display: none;
  gap: 16px;
  padding: 0 16px 16px;
}

.download-reviews.is-open .download-reviews-body {
  display: grid;
}

.download-reviews-toggle h4 {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.05;
}

.review-average {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-left: auto;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #24786f;
  font-size: 12px;
  font-weight: 850;
}

.review-form {
  display: grid;
  gap: 12px;
}

.review-form-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
}

.review-form label {
  display: grid;
  gap: 6px;
  color: #42525d;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  border: 1px solid rgba(126, 143, 154, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
}

.review-form input,
.review-form select {
  min-height: 42px;
  padding: 0 12px;
}

.review-form textarea {
  min-height: 104px;
  padding: 12px;
  resize: vertical;
}

.review-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.review-status[data-tone="success"] {
  color: #24786f;
}

.review-status[data-tone="error"] {
  color: #a9473e;
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 0 0 1px rgba(126, 143, 154, 0.14);
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card strong {
  color: var(--ink);
}

.review-card p,
.review-card small,
.review-empty {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.45;
}

.review-stars {
  color: #d99a2b;
  font-size: 13px;
  letter-spacing: 0;
  white-space: nowrap;
}

.review-reply {
  display: grid;
  gap: 4px;
  margin-top: 4px;
  padding: 12px;
  border-radius: 8px;
  background: #eef8f6;
}

.review-reply strong {
  color: #24786f;
  font-size: 12px;
  text-transform: uppercase;
}

.floating-note {
  position: absolute;
  display: block;
  width: 210px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(126, 143, 154, 0.2);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(26, 42, 56, 0.1);
  font-weight: 760;
}

.floating-note.yellow {
  top: 20px;
  left: 22px;
  background: #fff7cb;
  transform: rotate(-2deg);
}

.floating-note.blue {
  top: 82px;
  left: 198px;
  background: #dff0ff;
  transform: rotate(2deg);
}

.floating-note.green {
  top: 154px;
  left: 84px;
  background: #e5f8ec;
  transform: rotate(-1deg);
}

.reminders-preview,
.contacts-preview {
  display: grid;
  align-content: center;
  gap: 12px;
}

.reminders-preview div,
.contacts-preview div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(215, 224, 231, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(26, 42, 56, 0.06);
  font-weight: 720;
}

.reminders-preview span {
  width: 18px;
  height: 18px;
  border: 2px solid var(--teal);
  border-radius: 50%;
}

.contacts-preview div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
}

.contacts-preview strong,
.contacts-preview small {
  display: block;
}

.contacts-preview small {
  grid-column: 2;
  color: var(--muted);
  font-weight: 620;
}

.avatar {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.install-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: min(1120px, calc(100% - 48px));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(245, 248, 250, 0.18)),
    linear-gradient(125deg,
      rgba(23, 104, 172, 0.28) 0%,
      rgba(31, 155, 142, 0.2) 34%,
      rgba(217, 154, 43, 0.22) 64%,
      rgba(196, 95, 113, 0.2) 100%),
    rgba(244, 248, 250, 0.58);
  background-size: 100% 100%, 180% 180%, 100% 100%;
  animation: appCardSurfaceGradient 18s ease-in-out infinite;
}

.install-section::before {
  content: "";
  position: absolute;
  inset: -28%;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(23, 104, 172, 0.2), transparent 30%),
    radial-gradient(circle at 52% 10%, rgba(31, 155, 142, 0.18), transparent 32%),
    radial-gradient(circle at 86% 34%, rgba(217, 154, 43, 0.17), transparent 30%),
    radial-gradient(circle at 72% 92%, rgba(196, 95, 113, 0.16), transparent 32%);
  filter: blur(22px);
  opacity: 0.82;
  animation: appCardColorDrift 18s ease-in-out infinite alternate;
}

.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.install-grid article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(248, 251, 252, 0.42)),
    rgba(255, 255, 255, 0.46);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 42px rgba(26, 42, 56, 0.1);
  backdrop-filter: blur(16px) saturate(1.12);
}

.install-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 52%),
    radial-gradient(circle at 90% 14%, rgba(255, 255, 255, 0.24), transparent 28%);
  opacity: 0.82;
  pointer-events: none;
}

.install-grid article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(248, 251, 252, 0.42)),
    rgba(255, 255, 255, 0.46);
}

.install-grid article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(248, 251, 252, 0.42)),
    rgba(255, 255, 255, 0.46);
}

.install-grid span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-weight: 850;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 24px rgba(26, 42, 56, 0.1);
  backdrop-filter: blur(10px) saturate(1.12);
}

.install-grid h3 {
  position: relative;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 19px;
}

.install-grid p {
  position: relative;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.feedback-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 248, 250, 0.3)),
    linear-gradient(125deg, rgba(23, 104, 172, 0.16), rgba(31, 155, 142, 0.12), rgba(217, 154, 43, 0.14), rgba(196, 95, 113, 0.12)),
    rgba(248, 251, 252, 0.64);
  background-size: 100% 100%, 220% 220%, 100% 100%;
  animation: appCardSurfaceGradient 20s ease-in-out infinite;
}

.feedback-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: end;
  max-width: none;
}

.feedback-section .section-heading .eyebrow,
.feedback-section .section-heading h2 {
  grid-column: 1;
}

.feedback-contact-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 180px;
  min-height: 58px;
  align-self: center;
  font-size: 18px;
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feedback-card {
  position: relative;
  display: grid;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(248, 251, 252, 0.42)),
    rgba(255, 255, 255, 0.46);
  color: inherit;
  text-align: left;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 42px rgba(26, 42, 56, 0.09);
  backdrop-filter: blur(16px) saturate(1.12);
  cursor: pointer;
}

.feedback-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: linear-gradient(135deg, #1768ac, #1f9b8e 42%, #d99a2b 68%, #c45f71);
  background-size: 180% 180%;
  color: #ffffff;
  font-weight: 860;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 12px 24px rgba(23, 104, 172, 0.18);
  animation: assemblyRainbow 9s ease-in-out infinite;
}

.feedback-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.feedback-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.feedback-request-card {
  font: inherit;
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 32;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.request-modal.is-open {
  display: flex;
}

.request-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 22%, rgba(23, 104, 172, 0.16), transparent 34%),
    radial-gradient(circle at 84% 30%, rgba(217, 154, 43, 0.14), transparent 34%),
    rgba(241, 246, 248, 0.7);
  backdrop-filter: blur(14px);
}

.request-dialog {
  position: relative;
  width: min(620px, 100%);
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(240, 246, 248, 0.52)),
    linear-gradient(125deg, rgba(23, 104, 172, 0.14), rgba(31, 155, 142, 0.1), rgba(217, 154, 43, 0.12), rgba(196, 95, 113, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 28px 80px rgba(26, 42, 56, 0.22);
  backdrop-filter: blur(22px) saturate(1.12);
}

.request-dialog h2 {
  margin-bottom: 22px;
  font-size: 34px;
}

.request-form {
  display: grid;
  gap: 14px;
}

.request-form label {
  display: grid;
  gap: 8px;
  color: #42525d;
  font-weight: 820;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(198, 214, 224, 0.78);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.request-form textarea {
  resize: vertical;
}

.download-thanks-modal {
  position: fixed;
  inset: 0;
  z-index: 34;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.download-thanks-modal.is-open {
  display: flex;
}

.download-thanks-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 20%, rgba(23, 104, 172, 0.18), transparent 34%),
    radial-gradient(circle at 76% 26%, rgba(31, 155, 142, 0.16), transparent 34%),
    radial-gradient(circle at 58% 78%, rgba(217, 154, 43, 0.14), transparent 32%),
    rgba(241, 246, 248, 0.72);
  backdrop-filter: blur(16px) saturate(1.08);
}

.download-thanks-dialog {
  position: relative;
  width: min(620px, 100%);
  display: grid;
  justify-items: center;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 4%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(241, 246, 248, 0.54)),
    linear-gradient(125deg, rgba(23, 104, 172, 0.15), rgba(31, 155, 142, 0.12), rgba(217, 154, 43, 0.13), rgba(196, 95, 113, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 30px 86px rgba(26, 42, 56, 0.24);
  text-align: center;
  backdrop-filter: blur(24px) saturate(1.14);
}

.download-thanks-icon {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 24px);
  gap: 7px;
  width: 86px;
  height: 86px;
  margin-bottom: 22px;
  align-content: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.34)),
    linear-gradient(135deg, rgba(23, 104, 172, 0.12), rgba(31, 155, 142, 0.1), rgba(217, 154, 43, 0.1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 18px 42px rgba(26, 42, 56, 0.14);
  backdrop-filter: blur(18px) saturate(1.2);
}

.download-thanks-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 54%);
  pointer-events: none;
}

.download-thanks-icon span {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.download-thanks-icon span:nth-child(1) {
  background: linear-gradient(135deg, #1768ac, #1f9b8e);
}

.download-thanks-icon span:nth-child(2) {
  background: linear-gradient(135deg, #1f9b8e, #5ba56d);
}

.download-thanks-icon span:nth-child(3) {
  background: linear-gradient(135deg, #d99a2b, #e0b85e);
}

.download-thanks-icon span:nth-child(4) {
  background: linear-gradient(135deg, #c45f71, #d99a2b);
}

.download-thanks-dialog .eyebrow {
  margin-bottom: 18px;
}

.download-thanks-dialog h2:not(.visually-hidden) {
  max-width: 520px;
  margin: 0 0 18px;
  color: #121b22;
  font-size: clamp(34px, 5.2vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

.download-thanks-dialog > p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: #62717c;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.55;
}

.popup-newsletter {
  max-width: 500px;
  margin-top: 24px;
}

.popup-newsletter label {
  text-align: center;
}

.popup-newsletter .newsletter-row {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    rgba(248, 251, 252, 0.56);
}

.download-thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.request-submit {
  width: fit-content;
  margin-top: 8px;
}

.download-section,
.newsletter-section {
  width: min(1120px, calc(100% - 48px));
  margin: 48px auto 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.38)),
    rgba(248, 251, 252, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 22px 60px rgba(26, 42, 56, 0.1);
  backdrop-filter: blur(18px) saturate(1.16);
}

.download-section p {
  max-width: 650px;
  margin-bottom: 0;
}

.large-button {
  min-width: 228px;
  min-height: 58px;
}

.newsletter-section {
  margin: 0 auto 42px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  background:
    radial-gradient(circle at 14% 16%, rgba(23, 104, 172, 0.13), transparent 32%),
    radial-gradient(circle at 82% 20%, rgba(31, 155, 142, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.34)),
    rgba(248, 251, 252, 0.64);
}

.newsletter-section h2 {
  max-width: 660px;
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
}

.newsletter-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.footer-newsletter {
  justify-self: end;
}

.site-footer {
  width: min(100% - 48px, 1120px);
  margin: 22px auto 34px;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(245, 248, 250, 0.3)),
    rgba(248, 251, 252, 0.54);
  color: rgba(98, 113, 124, 0.86);
  font-size: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 36px rgba(26, 42, 56, 0.08);
  backdrop-filter: blur(16px) saturate(1.12);
}

.footer-brand {
  color: var(--ink);
  font-weight: 820;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
  min-width: 0;
}

.site-footer a {
  color: rgba(15, 79, 134, 0.84);
  font-weight: 720;
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.site-footer a:hover {
  color: var(--blue-dark);
  opacity: 0.86;
}

.policy-shell {
  width: min(100% - 36px, 920px);
  margin: 0 auto;
  padding: 48px 0 18px;
}

.policy-hero,
.policy-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(245, 248, 250, 0.42)),
    rgba(248, 251, 252, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 46px rgba(26, 42, 56, 0.08);
  backdrop-filter: blur(18px) saturate(1.12);
}

.policy-hero {
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  margin-bottom: 18px;
}

.policy-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 28px;
  color: var(--ink);
  text-decoration: none;
}

.policy-brand span {
  font-family: "Pacifico", cursive;
  font-size: clamp(38px, 8vw, 72px);
  line-height: 0.92;
}

.policy-brand small {
  color: rgba(98, 113, 124, 0.88);
  font-weight: 760;
}

.policy-hero h1 {
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(42px, 8vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.policy-hero p,
.policy-card p,
.policy-card li {
  color: rgba(55, 69, 79, 0.88);
  font-size: 16px;
  font-weight: 590;
  line-height: 1.65;
}

.policy-updated {
  margin-top: 18px;
  color: rgba(98, 113, 124, 0.9) !important;
  font-size: 14px !important;
  font-weight: 760 !important;
}

.policy-card {
  margin: 14px 0;
  padding: clamp(22px, 4vw, 34px);
  border-radius: 24px;
}

.policy-card h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}

.policy-card p {
  margin: 0;
}

.policy-card p + p {
  margin-top: 12px;
}

.policy-card ul {
  margin: 0;
  padding-left: 22px;
}

.policy-card a {
  color: rgba(15, 79, 134, 0.92);
  font-weight: 780;
}

.tiktok-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tiktok-connect-form {
  margin: 0;
}

.tiktok-login-fallback {
  display: inline-block;
  margin-top: 12px;
  color: rgba(15, 79, 134, 0.92);
  font-size: 13px;
  font-weight: 820;
}

.tiktok-import-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tiktok-import-code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 13px;
  font-weight: 820;
}

.tiktok-import-code span {
  color: rgba(98, 113, 124, 0.84);
  font-size: 12px;
}

.tiktok-profile-card,
.tiktok-video-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.tiktok-profile-card img,
.tiktok-video-card img {
  width: 76px;
  height: 76px;
  flex: 0 0 auto;
  border-radius: 18px;
  object-fit: cover;
  background: rgba(230, 236, 240, 0.8);
}

.tiktok-profile-card h3,
.tiktok-video-card h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
}

.tiktok-profile-card dl,
.tiktok-video-card dl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.tiktok-profile-card dl div,
.tiktok-video-card dl div {
  min-width: 82px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.tiktok-profile-card dt,
.tiktok-video-card dt {
  color: rgba(98, 113, 124, 0.84);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.tiktok-profile-card dd,
.tiktok-video-card dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 820;
}

.creator-compass-import {
  margin-bottom: 16px;
}

.creator-compass-card {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
}

.creator-compass-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1.05;
}

.creator-compass-card dl {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.creator-compass-card dl div,
.creator-compass-script {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(243, 247, 249, 0.88);
}

.creator-compass-card dt,
.creator-compass-script strong {
  display: block;
  color: rgba(98, 113, 124, 0.84);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.creator-compass-card dd {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 820;
}

.creator-compass-script {
  display: grid;
  gap: 6px;
}

.creator-compass-script p {
  margin: 0 0 8px;
}

.tiktok-video-list {
  display: grid;
  gap: 12px;
}

@media (max-width: 1040px) {
  .freeform-board {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 44px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .board-card {
    position: relative;
    inset: auto;
    transform: none;
    width: 100%;
    margin-top: 18px;
  }

  .download-card {
    width: 100%;
  }

  .hero-screenshot-panel {
    margin-top: 10px;
  }

  .app-panel,
  .app-panel:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .app-panel:nth-child(even) .panel-preview {
    order: 0;
  }

  .asset-library-heading {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .main-nav {
    display: none;
  }

  .board-hero {
    padding: 24px 16px 96px;
  }

  .freeform-board {
    padding: 28px 20px;
    gap: 34px;
  }

  h1 {
    font-size: 58px;
  }

  .hero-subtitle {
    margin-top: -46px;
    font-size: 10px;
  }

  .hero-text {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .hero-logo-lockup {
    width: 100%;
  }

  .screenshot-dropzone,
  .screenshot-dropzone img {
    min-height: 270px;
  }

  .screenshot-controls {
    justify-content: stretch;
  }

  .screenshot-upload-button,
  .screenshot-clear-button {
    flex: 1 1 160px;
  }

  .apps-section,
  .section,
  .download-section {
    width: calc(100% - 40px);
  }

  .apps-section,
  .section,
  .install-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-heading h2,
  .download-section h2 {
    font-size: 32px;
  }

  .app-panel {
    padding: 20px;
  }

  .panel-preview {
    min-height: 330px;
  }

  .asset-library-download {
    width: 100%;
  }

  .floating-note {
    width: 190px;
  }

  .floating-note.blue {
    left: 90px;
  }

  .floating-note.green {
    left: 34px;
  }

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

  .download-section,
  .newsletter-section {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .footer-newsletter {
    justify-self: stretch;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    width: calc(100% - 40px);
    border-radius: 24px;
    padding: 18px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Bootstrap-style responsive hardening layer.
   Keeps the page mobile-first, fluid, and free of horizontal clipping. */
:root {
  --container-gutter: clamp(16px, 4vw, 32px);
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
}

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

body {
  min-width: 0;
  overflow-x: hidden;
}

main {
  overflow-x: clip;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  max-width: 100%;
}

main,
section,
article,
div,
form {
  min-width: 0;
}

.board-hero,
.apps-section,
.section,
.install-section,
.download-section,
.newsletter-section {
  width: min(100% - (var(--container-gutter) * 2), var(--container-xl));
  margin-inline: auto;
}

.board-hero {
  width: 100%;
  max-width: none;
}

.freeform-board {
  width: min(100%, var(--container-xl));
}

.app-panel,
.download-section,
.asset-library-heading,
.feedback-section .section-heading {
  grid-template-columns: minmax(0, 1fr) minmax(0, auto);
}

.app-panel {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
}

.app-panel:nth-child(even) {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
}

.panel-preview,
.panel-copy,
.software-gallery-strip,
.gallery-stage,
.gallery-slide,
.request-dialog {
  min-width: 0;
  max-width: 100%;
}

.apps-photo-default,
.install-section,
.app-panel {
  overflow-x: clip;
}

.panel-copy p {
  max-width: 100%;
}

.software-gallery-strip {
  overflow-x: auto;
  overscroll-behavior-x: contain;
}

.gallery-dialog,
.request-dialog {
  max-width: min(100% - 32px, 1040px);
  max-height: calc(100dvh - 32px);
  overflow: auto;
}

.request-dialog {
  max-width: min(100% - 32px, 620px);
}

.install-grid,
.feedback-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.button,
.header-download,
.software-download,
.large-button,
.feedback-contact-button,
.request-submit,
.newsletter-row .button {
  max-width: 100%;
  white-space: normal;
}

@media (min-width: 576px) {
  .apps-section,
  .section,
  .install-section,
  .download-section,
  .newsletter-section {
    width: min(100% - 48px, var(--container-sm));
  }
}

@media (min-width: 768px) {
  .apps-section,
  .section,
  .install-section,
  .download-section,
  .newsletter-section {
    width: min(100% - 56px, var(--container-md));
  }
}

@media (min-width: 992px) {
  .apps-section,
  .section,
  .install-section,
  .download-section,
  .newsletter-section {
    width: min(100% - 64px, var(--container-lg));
  }
}

@media (min-width: 1200px) {
  .apps-section,
  .section,
  .install-section,
  .download-section,
  .newsletter-section {
    width: min(100% - 64px, var(--container-xl));
  }
}

@media (max-width: 991.98px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
  }

  .app-panel,
  .app-panel:nth-child(even),
  .download-section,
  .newsletter-section,
  .asset-library-heading,
  .feedback-section .section-heading {
    grid-template-columns: 1fr;
  }

  .feedback-contact-button {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .app-panel {
    gap: 28px;
  }

  .contact-icon {
    --x: 330px;
  }
}

@media (max-width: 767.98px) {
  .site-header {
    padding-inline: var(--container-gutter);
  }

  .apps-section,
  .section,
  .install-section,
  .download-section,
  .newsletter-section {
    width: calc(100% - (var(--container-gutter) * 2));
    padding: clamp(24px, 7vw, 42px);
    border-radius: clamp(22px, 6vw, 28px);
  }

  .freeform-board {
    padding-inline: var(--container-gutter);
  }

  .logo-icon-burst {
    inset: -72px -72px 104px;
    overflow: hidden;
  }

  .note-icon {
    --x: -236px;
  }

  .contact-icon {
    --x: 236px;
  }

  .card-icon {
    --x: -218px;
  }

  .store-icon {
    --x: 218px;
  }

  .app-panel {
    padding: clamp(18px, 5vw, 28px);
    border-radius: clamp(24px, 7vw, 34px);
  }

  .panel-preview,
  .import-photo-preview.has-photo {
    min-height: clamp(260px, 72vw, 380px);
  }

  .apps-photo-default {
    overflow: hidden;
    border-radius: inherit;
  }

  .section-heading h2,
  .download-section h2,
  .newsletter-section h2 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .feedback-contact-button,
  .request-submit,
  .large-button {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .board-hero {
    padding-inline: 0;
    padding-bottom: 92px;
  }

  .apps-section,
  .section,
  .install-section,
  .download-section,
  .newsletter-section {
    width: calc(100% - 24px);
    padding: 22px;
    margin-block: 28px;
  }

  .newsletter-row {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .newsletter-row input {
    padding-inline: 12px;
  }

  .newsletter-row .button {
    width: 100%;
  }

  .freeform-board {
    min-height: min(640px, calc(100dvh - 32px));
    padding: 24px 12px;
  }

  .logo-icon-burst {
    inset: -48px -96px 96px;
  }

  .widget-icon {
    width: 44px;
    height: 44px;
  }

  .note-icon {
    --x: -154px;
    --y: -66px;
  }

  .chart-icon {
    --x: -130px;
    --y: -132px;
  }

  .task-icon {
    --x: -52px;
    --y: -166px;
  }

  .calendar-icon {
    --x: 54px;
    --y: -166px;
  }

  .package-icon {
    --x: 142px;
    --y: -120px;
  }

  .contact-icon {
    --x: 148px;
    --y: -42px;
  }

  .card-icon {
    --x: -146px;
    --y: 80px;
  }

  .store-icon {
    --x: 146px;
    --y: 78px;
  }

  .visually-hidden {
    inset: 0 auto auto 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip-path: inset(50%);
    contain: strict;
  }

  h1 {
    width: 100%;
    max-width: 100%;
    padding: 0.12em 0.08em 0.5em;
    font-size: clamp(46px, 15vw, 62px);
    overflow: visible;
    text-align: center;
  }

  .hero-subtitle {
    margin-top: -46px;
    font-size: 10px;
  }

  .software-lockup span {
    font-size: clamp(34px, 12vw, 48px);
  }

  .floating-note {
    width: min(190px, 58vw);
  }

  .floating-note.yellow {
    left: 16px;
  }

  .floating-note.blue {
    right: 16px;
    left: auto;
  }

  .floating-note.green {
    left: 32px;
  }

  .request-modal,
  .gallery-modal {
    padding: 12px;
  }

  .request-dialog,
  .gallery-dialog {
    max-width: calc(100% - 8px);
    max-height: calc(100dvh - 24px);
    border-radius: 24px;
  }
}


/* Assembly Asset Library homepage media */
.asset-library-feature {
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.52fr);
}

.import-photo-preview {
  grid-template-areas:
    "main"
    "screenshots";
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.main-photo-stage {
  grid-area: main;
  display: grid;
  min-width: 0;
}

.import-photo-preview img,
.apps-photo-default {
  min-height: clamp(320px, 32vw, 520px);
  max-height: clamp(320px, 32vw, 520px);
}

.youtube-trailer-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  width: min(100%, 420px);
  min-height: 86px;
  padding: 16px 18px;
  border: 1px solid rgba(198, 214, 224, 0.72);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(135deg, rgba(196, 95, 113, 0.16), rgba(217, 154, 43, 0.12)),
    rgba(247, 250, 251, 0.72);
  color: #24343f;
  text-align: left;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 12px 28px rgba(26, 42, 56, 0.1);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.youtube-trailer-link:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 18px 38px rgba(26, 42, 56, 0.14);
}

.youtube-play-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 38px rgba(26, 42, 56, 0.16);
}

.youtube-play-mark::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #c43f3f;
}

.youtube-trailer-link strong {
  display: block;
  font-size: 18px;
  font-weight: 850;
}

.youtube-trailer-link small {
  display: block;
  margin-top: 3px;
  color: currentColor;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.25;
  opacity: 0.78;
}

.asset-library-copy h3 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.02;
  letter-spacing: 0;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.feature-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #42525d;
  font-size: 12px;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}


@media (max-width: 991.98px) {
  .asset-library-feature,
  .import-photo-preview {
    grid-template-columns: 1fr;
  }

  .import-photo-preview {
    grid-template-areas:
      "main"
      "screenshots";
  }

  .youtube-trailer-link {
    width: 100%;
  }

  .download-reviews {
    width: 100%;
  }
}

/* Mobile layout verification fixes */
@media (max-width: 575.98px) {
  .board-hero {
    min-height: auto;
    padding: 26px 0 76px;
  }

  .download-reviews-toggle,
  .review-card-head {
    display: grid;
  }

  .review-form-grid {
    grid-template-columns: 1fr;
  }

  .freeform-board {
    min-height: auto;
    padding: 64px 12px 32px;
  }

  .hero-copy {
    width: 100%;
  }

  .logo-icon-burst {
    inset: -26px 0 92px;
    opacity: 0.52;
    overflow: hidden;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: min(100%, 344px);
    margin-inline: auto;
  }

  .hero-scroll-arrow {
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .apps-section,
  .section,
  .install-section,
  .download-section,
  .newsletter-section {
    width: calc(100% - 24px);
    margin-block: 24px;
    padding: 22px;
  }

  .asset-intro {
    margin-bottom: 22px;
  }

  .asset-intro h2 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.04;
  }

  .asset-intro p:not(.eyebrow) {
    font-size: 16px;
  }

  .app-panel {
    gap: 20px;
    min-height: 0;
    padding: 18px;
  }

  .panel-preview,
  .import-photo-preview,
  .import-photo-preview.has-photo {
    min-height: 0;
  }

  .import-photo-preview {
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
  }

  .main-photo-stage {
    min-height: 0;
  }

  .import-photo-preview img,
  .apps-photo-default {
    min-height: 220px;
    max-height: 260px;
  }

  .import-photo-preview img {
    object-fit: contain;
  }

  .software-gallery-strip {
    justify-content: flex-start;
    overflow-x: auto;
    min-height: 54px;
    padding: 5px 8px;
  }

  .gallery-thumb {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .thumb-screen {
    inset: 5px;
  }

  .panel-copy {
    gap: 14px;
  }

  .software-lockup span {
    font-size: clamp(34px, 12vw, 46px);
  }

  .asset-library-copy h3 {
    max-width: 100%;
    font-size: clamp(25px, 7.8vw, 32px);
    line-height: 1.08;
  }

  .panel-copy p {
    font-size: 15px;
    line-height: 1.5;
  }

  .feature-pills {
    width: 100%;
  }

  .feature-pills span {
    flex: 1 1 120px;
    justify-content: center;
    text-align: center;
  }

  .youtube-trailer-link,
  .software-download {
    width: 100%;
  }

  .install-grid {
    gap: 14px;
  }

  .install-grid article,
  .feedback-card {
    min-height: 0;
    padding: 24px;
  }

  .install-grid span,
  .feedback-card span {
    margin-bottom: 22px;
  }

  .feedback-section .section-heading {
    gap: 18px;
  }

  .feedback-grid {
    gap: 14px;
  }

  .newsletter-section {
    gap: 22px;
  }

  .footer-newsletter,
  .footer-newsletter .newsletter-row {
    width: 100%;
  }

  .site-footer {
    width: calc(100% - 24px);
    margin-block: 22px;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-links a {
    min-height: 44px;
    padding-inline: 10px;
  }

  .request-modal,
  .gallery-modal,
  .download-thanks-modal {
    align-items: flex-start;
    padding: 10px;
    overflow: auto;
  }

  .request-dialog,
  .gallery-dialog,
  .download-thanks-dialog {
    width: 100%;
    max-width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 24px;
    border-radius: 24px;
    overflow: auto;
  }

  .download-thanks-actions {
    width: 100%;
  }

  .gallery-close {
    width: 44px;
    height: 44px;
  }

  .gallery-close::before,
  .gallery-close::after {
    left: 14px;
    top: 21px;
  }
}

/* Carden game landing page layer */
body {
  background:
    radial-gradient(circle at 20% 10%, rgba(238, 188, 94, 0.34), transparent 30%),
    radial-gradient(circle at 82% 4%, rgba(76, 160, 136, 0.28), transparent 28%),
    linear-gradient(180deg, #f7f0d5 0%, #d7eee5 42%, #f4f6ef 100%);
}

.game-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 14px auto 0;
  padding: 10px 14px 10px 22px;
  border: 2px solid rgba(37, 71, 56, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 230, 0.88);
  box-shadow: 0 18px 44px rgba(39, 63, 51, 0.12);
  backdrop-filter: blur(16px) saturate(1.1);
}

.game-brand,
.game-header-actions,
.game-nav,
.community-band {
  display: flex;
  align-items: center;
}

.game-brand {
  flex-direction: column;
  align-items: flex-start;
  color: #254738;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.game-brand span {
  font-size: 24px;
}

.game-brand small {
  margin-top: 4px;
  color: #7a5b29;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.game-nav {
  justify-content: center;
  gap: 26px;
  color: #49624d;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.game-header-actions {
  gap: 10px;
}

.game-header .button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
}

.board-hero {
  min-height: calc(100vh - 88px);
  padding: 56px 24px 76px;
  border-bottom: 0;
}

.freeform-board {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  min-height: 620px;
  padding: 28px 0;
}

.hero-copy {
  max-width: 620px;
  text-align: left;
}

.hero-kicker {
  margin-bottom: 12px;
  color: #7a5b29;
}

.hero-copy h1 {
  text-align: left;
}

.hero-copy h1,
.software-lockup span {
  color: #254738;
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.82);
}

.hero-copy h1::before {
  display: none;
}

.hero-subtitle {
  max-width: 560px;
  margin-inline: 0;
  color: #2e4c40;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.14;
}

.hero-actions {
  justify-content: flex-start;
  gap: 14px;
}

.hero-actions .button {
  width: auto;
  min-height: 52px;
  border-radius: 8px;
}

.hero-game-media {
  position: relative;
  z-index: 3;
  width: min(100%, 640px);
  margin: 0;
  padding: 10px;
  border: 3px solid rgba(37, 71, 56, 0.22);
  border-radius: 8px;
  background: #fff8d8;
  box-shadow: 0 30px 80px rgba(37, 71, 56, 0.22);
  transform: rotate(1deg);
}

.hero-game-media img {
  display: block;
  width: 100%;
  aspect-ratio: 920 / 430;
  border-radius: 5px;
  object-fit: cover;
}

.logo-icon-burst {
  opacity: 0.18;
}

.community-band {
  justify-content: center;
  gap: 12px;
  width: min(1040px, calc(100% - 32px));
  margin: -28px auto 34px;
  padding: 14px;
  border: 2px solid rgba(37, 71, 56, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 230, 0.9);
  box-shadow: 0 18px 44px rgba(39, 63, 51, 0.1);
}

.community-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: #254738;
  color: #fff8d8;
  font-weight: 900;
  text-transform: uppercase;
}

.community-link:nth-child(2) {
  background: #c96d3d;
}

.community-link:nth-child(3) {
  background: #386f90;
}

.apps-section,
.install-section,
.section,
.newsletter-section,
.site-footer {
  border-radius: 8px;
  background: rgba(255, 250, 230, 0.92);
}

.apps-section {
  border: 2px solid rgba(37, 71, 56, 0.16);
}

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

.asset-intro h2,
.feature-heading h2 {
  color: #254738;
}

.app-panel {
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(244, 226, 163, 0.42)),
    #fffaf0;
}

.import-photo-preview {
  border-radius: 8px;
  background: #2c4b40;
}

.import-photo-preview img,
.apps-photo-default,
.gallery-dialog,
.gallery-stage {
  border-radius: 8px;
}

.software-download,
.button.primary {
  background: linear-gradient(135deg, #c96d3d, #e1a83f);
  color: #fffaf0;
}

.button.secondary {
  border-color: rgba(37, 71, 56, 0.22);
  background: #fff8d8;
  color: #254738;
}

.install-section {
  padding-top: 46px;
}

.feature-heading {
  margin-bottom: 28px;
  text-align: center;
}

.install-grid article {
  border: 2px solid rgba(37, 71, 56, 0.14);
  border-radius: 8px;
  background: #fffaf0;
}

.install-grid span {
  background: #254738;
  color: #fff8d8;
}

@media (max-width: 860px) {
  .game-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .game-nav,
  .game-header-actions,
  .community-band {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .freeform-board {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy,
  .hero-copy h1 {
    text-align: center;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-game-media {
    transform: none;
  }
}
