:root {
  --bg: #f7f7f8;
  --surface: #ffffff;
  --surface-strong: #f1f2f4;
  --ink: #101114;
  --muted: #5f626b;
  --muted-2: #858892;
  --line: #e1e2e6;
  --line-strong: #c9cbd2;
  --teal: #c40014;
  --teal-dark: #8f000e;
  --green: #22a85a;
  --warm: #d41121;
  --danger: #c40014;
  --shadow: 0 18px 45px rgba(10, 10, 12, 0.1);
  --radius: 8px;
  --radius-sm: 6px;
  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;
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 17, 20, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 42px 42px;
  color: var(--ink);
}

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

img {
  max-width: 100%;
  height: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #101114;
  font-weight: 900;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(196, 0, 20, 0.42);
  outline-offset: 3px;
}

section[id] {
  scroll-margin-top: 92px;
}

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

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.motion-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-ready .reveal-on-scroll.is-visible,
.motion-reduced .reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

@keyframes titanPreviewFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

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

  100% {
    background-position:
      60px 0,
      0 60px,
      0 0;
  }
}

@keyframes titanPulseLine {
  0%,
  100% {
    opacity: 0.34;
    transform: scaleX(0.82);
  }

  50% {
    opacity: 0.9;
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(196, 0, 20, 0.42);
  background: rgba(8, 9, 12, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 26px rgba(10, 10, 12, 0.18);
}

.brand,
.github-link,
.main-nav {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand {
  gap: 12px;
  color: #ffffff;
  font-size: 23px;
  font-weight: 800;
}

.brand span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-logo {
  width: 48px;
  height: 48px;
  padding: 4px;
  border: 1px solid rgba(196, 0, 20, 0.7);
  border-radius: var(--radius-sm);
  background: #ffffff;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.nav-toggle {
  display: none;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(196, 0, 20, 0.7);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #101114;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.main-nav {
  justify-content: end;
  gap: 38px;
  color: #f4f5f7;
  font-size: 14px;
  font-weight: 650;
}

.main-nav a,
.github-link {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.main-nav a:hover,
.github-link:hover {
  color: #ff3346;
}

.main-nav a[aria-current="page"] {
  color: #ff6877;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.github-link {
  gap: 9px;
  color: #f4f5f7;
  font-size: 14px;
  font-weight: 700;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(360px, 0.9fr);
  gap: 56px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 66px 40px 28px;
}

.hero-copy {
  padding-top: 18px;
}

.hero-copy h1 {
  max-width: 620px;
  margin: 0;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--teal);
}

.hero-copy p {
  max-width: 585px;
  margin: 28px 0 0;
  color: #3e4858;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(180deg, #e31328, var(--teal-dark));
  color: white;
  box-shadow: 0 14px 28px rgba(196, 0, 20, 0.24);
}

.button-secondary {
  border-color: #aeb9c5;
  background: var(--surface);
  color: #253044;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  margin: 30px 0 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  list-style: none;
  box-shadow: 0 10px 24px rgba(12, 25, 37, 0.04);
}

.trust-strip li {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  color: #3d4757;
  font-size: 13px;
  font-weight: 650;
}

.trust-strip li:last-child {
  border-right: 0;
}

.trust-strip svg {
  color: var(--teal);
}

.directory-panel,
.featured-tool,
.build-notes,
.tool-card,
.project-card,
.game-studio-section,
.game-card,
.about-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.directory-panel {
  align-self: start;
  margin-top: 10px;
  overflow: hidden;
}


.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
}

.panel-heading h2 {
  margin: 0;
  font-size: 15px;
}

.panel-heading a,
.more-link,
.build-notes > a {
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
}

.directory-list {
  display: grid;
}

.directory-item,
.tool-card,
.project-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.directory-item {
  min-height: 56px;
  padding: 9px 18px;
  border-bottom: 1px solid var(--line);
}

.directory-item:hover,
.tool-card:hover,
.project-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.mini-icon,
.tool-icon,
.tool-icon-large,
.sponsor-icon {
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
}

.mini-icon {
  width: 33px;
  height: 33px;
  border: 1px solid var(--line);
  background: #f8fbfc;
  color: var(--teal);
  font-weight: 900;
}

.directory-item h3,
.tool-card h3,
.project-card h3 {
  margin: 0;
  font-size: 14px;
}

.directory-item p,
.tool-card p,
.project-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.status-pill {
  border-radius: 999px;
  background: var(--teal);
  color: white;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 850;
}

.more-link {
  display: block;
  padding: 14px 18px 16px;
  text-align: center;
}


.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px 36px;
}

.featured-software-section {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto 24px;
  padding: 0 40px;
}

.featured-software-section .section-heading {
  align-items: end;
  margin-top: 0;
}

.featured-software-section .section-heading > p {
  max-width: 440px;
  text-align: right;
}

.featured-software-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.featured-software-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.featured-software-card > img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  object-position: top center;
}

.featured-software-card > div {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.featured-software-card h3,
.featured-software-card p {
  margin: 0;
}

.featured-software-card h3 {
  font-size: 25px;
}

.featured-software-card p {
  color: #465365;
  font-size: 14px;
  line-height: 1.55;
}

.featured-software-card small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.featured-software-card a {
  color: var(--teal-dark);
  font-weight: 900;
}

.primary-column {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.primary-column > section,
.featured-copy,
.file-stack span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.featured-tool {
  display: grid;
  grid-template-columns: auto minmax(420px, 1fr) minmax(300px, 350px);
  gap: 32px;
  align-items: center;
  padding: 28px;
  border-color: #c9cbd2;
  background:
    linear-gradient(90deg, #101114 0 5px, transparent 5px),
    linear-gradient(135deg, #ffffff 0%, #f1f2f4 100%);
}

.tool-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(180deg, #e31328, #9d0010);
  color: white;
  font-size: 58px;
}

.section-label {
  margin: 0 0 2px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-copy h2,
.tool-directory h2,
.project-section h2,
.game-studio-section h2,
.about-section h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
}

.featured-copy > p:not(.section-label) {
  max-width: 660px;
  margin: 10px 0 0;
  color: #4a5565;
  line-height: 1.5;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  gap: 10px 22px;
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.capability-list li {
  position: relative;
  padding-left: 22px;
  color: #435060;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.capability-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.extractor-preview-link {
  display: grid;
  min-height: 168px;
  place-items: center;
  align-content: center;
  border: 1px solid #d4d6dc;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.055), transparent 42%),
    rgba(255, 255, 255, 0.94);
  color: inherit;
  padding: 22px;
  text-align: center;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.extractor-preview-link:hover,
.extractor-preview-link:focus-visible {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.extractor-preview-link:focus-visible {
  outline: 3px solid rgba(196, 0, 20, 0.22);
  outline-offset: 3px;
}

.file-stack {
  display: flex;
  align-items: end;
  justify-content: center;
  margin-bottom: 15px;
}

.file-stack span {
  display: grid;
  width: 46px;
  height: 54px;
  place-items: center;
  margin-left: -8px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: white;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(10, 31, 42, 0.08);
}

.file-stack span:first-child {
  margin-left: 0;
  color: white;
  background: var(--danger);
}

.file-stack span:nth-child(2) {
  color: white;
  background: #1c7ed6;
}

.file-stack span:nth-child(3) {
  color: white;
  background: var(--green);
}

.file-stack span:nth-child(4) {
  color: white;
  background: #f97316;
}

.extractor-preview-link strong {
  font-size: 20px;
}

.extractor-preview-link p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.preview-link-cta {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-top: 16px;
  border-radius: 999px;
  background: #101114;
  color: #fff;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.build-notes {
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 74px;
  padding: 16px 22px;
}

.build-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.build-title h2 {
  margin: 0;
  font-size: 17px;
}

.build-title svg {
  color: var(--teal);
  font-size: 26px;
}

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

.note-item {
  min-height: 44px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.note-item time {
  display: block;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
}

.note-item strong {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.note-link {
  display: block;
  margin-top: 4px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.note-link:hover {
  text-decoration: underline;
}

.note-item p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 12px;
}

.section-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 8px;
}

.filter-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: #2f3949;
  padding: 0 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.is-active {
  border-color: var(--teal);
  background: var(--teal);
  color: white;
}

.tool-grid,
.project-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.tools-preview-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 26px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.source-code-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid #d4d6dc;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, #101114 0 5px, transparent 5px),
    linear-gradient(135deg, #ffffff, #f1f2f4);
  padding: 26px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.source-code-section h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.source-code-section p:not(.section-label) {
  max-width: 760px;
  margin: 10px 0 0;
  color: #465365;
  line-height: 1.6;
}

.source-code-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: end;
}

.source-code-actions-inline {
  justify-content: start;
  margin-top: 18px;
}

.sentracore-feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(48, 111, 149, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(109, 225, 130, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(105, 168, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #06111a, #103548 64%, #07131b);
  background-size: 32px 32px, 32px 32px, auto;
  color: #eef8ff;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(6, 24, 34, 0.2);
}

.sentracore-feature-copy .section-label {
  color: #6de182;
}

.sentracore-feature-copy h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.06;
}

.sentracore-feature-copy p:not(.section-label) {
  max-width: 720px;
  margin: 12px 0 0;
  color: #c4d7e4;
  line-height: 1.62;
}

.sentracore-feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.sentracore-feature-list li {
  position: relative;
  padding-left: 24px;
  color: #d8e8f1;
  font-size: 14px;
  font-weight: 800;
}

.sentracore-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #6de182;
  border-bottom: 2px solid #6de182;
  transform: rotate(-45deg);
}

.sentracore-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.sentracore-feature-preview {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(91, 177, 255, 0.3);
  border-radius: 8px;
  background: #06111a;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.32);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.sentracore-feature-preview:hover,
.sentracore-feature-preview:focus-visible {
  border-color: rgba(109, 225, 130, 0.72);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.sentracore-feature-preview:focus-visible {
  outline: 3px solid rgba(109, 225, 130, 0.22);
  outline-offset: 3px;
}

.sentracore-feature-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.titan-feature-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #bfd3dc;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #111827, #8f000e);
  background-size: 30px 30px, 30px 30px, auto;
  color: white;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(15, 29, 42, 0.18);
  animation: titanGridPan 18s linear infinite;
}

.titan-feature-copy .section-label {
  color: #9de6f2;
}

.titan-feature-copy h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.06;
}

.titan-feature-copy p:not(.section-label) {
  max-width: 760px;
  margin: 12px 0 0;
  color: #dce7ec;
  line-height: 1.62;
}

.titan-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.titan-feature-map {
  position: relative;
  display: grid;
  min-height: 260px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: center;
}

.titan-feature-map::before {
  content: "";
  position: absolute;
  inset: 36px 24px;
  border: 1px dashed rgba(157, 230, 242, 0.36);
  border-radius: var(--radius);
}

.titan-feature-map::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 98px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(157, 230, 242, 0.8), transparent);
  transform-origin: center;
  animation: titanPulseLine 2.8s ease-in-out infinite;
}

.titan-node {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: #eef9fb;
  padding: 10px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.titan-feature-section:hover .titan-node {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
}

.titan-node-core {
  grid-column: 1 / -1;
  min-height: 70px;
  border-color: rgba(212, 17, 33, 0.6);
  background: linear-gradient(135deg, rgba(212, 17, 33, 0.34), rgba(196, 0, 20, 0.3));
  color: white;
  font-size: 22px;
}

.source-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 10px;
}

.source-steps span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  color: #354052;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 850;
}

.source-steps strong {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: #fff;
  font-size: 12px;
}

.tool-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.tool-preview-card {
  display: grid;
  min-height: 154px;
  align-content: end;
  gap: 8px;
  overflow: hidden;
  border: 1px solid #d4d6dc;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.05), transparent 44%),
    linear-gradient(135deg, #fff, #f2f3f5);
  padding: 18px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.tool-preview-card:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.tool-preview-card span {
  width: fit-content;
  border-radius: 999px;
  background: #101114;
  color: #fff;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
}

.blog-preview-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, #101114 0 5px, transparent 5px),
    rgba(255, 255, 255, 0.94);
  padding: 26px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.blog-preview-card {
  display: grid;
  min-height: 188px;
  align-content: start;
  gap: 10px;
  border: 1px solid #d9e4eb;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f8fbfc);
  padding: 18px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.blog-preview-card:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.blog-preview-card span,
.blog-post-meta span {
  width: fit-content;
  border-radius: 999px;
  background: #fff4de;
  color: #815011;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
}

.blog-preview-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.12;
}

.blog-preview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.blog-preview-card time {
  align-self: end;
  margin-top: auto;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 850;
}

.web-games-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 24px;
  overflow: hidden;
  border: 1px solid #d4d6dc;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, #101114 0 5px, transparent 5px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 242, 244, 0.94));
  padding: 28px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.web-games-copy p:not(.section-label) {
  max-width: 760px;
  margin: 12px 0 0;
  color: #465365;
  line-height: 1.6;
}

.web-game-grid,
.web-game-directory {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.web-game-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 112px;
  border: 1px solid #d9e4eb;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  padding: 14px;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.web-game-card:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.web-game-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid #cfe2e8;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, #101114, #c40014);
  background-size: 14px 14px, 14px 14px, auto;
  color: white;
  font-size: 18px;
  font-weight: 950;
}

.web-game-copy strong,
.web-game-copy small {
  display: block;
}

.web-game-copy strong {
  color: var(--ink);
  font-size: 19px;
}

.web-game-copy small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.web-game-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tool-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.web-game-card .tool-card-actions {
  grid-column: 1 / -1;
}

.source-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: #354052;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.source-action-primary {
  border-color: #101114;
  background: #101114;
  color: #fff;
}

.source-action-disabled {
  border-color: #d7e0e8;
  background: #f4f7f9;
  color: #7a8591;
  cursor: default;
}

.web-game-meta span,
.web-games-tags span {
  border-radius: 999px;
  background: #101114;
  color: #fff;
  padding: 6px 9px;
  font-size: 11px;
  font-weight: 900;
}

.web-games-panel,
.web-games-hero-panel,
.web-games-side-panel,
.web-game-build-card {
  border: 1px solid #d9e4eb;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
}

.web-games-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px;
}

.web-games-panel span,
.web-games-hero-panel span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.web-games-panel strong {
  color: #101114;
  font-size: 28px;
  line-height: 1.1;
}

.web-games-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.web-games-panel a {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.tool-preview-card h3 {
  margin: 0;
  font-size: 20px;
}

.tool-preview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.tools-page {
  width: min(100% - 80px, 1380px);
  max-width: 1380px;
  margin: 0 auto;
  padding: 42px 0 54px;
}

.noscript-tool-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 18px;
}

.noscript-tool-list p {
  margin: 0 0 4px;
}

.noscript-tool-list a {
  color: var(--teal-dark);
  font-weight: 750;
}

.tools-page-body {
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 17, 20, 0.04) 1px, transparent 1px),
    #f3f4f6;
  background-size: 42px 42px;
}

.tools-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid #c9cbd2;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, #c40014 0 5px, transparent 5px),
    linear-gradient(135deg, #ffffff 0%, #ffffff 58%, #edf0f3 100%);
  padding: 34px;
  box-shadow: 0 18px 44px rgba(10, 10, 12, 0.1);
}

.tools-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
}

.tools-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #3e4858;
  font-size: 18px;
  line-height: 1.6;
}

.tools-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.tools-summary span {
  display: grid;
  align-content: center;
  border: 1px solid #d7d9df;
  border-radius: var(--radius);
  background: #ffffff;
  color: #4d5360;
  padding: 18px;
  font-size: 13px;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(10, 10, 12, 0.055);
}

.tools-summary strong {
  color: #9d0010;
  font-size: 34px;
  line-height: 1;
}

.tools-page .button-primary {
  background: linear-gradient(180deg, #d30018, #9d0010);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(157, 0, 16, 0.24);
}

.tools-page .button-secondary {
  border-color: #9da3ad;
  background: #ffffff;
  color: #101114;
}

.tools-page-directory {
  margin-top: 28px;
  padding: 26px;
  border: 1px solid #d2d5db;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(10, 10, 12, 0.07);
}

.tools-page-directory .section-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 16px;
}

.tools-page-directory .filter-bar {
  justify-content: start;
}

.tools-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.source-code-section-tools {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  margin-top: 18px;
  border-color: #c9cbd2;
  background:
    linear-gradient(90deg, #101114 0 5px, transparent 5px),
    linear-gradient(135deg, #ffffff, #f0f2f5);
  box-shadow: 0 16px 38px rgba(10, 10, 12, 0.08);
}

.source-code-section-tools .section-label {
  color: #c40014;
}

.source-code-section-tools h2 {
  color: #101114;
}

.source-code-section-tools p:not(.section-label) {
  color: #343946;
}

.source-code-section-tools .source-steps span {
  border-color: #d0d3da;
  background: #ffffff;
  color: #242936;
  box-shadow: 0 8px 20px rgba(10, 10, 12, 0.045);
}

.source-code-section-tools .source-steps strong {
  background: #c40014;
  color: #ffffff;
}

.tools-feature-strip a {
  position: relative;
  display: grid;
  min-height: 132px;
  align-content: end;
  gap: 8px;
  overflow: hidden;
  border: 1px solid #d0d3da;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, #101114 0 4px, transparent 4px),
    linear-gradient(135deg, #ffffff, #f6f7f9);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(10, 10, 12, 0.055);
}

.tools-feature-strip a:hover {
  transform: translateY(-1px);
  border-color: #9da3ad;
  box-shadow: 0 18px 42px rgba(10, 10, 12, 0.12);
}

.tools-feature-strip span {
  width: fit-content;
  border-radius: var(--radius-sm);
  background: #101114;
  color: #ffffff;
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.tools-feature-strip strong {
  max-width: 320px;
  color: #101114;
  font-size: 18px;
  line-height: 1.25;
}

.compact-tool-grid {
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 18px;
}

.tools-page .tool-card {
  position: relative;
  grid-template-columns: 54px minmax(0, 1fr);
  min-height: 188px;
  align-items: start;
  gap: 16px;
  overflow: hidden;
  border-color: #d2d5db;
  background:
    linear-gradient(90deg, #101114 0 4px, transparent 4px),
    #ffffff;
  padding: 20px;
}

.tools-page .tool-card::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 72px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: #c40014;
  opacity: 0;
  transform: translateY(3px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.tools-page .tool-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.tools-page .tool-card-copy {
  min-width: 0;
}

.tools-page .tool-category {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 9px;
  border-radius: var(--radius-sm);
  background: #101114;
  color: #ffffff;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.tools-page .tool-card h3 {
  max-width: 260px;
  font-size: 18px;
  line-height: 1.14;
}

.tools-page .tool-card p {
  max-width: 280px;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.tools-page .tool-card-actions {
  grid-column: 1 / -1;
  justify-content: end;
  align-self: start;
}

.tools-page .tool-icon {
  width: 54px;
  height: 54px;
  margin-top: 30px;
  background: #f0f2f5;
  color: #c40014;
}

.tools-page .tool-arrow {
  align-self: center;
  color: #9d0010;
  font-size: 22px;
}

.tool-collections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.tool-collection {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.tool-collection > div:first-child span {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tool-collection h2 {
  margin: 4px 0 0;
  font-size: 24px;
}

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

.collection-tool {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-height: 68px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  padding: 10px;
}

.collection-tool:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.collection-tool strong,
.collection-tool small {
  display: block;
}

.collection-tool small {
  margin-top: 3px;
  color: var(--muted);
  line-height: 1.35;
}

.tool-card,
.project-card {
  min-height: 72px;
  padding: 14px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.tool-icon {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #f8fbfc;
  color: var(--teal);
  font-size: 22px;
  font-weight: 900;
}

.tool-arrow {
  color: #394454;
  font-size: 20px;
}

.project-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
  grid-template-columns: 1fr auto;
}

.project-card .project-status {
  border-radius: 999px;
  background: #101114;
  color: #fff;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
}

.game-studio-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  overflow: hidden;
  padding: 28px;
  border-color: rgba(196, 0, 20, 0.48);
  background:
    radial-gradient(circle at 84% 28%, rgba(196, 0, 20, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(9, 11, 18, 0.97), rgba(38, 9, 13, 0.95)),
    #101114;
  color: white;
}

.game-studio-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.35;
  pointer-events: none;
}

.game-studio-copy,
.chaos-teaser-art,
.game-project-grid,
.studio-teaser-grid,
.game-studio-actions {
  position: relative;
}

.game-studio-copy .section-label {
  color: #ff6b75;
}

.game-studio-copy p:not(.section-label) {
  max-width: 760px;
  margin: 12px 0 0;
  color: #d8d4df;
  font-size: 16px;
  line-height: 1.6;
}

.game-studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.game-studio-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.chaos-teaser-art {
  display: block;
  align-self: stretch;
  min-height: 216px;
  overflow: hidden;
  border: 1px solid rgba(210, 82, 171, 0.34);
  border-radius: var(--radius);
  background: #03060b;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.chaos-teaser-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.game-project-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
  margin-top: 8px;
}

.game-web-games {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 0.68fr) minmax(0, 1.32fr);
  gap: 18px;
  align-items: center;
  grid-column: 1 / -1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(8, 9, 12, 0.44);
  padding: 20px;
}

.game-web-games h3 {
  margin: 2px 0 0;
  color: white;
  font-size: 22px;
  line-height: 1.12;
}

.game-web-games p:not(.section-label) {
  margin: 8px 0 0;
  color: #d8dbff;
  font-size: 14px;
  line-height: 1.55;
}

.game-web-games .web-game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.studio-teaser-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.studio-teaser-grid span {
  display: grid;
  min-height: 74px;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #d8d4df;
  padding: 14px;
  font-size: 13px;
  font-weight: 850;
}

.studio-teaser-grid strong {
  display: block;
  color: #f6c15f;
  font-size: 24px;
  line-height: 1;
}

.game-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 318px;
  overflow: hidden;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: none;
}

.game-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.11);
}

.game-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 136px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #080a10;
}

.game-card-media img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

.game-card:hover .game-card-media img {
  opacity: 1;
  transform: scale(1.025);
}

.game-card-icon {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(12, 10, 18, 0.86);
  color: #f6c15f;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
}

.game-card-body {
  display: grid;
  gap: 8px;
  padding: 0 16px;
}

.game-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}

.game-card p {
  margin: 0;
  color: #d8d4df;
  font-size: 13px;
  line-height: 1.45;
}

.game-card-detail-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0 16px;
}

.game-card-detail-row span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #ede7f1;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 900;
}

.game-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding: 0 16px 16px;
}

.game-tag {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f1f2f4;
  padding: 5px 8px;
  font-size: 10px;
  font-weight: 900;
}

.about-section {
  padding: 26px;
}

.about-section p {
  max-width: 840px;
  margin: 12px 0 0;
  color: #485465;
  font-size: 16px;
  line-height: 1.65;
}

.blog-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 40px 70px;
}

.web-games-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 46px 40px 70px;
}

.web-games-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  overflow: hidden;
  border: 1px solid #d4d6dc;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, #101114 0 6px, transparent 6px),
    linear-gradient(135deg, #ffffff, #f1f2f4);
  padding: 34px;
  box-shadow: var(--shadow);
}

.web-games-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.95;
}

.web-games-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #3e4858;
  font-size: 18px;
  line-height: 1.6;
}

.web-games-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.web-games-hero-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 240px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #101114, #8f000e);
  background-size: 28px 28px, 28px 28px, auto;
  color: white;
  padding: 24px;
}

.web-games-hero-panel span {
  color: var(--warm);
}

.web-games-hero-panel strong {
  font-size: 30px;
  line-height: 1.1;
}

.web-games-hero-panel p {
  margin: 0;
  color: #d8dce3;
  font-size: 14px;
}

.web-games-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  margin-top: 28px;
}

.web-games-list,
.web-games-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.web-game-build-card {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.web-game-screen {
  display: grid;
  min-height: 190px;
  place-items: end start;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 72% 18%, rgba(212, 17, 33, 0.28), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #101114, #c40014);
  background-size: auto, 24px 24px, 24px 24px, auto;
  padding: 16px;
}

.web-game-screen span {
  border-radius: var(--radius-sm);
  background: rgba(16, 20, 31, 0.86);
  color: white;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 950;
}

.web-game-build-card h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
}

.web-game-build-card p:not(.section-label),
.web-games-side-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.web-game-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.web-game-checklist li {
  border-left: 3px solid var(--teal);
  padding-left: 10px;
  color: #354052;
  font-weight: 800;
}

.web-games-side-panel {
  padding: 22px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.web-games-side-panel h2 {
  margin: 0;
  font-size: 24px;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  overflow: hidden;
  border: 1px solid #d4d6dc;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, #101114 0 6px, transparent 6px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(241, 242, 244, 0.96));
  padding: 34px;
  box-shadow: var(--shadow);
}

.blog-hero h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.95;
}

.blog-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #3e4858;
  font-size: 18px;
  line-height: 1.6;
}

.blog-topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.blog-topic-strip span {
  border: 1px solid #cfe2e8;
  border-radius: 999px;
  background: white;
  color: var(--teal-dark);
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 900;
}

.blog-hero-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 240px;
  border: 1px solid #cfe2e8;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #101114, #263142);
  background-size: 32px 32px, 32px 32px, auto;
  color: white;
  padding: 24px;
}

.blog-hero-panel span {
  color: var(--warm);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.blog-hero-panel strong {
  font-size: 28px;
  line-height: 1.1;
}

.blog-hero-panel p {
  margin: 0;
  color: #d8dce3;
  font-size: 14px;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  margin-top: 28px;
}

.blog-post-list,
.blog-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.blog-post-card,
.blog-side-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.blog-post-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 22px;
  padding: 18px;
}

.featured-blog-post {
  grid-template-columns: 260px minmax(0, 1fr);
}

.blog-post-visual {
  display: grid;
  min-height: 168px;
  place-items: end start;
  overflow: hidden;
  border-radius: var(--radius-sm);
  padding: 16px;
  color: white;
}

.blog-post-visual span {
  border-radius: var(--radius-sm);
  background: rgba(16, 20, 31, 0.86);
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 950;
}

.blog-visual-studio {
  background:
    radial-gradient(circle at 72% 20%, rgba(196, 0, 20, 0.46), transparent 34%),
    linear-gradient(135deg, #101114, #263142);
}

.blog-visual-printing {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(135deg, #242429, #c40014);
  background-size: 24px 24px, 24px 24px, auto;
}

.blog-visual-tinkercad {
  background:
    linear-gradient(180deg, rgba(16, 20, 31, 0.08), rgba(16, 20, 31, 0.54)),
    url("assets/3d-printing/tinkercad-radio-iterations.png") center / cover;
}

.blog-visual-games {
  background:
    radial-gradient(circle at 70% 20%, rgba(196, 0, 20, 0.34), transparent 36%),
    linear-gradient(135deg, #17181d, #101114);
}

.blog-visual-beyond-kings-road {
  background:
    linear-gradient(180deg, rgba(16, 20, 31, 0.1), rgba(16, 20, 31, 0.58)),
    url("assets/games/beyond-the-kings-road/dashboard-main-ui.png") center / cover;
}

.blog-visual-code {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #121216, #8f000e);
}

.blog-visual-gaming {
  background:
    radial-gradient(circle at 26% 28%, rgba(212, 17, 33, 0.45), transparent 34%),
    linear-gradient(135deg, #111827, #3b2c13);
}

.blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.blog-post-meta time {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 850;
}

.blog-post-card h3 {
  margin: 12px 0 0;
  font-size: 28px;
  line-height: 1.1;
}

.blog-post-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.blog-post-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.blog-side-panel {
  padding: 22px;
}

.blog-side-panel h2 {
  margin: 0;
  font-size: 24px;
}

.blog-category-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.blog-category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f8fbfc;
  padding: 11px 12px;
  color: #263142;
  font-size: 14px;
  font-weight: 850;
}

.blog-category-list span {
  color: var(--teal-dark);
  font-size: 12px;
}

.blog-idea-list {
  display: grid;
  gap: 11px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.blog-idea-list li {
  border-left: 3px solid var(--warm);
  padding-left: 12px;
  color: #465365;
  line-height: 1.45;
}

.blog-article-page {
  max-width: 1040px;
  margin: 0 auto;
  padding: 46px 40px 70px;
}

.blog-article {
  display: grid;
  gap: 28px;
}

.blog-article-hero,
.blog-article-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.blog-article-hero {
  padding: 30px;
}

.blog-article-hero h1 {
  max-width: 860px;
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
}

.blog-article-hero > p {
  max-width: 790px;
  margin: 18px 0 0;
  color: #3e4858;
  font-size: 19px;
  line-height: 1.62;
}

.blog-article-section {
  padding: 28px 30px;
}

.blog-article-section h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.1;
}

.blog-article-section p {
  margin: 14px 0 0;
  color: #465365;
  font-size: 16px;
  line-height: 1.75;
}

.blog-article-lead-image,
.blog-article-image {
  margin: 24px 0 0;
}

.blog-article-lead-image img,
.blog-article-image img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 44px rgba(15, 29, 42, 0.12);
}

.blog-article-lead-image figcaption,
.blog-article-image figcaption {
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.45;
}

.printer-flow {
  display: grid;
  grid-template-columns:
    minmax(120px, 1fr) 28px
    minmax(120px, 1fr) 28px
    minmax(120px, 1fr) 28px
    minmax(120px, 1fr);
  align-items: stretch;
  gap: 10px;
  margin-top: 24px;
}

.printer-flow-card {
  display: grid;
  grid-template-rows: 118px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f7fafc;
}

.printer-flow-card img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  background: white;
  box-shadow: none;
}

.printer-flow-card strong {
  display: block;
  padding: 10px 10px 2px;
  color: #172033;
  font-size: 13px;
  line-height: 1.2;
}

.printer-flow-card span {
  display: block;
  padding: 0 10px 10px;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.35;
}

.printer-flow-arrow {
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  font-size: 24px;
  font-weight: 900;
}

.blog-article-callout {
  margin-top: 20px;
  border-left: 4px solid var(--warm);
  border-radius: var(--radius-sm);
  background: #fff7e8;
  padding: 18px 20px;
}

.blog-article-callout strong {
  display: block;
  color: #815011;
  font-size: 14px;
  text-transform: uppercase;
}

.blog-article-callout p {
  margin-top: 8px;
}

.blog-article-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-article-footer a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  padding: 12px 16px;
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.titan-page {
  display: grid;
  gap: 28px;
  width: min(100% - 80px, 1280px);
  margin: 0 auto;
  padding: 46px 0 70px;
}

.titan-page > *,
.titan-hero > *,
.about-page > *,
.about-hero > * {
  min-width: 0;
  max-width: 100%;
}

.project-summary-section,
.project-contribution {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  padding: 28px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.project-summary-section h2,
.project-contribution h2 {
  margin: 4px 0 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.project-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0 0;
}

.project-summary-grid div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f7f7f8;
  padding: 16px;
}

.project-summary-grid dt {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.project-summary-grid dd {
  margin: 7px 0 0;
  color: #344154;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.project-contribution {
  display: grid;
  grid-template-columns: minmax(260px, 0.6fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: start;
}

.project-contribution p {
  margin: 0;
  color: #465365;
  font-size: 16px;
  line-height: 1.7;
}

.titan-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 32px;
  overflow: hidden;
  border: 1px solid #d4d6dc;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, #101114 0 6px, transparent 6px),
    linear-gradient(135deg, #ffffff, #f1f2f4);
  padding: 38px;
  box-shadow: var(--shadow);
}

.titan-hero-copy h1 {
  max-width: 760px;
  margin: 6px 0 0;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.95;
}

.titan-hero-copy > p {
  max-width: 820px;
  margin: 20px 0 0;
  color: #3e4858;
  font-size: 18px;
  line-height: 1.65;
}

.titan-hero-console {
  display: grid;
  align-content: space-between;
  gap: 20px;
  min-height: 380px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #101114, #8f000e);
  background-size: 26px 26px, 26px 26px, auto;
  color: white;
  padding: 24px;
  box-shadow: 0 22px 54px rgba(15, 29, 42, 0.22);
}

.titan-product-preview {
  align-self: center;
  overflow: hidden;
  border: 1px solid #c8d8e0;
  border-radius: var(--radius);
  background: #111114;
  box-shadow: 0 22px 54px rgba(15, 29, 42, 0.18);
  animation: titanPreviewFloat 7s ease-in-out infinite;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.titan-product-preview:hover {
  box-shadow: 0 28px 64px rgba(15, 29, 42, 0.24);
}

.titan-window-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #111827;
  padding: 0 13px;
}

.titan-window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
}

.titan-product-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
}

.titan-console-header span {
  display: block;
  color: var(--warm);
  font-size: 13px;
  font-weight: 950;
}

.titan-console-header strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
  line-height: 1.08;
}

.titan-console-grid,
.titan-console-flow,
.architecture-lanes,
.titan-value-list {
  display: grid;
  gap: 10px;
}

.titan-console-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.titan-console-grid span,
.titan-console-flow span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  padding: 11px;
  color: #e6f5f8;
  font-size: 12px;
  font-weight: 850;
}

.titan-console-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.titan-console-flow span {
  display: grid;
  min-height: 54px;
  place-items: center;
  text-align: center;
}

.titan-positioning,
.titan-architecture,
.titan-opportunity,
.titan-disclaimer,
.titan-screens-section,
.titan-handheld-section,
.titan-packages {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.titan-positioning {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
}

.titan-positioning h2,
.titan-architecture h2,
.titan-opportunity h2,
.titan-disclaimer h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
}

.titan-positioning p,
.titan-architecture p,
.titan-opportunity p,
.titan-disclaimer p,
.titan-handheld-section p,
.titan-packages p {
  margin: 0;
  color: #465365;
  font-size: 16px;
  line-height: 1.7;
}

.titan-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.titan-proof-strip article {
  display: grid;
  gap: 8px;
  min-height: 142px;
  align-content: center;
  border: 1px solid #d4d6dc;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.045), transparent 46%),
    #ffffff;
  padding: 20px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.045);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.titan-proof-strip article:hover,
.titan-module-button:hover,
.titan-screen-grid article:hover,
.titan-storefront-grid article:hover,
.titan-package-grid article:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.titan-proof-strip strong {
  font-size: 19px;
}

.titan-proof-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.titan-module-button {
  position: relative;
  display: grid;
  min-height: 285px;
  align-content: start;
  border: 1px solid #b9ccd6;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(21, 30, 42, 0.045), transparent 42%),
    linear-gradient(180deg, #ffffff, #f5f8fa);
  padding: 24px;
  box-shadow: 0 16px 34px rgba(15, 29, 42, 0.06);
  color: inherit;
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.titan-module-button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #151923, #b90018);
}

.titan-module-button::after {
  content: "Open";
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  min-height: 30px;
  place-items: center;
  border: 1px solid #cad8df;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: #172033;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 950;
}

.titan-module-button:hover,
.titan-module-button:focus {
  background:
    linear-gradient(135deg, rgba(21, 30, 42, 0.075), transparent 42%),
    linear-gradient(180deg, #ffffff, #eef4f7);
  color: inherit;
  outline: none;
  text-decoration: none;
}

.titan-module-button:focus-visible {
  box-shadow:
    0 0 0 4px rgba(0, 120, 135, 0.18),
    var(--shadow);
}

.titan-suite-grid .module-kicker {
  display: grid;
  width: fit-content;
  min-height: 32px;
  place-items: center;
  border-radius: var(--radius-sm);
  background: #152131;
  color: #ffffff;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 950;
}

.titan-suite-grid h2 {
  margin: 54px 0 0;
  color: #07111f;
  font-size: 28px;
  line-height: 1.1;
}

.titan-suite-grid p {
  margin: 12px 0 0;
  color: #36475c;
  font-size: 15px;
  line-height: 1.6;
}

.titan-module-button strong {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin-top: 22px;
  border-radius: var(--radius-sm);
  background: #b90018;
  color: #ffffff;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 950;
}

.titan-module-button small {
  margin-top: 12px;
  color: #647386;
  font-size: 13px;
  font-weight: 800;
}

.titan-screens-section,
.titan-packages {
  padding: 28px;
}

.titan-screens-section > div:first-child {
  margin-bottom: 20px;
}

.titan-screens-section h2,
.titan-handheld-section h2,
.titan-packages h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
}

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

.titan-screen-grid article {
  overflow: hidden;
  border: 1px solid #d9e4eb;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f8fbfc);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.titan-screen-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid #d9e4eb;
  object-fit: cover;
  object-position: center top;
  transition: transform 260ms ease;
}

.titan-screen-grid article:hover img,
.titan-storefront-grid article:hover img {
  transform: scale(1.025);
}

.titan-screen-grid h3 {
  margin: 16px 16px 0;
  font-size: 20px;
}

.titan-screen-grid p {
  margin: 8px 16px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.titan-handheld-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(90deg, #101114 0 5px, transparent 5px),
    rgba(255, 255, 255, 0.94);
}

.titan-storefront-section {
  display: grid;
  gap: 22px;
  overflow: hidden;
  border: 1px solid #d4d6dc;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, #101114 0 5px, transparent 5px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(241, 242, 244, 0.96));
  padding: 28px;
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.titan-storefront-section h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
}

.titan-storefront-section p {
  max-width: 860px;
  margin: 10px 0 0;
  color: #465365;
  line-height: 1.65;
}

.titan-storefront-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  gap: 16px;
}

.titan-storefront-grid article {
  overflow: hidden;
  border: 1px solid #d9e4eb;
  border-radius: var(--radius);
  background: #fff;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.titan-storefront-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid #d9e4eb;
  object-fit: cover;
  object-position: center top;
  transition: transform 260ms ease;
}

.titan-storefront-grid article:first-child img {
  aspect-ratio: 16 / 11;
}

.titan-storefront-grid h3 {
  margin: 16px 16px 0;
  font-size: 20px;
}

.titan-storefront-grid p {
  margin: 8px 16px 18px;
  font-size: 14px;
}

.titan-handheld-section p {
  margin-top: 12px;
}

.titan-check-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.titan-check-list li {
  position: relative;
  padding-left: 24px;
  color: #354052;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.titan-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
  transform: rotate(-45deg);
}

.titan-phone-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 14px;
  align-items: end;
}

.titan-phone-gallery figure {
  display: grid;
  gap: 10px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d9e4eb;
  border-radius: 18px;
  background: #101114;
  padding: 10px;
  box-shadow: 0 18px 42px rgba(15, 29, 42, 0.14);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.titan-phone-gallery figure:first-child {
  transform: translateY(-12px);
}

.titan-phone-gallery figure:hover {
  box-shadow: 0 24px 54px rgba(15, 29, 42, 0.2);
  transform: translateY(-8px);
}

.titan-phone-gallery figure:first-child:hover {
  transform: translateY(-18px);
}

.titan-phone-gallery img {
  display: block;
  width: 100%;
  border-radius: 12px;
}

.titan-phone-gallery figcaption {
  color: #f1f2f4;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.titan-packages .section-heading {
  margin: 0;
}

.titan-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.titan-package-grid article {
  min-height: 210px;
  border: 1px solid #d9e4eb;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(16, 17, 20, 0.045), transparent 46%),
    #ffffff;
  padding: 20px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.titan-package-grid h3 {
  margin: 0;
  font-size: 22px;
}

.titan-package-grid p {
  margin-top: 12px;
  font-size: 14px;
}

.titan-architecture,
.titan-opportunity {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
}

.titan-architecture p,
.titan-opportunity p {
  margin-top: 12px;
}

.architecture-lanes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.architecture-lanes span {
  display: flex;
  align-items: center;
  min-height: 58px;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  background: #f1f2f4;
  color: #263142;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 900;
}

.titan-value-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.titan-value-list li {
  display: grid;
  gap: 5px;
  border: 1px solid #d9e4eb;
  border-radius: var(--radius-sm);
  background: #f8fbfc;
  padding: 14px;
}

.titan-value-list strong {
  color: #263142;
}

.titan-value-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.titan-disclaimer {
  border-color: #ead19f;
  background: #fff8e9;
  padding: 24px 28px;
}

.titan-disclaimer h2 {
  font-size: 22px;
}

.titan-disclaimer p {
  max-width: 980px;
  margin-top: 10px;
}

.titan-disclaimer .disclaimer-summary {
  max-width: 100%;
  color: #1f2937;
  font-size: 17px;
  font-weight: 850;
}

.titan-disclaimer details {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.titan-disclaimer summary {
  width: fit-content;
  color: var(--teal-dark);
  cursor: pointer;
  font-weight: 900;
}

.sentracore-page {
  display: grid;
  gap: 28px;
  width: min(100% - 80px, 1280px);
  margin: 0 auto;
  padding: 46px 0 70px;
}

.sentracore-hero,
.sentracore-positioning,
.sentracore-fit-section,
.sentracore-workflow,
.sentracore-modules,
.sentracore-status-section,
.sentracore-screens-section,
.sentracore-capability-status,
.sentracore-summary {
  border: 1px solid rgba(48, 111, 149, 0.25);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 12%, rgba(31, 132, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #07131b, #0e2735 58%, #07131b);
  color: #eef8ff;
  box-shadow: 0 24px 70px rgba(6, 24, 34, 0.22);
}

.sentracore-summary .project-summary-grid div {
  border-color: rgba(91, 177, 255, 0.24);
  background: rgba(9, 30, 43, 0.9);
}

.sentracore-summary h2,
.sentracore-summary .project-summary-grid dd {
  color: #eef8ff;
}

.sentracore-summary .project-summary-grid dt {
  color: #69a8ff;
}

.sentracore-hero {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(460px, 1.1fr);
  gap: 26px;
  align-items: center;
  padding: 30px;
}

.sentracore-hero-copy h1 {
  max-width: 100%;
  margin: 8px 0 12px;
  color: #ffffff;
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 0.96;
  overflow-wrap: normal;
}

.sentracore-hero-copy > p:not(.section-label) {
  max-width: 620px;
  color: #c4d7e4;
  font-size: 18px;
  line-height: 1.55;
  overflow-wrap: break-word;
}

.sentracore-hero > *,
.sentracore-positioning > *,
.sentracore-fit-section > *,
.sentracore-workflow > *,
.sentracore-modules > *,
.sentracore-status-section > *,
.sentracore-screens-section > * {
  min-width: 0;
}

.sentracore-preview {
  overflow: hidden;
  border: 1px solid rgba(91, 177, 255, 0.28);
  border-radius: 8px;
  background: #06111a;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.32);
}

.sentracore-preview img,
.sentracore-screen-grid img,
.sentracore-phone-pair img {
  display: block;
  width: 100%;
}

.sentracore-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid #d8b84d;
  border-radius: var(--radius);
  background: #fff8df;
  color: #4d3b00;
  padding: 18px 22px;
}

.sentracore-notice strong {
  font-size: 16px;
}

.sentracore-notice span {
  color: #65531b;
  font-size: 14px;
  line-height: 1.45;
}

.sentracore-positioning {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 26px;
  padding: 28px;
}

.sentracore-positioning h2,
.sentracore-fit-section h2,
.sentracore-workflow h2,
.sentracore-modules h2,
.sentracore-status-section h2,
.sentracore-screens-section h2 {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.sentracore-positioning p:not(.section-label),
.sentracore-fit-section > div:first-child p,
.sentracore-screens-section > div:first-child p {
  margin: 0;
  color: #c4d7e4;
  font-size: 16px;
  line-height: 1.65;
}

.sentracore-fit-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.74fr) minmax(0, 1.26fr);
  gap: 26px;
  padding: 28px;
}

.sentracore-fit-grid,
.sentracore-status-grid {
  display: grid;
  gap: 14px;
}

.sentracore-fit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sentracore-fit-grid article,
.sentracore-status-grid article {
  border: 1px solid rgba(91, 177, 255, 0.24);
  border-radius: 8px;
  background: rgba(9, 30, 43, 0.9);
  padding: 18px;
  box-shadow: 0 16px 44px rgba(5, 18, 28, 0.18);
}

.sentracore-fit-grid article.caution {
  border-color: rgba(216, 184, 77, 0.38);
  background: rgba(50, 39, 12, 0.76);
}

.sentracore-fit-grid span,
.sentracore-status-grid span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(75, 149, 255, 0.45);
  border-radius: 999px;
  color: #69a8ff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.sentracore-fit-grid .caution span {
  border-color: rgba(216, 184, 77, 0.55);
  color: #f3d875;
}

.sentracore-fit-grid h3,
.sentracore-status-grid h3 {
  margin: 14px 0 8px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.12;
}

.sentracore-fit-grid p,
.sentracore-status-grid p {
  margin: 0;
  color: #bed2df;
  font-size: 13px;
  line-height: 1.5;
}

.sentracore-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sentracore-proof-strip article,
.sentracore-step-grid article,
.sentracore-module-grid article,
.sentracore-screen-grid article {
  border: 1px solid rgba(91, 177, 255, 0.24);
  border-radius: 8px;
  background: rgba(9, 30, 43, 0.9);
  box-shadow: 0 16px 44px rgba(5, 18, 28, 0.18);
}

.sentracore-proof-strip article {
  padding: 18px;
}

.sentracore-proof-strip strong {
  display: block;
  color: #6de182;
  font-size: 18px;
}

.sentracore-proof-strip span {
  display: block;
  margin-top: 6px;
  color: #bed2df;
  font-size: 13px;
  line-height: 1.45;
}

.sentracore-workflow,
.sentracore-modules,
.sentracore-status-section,
.sentracore-screens-section,
.sentracore-capability-status {
  padding: 28px;
}

.sentracore-capability-status h2 {
  margin: 4px 0 0;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
}

.sentracore-capability-status .sentracore-status-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sentracore-architecture {
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 10px;
  align-items: center;
  margin-top: 20px;
  overflow-x: auto;
  padding: 4px 2px 8px;
}

.sentracore-architecture > div {
  display: grid;
  min-width: 190px;
  gap: 5px;
  border: 1px solid rgba(91, 177, 255, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(9, 30, 43, 0.9);
  padding: 14px;
}

.sentracore-architecture strong {
  color: #ffffff;
}

.sentracore-architecture div span {
  color: #bed2df;
  font-size: 12px;
  line-height: 1.45;
}

.sentracore-architecture > span {
  color: #69a8ff;
  font-size: 22px;
  font-weight: 900;
}

.sentracore-status-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.sentracore-step-grid,
.sentracore-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.sentracore-step-grid article,
.sentracore-module-grid article {
  padding: 18px;
}

.sentracore-step-grid span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(75, 149, 255, 0.45);
  border-radius: 999px;
  color: #69a8ff;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 900;
}

.sentracore-step-grid h3,
.sentracore-module-grid h3,
.sentracore-screen-grid h3 {
  margin: 12px 0 7px;
  color: #ffffff;
  font-size: 18px;
}

.sentracore-step-grid p,
.sentracore-module-grid p,
.sentracore-screen-grid p {
  margin: 0;
  color: #bed2df;
  font-size: 13px;
  line-height: 1.48;
}

.sentracore-screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.sentracore-screen-grid article {
  overflow: hidden;
}

.sentracore-screen-grid article.wide {
  grid-column: 1 / -1;
}

.sentracore-screen-grid img {
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(91, 177, 255, 0.22);
  object-fit: cover;
  object-position: top center;
}

.sentracore-screen-grid h3,
.sentracore-screen-grid p {
  padding-inline: 18px;
}

.sentracore-screen-grid p {
  padding-bottom: 18px;
}

.sentracore-phone-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(170px, 220px));
  gap: 18px;
  justify-content: center;
  margin-top: 24px;
}

.sentracore-phone-pair figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(91, 177, 255, 0.28);
  border-radius: 8px;
  background: #06111a;
}

.sentracore-phone-pair img {
  aspect-ratio: 9 / 19;
  object-fit: cover;
  object-position: top center;
}

.sentracore-phone-pair figcaption {
  color: #d8e8f1;
  padding: 10px 12px 12px;
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.sentracore-page > * {
  min-width: 0;
}

.contact-page {
  display: grid;
  gap: 28px;
  width: min(100% - 80px, 1180px);
  margin: 0 auto;
  padding: 46px 0 70px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #d4d6dc;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, #101114 0 6px, transparent 6px),
    linear-gradient(135deg, #fff, #f1f2f4);
  padding: 38px;
  box-shadow: var(--shadow);
}

.contact-copy h1 {
  max-width: 800px;
  margin: 8px 0 0;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.96;
}

.contact-copy > p {
  max-width: 780px;
  margin: 20px 0 0;
  color: #3e4858;
  font-size: 18px;
  line-height: 1.65;
}

.contact-card {
  overflow: hidden;
  border: 1px solid #d9e4eb;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 48px rgba(15, 29, 42, 0.13);
}

.contact-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}

.contact-card div {
  padding: 20px;
}

.contact-card h2 {
  margin: 0;
  font-size: 24px;
}

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

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

.contact-panels article,
.contact-linkedin,
.contact-github {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.contact-panels article {
  min-height: 230px;
  padding: 22px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-panels article:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.contact-panels span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: var(--radius-sm);
  background: #101114;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
}

.contact-panels h2 {
  margin: 48px 0 0;
  font-size: 24px;
  line-height: 1.1;
}

.contact-panels p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-linkedin {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(90deg, #101114 0 5px, transparent 5px),
    rgba(255, 255, 255, 0.94);
  padding: 28px;
}

.contact-github {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px;
}

.contact-linkedin h2,
.contact-github h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.1;
}

.contact-linkedin p,
.contact-github p {
  max-width: 820px;
  margin: 12px 0 0;
  color: #465365;
  line-height: 1.65;
}



.legal-page {
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
  padding: 62px 40px 72px;
}

.legal-hero,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.legal-hero {
  padding: 42px;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: 42px;
  line-height: 1.05;
  letter-spacing: 0;
}

.legal-hero p:not(.section-label) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.legal-panel {
  padding: 28px;
}

.legal-panel h2 {
  margin: 0;
  font-size: 22px;
}

.legal-panel p,
.legal-panel li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.legal-panel p {
  margin: 12px 0 0;
}

.legal-panel ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-panel a {
  color: var(--teal-dark);
  font-weight: 800;
}

.about-page {
  display: grid;
  gap: 24px;
  width: min(100% - 80px, 1180px);
  margin: 0 auto;
  padding: 46px 0 70px;
}

.about-hero,
.about-summary,
.about-grid article,
.about-collaboration {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 38px rgba(15, 29, 42, 0.055);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 34px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, #101114 0 6px, transparent 6px),
    linear-gradient(135deg, #ffffff, #f1f2f4);
  padding: 38px;
}

.about-hero h1 {
  margin: 7px 0 0;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 0.96;
}

.about-lede {
  max-width: 760px;
  margin: 20px 0 0;
  color: #3e4858;
  font-size: 19px;
  line-height: 1.65;
}

.about-portrait {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff;
}

.about-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.about-summary,
.about-collaboration {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: start;
  padding: 28px;
}

.about-summary h2,
.about-collaboration h2,
.about-grid h2 {
  margin: 4px 0 0;
  font-size: 28px;
  line-height: 1.12;
}

.about-summary p,
.about-collaboration p,
.about-grid p {
  margin: 0;
  color: #465365;
  line-height: 1.65;
}

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

.about-grid article {
  padding: 24px;
}

.about-grid p {
  margin-top: 12px;
}

.about-collaboration {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1380px;
  margin: 0 auto;
  padding: 30px 40px 42px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .hero-section,
  .content-grid,
  .blog-layout,
  .web-games-layout,
  .titan-hero,
  .titan-positioning,
  .titan-architecture,
  .titan-opportunity,
  .titan-handheld-section,
  .sentracore-feature-section,
  .sentracore-hero,
  .sentracore-positioning,
  .sentracore-fit-section,
  .contact-hero,
  .contact-linkedin,
  .contact-github,
  .game-web-games {
    grid-template-columns: 1fr;
  }

  .featured-software-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar,
  .web-games-sidebar {
    display: none;
  }

  .featured-tool {
    grid-template-columns: auto 1fr;
  }

  .extractor-preview-link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    min-height: 64px;
    padding: 10px 20px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    cursor: pointer;
    transition:
      background 160ms ease,
      border-color 160ms ease,
      transform 160ms ease;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible,
  .site-header.nav-open .nav-toggle {
    border-color: rgba(255, 51, 70, 0.66);
    background: rgba(196, 0, 20, 0.24);
  }

  .nav-toggle:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.72);
    outline-offset: 3px;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(260px, calc(100vw - 40px));
    padding: 10px;
    border: 1px solid rgba(196, 0, 20, 0.36);
    border-radius: var(--radius-sm);
    background: rgba(12, 13, 17, 0.98);
    box-shadow: 0 20px 34px rgba(10, 10, 12, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    visibility: hidden;
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
  }

  .main-nav a {
    justify-content: space-between;
    min-height: 44px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    border-color: rgba(255, 51, 70, 0.62);
    background: rgba(196, 0, 20, 0.22);
    color: #ffffff;
  }

  .site-header.nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  section[id] {
    scroll-margin-top: 88px;
  }

  .hero-section,
  .content-grid,
  .tools-page,
  .blog-page,
  .web-games-page,
  .legal-page,
  .titan-page,
  .sentracore-page,
  .contact-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .featured-software-section,
  .about-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tools-page,
  .blog-page,
  .web-games-page,
  .legal-page,
  .titan-page,
  .sentracore-page,
  .contact-page {
    width: 100%;
    padding-top: 24px;
    padding-bottom: 36px;
  }

  .about-page {
    width: 100%;
    padding-top: 24px;
    padding-bottom: 36px;
  }

  .sentracore-page {
    width: calc(100vw - 40px);
    padding-left: 0;
    padding-right: 0;
  }

  .printer-flow {
    grid-template-columns: 1fr;
  }

  .printer-flow-arrow {
    min-height: 28px;
    transform: rotate(90deg);
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .legal-hero,
  .legal-panel {
    padding: 24px;
  }

  .legal-hero h1 {
    font-size: 34px;
  }

  .featured-tool {
    grid-template-columns: 1fr;
  }

  .tool-icon-large {
    width: 82px;
    height: 82px;
    font-size: 46px;
  }

  .capability-list,
  .note-list,
    .tool-grid,
    .tool-preview-grid,
    .blog-preview-grid,
    .tools-feature-strip,
    .source-code-section,
    .source-code-section-tools,
    .project-list,
    .game-project-grid,
    .game-web-games .web-game-grid,
    .capability-list,
  .studio-teaser-grid,
  .tools-hero,
  .compact-tool-grid,
  .tool-collections,
  .titan-feature-section,
  .sentracore-feature-section,
  .titan-suite-grid,
  .titan-proof-strip,
  .titan-screen-grid,
  .titan-storefront-grid,
  .titan-package-grid,
  .sentracore-proof-strip,
  .sentracore-fit-grid,
  .sentracore-step-grid,
  .sentracore-module-grid,
  .sentracore-status-grid,
  .sentracore-screen-grid,
  .contact-panels {
    grid-template-columns: 1fr;
  }

  .project-summary-grid,
  .project-contribution,
  .about-grid,
  .about-summary,
  .about-collaboration {
    grid-template-columns: 1fr;
  }

  .sentracore-notice {
    grid-template-columns: 1fr;
  }

  .sentracore-hero .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .titan-hero,
  .titan-positioning,
  .titan-architecture,
  .titan-opportunity,
  .titan-screens-section,
  .titan-storefront-section,
  .titan-handheld-section,
  .titan-packages,
  .sentracore-hero,
  .sentracore-positioning,
  .sentracore-fit-section,
  .sentracore-workflow,
  .sentracore-modules,
  .sentracore-status-section,
  .sentracore-screens-section,
  .contact-hero,
  .contact-linkedin {
    padding: 26px;
  }

  .project-summary,
  .project-contribution,
  .sentracore-capabilities,
  .sentracore-architecture,
  .about-hero,
  .about-section {
    padding: 26px;
  }

  .titan-console-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .titan-feature-map {
    min-height: 220px;
  }

  .titan-product-preview img {
    aspect-ratio: 16 / 11;
  }

  .titan-module-button {
    min-height: 190px;
  }

  .titan-suite-grid h2 {
    margin-top: 34px;
  }

  .titan-phone-gallery {
    max-width: 680px;
    margin: 0 auto;
  }

  .game-studio-section {
    grid-template-columns: 1fr;
  }

  .web-games-section,
  .web-games-hero,
  .web-game-build-card {
    grid-template-columns: 1fr;
  }

  .source-code-actions {
    justify-content: start;
  }

  .game-web-games .button {
    justify-self: start;
  }

  .source-steps {
    grid-template-columns: 1fr;
  }

  .tools-page .tool-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .tools-page .tool-card-actions {
    grid-column: 1 / -1;
    justify-content: start;
  }

  .blog-hero,
  .blog-post-card,
  .featured-blog-post {
    grid-template-columns: 1fr;
  }

  .blog-post-visual {
    min-height: 190px;
  }

  .chaos-teaser-art {
    min-height: 280px;
    max-height: 420px;
  }

  .build-notes {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .filter-bar {
    justify-content: start;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-footer nav {
    gap: 12px 18px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 18px;
  }

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

  .github-link {
    font-size: 0;
  }

  .github-link span {
    font-size: 16px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .hero-section {
    padding-top: 36px;
  }

  .featured-software-card,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .blog-hero {
    padding: 26px;
  }

  .web-games-section,
  .web-games-hero,
  .titan-feature-section,
  .sentracore-feature-section,
  .titan-hero-console,
  .titan-screens-section,
  .titan-storefront-section,
  .titan-handheld-section,
  .titan-packages,
  .sentracore-hero,
  .sentracore-positioning,
  .sentracore-fit-section,
  .sentracore-workflow,
  .sentracore-modules,
  .sentracore-status-section,
  .sentracore-screens-section,
  .contact-hero,
  .contact-linkedin,
  .contact-github {
    padding: 26px;
  }

  .blog-hero h1 {
    font-size: 42px;
  }

  .web-games-hero h1,
  .titan-hero-copy h1,
  .sentracore-hero-copy h1,
  .contact-copy h1 {
    font-size: 42px;
  }

  .blog-hero p {
    font-size: 16px;
  }

  .web-games-hero p,
  .titan-hero-copy > p,
  .sentracore-hero-copy > p,
  .contact-copy > p {
    font-size: 16px;
  }

  .contact-panels article {
    min-height: 190px;
  }

  .contact-panels h2 {
    margin-top: 34px;
  }

  .web-game-checklist,
  .titan-console-grid,
  .titan-console-flow,
  .architecture-lanes,
  .titan-feature-map,
  .titan-phone-gallery {
    grid-template-columns: 1fr;
  }

  .titan-phone-gallery {
    max-width: 230px;
  }

  .sentracore-architecture,
  .sentracore-phone-pair {
    grid-template-columns: 1fr;
  }

  .sentracore-architecture > span {
    min-height: 28px;
    transform: rotate(90deg);
  }

  .sentracore-phone-pair {
    max-width: 230px;
    margin-right: auto;
    margin-left: auto;
  }

  .titan-phone-gallery figure:first-child {
    transform: none;
  }

  .directory-item,
  .tool-card,
  .web-game-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .directory-item .status-pill,
  .directory-item .tool-arrow,
  .tool-card .tool-arrow {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-strip {
    width: 100%;
  }

  .trust-strip li {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip li:last-child {
    border-bottom: 0;
  }
}
