:root {
  --bg: #060710;
  --card: rgba(15, 22, 40, 0.7);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f7ff;
  --muted: #aeb9d4;
  --cyan: #42e8ff;
  --blue: #4c7dff;
  --pink: #ff4fd8;
  --green: #5cffb2;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: radial-gradient(
    circle at 18% -5%,
    #1a1b47 0,
    #060710 38%,
    #03040a 100%
  );
  color: var(--text);
  overflow-x: hidden;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.aurora {
  position: fixed;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(85px);
  opacity: 0.28;
  z-index: -2;
  animation: floatAurora 13s ease-in-out infinite alternate;
}
.aurora-one {
  background: var(--pink);
  top: -200px;
  left: -160px;
}
.aurora-two {
  background: var(--blue);
  right: -170px;
  top: 130px;
  animation-delay: -5s;
}
.cursor-glow {
  position: fixed;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(66, 232, 255, 0.13),
    transparent 66%
  );
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(6, 7, 16, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 900;
}
.brand img {
  display: block;
  width: 154px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  filter: saturate(1.2) contrast(1.06);
}
.brand-mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(66, 232, 255, 0.35);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(66, 232, 255, 0.2),
    rgba(255, 79, 216, 0.14)
  );
  box-shadow: 0 0 28px rgba(66, 232, 255, 0.2);
}
.brand-mark span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}
.nav-links {
  display: flex;
  gap: 24px;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--cyan);
}
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(66, 232, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.language-toggle {
  min-width: 38px;
  border: 0;
  border-radius: 999px;
  padding: 8px 10px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}
.language-toggle:hover {
  color: var(--text);
  transform: translateY(-1px);
}
.language-toggle.is-active {
  color: #06101f;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 24px rgba(66, 232, 255, 0.22);
}
.cookie-consent {
  position: fixed;
  right: clamp(14px, 3vw, 34px);
  bottom: clamp(14px, 3vw, 34px);
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(780px, calc(100vw - 28px));
  padding: 18px;
  border: 1px solid rgba(66, 232, 255, 0.24);
  border-radius: 26px;
  background:
    radial-gradient(circle at 0% 0%, rgba(66, 232, 255, 0.16), transparent 35%),
    rgba(6, 7, 16, 0.92);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(22px);
}
.cookie-consent strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1rem;
}
.cookie-consent p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}
.cookie-consent a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-actions .btn {
  border: 0;
  cursor: pointer;
  white-space: nowrap;
}
.consent-control-panel {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.consent-control-panel textarea {
  min-height: 180px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}
.form-privacy-note {
  margin: 2px 0 4px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
}
.form-privacy-note a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: none;
}
.form-privacy-note a:hover {
  text-decoration: underline;
}
.footer-compliance-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.footer-compliance-links a {
  color: var(--cyan);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}
.footer-compliance-links a:hover {
  text-decoration: underline;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
  box-shadow: 0 0 0 6px rgba(66, 232, 255, 0.16);
}
.noscript-warning {
  position: relative;
  z-index: 90;
  margin: 14px auto;
  width: min(1180px, 90vw);
  padding: 14px 16px;
  border: 1px solid rgba(66, 232, 255, 0.32);
  border-radius: 18px;
  color: var(--text);
  background: rgba(6, 7, 16, 0.9);
}
@media print {
  body {
    color: #111;
    background: #fff;
  }
  .noise,
  .aurora,
  .cursor-glow,
  .cookie-consent,
  .language-switcher,
  .hero-visual {
    display: none !important;
  }
  a {
    color: #111;
    text-decoration: underline;
  }
  .section-shell,
  .hero,
  .page-hero {
    width: 100%;
    min-height: auto;
    padding: 24px 0;
  }
}
.section-shell {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 105px 0;
}
.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 70px;
}
.page-hero {
  padding-bottom: 45px;
}
.eyebrow,
.section-kicker {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.pulse-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 10px;
  animation: pulse 1.7s infinite;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(43px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  margin-bottom: 25px;
}
h1 span {
  background: linear-gradient(90deg, #fff, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
  background-size: 180%;
  animation: gradientShift 5s ease-in-out infinite;
}
h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: -0.05em;
}
p {
  color: var(--muted);
  line-height: 1.75;
}
.hero-subtitle {
  font-size: 19px;
  max-width: 720px;
}
.big-intent {
  font-size: 21px;
  color: #dce7ff;
}
.big-intent strong {
  color: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  text-decoration: none;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
}
.btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.22),
    transparent
  );
  transform: translateX(-120%);
  transition: 0.55s;
}
.btn:hover:before {
  transform: translateX(120%);
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--pink));
  box-shadow: 0 16px 50px rgba(255, 79, 216, 0.24);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.045);
}
.btn-large {
  padding: 17px 26px;
}
.btn-small {
  padding: 11px 17px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0;
}
.fast-understand {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}
.fast-understand div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
}
.fast-understand strong {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(66, 232, 255, 0.12);
  color: var(--cyan);
}
.fast-understand span {
  color: var(--muted);
}
.server-rack {
  min-height: 530px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: linear-gradient(
    145deg,
    rgba(20, 30, 58, 0.75),
    rgba(8, 10, 22, 0.92)
  );
  position: relative;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 42px 36px;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.server-rack:after {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(
    from 180deg,
    transparent,
    var(--cyan),
    transparent,
    var(--pink),
    transparent
  );
  opacity: 0.12;
  animation: spin 10s linear infinite;
}
.rack-title {
  position: relative;
  z-index: 3;
  width: fit-content;
  margin-bottom: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(66, 232, 255, 0.22);
  border-radius: 999px;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: 0.13em;
  font-size: 12px;
  background: rgba(66, 232, 255, 0.07);
}
.server-timeline {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 18px;
}
.server-step {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(66, 232, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.server-step:not(:last-child):after {
  content: "";
  position: absolute;
  left: 50px;
  bottom: -19px;
  width: 2px;
  height: 18px;
  background: linear-gradient(180deg, var(--cyan), var(--pink));
  opacity: 0.55;
}
.server-step strong {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #07111c;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 28px rgba(66, 232, 255, 0.22);
}
.server-step span {
  color: #dce7ff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}
.rack-glow {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--cyan);
  filter: blur(75px);
  opacity: 0.18;
}
.marquee-wrap {
  position: relative;
  display: flex;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}
.marquee {
  display: flex;
  gap: 34px;
  padding: 20px 17px;
  white-space: nowrap;
  animation: marquee 24s linear infinite;
}
.marquee span {
  font-weight: 900;
  color: rgba(255, 255, 255, 0.7);
}
.marquee-ghost {
  position: absolute;
  left: 100%;
}
.section-heading {
  max-width: 840px;
  margin-bottom: 35px;
}
.split-section,
.contact-section,
.configurator-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 55px;
}
.pillar-grid,
.problem-grid,
.results-grid,
.mode-grid {
  display: grid;
  gap: 18px;
}
.pillar-grid {
  grid-template-columns: repeat(3, 1fr);
}
.problem-grid {
  grid-template-columns: repeat(3, 1fr);
}
.problem-grid.compact {
  grid-template-columns: 1fr;
}
.glass-card,
.pillar-card,
.metric,
.controls-panel,
.recommendation-card,
.included-panel,
.lead-form,
.timeline article {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.glass-card,
.pillar-card,
.metric,
.recommendation-card,
.included-panel,
.timeline article {
  padding: 28px;
}
.pillar-card {
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.pillar-card:after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 180px;
  height: 180px;
  background: var(--cyan);
  filter: blur(65px);
  opacity: 0.16;
}
.icon {
  color: var(--pink);
  font-weight: 900;
}
.controls-panel {
  padding: 25px;
  display: grid;
  gap: 18px;
}
.sticky-panel {
  position: sticky;
  top: 95px;
  align-self: start;
}
.controls-panel label {
  display: grid;
  gap: 9px;
  color: var(--muted);
  font-weight: 800;
}
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  outline: none;
}
input[type="range"] {
  accent-color: var(--pink);
}
textarea {
  min-height: 130px;
  resize: vertical;
}
.config-results {
  display: grid;
  gap: 20px;
}
.recommendation-card strong {
  display: block;
  font-size: 48px;
  margin: 8px 0;
  background: linear-gradient(90deg, #fff, var(--cyan), var(--pink));
  -webkit-background-clip: text;
  color: transparent;
}
.results-grid {
  grid-template-columns: repeat(2, 1fr);
}
.metric strong {
  display: block;
  font-size: 30px;
  margin-top: 10px;
}
.positive strong {
  color: var(--green);
}
.included-panel ul {
  color: var(--muted);
  line-height: 1.9;
}
.timeline {
  display: grid;
  gap: 18px;
}
.timeline article {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: start;
}
.timeline span {
  font-size: 38px;
  font-weight: 900;
  color: var(--cyan);
}
.lead-form {
  padding: 28px;
  display: grid;
  gap: 14px;
}
.contact-profile-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(66, 232, 255, 0.14), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(255, 79, 216, 0.13), transparent 36%),
    var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.contact-profile-photo {
  width: 168px;
  height: 168px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}
.contact-profile-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.contact-profile-content h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.045em;
}
.contact-profile-content p {
  color: var(--muted);
  font-weight: 700;
}
.contact-profile-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.site-footer {
  text-align: center;
  color: var(--muted);
  padding: 34px;
  border-top: 1px solid var(--line);
}
.seo-focus-section {
  position: relative;
  padding-top: 70px;
}
.seo-focus-section:before {
  content: "";
  position: absolute;
  inset: 40px -4vw auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66, 232, 255, 0.45), rgba(255, 79, 216, 0.45), transparent);
}
.seo-keyword-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 34px 0 24px;
}
.seo-keyword-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(66, 232, 255, 0.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 0%, rgba(66, 232, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(15, 22, 40, 0.78), rgba(6, 7, 16, 0.84));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.seo-keyword-card:after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--pink);
  filter: blur(72px);
  opacity: 0.14;
}
.seo-keyword-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: 16px;
  color: #06101f;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 0 28px rgba(66, 232, 255, 0.22);
}
.seo-keyword-card h3 {
  font-size: 1.25rem;
}
.seo-term-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.035);
}
.seo-term-cloud span {
  padding: 8px 12px;
  border: 1px solid rgba(66, 232, 255, 0.2);
  border-radius: 999px;
  color: #dce7ff;
  background: rgba(66, 232, 255, 0.07);
  font-size: 13px;
  font-weight: 800;
}
.home-page {
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(255, 79, 216, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 22%,
      rgba(66, 232, 255, 0.12),
      transparent 30%
    ),
    radial-gradient(
      circle at 48% 104%,
      rgba(76, 125, 255, 0.12),
      transparent 32%
    ),
    linear-gradient(135deg, #070815 0%, #050713 48%, #02040b 100%);
}
.home-page .site-header {
  padding-block: 14px;
  background: rgba(6, 7, 16, 0.64);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
}
.home-page .brand img {
  transition:
    transform 0.28s ease,
    filter 0.28s ease;
}
.home-page .brand:hover img {
  transform: translateY(-1px) scale(1.03);
  filter: saturate(1.32) contrast(1.08)
    drop-shadow(0 0 14px rgba(66, 232, 255, 0.16));
}
.home-page .nav-links a {
  position: relative;
  transition: color 0.2s ease;
}
.home-page .nav-links a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}
.home-page .nav-links a.active:after,
.home-page .nav-links a:hover:after {
  opacity: 0.85;
  transform: scaleX(1);
}
.home-page .hero {
  min-height: calc(100vh - 78px);
  grid-template-columns: minmax(0, 0.84fr) minmax(540px, 1.16fr);
  gap: clamp(18px, 3vw, 46px);
  padding-top: 72px;
  padding-bottom: 78px;
}
.home-page .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.home-page .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(66, 232, 255, 0.18);
  border-radius: 999px;
  background: rgba(66, 232, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.home-page h1 {
  text-wrap: balance;
  text-shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
}
.home-page .btn {
  transition:
    transform 0.26s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}
.home-page .btn:hover {
  border-color: rgba(255, 255, 255, 0.22);
}
.home-page .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 50px rgba(66, 232, 255, 0.08);
}
.home-page .gpu-hero-visual {
  min-height: 0;
  height: auto;
  overflow: visible;
  border-radius: 0;
  filter: none;
  background: none;
}
.home-page .gpu-hero-visual::before,
.home-page .gpu-hero-visual::after {
  content: none;
}
.home-page .gpu-hero-gif {
  width: min(150%, 1980px);
  max-width: none;
  max-height: none;
  transform: none;
}
.home-page .gpu-floating-card {
  background: rgba(7, 14, 31, 0.58);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
  .home-page .hero {
    grid-template-columns: 1fr;
  }

  .home-page .gpu-hero-gif {
    width: min(100%, 860px);
    max-width: 100%;
  }
}

.home-page .pillar-card,
.home-page .process-step {
  transition:
    transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}
.home-page .pillar-card:hover {
  transform: translateY(-7px);
  border-color: rgba(66, 232, 255, 0.24);
  background: rgba(18, 27, 50, 0.74);
  box-shadow:
    0 34px 95px rgba(0, 0, 0, 0.42),
    0 0 38px rgba(66, 232, 255, 0.08);
}
.home-page .home-pillar-grid {
  gap: 22px;
}
.home-page .home-pillar-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), transparent 44%),
    radial-gradient(
      circle at 24% 22%,
      rgba(66, 232, 255, 0.16),
      transparent 34%
    ),
    linear-gradient(145deg, rgba(16, 25, 48, 0.78), rgba(7, 10, 22, 0.88));
}
.home-page .home-pillar-card:before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}
.home-page .home-pillar-card:after {
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  opacity: 0.2;
  background:
    radial-gradient(circle, rgba(66, 232, 255, 0.72), transparent 58%),
    radial-gradient(circle at 42% 36%, rgba(255, 79, 216, 0.7), transparent 48%);
}
.home-page .home-pillar-card:nth-child(2):after {
  background:
    radial-gradient(circle, rgba(92, 255, 178, 0.52), transparent 58%),
    radial-gradient(
      circle at 42% 36%,
      rgba(66, 232, 255, 0.58),
      transparent 48%
    );
}
.home-page .home-pillar-card:nth-child(3):after {
  background:
    radial-gradient(circle, rgba(255, 79, 216, 0.62), transparent 58%),
    radial-gradient(circle at 42% 36%, rgba(76, 125, 255, 0.7), transparent 48%);
}
.home-page .pillar-orb {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: auto;
  border-radius: 20px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    rgba(66, 232, 255, 0.3),
    rgba(255, 79, 216, 0.22)
  );
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 0 32px rgba(66, 232, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}
.home-page .home-pillar-card h3 {
  position: relative;
  z-index: 2;
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}
.home-page .home-pillar-card p {
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  color: rgba(224, 233, 255, 0.76);
}
.home-page .home-pillar-card:hover .pillar-orb {
  transform: translateY(-3px) scale(1.04);
}
.home-page .process-timeline::before {
  opacity: 0.82;
}
.support-hero {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 46px;
  align-items: center;
  min-height: 76vh;
}
.support-signal-card,
.support-card,
.support-band {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.support-signal-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
}
.support-signal-card:before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(66, 232, 255, 0.42),
    transparent,
    rgba(255, 79, 216, 0.36),
    transparent
  );
  opacity: 0.22;
  animation: spin 10s linear infinite;
}
.support-signal-card:after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 27px;
  background: linear-gradient(
    145deg,
    rgba(12, 18, 34, 0.9),
    rgba(5, 7, 16, 0.96)
  );
}
.support-signal-card span,
.support-signal-card strong,
.support-signal-card p {
  position: relative;
  z-index: 1;
}
.support-signal-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.support-signal-card strong {
  display: block;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 30px;
}
.support-card {
  padding: 28px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.support-card:after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--cyan);
  filter: blur(70px);
  opacity: 0.13;
}
.support-card h3,
.support-card p,
.support-card span {
  position: relative;
  z-index: 1;
}
.support-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  margin-bottom: 90px;
}
.support-band h2 {
  margin-bottom: 14px;
}
.support-band p {
  max-width: 720px;
  margin-bottom: 0;
}
.integration-showcase {
  padding-top: 55px;
  scroll-margin-top: 92px;
}
.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.integration-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(17, 25, 47, 0.86),
    rgba(8, 10, 22, 0.78)
  );
  box-shadow: var(--shadow);
  padding: 28px;
  min-height: 320px;
  backdrop-filter: blur(18px);
}
.integration-card:after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: var(--cyan);
  filter: blur(75px);
  opacity: 0.12;
}
.integration-card h3,
.integration-card p,
.integration-card div {
  position: relative;
  z-index: 1;
}
.model-stack-section {
  padding-top: 40px;
  scroll-margin-top: 92px;
}
.model-stack-copy {
  max-width: 920px;
  margin-bottom: 34px;
}
.model-stack-panel {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 24px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  background:
    radial-gradient(
      circle at 18% 26%,
      rgba(255, 79, 216, 0.16),
      transparent 34%
    ),
    radial-gradient(
      circle at 84% 34%,
      rgba(66, 232, 255, 0.13),
      transparent 36%
    ),
    linear-gradient(145deg, rgba(17, 25, 47, 0.82), rgba(7, 10, 21, 0.92));
  box-shadow: var(--shadow);
  padding: 24px;
  overflow: hidden;
  backdrop-filter: blur(18px);
}
.opa-logo-card {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #11151d;
}
.opa-logo-card:before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 34% 42%,
      rgba(255, 79, 216, 0.5),
      transparent 42%
    ),
    radial-gradient(circle at 64% 52%, rgba(66, 232, 255, 0.5), transparent 44%);
  filter: blur(42px);
  opacity: 0.78;
}
.opa-logo-card img {
  position: relative;
  z-index: 1;
  width: min(360px, 92%);
  max-height: 220px;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: saturate(1.25) contrast(1.05);
}
.model-stack-detail {
  padding: 18px 10px 10px;
  align-self: center;
}
.model-stack-detail h3 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.045em;
  margin-bottom: 18px;
}
.model-family-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.model-family-grid span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  color: #eef6ff;
  font-weight: 900;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.model-family-grid span:nth-child(1),
.model-family-grid span:nth-child(4) {
  background: linear-gradient(
    135deg,
    rgba(66, 232, 255, 0.2),
    rgba(76, 125, 255, 0.22)
  );
}
.model-family-grid span:nth-child(2),
.model-family-grid span:nth-child(5) {
  background: linear-gradient(
    135deg,
    rgba(255, 79, 216, 0.22),
    rgba(76, 125, 255, 0.18)
  );
}
.model-family-grid span:nth-child(3),
.model-family-grid span:nth-child(6) {
  background: linear-gradient(
    135deg,
    rgba(92, 255, 178, 0.16),
    rgba(66, 232, 255, 0.16)
  );
}
.model-details-link {
  margin-top: 22px;
}
.model-details-section {
  padding-top: 34px;
  scroll-margin-top: 92px;
}
.model-details-heading {
  max-width: 920px;
  margin-bottom: 28px;
}
.model-catalog-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.model-catalog-actions [data-model-count] {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.model-catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(150px, 1fr)) auto;
  gap: 12px;
  align-items: end;
  margin-top: 20px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.model-catalog-toolbar[hidden] {
  display: none;
}
.model-catalog-toolbar label {
  display: grid;
  gap: 7px;
}
.model-catalog-toolbar label span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.model-catalog-toolbar input,
.model-catalog-toolbar select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(4, 9, 21, 0.58);
  color: #eef6ff;
  font: inherit;
  font-weight: 800;
  padding: 0 12px;
  outline: none;
}
.model-catalog-toolbar input:focus,
.model-catalog-toolbar select:focus {
  border-color: rgba(66, 232, 255, 0.48);
  box-shadow: 0 0 0 3px rgba(66, 232, 255, 0.1);
}
.model-catalog-empty {
  margin-top: 18px;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}
.model-catalog-empty[hidden] {
  display: none;
}
.model-details-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.model-preview-group-title {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  color: #eef6ff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.model-preview-group-title:after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(66, 232, 255, 0.4), transparent);
}
.is-expanded .model-preview-group-title {
  display: none;
}
.model-preview-section .model-detail-card:nth-of-type(n + 7) {
  display: none;
}
.js [data-model-catalog]:not(.is-expanded) .model-detail-card:nth-child(n + 7),
.model-detail-card.is-filter-hidden {
  display: none;
}
.model-detail-card {
  --model-accent: #42e8ff;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 248px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--model-accent) 13%, transparent), transparent 38%),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 18px 48px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}
.model-detail-card:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--model-accent), transparent);
  opacity: 0.9;
}
.model-detail-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--model-accent) 44%, rgba(255, 255, 255, 0.13));
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--model-accent) 17%, transparent), transparent 42%),
    rgba(255, 255, 255, 0.06);
}
.model-detail-card:nth-child(3n + 1) {
  --model-accent: #42e8ff;
}
.model-detail-card:nth-child(3n + 2) {
  --model-accent: #5cffb2;
}
.model-detail-card:nth-child(3n) {
  --model-accent: #ff4fd8;
}
.model-detail-card:nth-child(5n) {
  --model-accent: #8fa8ff;
}
.model-detail-card > div {
  position: relative;
  z-index: 1;
  padding-right: 92px;
}
.model-detail-card .model-provider-logo {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: auto;
  max-width: 72px;
  height: 28px;
  padding: 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  object-fit: contain;
  box-sizing: content-box;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}
.model-detail-card .card-label {
  margin-bottom: 13px;
  border-color: color-mix(in srgb, var(--model-accent) 54%, rgba(255, 255, 255, 0.16));
  background: color-mix(in srgb, var(--model-accent) 14%, rgba(255, 255, 255, 0.055));
  color: #f8fbff;
  font-size: 11px;
  letter-spacing: 0.08em;
}
.model-detail-card h3 {
  margin: 0 0 8px;
  font-size: 23px;
  line-height: 1.04;
  color: #f8fbff;
  max-width: 14ch;
}
.model-detail-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}
.model-detail-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: auto 0 0;
  position: relative;
  z-index: 1;
}
.model-detail-card dl div {
  display: grid;
  gap: 5px;
  min-height: 70px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(4, 9, 21, 0.36);
}
.model-detail-card dl div:first-child {
  grid-column: 1 / -1;
}
.model-detail-card dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.model-detail-card dd {
  margin: 0;
  color: #eef6ff;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.card-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(66, 232, 255, 0.22);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(66, 232, 255, 0.07);
}
.ide-card {
  grid-row: auto;
}
.logo-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.logo-wall.icon-wall {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.software-logo {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
  color: #fff;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  text-align: center;
}
.software-logo img,
.source-logo img,
.agent-tile img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: invert(1);
}
.pycharm img {
  filter: none;
}
.vscode {
  background: linear-gradient(135deg, #007acc, #143c75);
}
.jetbrains {
  background: linear-gradient(135deg, #fe2857, #7044ff 55%, #00c8ff);
}
.pycharm {
  background: linear-gradient(135deg, #21d789, #ffe000);
  color: #10151e;
}
.webstorm {
  background: linear-gradient(135deg, #00c8ff, #7c4dff);
}
.visualstudio {
  background: linear-gradient(135deg, #5c2d91, #b179ff);
}
.eclipse {
  background: linear-gradient(135deg, #2c2255, #f7941e);
}
.jupyter {
  background: linear-gradient(135deg, #f37626, #4b4b4b);
}
.cursor {
  background: linear-gradient(135deg, #111, #3c465b);
}
.chat-card:after {
  background: var(--pink);
}
.chat-preview {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.chat-row {
  max-width: 88%;
  padding: 12px 14px;
  border-radius: 18px;
  color: #e9f3ff;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  line-height: 1.45;
}
.chat-row.user {
  justify-self: end;
  background: rgba(66, 232, 255, 0.12);
  border-color: rgba(66, 232, 255, 0.22);
}
.chat-row.bot {
  justify-self: start;
}
.source-logo-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}
.source-logo-wall.icon-wall {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.source-logo {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-weight: 800;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.sharepoint {
  background: linear-gradient(135deg, #03787c, #00a4a6);
}
.onedrive {
  background: linear-gradient(135deg, #0364b8, #28a8ea);
}
.teams {
  background: linear-gradient(135deg, #464eb8, #7b83eb);
}
.confluence {
  background: linear-gradient(135deg, #172b4d, #0052cc);
}
.nextcloud {
  background: linear-gradient(135deg, #0082c9, #1eb8ff);
}
.aws {
  background: linear-gradient(135deg, #232f3e, #ff9900);
}
.agent-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.agent-tile,
.agent-stack small {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  place-items: center;
  min-height: 66px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
  text-align: center;
}
.agent-tile {
  flex-direction: column;
  color: #fff;
}
.agent-tile span {
  font-size: 12px;
  letter-spacing: 0;
}
.agent-mark {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font-size: 11px;
  line-height: 1;
  color: #07111c;
  box-shadow: 0 0 20px rgba(66, 232, 255, 0.22);
}
.openclaw-mark {
  background: linear-gradient(135deg, var(--green), var(--cyan));
}
.hermes-mark {
  background: linear-gradient(135deg, #ffd166, var(--pink));
}
.agent-stack small {
  grid-column: 1/-1;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes floatAurora {
  to {
    transform: translate(80px, 60px) scale(1.18);
  }
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 14px rgba(92, 255, 178, 0);
  }
}
@keyframes gradientShift {
  50% {
    background-position: 100%;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes serverFloat {
  50% {
    transform: translateY(-9px);
  }
}
@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 920px) {
  .nav-links {
    display: none;
  }
  .site-header {
    gap: 10px;
  }
  .language-switcher {
    margin-left: auto;
  }
  .language-toggle {
    min-width: 34px;
    padding: 7px 8px;
  }
  .cookie-consent {
    grid-template-columns: 1fr;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
  .hero,
  .split-section,
  .contact-section,
  .configurator-grid,
  .support-hero,
  .integration-grid {
    grid-template-columns: 1fr;
  }
  .contact-profile-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .contact-profile-photo {
    width: 142px;
    height: 142px;
  }
  .pillar-grid,
  .problem-grid,
  .results-grid,
  .support-grid,
  .seo-keyword-grid {
    grid-template-columns: 1fr;
  }
  .server-rack {
    min-height: auto;
    padding: 30px 22px;
  }
  .server-step {
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 18px;
  }
  .server-step strong {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 20px;
  }
  .server-step span {
    font-size: 15px;
  }
  .server-step:not(:last-child):after {
    left: 41px;
  }
  .section-shell {
    padding: 76px 0;
  }
  h1 {
    font-size: 44px;
  }
  .sticky-panel {
    position: static;
  }
  .integration-showcase {
    padding-top: 30px;
  }
  .integration-card {
    min-height: auto;
  }
  .model-stack-panel {
    grid-template-columns: 1fr;
  }
  .opa-logo-card {
    min-height: 230px;
  }
  .model-family-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .model-catalog-toolbar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .model-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .logo-wall.icon-wall {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .support-band {
    align-items: flex-start;
    flex-direction: column;
  }
  .source-logo-wall.icon-wall,
  .agent-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .model-details-grid,
  .model-family-grid {
    grid-template-columns: 1fr;
  }

  .model-catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .model-detail-card > div {
    padding-right: 78px;
  }

  .model-detail-card .model-provider-logo {
    max-width: 58px;
    height: 24px;
  }

  .model-detail-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

/* Landing page — augmented cartoon AI server */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
}

.ai-server-cartoon {
  position: relative;
  width: min(510px, 92vw);
  min-height: 560px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 42px;
  background:
    radial-gradient(
      circle at 50% 14%,
      rgba(66, 232, 255, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 79, 216, 0.18),
      transparent 28%
    ),
    linear-gradient(145deg, rgba(17, 25, 47, 0.82), rgba(8, 10, 22, 0.9));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  overflow: hidden;
  transform-style: preserve-3d;
  animation: heroFloat 5.5s ease-in-out infinite;
}

.ai-server-cartoon:before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 180deg,
    transparent,
    rgba(66, 232, 255, 0.55),
    transparent,
    rgba(255, 79, 216, 0.5),
    transparent
  );
  opacity: 0.2;
  animation: spin 9s linear infinite;
}

.ai-server-cartoon:after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 41px;
  background: linear-gradient(
    145deg,
    rgba(11, 16, 30, 0.38),
    rgba(3, 4, 10, 0.72)
  );
  z-index: 0;
}

.holo-ring,
.scan-beam,
.floating-chip,
.neural-orbit,
.server-head,
.server-body-cartoon,
.server-base-cartoon,
.data-cable,
.spark {
  position: absolute;
  z-index: 2;
}

.holo-ring {
  left: 50%;
  border: 1px solid rgba(66, 232, 255, 0.22);
  border-radius: 50%;
  transform: translateX(-50%) rotateX(72deg);
  box-shadow: 0 0 35px rgba(66, 232, 255, 0.16);
}

.ring-one {
  top: 70px;
  width: 330px;
  height: 115px;
  animation: ringPulse 3s ease-in-out infinite;
}

.ring-two {
  top: 105px;
  width: 410px;
  height: 145px;
  border-color: rgba(255, 79, 216, 0.22);
  animation: ringPulse 3.6s ease-in-out infinite reverse;
}

.scan-beam {
  top: -42%;
  left: 22%;
  width: 56%;
  height: 150%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(66, 232, 255, 0.14),
    transparent
  );
  transform: rotate(18deg);
  animation: scanMove 4.8s ease-in-out infinite;
  opacity: 0.75;
}

.floating-chip {
  padding: 9px 12px;
  border: 1px solid rgba(66, 232, 255, 0.26);
  border-radius: 999px;
  background: rgba(6, 7, 16, 0.72);
  backdrop-filter: blur(14px);
  color: #eafcff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.25),
    0 0 22px rgba(66, 232, 255, 0.12);
  animation: chipFloat 4s ease-in-out infinite;
}

.chip-top {
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
}

.chip-left {
  top: 250px;
  left: 32px;
  animation-delay: -1.2s;
}

.chip-right {
  top: 235px;
  right: 34px;
  border-color: rgba(255, 79, 216, 0.34);
  animation-delay: -2.1s;
}

.neural-orbit {
  left: 50%;
  top: 148px;
  width: 250px;
  height: 250px;
  margin-left: -125px;
  border: 1px dashed rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  animation: orbitSpin 12s linear infinite;
}

.orbit-two {
  width: 310px;
  height: 310px;
  margin-left: -155px;
  top: 118px;
  animation-duration: 16s;
  animation-direction: reverse;
  opacity: 0.7;
}

.neural-orbit span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
}

.neural-orbit span:nth-child(1) {
  top: -5px;
  left: 50%;
}
.neural-orbit span:nth-child(2) {
  right: 18px;
  bottom: 45px;
  background: var(--pink);
  box-shadow: 0 0 18px var(--pink);
}
.neural-orbit span:nth-child(3) {
  left: 24px;
  bottom: 52px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.server-head {
  top: 128px;
  left: 50%;
  width: 172px;
  height: 122px;
  transform: translateX(-50%);
  border: 1px solid rgba(66, 232, 255, 0.24);
  border-radius: 55px 55px 34px 34px;
  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(66, 232, 255, 0.2),
      transparent 44%
    ),
    linear-gradient(145deg, rgba(37, 54, 94, 0.98), rgba(13, 18, 34, 0.98));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  animation: headGlow 2.8s ease-in-out infinite;
}

.brain-core {
  position: absolute;
  inset: 20px 26px;
  border-radius: 36px;
  border: 1px solid rgba(66, 232, 255, 0.22);
  background: rgba(66, 232, 255, 0.055);
}

.node {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  animation: nodePulse 1.8s ease-in-out infinite;
}

.n1 {
  top: 18px;
  left: 20px;
}
.n2 {
  top: 16px;
  right: 24px;
  animation-delay: -0.5s;
}
.n3 {
  left: 50%;
  top: 38px;
  animation-delay: -0.9s;
}
.n4 {
  left: 28px;
  bottom: 18px;
  background: var(--pink);
  box-shadow: 0 0 18px var(--pink);
  animation-delay: -1.2s;
}
.n5 {
  right: 22px;
  bottom: 20px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
  animation-delay: -1.5s;
}

.link {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(66, 232, 255, 0.7),
    transparent
  );
  transform-origin: left center;
  opacity: 0.75;
}

.l1 {
  width: 78px;
  left: 31px;
  top: 31px;
  transform: rotate(16deg);
}
.l2 {
  width: 72px;
  left: 42px;
  top: 60px;
  transform: rotate(-24deg);
}
.l3 {
  width: 80px;
  left: 33px;
  bottom: 30px;
  transform: rotate(8deg);
}

.server-body-cartoon {
  top: 250px;
  left: 50%;
  width: 265px;
  height: 205px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background:
    linear-gradient(
      90deg,
      transparent 0 14px,
      rgba(255, 255, 255, 0.035) 14px 16px,
      transparent 16px 100%
    ),
    linear-gradient(145deg, rgba(34, 48, 84, 0.98), rgba(10, 14, 27, 0.98));
  background-size:
    32px 100%,
    auto;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.server-face {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 138px;
  height: 62px;
  transform: translateX(-50%);
  border-radius: 22px;
  background: rgba(2, 6, 14, 0.75);
  border: 1px solid rgba(66, 232, 255, 0.18);
  box-shadow: inset 0 0 24px rgba(66, 232, 255, 0.08);
}

.eye {
  position: absolute;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  animation: blink 5s ease-in-out infinite;
}

.eye:first-child {
  left: 34px;
}
.eye:nth-child(2) {
  right: 34px;
}

.mouth {
  position: absolute;
  left: 50%;
  bottom: 13px;
  width: 38px;
  height: 10px;
  transform: translateX(-50%);
  border-bottom: 3px solid rgba(92, 255, 178, 0.9);
  border-radius: 0 0 999px 999px;
}

.server-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 66px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.server-panel span {
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}

.server-panel span:after {
  content: "";
  position: absolute;
  inset: auto 8px 8px;
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  animation: dataLoad 2.2s ease-in-out infinite;
}

.server-panel span:nth-child(2):after {
  animation-delay: -0.4s;
}
.server-panel span:nth-child(3):after {
  animation-delay: -0.8s;
}
.server-panel span:nth-child(4):after {
  animation-delay: -1.2s;
}

.gpu-bars {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 26px;
  display: grid;
  gap: 8px;
}

.gpu-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(66, 232, 255, 0.14),
    rgba(66, 232, 255, 0.8),
    rgba(255, 79, 216, 0.35)
  );
  box-shadow: 0 0 18px rgba(66, 232, 255, 0.14);
  animation: gpuPulse 1.8s ease-in-out infinite;
}

.gpu-bars i:nth-child(2) {
  animation-delay: -0.5s;
}
.gpu-bars i:nth-child(3) {
  animation-delay: -1s;
}

.status-line {
  position: absolute;
  top: 102px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.status-line b {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
  animation: pulse 1.4s infinite;
}

.server-base-cartoon {
  left: 50%;
  bottom: 66px;
  width: 315px;
  height: 45px;
  transform: translateX(-50%);
  border-radius: 16px 16px 26px 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    145deg,
    rgba(28, 39, 69, 0.96),
    rgba(7, 10, 20, 0.96)
  );
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.32);
}

.server-base-cartoon span {
  position: absolute;
  top: 16px;
  width: 48px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.09);
}

.server-base-cartoon span:nth-child(1) {
  left: 32px;
}
.server-base-cartoon span:nth-child(2) {
  left: 132px;
  background: rgba(66, 232, 255, 0.38);
  box-shadow: 0 0 18px rgba(66, 232, 255, 0.24);
}
.server-base-cartoon span:nth-child(3) {
  right: 32px;
}

.data-cable {
  width: 125px;
  height: 125px;
  border: 3px solid rgba(66, 232, 255, 0.22);
  border-top: none;
  border-right: none;
  border-radius: 0 0 0 45px;
  bottom: 54px;
}

.cable-one {
  left: 40px;
  transform: rotate(7deg);
}

.cable-two {
  right: 40px;
  transform: scaleX(-1) rotate(7deg);
  border-color: rgba(255, 79, 216, 0.22);
}

.spark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px var(--cyan);
  animation: sparkDrift 4s ease-in-out infinite;
}

.spark-one {
  left: 86px;
  top: 118px;
}
.spark-two {
  right: 82px;
  top: 348px;
  background: var(--pink);
  box-shadow: 0 0 18px var(--pink);
  animation-delay: -1.3s;
}
.spark-three {
  left: 180px;
  bottom: 86px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
  animation-delay: -2.4s;
}

@keyframes heroFloat {
  50% {
    transform: translateY(-12px) rotateX(1deg) rotateY(-1deg);
  }
}

@keyframes ringPulse {
  50% {
    opacity: 0.45;
    transform: translateX(-50%) rotateX(72deg) scale(1.07);
  }
}

@keyframes scanMove {
  0%,
  100% {
    transform: translateX(-70%) rotate(18deg);
    opacity: 0;
  }
  35%,
  65% {
    opacity: 0.85;
  }
  50% {
    transform: translateX(70%) rotate(18deg);
  }
}

@keyframes chipFloat {
  50% {
    margin-top: -10px;
  }
}

@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes headGlow {
  50% {
    box-shadow:
      0 24px 70px rgba(66, 232, 255, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

@keyframes nodePulse {
  50% {
    transform: scale(1.35);
    opacity: 0.65;
  }
}

@keyframes blink {
  0%,
  92%,
  100% {
    transform: scaleY(1);
  }
  95% {
    transform: scaleY(0.08);
  }
}

@keyframes dataLoad {
  0%,
  100% {
    transform: scaleX(0.35);
    transform-origin: left;
    opacity: 0.55;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes gpuPulse {
  50% {
    filter: brightness(1.6);
    transform: scaleX(0.82);
  }
}

@keyframes sparkDrift {
  50% {
    transform: translate(16px, -18px) scale(1.35);
    opacity: 0.55;
  }
}

@media (max-width: 920px) {
  .hero-visual {
    min-height: 520px;
  }

  .ai-server-cartoon {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .hero-visual {
    min-height: 470px;
  }

  .ai-server-cartoon {
    min-height: 470px;
    border-radius: 32px;
  }

  .server-head {
    top: 118px;
    width: 150px;
  }

  .server-body-cartoon {
    top: 240px;
    width: 230px;
  }

  .server-base-cartoon {
    width: 260px;
  }

  .floating-chip {
    font-size: 9px;
  }

  .chip-left,
  .chip-right {
    top: 222px;
  }
}
.gpu-hero-visual {
  position: relative;
  min-height: 520px;
  height: min(680px, 78vh);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  place-items: center;
}

.gpu-hero-visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  background:
    radial-gradient(
      circle at 35% 30%,
      rgba(0, 200, 255, 0.22),
      transparent 42%
    ),
    radial-gradient(circle at 68% 68%, rgba(255, 79, 216, 0.2), transparent 46%);
  filter: blur(55px);
  z-index: -1;
}

#serverCanvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
}

.gpu-hero-gif {
  position: relative;
  z-index: 2;
  width: min(118%, 1120px);
  max-width: none;
  max-height: 108%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  transform: translateX(-4%);
  transform-origin: center;
}

.gpu-css-server {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.gpu-hero-visual.three-ready .gpu-css-server {
  opacity: 0;
}

.gpu-css-frame {
  position: relative;
  width: min(420px, 78%);
  height: 500px;
  transform: perspective(900px) rotateY(-18deg) rotateX(6deg);
  transform-style: preserve-3d;
  animation: gpuCssFloat 5s ease-in-out infinite;
}

.gpu-css-frame:before,
.gpu-css-frame:after {
  content: "";
  position: absolute;
  inset: 42px 28px;
  border-radius: 18px;
  border: 1px solid rgba(66, 232, 255, 0.22);
  background: linear-gradient(
    145deg,
    rgba(10, 19, 36, 0.96),
    rgba(2, 5, 12, 0.96)
  );
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.gpu-css-frame:after {
  inset: 64px 12px 28px 170px;
  transform: translateZ(-70px) skewY(-5deg);
  background: linear-gradient(
    145deg,
    rgba(19, 32, 61, 0.82),
    rgba(4, 7, 15, 0.94)
  );
}

.gpu-css-top {
  position: absolute;
  left: 64px;
  right: 4px;
  top: 42px;
  height: 54px;
  z-index: 3;
  transform: skewX(18deg);
  border-radius: 13px 19px 6px 6px;
  background: linear-gradient(
    90deg,
    rgba(16, 28, 51, 0.96),
    rgba(4, 8, 17, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.gpu-css-front {
  position: absolute;
  left: 42px;
  top: 100px;
  width: 150px;
  height: 318px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(
    145deg,
    rgba(8, 14, 26, 0.96),
    rgba(2, 5, 12, 0.98)
  );
  border: 1px solid rgba(66, 232, 255, 0.18);
  box-shadow: inset 0 0 26px rgba(66, 232, 255, 0.08);
}

.gpu-css-front span {
  border-radius: 50%;
  border: 3px solid rgba(148, 163, 184, 0.58);
  background:
    radial-gradient(circle, rgba(66, 232, 255, 0.92) 0 12%, transparent 14%),
    radial-gradient(circle, rgba(3, 7, 18, 0.98), rgba(3, 7, 18, 0.6));
  box-shadow:
    inset 0 0 14px rgba(0, 0, 0, 0.55),
    0 0 16px rgba(66, 232, 255, 0.14);
  animation: gpuFanGlow 2.8s ease-in-out infinite;
}

.gpu-css-front span:nth-child(3n + 2) {
  animation-delay: -0.7s;
}

.gpu-css-front span:nth-child(3n) {
  animation-delay: -1.4s;
}

.gpu-css-blades {
  position: absolute;
  left: 190px;
  top: 130px;
  width: 178px;
  z-index: 4;
  display: grid;
  gap: 24px;
}

.gpu-css-blades i {
  height: 34px;
  transform: skewX(-18deg);
  border-radius: 5px;
  background: linear-gradient(
    90deg,
    rgba(66, 232, 255, 0.9),
    rgba(66, 232, 255, 0.34),
    rgba(7, 13, 26, 0.92)
  );
  box-shadow: 0 0 24px rgba(66, 232, 255, 0.2);
}

.gpu-css-panel {
  position: absolute;
  right: 58px;
  bottom: 112px;
  z-index: 5;
  width: 116px;
  height: 150px;
  transform: skewY(5deg);
  border-radius: 10px;
  background: linear-gradient(
    145deg,
    rgba(255, 79, 216, 0.9),
    rgba(125, 32, 170, 0.94)
  );
  box-shadow: 0 0 34px rgba(255, 79, 216, 0.24);
}

.gpu-css-flow {
  position: absolute;
  z-index: 6;
  width: 150px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 18px rgba(66, 232, 255, 0.38);
  animation: gpuCssFlow 2.2s ease-in-out infinite;
}

.gpu-css-flow-one {
  left: 24px;
  top: 138px;
  transform: rotate(9deg);
}

.gpu-css-flow-two {
  right: 32px;
  bottom: 92px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  box-shadow: 0 0 18px rgba(255, 79, 216, 0.34);
  transform: rotate(-82deg);
  animation-delay: -0.9s;
}

.gpu-brand-side {
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  z-index: 5;
  padding: 16px 10px;
  border-radius: 999px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(
    180deg,
    rgba(0, 200, 255, 0.2),
    rgba(255, 79, 216, 0.24)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 34px rgba(0, 200, 255, 0.18),
    0 0 44px rgba(255, 79, 216, 0.18);
  backdrop-filter: blur(16px);
}

.gpu-floating-card {
  position: absolute;
  z-index: 4;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(7, 14, 31, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  animation: gpuFloatCard 4s ease-in-out infinite;
}

.gpu-floating-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: #ffffff;
}

.gpu-floating-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.gpu-card-one {
  right: 10%;
  top: 17%;
  border-color: rgba(255, 79, 216, 0.25);
}

.gpu-card-two {
  left: 7%;
  bottom: 17%;
  border-color: rgba(0, 200, 255, 0.25);
  animation-delay: -1.6s;
}

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

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

@keyframes gpuCssFloat {
  50% {
    transform: perspective(900px) rotateY(-15deg) rotateX(7deg)
      translateY(-10px);
  }
}

@keyframes gpuFanGlow {
  50% {
    border-color: rgba(66, 232, 255, 0.78);
    filter: brightness(1.22);
  }
}

@keyframes gpuCssFlow {
  0%,
  100% {
    opacity: 0.35;
    clip-path: inset(0 70% 0 0);
  }

  50% {
    opacity: 1;
    clip-path: inset(0 0 0 15%);
  }
}

@media (max-width: 900px) {
  .gpu-hero-visual {
    min-height: 390px;
    height: 460px;
  }

  .gpu-hero-gif {
    width: min(100%, 760px);
    max-height: 100%;
    transform: none;
  }

  .gpu-css-frame {
    width: min(330px, 82%);
    height: 390px;
  }

  .gpu-css-front {
    width: 122px;
    height: 252px;
    gap: 10px;
    padding: 17px;
  }

  .gpu-css-blades {
    left: 150px;
    top: 108px;
    width: 140px;
    gap: 18px;
  }

  .gpu-css-blades i {
    height: 27px;
  }

  .gpu-css-panel {
    right: 42px;
    bottom: 88px;
    width: 88px;
    height: 116px;
  }

  .gpu-floating-card,
  .gpu-brand-side {
    display: none;
  }
}
.process-section {
  position: relative;
}

.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 200, 255, 0.15),
    rgba(0, 200, 255, 0.85),
    rgba(255, 79, 216, 0.85),
    rgba(255, 79, 216, 0.15)
  );
  box-shadow:
    0 0 24px rgba(0, 200, 255, 0.25),
    0 0 34px rgba(255, 79, 216, 0.2);
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 24px;
  border-radius: 26px;
  background: rgba(7, 14, 31, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 79, 216, 0.35);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.36),
    0 0 38px rgba(255, 79, 216, 0.12);
}

.process-number {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #ffffff;
  background: linear-gradient(135deg, #00c8ff, #ff4fd8);
  box-shadow:
    0 0 28px rgba(0, 200, 255, 0.28),
    0 0 36px rgba(255, 79, 216, 0.22);
}

.process-content h3 {
  margin-bottom: 12px;
  font-size: 1.12rem;
  color: #ffffff;
}

.process-content p {
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
  font-size: 0.95rem;
}

@media (max-width: 1000px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .home-page .hero {
    padding-top: 68px;
  }

  .home-page h1 {
    font-size: 42px;
    line-height: 1.03;
    letter-spacing: -0.055em;
  }

  .home-page .hero-actions {
    gap: 12px;
    margin-top: 30px;
  }

  .home-page .btn-large {
    width: 100%;
    max-width: 260px;
  }

  .home-page .home-pillar-card {
    min-height: 245px;
    padding: 26px;
  }

  .home-page .home-pillar-card h3 {
    margin-top: 34px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 32px;
  }

  .process-step {
    padding: 22px;
  }

  .process-number {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }
}
.model-family-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.model-family-card {
  min-height: 92px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.model-family-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.22);
}

.model-provider-logo {
  width: auto;
  max-width: 96px;
  height: 28px;
  object-fit: contain;
}

.model-family-card span {
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 700px) {
  .model-family-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
