/* Shroozy Stage light-blue visual system */
@font-face {
  font-family: "Plex Sans";
  src: url("assets/fonts/ibm-plex-sans-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Plex Sans";
  src: url("assets/fonts/ibm-plex-sans-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Plex Sans";
  src: url("assets/fonts/ibm-plex-sans-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Plex Sans";
  src: url("assets/fonts/ibm-plex-sans-latin-700-normal.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-latin-600-normal.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #f7fbff;
  --ink-2: #edf6ff;
  --panel: #ffffff;
  --panel-2: #e8f3ff;
  --line: #c7dcf2;
  --line-soft: rgba(43, 102, 168, 0.16);
  --white: #102640;
  --fog: #46627f;
  --muted: #70869f;
  --blue: #277ff2;
  --blue-light: #3f8fe9;
  --cyan: #4ee1ff;
  --green: #21b879;
  --warm: #ffc35b;
  --shadow: 0 35px 100px rgba(43, 83, 129, 0.2);
  --sans: "Plex Sans", sans-serif;
  --mono: "Plex Mono", monospace;
  --max: 1440px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--blue) #e7f1fb;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 4%, rgba(90, 171, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 8% 38%, rgba(190, 228, 255, 0.32), transparent 27rem),
    var(--ink);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  box-shadow: inset 0 0 160px rgba(67, 137, 211, 0.055);
}

::selection {
  color: #fff;
  background: var(--blue);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 48px), var(--max));
  min-height: 92px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
}

.brand > img {
  width: 36px;
  filter: drop-shadow(0 0 18px rgba(53, 137, 255, 0.4));
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-copy strong {
  font-size: 13px;
  letter-spacing: 0.19em;
}

.brand-copy span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
  color: var(--fog);
  font-size: 13px;
  font-weight: 500;
}

.site-nav a,
.footer-links a,
.text-link {
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: #fff;
}

.github-chip {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(11, 22, 40, 0.72);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.github-chip:hover {
  transform: translateY(-2px);
  border-color: #4a6896;
  background: var(--panel-2);
}

.github-chip svg {
  width: 17px;
  fill: #fff;
}

.github-chip strong {
  min-width: 25px;
  padding-left: 8px;
  border-left: 1px solid var(--line);
  color: var(--blue-light);
  text-align: center;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.89fr) minmax(560px, 1.11fr);
  align-items: center;
  gap: clamp(32px, 4vw, 76px);
  width: min(calc(100% - 48px), var(--max));
  min-height: 790px;
  margin: 0 auto;
  padding: 90px 0 122px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -11vw;
  bottom: 3%;
  width: 60vw;
  height: 27vw;
  border: 1px solid rgba(67, 138, 255, 0.18);
  border-radius: 50%;
  transform: perspective(700px) rotateX(67deg);
  background: repeating-radial-gradient(circle, transparent 0 30px, rgba(48, 112, 216, 0.08) 31px 32px);
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -6vw;
  bottom: 0;
  width: 68%;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(105, 146, 210, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 146, 210, 0.15) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to left, #000 20%, transparent 96%);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow,
.section-index,
.card-kicker,
.platform-pill,
.release-version,
.workflow-kicker {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 27px;
  color: var(--blue-light);
}

.status-dot,
.floating-card i,
.live-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(83, 231, 162, 0.09), 0 0 17px rgba(83, 231, 162, 0.72);
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(60px, 6.3vw, 105px);
  font-weight: 700;
  letter-spacing: -0.073em;
  line-height: 0.85;
}

.hero h1 span {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(174, 206, 255, 0.8);
}

.hero-lede {
  max-width: 650px;
  margin: 35px 0 0;
  color: var(--fog);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.66;
}

.hero-actions,
.download-actions {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 10px 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 40%;
  height: 180%;
  transform: rotate(22deg) translateX(-200%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transition: transform 500ms ease;
}

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

.button:hover::after {
  transform: rotate(22deg) translateX(500%);
}

.button-primary {
  border-color: #498aff;
  background: linear-gradient(145deg, #2b7bff, #1558df);
  box-shadow: 0 14px 34px rgba(26, 96, 226, 0.28), inset 0 1px rgba(255, 255, 255, 0.28);
}

.button-primary:hover {
  box-shadow: 0 19px 45px rgba(26, 96, 226, 0.4), inset 0 1px rgba(255, 255, 255, 0.28);
}

.button-secondary {
  background: rgba(12, 24, 43, 0.72);
}

.button-secondary:hover {
  border-color: #45628f;
  background: var(--panel-2);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.88);
  background: #fff;
  color: #07101d;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.button-light:hover {
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.34);
}

.button-wide {
  justify-content: center;
  width: 100%;
}

.button-icon {
  display: grid;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 17px;
}

.button-light .button-icon {
  border-color: rgba(7, 16, 29, 0.16);
}

.code-icon {
  width: 36px;
  font-size: 10px;
  letter-spacing: -0.1em;
}

.button > span:last-child {
  display: grid;
  gap: 2px;
  text-align: left;
}

.button strong {
  font-size: 13px;
  font-weight: 600;
}

.button small {
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.05em;
}

.button-light small {
  color: #60718b;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 25px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-notes span {
  position: relative;
}

.hero-notes span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #42526d;
}

.hero-notes a {
  color: var(--blue-light);
}

.hero-visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  transform: perspective(1800px) rotateY(-3deg) rotateX(1deg);
}

.stage-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(78, 160, 255, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  inset: -16% 0 -12% -5%;
  transform: rotate(-10deg);
}

.orbit-two {
  inset: -7% 0 -3% -13%;
  transform: rotate(14deg);
  border-color: rgba(78, 225, 255, 0.14);
}

.monitor-frame {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid #2d4974;
  border-radius: 11px;
  background: #07101d;
  box-shadow: var(--shadow), 0 0 80px rgba(29, 107, 242, 0.17);
}

.monitor-frame::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.monitor-frame > img {
  width: 100%;
  border: 1px solid rgba(113, 156, 224, 0.16);
  border-radius: 5px;
  background: #02050a;
}

.monitor-topbar,
.monitor-frame figcaption {
  display: flex;
  align-items: center;
  height: 34px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.monitor-topbar {
  justify-content: space-between;
  padding: 0 4px 0 2px;
  color: var(--muted);
}

.window-dots {
  display: flex;
  gap: 4px;
}

.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #30435f;
}

.live-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
}

.live-chip i {
  width: 5px;
  height: 5px;
}

.monitor-frame figcaption {
  gap: 18px;
  padding: 0 4px;
  color: #61728e;
}

.monitor-frame figcaption b {
  margin-right: 5px;
  color: var(--blue-light);
  font-weight: 600;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 200px;
  padding: 14px 16px;
  border: 1px solid #2a436a;
  border-radius: 8px;
  background: rgba(8, 17, 31, 0.92);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), inset 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
}

.floating-card-a {
  top: 13%;
  left: -9%;
}

.floating-card-b {
  right: -5%;
  bottom: 2%;
}

.floating-card .card-kicker {
  margin-bottom: 8px;
  color: var(--blue-light);
  font-size: 7px;
}

.floating-card strong {
  font-size: 13px;
}

.floating-card > span:last-child {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
}

.floating-card i {
  width: 5px;
  height: 5px;
}

.signal-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 1600px);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 16, 29, 0.76);
}

.signal-strip > div {
  position: relative;
  display: grid;
  min-height: 124px;
  padding: 28px 35px 24px 66px;
  align-content: center;
  border-right: 1px solid var(--line);
}

.signal-strip > div:last-child {
  border-right: 0;
}

.signal-strip span {
  position: absolute;
  top: 29px;
  left: 31px;
  color: var(--blue-light);
  font-family: var(--mono);
  font-size: 9px;
}

.signal-strip strong {
  font-size: 14px;
}

.signal-strip small {
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 150px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.35fr 0.85fr;
  align-items: end;
  gap: 40px;
  margin-bottom: 66px;
}

.section-index {
  align-self: start;
  color: var(--blue-light);
}

.section-heading h2,
.open-call h2 {
  margin: 0;
  font-size: clamp(48px, 5.6vw, 84px);
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.section-heading h2 em,
.open-call h2 em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.2px rgba(188, 213, 250, 0.74);
}

.section-heading > p {
  max-width: 370px;
  margin: 0 0 3px;
  color: var(--fog);
  line-height: 1.7;
}

.workflow-section {
  position: relative;
}

.workflow-section::before {
  content: "DIRECT / CAPTURE / DEVELOP";
  position: absolute;
  top: 120px;
  right: -11vw;
  z-index: -1;
  color: rgba(83, 127, 190, 0.045);
  font-size: 120px;
  font-weight: 700;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-card {
  position: relative;
  min-height: 480px;
  padding: 42px 42px 48px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 26, 46, 0.54), rgba(7, 14, 26, 0.35));
  transition: background 250ms ease, transform 250ms ease;
}

.workflow-card:last-child {
  border-right: 0;
}

.workflow-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(19, 45, 83, 0.82), rgba(7, 17, 31, 0.68));
}

.workflow-card-featured {
  background:
    radial-gradient(circle at 50% 10%, rgba(53, 124, 255, 0.25), transparent 48%),
    linear-gradient(180deg, rgba(18, 42, 78, 0.78), rgba(7, 17, 31, 0.52));
}

.workflow-number {
  color: #3d5273;
  font-family: var(--mono);
  font-size: 11px;
}

.workflow-icon {
  display: grid;
  width: 112px;
  height: 112px;
  margin: 53px 0 45px;
  place-items: center;
  border: 1px solid rgba(92, 146, 233, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 110, 247, 0.14), transparent 65%);
}

.workflow-icon svg {
  width: 52px;
  fill: none;
  stroke: var(--blue-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.workflow-kicker {
  color: var(--blue-light);
  font-size: 8px;
}

.workflow-card h3 {
  margin: 11px 0 13px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.workflow-card p {
  max-width: 345px;
  margin: 0;
  color: var(--fog);
  font-size: 14px;
  line-height: 1.65;
}

.gallery-section {
  padding: 140px max(24px, calc((100vw - var(--max)) / 2)) 160px;
  background:
    linear-gradient(rgba(97, 137, 198, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(97, 137, 198, 0.08) 1px, transparent 1px),
    #07101c;
  background-size: 54px 54px;
}

.gallery-heading {
  margin: 0 auto 66px;
}

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

.gallery-item {
  position: relative;
  grid-column: span 6;
  min-height: 340px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #223755;
  background: #050a11;
}

.gallery-item-wide {
  grid-column: span 8;
  min-height: 500px;
}

.gallery-item-tall {
  grid-column: span 4;
  min-height: 500px;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 8, 15, 0.88));
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1), filter 300ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}

.gallery-item figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 17px;
  padding: 27px 30px;
}

.gallery-item figcaption > span,
.gallery-item figcaption small {
  color: var(--blue-light);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.gallery-item figcaption strong {
  font-size: 15px;
}

.gallery-item figcaption small {
  color: #93a4bc;
}

.downloads-section {
  padding-bottom: 130px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.download-card {
  position: relative;
  min-height: 760px;
  padding: 34px clamp(28px, 4vw, 58px) 48px;
  overflow: hidden;
  border: 1px solid #284165;
  background: linear-gradient(160deg, #0e203a 0%, #081322 57%, #07101c 100%);
}

.quest-card::before,
.desktop-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 75% 12%, rgba(52, 126, 255, 0.24), transparent 34%);
}

.desktop-card {
  border-color: #173e79;
  background: linear-gradient(150deg, #246ff2 0%, #1357d3 51%, #0f45ab 100%);
}

.desktop-card::before {
  background: radial-gradient(circle at 80% 6%, rgba(137, 215, 255, 0.33), transparent 36%);
}

.download-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--blue-light);
}

.desktop-card .download-card-top {
  color: #d4e8ff;
}

.release-version {
  color: #6f83a3;
  text-align: right;
}

.desktop-card .release-version {
  color: rgba(255, 255, 255, 0.62);
}

.download-art,
.desktop-art {
  position: relative;
  display: grid;
  height: 290px;
  place-items: center;
}

.quest-lens {
  position: relative;
  display: grid;
  width: 188px;
  height: 128px;
  place-items: center;
  border: 1px solid rgba(117, 172, 255, 0.43);
  border-radius: 40% 40% 46% 46% / 45% 45% 56% 56%;
  background:
    radial-gradient(circle at 50% 20%, rgba(100, 180, 255, 0.32), transparent 42%),
    linear-gradient(145deg, #112c53, #07111f);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.36), inset 0 1px rgba(255, 255, 255, 0.13), 0 0 55px rgba(33, 111, 239, 0.18);
}

.quest-lens::before,
.quest-lens::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 52px;
  height: 15px;
  border-top: 1px solid rgba(103, 159, 245, 0.45);
}

.quest-lens::before {
  right: 100%;
  transform: rotate(7deg);
}

.quest-lens::after {
  left: 100%;
  transform: rotate(-7deg);
}

.quest-lens img {
  width: 86px;
  filter: drop-shadow(0 10px 24px rgba(25, 113, 255, 0.48));
}

.scan-line {
  position: absolute;
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 13px var(--cyan);
  animation: scan 3.8s ease-in-out infinite;
}

@keyframes scan {
  0%, 100% { transform: translateY(-72px); opacity: 0; }
  18%, 82% { opacity: 0.75; }
  50% { transform: translateY(72px); opacity: 0.5; }
}

.download-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(31px, 3vw, 44px);
  letter-spacing: -0.055em;
}

.download-card > p {
  position: relative;
  z-index: 2;
  max-width: 530px;
  margin: 17px 0 23px;
  color: #afbdd1;
  line-height: 1.65;
}

.desktop-card > p {
  color: rgba(255, 255, 255, 0.78);
}

.check-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #8fa2bd;
  font-family: var(--mono);
  font-size: 9px;
  list-style: none;
}

.desktop-card .check-list {
  color: rgba(255, 255, 255, 0.72);
}

.check-list li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--green);
}

.desktop-card .check-list li::before {
  color: #b7f5ff;
}

.download-card .download-actions {
  position: absolute;
  right: clamp(28px, 4vw, 58px);
  bottom: 45px;
  left: clamp(28px, 4vw, 58px);
  z-index: 2;
  display: grid;
  margin: 0;
}

.text-link {
  display: flex;
  justify-content: space-between;
  padding: 4px 2px 0;
  color: #8da0bc;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-link span {
  color: var(--blue-light);
}

.desktop-art {
  perspective: 700px;
}

.desktop-screen {
  position: relative;
  width: 270px;
  height: 160px;
  padding: 13px;
  border: 2px solid rgba(215, 236, 255, 0.72);
  border-radius: 8px;
  transform: rotateY(-7deg) rotateX(3deg);
  background: #07101d;
  box-shadow: 0 32px 55px rgba(0, 33, 105, 0.43), inset 0 1px rgba(255, 255, 255, 0.18);
}

.desktop-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d6e8ff;
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.12em;
}

.desktop-brand img {
  width: 13px;
}

.desktop-feed {
  position: absolute;
  inset: 35px 14px 14px;
  overflow: hidden;
  border: 1px solid #1e3e70;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(65, 139, 255, 0.18) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(65, 139, 255, 0.18) 50%, transparent 50.5%),
    #030812;
}

.desktop-feed::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 17px;
  left: 18px;
  height: 50px;
  border: 1px solid #2473f4;
  transform: perspective(150px) rotateX(58deg);
}

.desktop-feed i {
  position: absolute;
  top: 35px;
  left: 50%;
  z-index: 2;
  width: 7px;
  height: 38px;
  border-radius: 45%;
  transform: translateX(-50%);
  background: var(--blue-light);
  box-shadow: -12px 6px 0 -2px var(--blue-light), 12px 6px 0 -2px var(--blue-light);
}

.desktop-feed i:nth-child(2),
.desktop-feed i:nth-child(3) {
  display: none;
}

.desktop-base {
  position: absolute;
  top: calc(50% + 78px);
  width: 320px;
  height: 11px;
  border-radius: 2px 2px 18px 18px;
  transform: rotateY(-7deg);
  background: linear-gradient(#d7e8f8, #6f8aa6);
  box-shadow: 0 15px 30px rgba(0, 26, 84, 0.35);
}

.asset-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.asset-links a {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease;
}

.asset-links a:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.source-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(44px, 7vw, 100px);
  margin-top: 20px;
  padding: clamp(42px, 6vw, 80px);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 90%, rgba(29, 111, 255, 0.17), transparent 35%),
    linear-gradient(135deg, rgba(13, 27, 48, 0.86), rgba(6, 13, 24, 0.88));
}

.source-card::before {
  content: "SOURCE";
  position: absolute;
  right: -1%;
  bottom: -14%;
  color: rgba(111, 150, 211, 0.04);
  font-size: 190px;
  font-weight: 700;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.source-copy {
  position: relative;
  z-index: 2;
}

.source-copy h3 {
  margin: 19px 0 18px;
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -0.06em;
}

.source-copy > p {
  max-width: 570px;
  margin: 0;
  color: var(--fog);
  line-height: 1.7;
}

.source-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 35px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.source-stats strong {
  margin-right: 4px;
  color: var(--white);
  font-size: 11px;
}

.terminal {
  position: relative;
  z-index: 2;
  align-self: center;
  overflow: hidden;
  border: 1px solid #284267;
  border-radius: 8px;
  background: #030811;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.33);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 36px;
  padding: 0 12px;
  border-bottom: 1px solid #1c2d47;
  background: #0a1424;
}

.terminal-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3c4f6b;
}

.terminal-bar span:first-child { background: #e56a61; }
.terminal-bar span:nth-child(2) { background: #e8b853; }
.terminal-bar span:nth-child(3) { background: #52c68a; }

.terminal-bar b {
  margin-left: auto;
  color: #5f7290;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
}

.terminal pre {
  margin: 0;
  padding: 25px 25px 30px;
  overflow-x: auto;
  color: #d1def1;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 2;
}

.prompt {
  color: var(--green);
}

.comment {
  color: #5f7290;
}

.copy-button {
  position: absolute;
  right: 11px;
  bottom: 10px;
  padding: 6px 8px;
  border: 1px solid #2d466c;
  border-radius: 4px;
  background: #0c1a2e;
  color: #92a7c6;
  font-family: var(--mono);
  font-size: 7px;
  cursor: pointer;
}

.copy-button:hover,
.copy-button:focus-visible {
  border-color: var(--blue-light);
  color: #fff;
}

.source-arrow {
  position: absolute;
  top: 31px;
  right: 31px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue-light);
  transition: background 180ms ease, transform 180ms ease;
}

.source-arrow:hover {
  transform: rotate(45deg);
  background: var(--blue);
  color: #fff;
}

.open-call {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(25px, 4vw, 58px);
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto 120px;
  padding: 72px 76px;
  border: 1px solid #2a4774;
  background:
    radial-gradient(circle at 12% 50%, rgba(48, 125, 255, 0.25), transparent 25%),
    linear-gradient(120deg, #0b1b31, #07101c);
}

.open-call > img {
  width: 88px;
  filter: drop-shadow(0 15px 28px rgba(40, 122, 255, 0.35));
}

.open-call .section-index {
  display: block;
  margin-bottom: 16px;
}

.open-call h2 {
  font-size: clamp(38px, 4.3vw, 66px);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
  width: min(calc(100% - 48px), var(--max));
  min-height: 190px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand > img {
  width: 42px;
}

.footer-brand > span {
  display: grid;
  gap: 3px;
}

.footer-brand strong {
  font-size: 12px;
  letter-spacing: 0.15em;
}

.footer-brand small,
.site-footer p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
}

.footer-links {
  display: flex;
  gap: 26px;
  color: #8798b1;
  font-size: 11px;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: -38px 0 0;
  text-align: right;
}

.site-footer p a {
  color: var(--blue-light);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }

.noscript {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  max-width: 420px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--fog);
  font-size: 12px;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

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

  .site-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 80px;
  }

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

  .hero h1 {
    font-size: clamp(64px, 10vw, 110px);
  }

  .hero-visual {
    width: min(88%, 850px);
    margin: 32px auto 0;
  }

  .signal-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .signal-strip > div:nth-child(2) {
    border-right: 0;
  }

  .signal-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 0.5fr 1.5fr;
  }

  .section-heading > p {
    grid-column: 2;
  }

  .download-card {
    min-height: 780px;
  }

  .open-call {
    grid-template-columns: auto 1fr;
  }

  .open-call .button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .section,
  .gallery-section {
    padding-top: 105px;
    padding-bottom: 105px;
  }

  .workflow-grid,
  .download-grid,
  .source-card {
    grid-template-columns: 1fr;
  }

  .workflow-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-card:last-child {
    border-bottom: 0;
  }

  .workflow-icon {
    margin: 35px 0 30px;
  }

  .gallery-item-wide,
  .gallery-item-tall,
  .gallery-item {
    grid-column: span 12;
    min-height: 440px;
  }

  .download-card {
    min-height: 750px;
  }

  .source-card::before {
    font-size: 120px;
  }

  .open-call {
    padding: 52px 46px;
  }
}

@media (max-width: 650px) {
  .site-header,
  .hero,
  .section,
  .open-call,
  .site-footer {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    min-height: 76px;
  }

  .github-chip span {
    display: none;
  }

  .hero {
    gap: 10px;
    min-height: 0;
    padding: 62px 0 88px;
  }

  .eyebrow {
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(49px, 15vw, 76px);
    line-height: 0.91;
  }

  .hero-lede {
    margin-top: 26px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .hero .button {
    width: 100%;
  }

  .hero-notes {
    gap: 11px 18px;
    font-size: 7.5px;
  }

  .hero-notes span::after {
    display: none;
  }

  .hero-visual {
    width: 100%;
    margin-top: 45px;
    transform: none;
  }

  .stage-orbit {
    display: none;
  }

  .monitor-frame {
    padding: 6px;
  }

  .monitor-topbar {
    height: 28px;
  }

  .monitor-frame figcaption {
    gap: 10px;
    height: 28px;
    font-size: 6px;
  }

  .monitor-frame figcaption span:last-child {
    display: none;
  }

  .floating-card {
    min-width: 0;
    padding: 10px 11px;
  }

  .floating-card-a {
    top: -18px;
    left: 12px;
  }

  .floating-card-b {
    right: 10px;
    bottom: -22px;
  }

  .floating-card strong {
    font-size: 9px;
  }

  .floating-card > span:last-child,
  .floating-card .card-kicker {
    font-size: 5.5px;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-strip > div,
  .signal-strip > div:nth-child(2) {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-strip > div:last-child {
    border-bottom: 0;
  }

  .signal-strip span {
    top: 24px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 45px;
  }

  .section-heading > p {
    grid-column: 1;
  }

  .section-heading h2 {
    font-size: 45px;
  }

  .workflow-card {
    padding: 32px 28px 38px;
  }

  .gallery-section {
    padding-right: 14px;
    padding-left: 14px;
  }

  .gallery-grid {
    gap: 10px;
  }

  .gallery-item-wide,
  .gallery-item-tall,
  .gallery-item {
    min-height: 320px;
  }

  .gallery-item figcaption {
    grid-template-columns: auto 1fr;
    padding: 20px;
  }

  .gallery-item figcaption small {
    display: none;
  }

  .download-card {
    min-height: 790px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .download-art,
  .desktop-art {
    height: 250px;
  }

  .desktop-screen {
    width: 235px;
    height: 146px;
  }

  .desktop-base {
    width: 270px;
  }

  .download-card .download-actions {
    right: 24px;
    left: 24px;
  }

  .source-card {
    gap: 38px;
    padding: 42px 24px;
  }

  .source-arrow {
    top: 19px;
    right: 19px;
  }

  .source-copy h3 {
    max-width: 80%;
    font-size: 42px;
  }

  .terminal pre {
    padding: 20px 17px 40px;
    font-size: 8px;
  }

  .open-call {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
    padding: 40px 28px;
  }

  .open-call > img {
    width: 68px;
  }

  .open-call .button {
    grid-column: 1;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 15px 22px;
  }

  .site-footer p {
    grid-column: 1;
    margin: 0;
    text-align: left;
  }
}

/* Shroozy daylight studio theme */
.site-header {
  border-bottom-color: rgba(58, 114, 176, 0.16);
}

.brand > img,
.open-call > img {
  filter: drop-shadow(0 13px 24px rgba(48, 128, 226, 0.22));
}

.site-nav {
  color: #5f7690;
}

.site-nav a:hover,
.footer-links a:hover,
.text-link:hover {
  color: #0d315c;
}

.github-chip {
  border-color: #c4dbf2;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(58, 105, 154, 0.08);
  backdrop-filter: blur(16px);
}

.github-chip:hover {
  border-color: #7fb3eb;
  background: #fff;
}

.github-chip svg {
  fill: #173656;
}

.github-chip strong {
  border-left-color: #d2e4f6;
  color: var(--blue);
}

.hero::after {
  border-color: rgba(58, 139, 233, 0.2);
  background: repeating-radial-gradient(circle, transparent 0 30px, rgba(78, 154, 237, 0.1) 31px 32px);
}

.hero-grid {
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(83, 151, 226, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(83, 151, 226, 0.14) 1px, transparent 1px);
}

.hero h1 span,
.section-heading h2 em,
.open-call h2 em {
  -webkit-text-stroke-color: rgba(48, 119, 204, 0.72);
}

.button-primary {
  color: #fff;
}

.button-primary small {
  color: rgba(255, 255, 255, 0.72);
}

.button-secondary {
  border-color: #c5dbf0;
  background: rgba(255, 255, 255, 0.72);
  color: #173656;
  box-shadow: 0 12px 30px rgba(62, 111, 164, 0.08);
}

.button-secondary:hover {
  border-color: #82b2e5;
  background: #fff;
}

.button-secondary .button-icon {
  border-color: rgba(29, 79, 129, 0.17);
}

.button-secondary small {
  color: #7188a0;
}

.monitor-frame {
  box-shadow: 0 36px 90px rgba(34, 77, 125, 0.28), 0 0 80px rgba(73, 154, 244, 0.18);
}

.monitor-frame > img {
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.floating-card {
  border-color: rgba(86, 143, 203, 0.35);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 48px rgba(35, 78, 126, 0.18), inset 0 1px rgba(255, 255, 255, 0.9);
}

.floating-card > span:last-child {
  color: #687f98;
}

.signal-strip {
  border-color: #c9dff3;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 50px rgba(50, 101, 157, 0.06);
}

.signal-strip > div {
  border-color: #d3e4f4;
}

.workflow-section::before {
  color: rgba(63, 137, 220, 0.06);
}

.workflow-grid {
  overflow: hidden;
  border: 1px solid #c8def3;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(47, 95, 145, 0.09);
}

.workflow-card {
  border-color: #d3e4f4;
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.workflow-card:hover {
  background: linear-gradient(180deg, #f2f8ff, #eaf4ff);
}

.workflow-card-featured {
  background:
    radial-gradient(circle at 50% 10%, rgba(76, 153, 241, 0.2), transparent 48%),
    linear-gradient(180deg, #f2f8ff, #e6f2ff);
}

.workflow-number {
  color: #86a5c5;
}

.workflow-icon {
  border-color: rgba(62, 134, 219, 0.3);
  background: radial-gradient(circle, rgba(65, 145, 236, 0.14), transparent 66%);
}

.gallery-section {
  background:
    linear-gradient(rgba(74, 143, 218, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 143, 218, 0.11) 1px, transparent 1px),
    #eaf5ff;
  background-size: 54px 54px;
}

.gallery-item {
  border-color: rgba(75, 129, 185, 0.28);
  border-radius: 18px;
  background: #dceafa;
  box-shadow: 0 24px 55px rgba(37, 79, 124, 0.16);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1) contrast(1.01);
}

.gallery-item figcaption strong {
  color: #fff;
}

.gallery-item figcaption small {
  color: #d4e7fa;
}

.download-card {
  border-color: #c5dcf3;
  border-radius: 22px;
  background:
    radial-gradient(circle at 75% 12%, rgba(80, 159, 250, 0.19), transparent 35%),
    linear-gradient(160deg, #ffffff, #edf6ff);
  box-shadow: 0 25px 70px rgba(47, 93, 143, 0.1);
}

.download-card > p {
  color: #526c87;
}

.check-list {
  color: #617b95;
}

.download-card-top,
.release-version {
  color: #4776aa;
}

.quest-lens {
  box-shadow: 0 30px 65px rgba(35, 80, 130, 0.25), inset 0 1px rgba(255, 255, 255, 0.13), 0 0 55px rgba(56, 132, 229, 0.2);
}

.text-link {
  color: #56718e;
}

.desktop-card {
  border-color: #2b76d7;
  background: linear-gradient(150deg, #348cf7 0%, #226fdc 51%, #1758bd 100%);
  color: #fff;
}

.desktop-card > p {
  color: rgba(255, 255, 255, 0.82);
}

.source-card {
  border-color: #c5dcf2;
  border-radius: 22px;
  background:
    radial-gradient(circle at 85% 90%, rgba(68, 148, 239, 0.18), transparent 38%),
    linear-gradient(135deg, #fff, #edf6ff);
  box-shadow: 0 25px 70px rgba(47, 93, 143, 0.1);
}

.source-card::before {
  color: rgba(55, 132, 220, 0.055);
}

.source-arrow {
  border-color: #bcd6ee;
}

.open-call {
  border-color: #bfd9f2;
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 50%, rgba(66, 151, 247, 0.2), transparent 27%),
    linear-gradient(120deg, #fafdff, #e7f3ff);
  box-shadow: 0 25px 70px rgba(47, 93, 143, 0.09);
}

.site-footer {
  border-top-color: #c7dcf1;
}

.footer-links {
  color: #607993;
}

.noscript {
  border-color: #bed7ef;
  background: #fff;
  color: #49637d;
}

@media (max-width: 900px) {
  .gallery-item-wide,
  .gallery-item-tall,
  .gallery-item {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 650px) {
  .hero-grid {
    opacity: 0.28;
  }

  .gallery-item-wide,
  .gallery-item-tall,
  .gallery-item {
    min-height: 0;
    aspect-ratio: 16 / 9;
    border-radius: 13px;
  }

  .gallery-item img {
    object-position: center center;
  }

  .download-card,
  .workflow-grid,
  .source-card,
  .open-call {
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
