@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: #f5f7f8;
  background: #050606;
  font-family: "Inter", Arial, sans-serif;
}

a {
  color: #72e7f2;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #ffffff;
}

.site-header,
.site-footer {
  position: relative;
  z-index: 10;
  background: #000;
}

.site-header {
  display: flex;
  width: 100%;
  max-width: 100vw;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(114, 231, 242, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-weight: 700;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-nav {
  order: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem 1.1rem;
}

.mobile-nav-toggle {
  z-index: 1000;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
  color: #f5f7f8;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  background: #12383d;
  border: 1px solid rgba(114, 231, 242, 0.72);
  border-radius: 0.45rem;
}

.mobile-nav-toggle span:not(.sr-only) {
  display: block;
}

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

.site-nav a,
.nav-dropdown-trigger {
  color: #f5f7f8;
  font-size: 0.92rem;
}

.site-nav a,
.site-nav .nav-dropdown,
.language-switcher {
  flex: 0 0 auto;
}

.site-nav a:hover,
.site-nav a:focus,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus {
  color: #72e7f2;
}

@media (min-width: 721px) {
  .mobile-nav-toggle {
    display: none;
  }
}

.thanks-heart-link {
  display: inline-flex;
  width: 1.8rem;
  height: 1.8rem;
  align-items: center;
  justify-content: center;
  color: #8d9a9d;
  font-size: 1rem;
  line-height: 1;
  border: 1px solid rgba(114, 231, 242, 0.16);
  border-radius: 999px;
}

.thanks-heart-link:hover,
.thanks-heart-link:focus {
  color: #72e7f2;
  border-color: rgba(114, 231, 242, 0.45);
}

.language-switcher {
  order: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  overflow: visible;
  background: #090b0c;
  border: 1px solid rgba(114, 231, 242, 0.22);
  border-radius: 999px;
}

.language-item {
  display: inline-flex;
  height: 34px;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.6rem;
  color: #aeb8ba;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
}

.language-item:hover,
.language-item:focus,
.language-item.is-active {
  color: #041011;
  background: #72e7f2;
}

.language-flag {
  display: block;
  flex: 0 0 24px;
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 0.2rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  list-style: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.nav-dropdown-trigger::-webkit-details-marker {
  display: none;
}

.nav-dropdown-trigger::after {
  display: inline-block;
  margin-left: 0.35rem;
  content: "▾";
  font-size: 0.78rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 180px;
  padding: 0.45rem;
  visibility: hidden;
  background: #090b0c;
  border: 1px solid rgba(114, 231, 242, 0.22);
  border-radius: 0.5rem;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown[open] .nav-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 0.35rem;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  color: #041011;
  background: #72e7f2;
}

.site-footer {
  padding: 1.5rem 2rem;
  color: #7f8c8d;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.home-shell,
.content-shell {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 154px);
  padding: 4rem 1rem;
}

.home-shell {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.home-hero,
.content-page {
  width: min(100%, 860px);
  margin: 0 auto;
  background: #171a1b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.45);
}

.home-hero {
  width: min(100%, 1040px);
  padding: clamp(2.5rem, 7vw, 5rem);
}

.home-hero-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  object-fit: contain;
  background: #050606;
  border: 1px solid rgba(114, 231, 242, 0.18);
  border-radius: 0.75rem;
}

.content-page {
  padding: clamp(2rem, 5vw, 4rem);
  line-height: 1.7;
}

.wide-page {
  width: min(100%, 1120px);
}

h1,
h2,
h3 {
  color: #d9dee0;
  line-height: 1.2;
}

h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.home-hero h1,
.home-section {
  opacity: 0;
  animation: fadeInUp 2s ease-out forwards;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #72e7f2;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 760px;
  margin: 0;
  color: #c7d0d2;
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.button-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.1rem;
  color: #041011;
  font-weight: 700;
  background: #72e7f2;
  border-radius: 0.45rem;
}

.button-link:hover,
.button-link:focus {
  color: #041011;
  background: #ffffff;
}

.text-link {
  color: #d9dee0;
}

.home-section {
  width: min(100%, 1040px);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: #101314;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.32);
  animation-delay: 0.2s;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.section-heading h2,
.split-section h2 {
  margin-top: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  min-height: 260px;
  padding: 1.25rem;
  background: #090b0c;
  border: 1px solid rgba(114, 231, 242, 0.18);
  border-radius: 0.75rem;
}

.feature-card h3 {
  margin: 1.25rem 0 0.75rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
}

.comparison-teaser {
  display: grid;
  gap: 1.5rem;
}

.comparison-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.comparison-strip article {
  min-height: 150px;
  padding: 1.1rem;
  background: #090b0c;
  border: 1px solid rgba(114, 231, 242, 0.18);
  border-radius: 0.75rem;
}

.comparison-strip h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.comparison-strip p {
  margin: 0;
  color: #aeb8ba;
  font-size: 0.92rem;
  line-height: 1.55;
}

.comparison-page {
  display: grid;
  gap: 2rem;
}

.comparison-hero {
  grid-template-columns: 1fr;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(114, 231, 242, 0.18);
  border-radius: 0.75rem;
}

.comparison-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  background: #090b0c;
}

.comparison-table th,
.comparison-table td {
  padding: 0.9rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.comparison-table thead th {
  color: #041011;
  background: #72e7f2;
}

.comparison-table tbody th {
  width: 16%;
  color: #f5f7f8;
  font-weight: 800;
}

.comparison-table td {
  color: #c7d0d2;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.pictogram {
  position: relative;
  display: block;
  width: 58px;
  height: 58px;
  border: 2px solid #72e7f2;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, rgba(114, 231, 242, 0.18), rgba(255, 255, 255, 0.02));
}

.pictogram::before,
.pictogram::after {
  position: absolute;
  content: "";
}

.pictogram-voice::before {
  top: 12px;
  left: 22px;
  width: 14px;
  height: 24px;
  border: 2px solid #ffffff;
  border-radius: 999px;
}

.pictogram-voice::after {
  right: 13px;
  bottom: 12px;
  left: 13px;
  height: 12px;
  border: 2px solid #ffffff;
  border-top: 0;
  border-radius: 0 0 999px 999px;
}

.pictogram-flow::before {
  top: 16px;
  left: 10px;
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 26px 0 0 #ffffff, 13px 22px 0 #ffffff;
}

.pictogram-flow::after {
  top: 22px;
  left: 19px;
  width: 24px;
  height: 20px;
  border: 2px solid #ffffff;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(24deg);
}

.pictogram-api::before {
  top: 15px;
  left: 12px;
  width: 34px;
  height: 28px;
  border: 2px solid #ffffff;
  border-radius: 0.35rem;
}

.pictogram-api::after {
  top: 24px;
  left: 18px;
  width: 22px;
  height: 2px;
  background: #ffffff;
  box-shadow: 0 7px 0 #ffffff;
}

.pictogram-shield::before {
  top: 11px;
  left: 15px;
  width: 28px;
  height: 34px;
  background: #ffffff;
  clip-path: polygon(50% 0, 100% 18%, 88% 72%, 50% 100%, 12% 72%, 0 18%);
}

.pictogram-shield::after {
  top: 18px;
  left: 28px;
  width: 2px;
  height: 20px;
  background: #090b0c;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 2rem;
  align-items: center;
}

.signal-list {
  display: grid;
  gap: 0.75rem;
}

.signal-list div {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem;
  color: #c7d0d2;
  background: #090b0c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
}

.mini-icon {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-top: 0.35rem;
  border: 2px solid #72e7f2;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(114, 231, 242, 0.1);
}

h2 {
  margin: 2.5rem 0 0.75rem;
  font-size: 1.35rem;
}

p,
li {
  color: #aeb8ba;
}

ul {
  padding-left: 1.4rem;
}

hr {
  height: 1px;
  margin: 2.5rem 0;
  border: 0;
  background: rgba(114, 231, 242, 0.22);
}

.page-intro {
  margin-bottom: 2.5rem;
  text-align: center;
}

.page-intro p {
  max-width: 760px;
  margin: 0 auto;
}

.about-page {
  display: grid;
  gap: 2rem;
}

.about-header-image {
  display: block;
  width: 100%;
  aspect-ratio: 20 / 7;
  object-fit: cover;
  background: #050606;
  border: 1px solid rgba(114, 231, 242, 0.18);
  border-radius: 0.75rem;
}

.openai-thanks-page {
  display: grid;
  gap: 2rem;
}

.openai-thanks-intro {
  display: grid;
  gap: 1rem;
  justify-items: center;
  margin-bottom: 0;
}

.openai-thanks-intro p {
  margin: 0;
}

.openai-thanks-image {
  display: block;
  width: min(100%, 420px);
  margin: 0 auto 0.5rem;
  border-radius: 0.75rem;
}

.usage-summary {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #101314;
  border: 1px solid rgba(114, 231, 242, 0.18);
  border-radius: 0.75rem;
}

.usage-summary .section-heading {
  margin-bottom: 1.5rem;
}

.usage-summary h2 {
  margin-top: 0;
}

.usage-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.usage-metric {
  min-height: 118px;
  padding: 1rem;
  background: #090b0c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
}

.usage-metric span {
  display: block;
  color: #8d9a9d;
  font-size: 0.82rem;
}

.usage-metric strong {
  display: block;
  margin-top: 0.6rem;
  color: #f5f7f8;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.usage-generated {
  margin: 1.25rem 0 0;
  color: #8d9a9d;
  font-size: 0.9rem;
}

.support-image {
  display: block;
  width: min(100%, 260px);
  margin: 0 auto 2rem;
}

.support-page {
  display: grid;
  width: min(100%, 1120px);
  gap: 1.5rem;
  margin: 0 auto;
}

.support-hero,
.support-section,
.support-footer {
  background: #101314;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.32);
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2rem;
  align-items: center;
  padding: clamp(2.25rem, 5vw, 4.5rem);
  background:
    linear-gradient(135deg, rgba(114, 231, 242, 0.12), rgba(16, 19, 20, 0) 42%),
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.08), transparent 32%),
    #101314;
}

.support-hero-copy p:not(.eyebrow):not(.hero-copy),
.support-section p {
  max-width: 760px;
}

.support-page .button-link {
  color: #d9dee0;
  background: #090b0c;
  border: 1px solid rgba(114, 231, 242, 0.26);
}

.support-page .button-link:hover,
.support-page .button-link:focus {
  color: #041011;
  background: #72e7f2;
  border-color: #72e7f2;
}

.secondary-button {
  color: #d9dee0;
  background: #090b0c;
  border: 1px solid rgba(114, 231, 242, 0.26);
}

.secondary-button:hover,
.secondary-button:focus {
  color: #041011;
  background: #72e7f2;
}

.terminal-panel {
  overflow: hidden;
  background: #050606;
  border: 1px solid rgba(114, 231, 242, 0.2);
  border-radius: 0.75rem;
  box-shadow: inset 0 0 28px rgba(114, 231, 242, 0.06);
}

.terminal-bar {
  display: flex;
  gap: 0.45rem;
  padding: 0.8rem 1rem;
  background: #090b0c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  background: #72e7f2;
  border-radius: 50%;
  opacity: 0.7;
}

.terminal-panel pre {
  margin: 0;
  padding: 1.25rem;
  overflow-x: auto;
}

.terminal-panel code {
  color: #c7d0d2;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  line-height: 1.7;
}

.support-section {
  padding: clamp(2rem, 4vw, 3rem);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.support-card {
  min-height: 220px;
  padding: 1.2rem;
  background: #090b0c;
  border: 1px solid rgba(114, 231, 242, 0.18);
  border-radius: 0.75rem;
}

.support-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.support-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 1rem;
  object-fit: cover;
  background: #050606;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
}

.support-card p {
  margin: 0;
  font-size: 0.92rem;
}

.infra-wall,
.support-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.infra-wall span,
.support-areas span {
  padding: 0.55rem 0.75rem;
  color: #d9dee0;
  font-size: 0.86rem;
  background: #090b0c;
  border: 1px solid rgba(114, 231, 242, 0.22);
  border-radius: 0.45rem;
}

.ops-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.support-band {
  display: grid;
  gap: 1.5rem;
  background:
    linear-gradient(135deg, rgba(114, 231, 242, 0.1), rgba(13, 15, 16, 0) 48%),
    #0d0f10;
  border-color: rgba(114, 231, 242, 0.2);
}

.support-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.support-footer p {
  margin: 0;
}

.logo-bg {
  position: fixed;
  top: 30%;
  left: 50%;
  z-index: 0;
  width: 300px;
  height: 300px;
  margin-top: -150px;
  margin-left: -150px;
  pointer-events: none;
  background: url("/img/XvXlogo.png") center / contain no-repeat;
  opacity: 0.08;
  animation: bgPulse 10s ease-in-out infinite;
}

.type-line {
  width: 0;
  max-width: 100%;
  margin: 0.7rem auto;
  overflow: hidden;
  color: #aeb8ba;
  font-size: clamp(0.95rem, 2.4vw, 1.25rem);
  white-space: nowrap;
  border-right: 2px solid #72e7f2;
}

.line1 {
  animation: typing 3s steps(40, end) 0s 1 normal both, blink 0.7s step-end 5 forwards;
}

.line2 {
  animation: typing 3s steps(40, end) 3.5s 1 normal both, blink 0.7s step-end 5 forwards;
}

.line3 {
  animation: typing 3s steps(40, end) 7s 1 normal both, blink 0.7s step-end 5 forwards;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.thank-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  color: #cdd5d7;
  text-align: center;
  background: #0d0f10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
}

.thank-card img {
  width: auto;
  max-width: 150px;
  height: 60px;
  margin-bottom: 1rem;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.2);
}

.thank-card h2 {
  margin: 0 0 0.75rem;
  color: #72e7f2;
  font-size: 1.1rem;
}

.thank-card p {
  margin: 0;
}

.thank-card footer {
  margin-top: auto;
  padding-top: 1rem;
  color: #7f8c8d;
  font-size: 0.8rem;
}

.imprint-header-image {
  display: block;
  width: 100%;
  aspect-ratio: 8 / 3;
  margin-bottom: 2rem;
  object-fit: cover;
  background: #050606;
  border: 1px solid rgba(114, 231, 242, 0.18);
  border-radius: 0.75rem;
}

.skill-page {
  display: grid;
  gap: 2.25rem;
}

.skills-overview-page {
  display: grid;
  gap: 2rem;
}

.skills-overview-header {
  max-width: 820px;
}

.skills-overview-header h1 {
  margin-bottom: 1rem;
}

.skills-browser {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.skill-browser-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 1.1rem;
  min-height: 220px;
  padding: 1.1rem;
  color: #d9dee0;
  background: #090b0c;
  border: 1px solid rgba(114, 231, 242, 0.18);
  border-radius: 0.75rem;
  overflow-wrap: anywhere;
  transition: border-color 0.16s ease, transform 0.16s ease, background 0.16s ease;
}

.skill-browser-card:hover,
.skill-browser-card:focus {
  color: #ffffff;
  background: #0d1415;
  border-color: rgba(114, 231, 242, 0.52);
  transform: translateY(-2px);
}

.skill-browser-symbol {
  width: 116px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  align-self: start;
  background: #050606;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
}

.skill-browser-copy {
  display: grid;
  min-width: 0;
  gap: 0.75rem;
  align-content: start;
}

.skill-browser-title {
  color: #f5f7f8;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.skill-browser-summary {
  color: #aeb8ba;
  font-size: 0.94rem;
  line-height: 1.55;
}

.skill-browser-status {
  width: fit-content;
  padding: 0.38rem 0.55rem;
  color: #041011;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  background: #72e7f2;
  border-radius: 0.4rem;
}

.skill-browser-status-copy {
  color: #8d9a9d;
  font-size: 0.86rem;
  line-height: 1.45;
}

.skill-browser-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.skill-browser-signals span {
  padding: 0.4rem 0.55rem;
  color: #d9dee0;
  font-size: 0.78rem;
  line-height: 1;
  background: rgba(114, 231, 242, 0.08);
  border: 1px solid rgba(114, 231, 242, 0.2);
  border-radius: 0.4rem;
}

.skill-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 240px);
  gap: 2rem;
  align-items: center;
}

.skill-hero h1 {
  margin-bottom: 1rem;
}

.skill-hero-image {
  width: min(100%, 220px);
  justify-self: center;
  object-fit: contain;
}

.image-zoom-trigger {
  position: relative;
  display: block;
  width: min(100%, 240px);
  justify-self: center;
  padding: 0;
  cursor: zoom-in;
  background: transparent;
  border: 0;
}

.image-zoom-trigger .skill-hero-image {
  width: 100%;
  border: 1px solid rgba(114, 231, 242, 0.18);
  border-radius: 0.75rem;
}

.magnifier-icon {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: #041011;
  background: #72e7f2;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
}

.magnifier-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.image-lightbox {
  width: min(96vw, 1180px);
  padding: 1rem;
  background: #050606;
  border: 1px solid rgba(114, 231, 242, 0.35);
  border-radius: 0.75rem;
}

.image-lightbox::backdrop {
  background: rgba(0, 0, 0, 0.82);
}

.image-lightbox img {
  display: block;
  width: 100%;
  max-height: 86vh;
  object-fit: contain;
}

.image-lightbox form {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}

.image-lightbox-close {
  width: 40px;
  height: 40px;
  color: #041011;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  background: #72e7f2;
  border: 0;
  border-radius: 999px;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.status-row span {
  padding: 0.5rem 0.7rem;
  color: #d9dee0;
  font-size: 0.86rem;
  background: #090b0c;
  border: 1px solid rgba(114, 231, 242, 0.22);
  border-radius: 0.45rem;
}

.skill-section {
  padding-top: 2rem;
  border-top: 1px solid rgba(114, 231, 242, 0.16);
}

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

.skill-feature-grid .feature-card {
  min-height: 190px;
}

.safety-card-image {
  display: block;
  width: 100%;
  aspect-ratio: 12 / 7;
  object-fit: cover;
  background: #050606;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.55rem;
}

.feature-card .safety-card-image + h3 {
  margin-top: 1rem;
}

.code-panel {
  display: grid;
  gap: 0.65rem;
  padding: 1rem;
  background: #090b0c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
}

.code-panel code {
  display: block;
  padding: 0.75rem;
  overflow-x: auto;
  color: #d9dee0;
  background: #050606;
  border: 1px solid rgba(114, 231, 242, 0.14);
  border-radius: 0.45rem;
}

.status-table {
  display: grid;
  gap: 0.75rem;
  margin: 0;
}

.status-table div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: #090b0c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
}

.status-table dt {
  color: #72e7f2;
  font-weight: 700;
}

.status-table dd {
  margin: 0;
  color: #c7d0d2;
}

.risk-band {
  padding: 1.5rem;
  background: #0d0f10;
  border: 1px solid rgba(114, 231, 242, 0.2);
  border-radius: 0.75rem;
}

.risk-band h2 {
  margin-top: 0;
}

.skill-footer {
  color: #7f8c8d;
  font-size: 0.88rem;
}

.erp-page {
  display: grid;
  gap: 1.25rem;
}

.erp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.erp-header h1 {
  margin: 0;
}

.erp-session,
.erp-tabs,
.erp-grid,
.erp-object-grid,
.erp-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.erp-session span,
.erp-badge {
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(114, 231, 242, 0.24);
  border-radius: 0.45rem;
  color: #72e7f2;
  background: rgba(114, 231, 242, 0.07);
  font-size: 0.85rem;
}

.erp-tabs {
  align-items: center;
  padding: 0.65rem;
  background: #0d0f10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
}

.erp-tabs a,
.erp-tabs button,
.erp-action,
.erp-inline-actions button,
.erp-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(114, 231, 242, 0.28);
  border-radius: 0.45rem;
  background: #111516;
  color: #eef7f8;
  text-decoration: none;
  font: inherit;
  cursor: pointer;
}

.erp-primary,
.erp-action {
  background: #12383d;
}

.erp-section,
.erp-form,
.erp-object {
  padding: 1rem;
  background: #0d0f10;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.65rem;
}

.erp-form,
.erp-narrow-form {
  display: grid;
  gap: 0.85rem;
  max-width: 680px;
}

.erp-form label {
  display: grid;
  gap: 0.35rem;
  color: #c7d0d2;
}

.erp-form input,
.erp-form select,
.erp-form textarea,
.erp-inline-actions input {
  width: 100%;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.45rem;
  background: #090b0c;
  color: #eef7f8;
}

.erp-object {
  min-width: 180px;
  display: grid;
  gap: 0.35rem;
}

.erp-table-wrap {
  overflow-x: auto;
}

.erp-table {
  width: 100%;
  border-collapse: collapse;
}

.erp-table th,
.erp-table td {
  padding: 0.7rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.erp-alert {
  padding: 0.8rem 1rem;
  border-radius: 0.55rem;
}

.erp-alert-success {
  background: rgba(65, 196, 120, 0.12);
  border: 1px solid rgba(65, 196, 120, 0.28);
}

.erp-alert-error {
  background: rgba(230, 84, 84, 0.12);
  border: 1px solid rgba(230, 84, 84, 0.28);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  0%,
  100% {
    border-color: transparent;
  }
  50% {
    border-color: #72e7f2;
  }
}

@keyframes bgPulse {
  0%,
  100% {
    opacity: 0.05;
    transform: scale(1);
  }
  50% {
    opacity: 0.12;
    transform: scale(1.05);
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    overflow: hidden;
  }

  .brand {
    order: 0;
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
  }

  .language-switcher {
    order: 1;
    grid-column: 1 / -1;
    grid-row: 2;
    width: auto;
    justify-self: start;
    margin-top: 0;
    border-top: 0;
  }

  .language-item {
    width: 38px;
    padding: 0;
  }

  .language-item span {
    display: none;
  }

  .mobile-nav-toggle {
    position: absolute;
    top: 1rem;
    left: 200px;
    order: 2;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .site-nav {
    order: 3;
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    width: 100%;
    align-items: center;
    justify-content: stretch;
    gap: 0;
    padding-top: 1rem;
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a,
  .site-nav > .nav-dropdown {
    width: 100%;
    min-width: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav > a,
  .nav-dropdown-trigger {
    min-height: 44px;
    padding: 0.7rem 0;
    overflow-wrap: anywhere;
  }

  .thanks-heart-link {
    width: 100%;
    height: 44px;
    justify-content: flex-start;
    border: 0;
    border-radius: 0;
  }

  .nav-dropdown-menu {
    right: auto;
    left: 0;
  }

  .home-shell,
  .content-shell {
    padding: 2rem 1rem;
  }

  .content-page {
    padding: 1.5rem;
  }

  .feature-grid,
  .skill-feature-grid,
  .skills-browser,
  .comparison-strip,
  .usage-metric-grid,
  .skill-hero,
  .support-hero,
  .support-grid,
  .ops-panels,
  .split-section {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .skill-browser-card {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 0;
  }

  .skill-browser-symbol {
    width: 92px;
  }

  .status-table div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .type-line {
    white-space: normal;
    border-right: 0;
    animation: fadeInUp 1s ease-out forwards;
  }
}

@media (max-width: 520px) {
  .content-shell {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .content-page {
    width: 100%;
    max-width: 100%;
    padding: 1.25rem;
  }

  .skills-overview-page {
    gap: 1.4rem;
    overflow: hidden;
  }

  .skills-overview-header,
  .skill-browser-copy {
    max-width: calc(100vw - 4rem);
  }

  .skills-overview-header h1 {
    font-size: 2rem;
  }

  .skills-overview-header .hero-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .skills-browser {
    gap: 0.85rem;
  }

  .skill-browser-card {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    width: 100%;
    max-width: 100%;
    padding: 0.9rem;
    overflow: hidden;
  }

  .skill-browser-symbol {
    width: min(132px, 48vw);
  }

  .skill-browser-copy {
    gap: 0.65rem;
  }

  .skill-browser-summary,
  .skill-browser-status-copy {
    max-width: 100%;
  }

  .skill-browser-status {
    max-width: 100%;
    line-height: 1.15;
  }

  .skill-browser-signals {
    gap: 0.4rem;
  }

  .skill-browser-signals span {
    line-height: 1.15;
  }
}
