:root {
  --nav-h: 72px;
  --black: #050505;
  --ink: #f8f8f3;
  --muted: #a8a8ad;
  --panel: #1d1f23;
  --panel-soft: #303136;
  --blue: #222579;
  --blue-deep: #060820;
  --acid: #dcff32;
  --green: #6fff8f;
  --lavender: #c7c0ff;
  --ice: #dfe8f1;
  --line: rgba(255, 255, 255, .18);
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

.dev-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  background: #fff;
  color: #080808;
  border-bottom: 1px solid #ddd;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 27px;
  height: 27px;
  border: 2px solid currentColor;
  display: inline-block;
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: currentColor;
  border-radius: 50%;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 16px;
}
.nav-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
}
.nav-trigger span,
.top-nav a::after {
  width: 9px;
  height: 9px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  display: inline-block;
}
.nav-trigger.active span { transform: rotate(225deg) translate(-2px, -1px); }
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}
.avatar-button,
.mobile-menu {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.avatar-button span {
  width: 35px;
  height: 35px;
  display: block;
  border-radius: 50%;
  background:
    radial-gradient(circle at 56% 38%, #16100c 0 17%, transparent 18%),
    linear-gradient(145deg, #3c211c, #c98c7f);
}
.mobile-menu { display: none; width: 40px; }
.mobile-menu span {
  display: block;
  height: 2px;
  background: #111;
  margin: 7px 0;
}

.section-pill {
  position: fixed;
  top: 116px;
  right: clamp(24px, 3.2vw, 60px);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0;
  min-width: 480px;
  padding: 0 23px;
  height: 54px;
  border: 1px solid rgba(137, 157, 185, .42);
  border-radius: 999px;
  background: #17202b;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}
.section-pill a {
  flex: 1;
  text-align: center;
  color: #c5c8d0;
  font-size: 14px;
  font-weight: 700;
}
.section-pill a.active { color: var(--acid); }

.hero-grid {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  padding: 16vh 0 12vh clamp(36px, 4.8vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(74, 84, 180, .28), transparent 26%),
    linear-gradient(180deg, #22207d 0%, #1f1d70 56%, #030516 100%);
}
.pixel-grid {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .13) 1px, transparent 1px);
  background-size: 174px 174px;
}
.pixel-grid::after {
  content: "";
  position: absolute;
  right: 6vw;
  top: 12vh;
  width: 31vw;
  height: 38vw;
  background:
    linear-gradient(90deg, transparent 0 28%, rgba(255, 255, 255, .08) 28% 56%, transparent 56%),
    linear-gradient(transparent 0 21%, rgba(255, 255, 255, .08) 21% 38%, transparent 38%);
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}
.hero-copy h1 {
  margin: 0;
  font-weight: 300;
  font-size: clamp(72px, 8vw, 158px);
  line-height: .95;
  letter-spacing: -.045em;
}
.hero-copy h1 span { color: var(--green); }
#typeCaret {
  display: inline-block;
  width: .035em;
  height: .84em;
  margin-left: .05em;
  background: #fff;
  vertical-align: -.08em;
  animation: blink 1s steps(2, start) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.hero-copy p {
  margin: 30px 0 0;
  max-width: 790px;
  color: #f2f2ff;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-top: 62px;
}
.white-cta {
  display: inline-flex;
  align-items: center;
  gap: 35px;
  height: 74px;
  padding: 9px 9px 9px 30px;
  border-radius: 999px;
  background: #fff;
  color: #151515;
  font-size: 18px;
}
.white-cta b {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  font-size: 28px;
  font-weight: 400;
}
.text-link {
  display: inline-block;
  margin-right: 34px;
  color: inherit;
  font-weight: 700;
  border-bottom: 1.5px solid currentColor;
  line-height: 1.35;
}
.text-link.light { color: rgba(255, 255, 255, .82); font-size: 20px; }
.text-link.dark { color: #050505; }
.floating-command {
  position: absolute;
  right: 7vw;
  bottom: 13vh;
  width: 330px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(5, 8, 28, .62);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
  overflow: hidden;
  transform: translateY(20px);
  animation: floatCmd 5s ease-in-out infinite;
}
@keyframes floatCmd { 50% { transform: translateY(0); } }
.cmd-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.cmd-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
}
.cmd-bar strong { margin-left: 8px; font-size: 13px; color: #d9e0ff; }
pre {
  margin: 0;
  color: #a9c7ff;
  font: 700 14px/1.7 "SFMono-Regular", Consolas, monospace;
  white-space: pre-wrap;
}
.floating-command pre { padding: 18px; }

.solutions-shell {
  display: grid;
  grid-template-columns: 416px minmax(0, 1fr);
  align-items: start;
  background: #000;
}
.solution-sidebar {
  position: sticky;
  top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  padding: 68px 56px;
  display: flex;
  flex-direction: column;
  gap: 44px;
  color: #737373;
  font-size: 23px;
}
.solution-sidebar a.active { color: #fff; }
.solution-content { min-width: 0; }

.dev-panel,
.community-panel {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  padding: 70px clamp(34px, 4vw, 64px);
  overflow: hidden;
}
.dev-panel {
  border-radius: 22px 0 0 22px;
  margin: 0 34px 0 0;
  background: var(--panel);
}
.panel-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, .8fr);
  gap: 70px;
  align-items: start;
  margin-bottom: 92px;
}
.panel-copy h2 {
  margin: 0;
  font-weight: 300;
  font-size: clamp(52px, 4.6vw, 76px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.panel-copy p {
  margin: 0 0 42px;
  color: #e1e1e6;
  font-size: 21px;
  line-height: 1.45;
}

.web-feature-grid {
  display: grid;
  grid-template-columns: minmax(360px, 37%) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.accordion button {
  border: 0;
  border-radius: 10px;
  background: #343438;
  color: #fff;
  min-height: 68px;
  padding: 0 26px;
  text-align: left;
  cursor: pointer;
  transition: background .25s, color .25s, min-height .3s;
}
.accordion button span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 19px;
}
.accordion button i {
  float: right;
  font-style: normal;
  font-weight: 700;
}
.accordion button p {
  display: none;
  max-width: 380px;
  margin: 28px 0 0;
  color: #15152a;
  font-size: 16px;
  line-height: 1.55;
}
.accordion button.open {
  min-height: 210px;
  padding: 26px;
  background: var(--lavender);
  color: #17172a;
}
.accordion button.open p { display: block; }

.visual-stage {
  min-height: 520px;
  display: grid;
  grid-template-columns: 58% 42%;
  overflow: hidden;
  border-radius: 10px;
  background: #243447;
}
.ide-window { min-width: 0; background: #0b2435; }
.ide-top {
  height: 42px;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 0 14px;
  background: #273a4f;
  color: #c4d2e0;
  font-size: 13px;
}
.ide-top strong { font-size: 22px; color: #fff; }
.ide-body { display: grid; grid-template-columns: 40px 1fr; min-height: 478px; }
.ide-body aside {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  padding-top: 24px;
  background: #525574;
  color: #cbd2ee;
}
.ide-body pre {
  padding: 28px 34px;
  color: #9ac0e8;
  background: #062333;
  overflow: hidden;
}
.visual-product {
  position: relative;
  background: #4b69d7;
  overflow: hidden;
}
.visual-product::before,
.visual-product::after {
  content: "";
  position: absolute;
  inset: 8% 10%;
  border-radius: 8px;
}
.visual-product::before {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .35);
}
.visual-product::after {
  inset: auto 10% 11%;
  height: 72px;
  border-top: 1px solid rgba(255, 255, 255, .45);
}
.visual-stage[data-visual="experience"] .visual-product {
  background:
    linear-gradient(#292e63 0 32%, transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, .2) 0 19%, transparent 19% 21%, rgba(255, 255, 255, .2) 21% 38%, transparent 38% 41%, rgba(255, 255, 255, .2) 41% 58%, transparent 58%),
    #24242b;
}
.visual-stage[data-visual="infra"] .visual-product {
  background:
    radial-gradient(circle at 50% 52%, rgba(220, 255, 50, .6) 0 1%, transparent 2%),
    linear-gradient(180deg, #aeb9bc, #2d3032);
}
.visual-stage[data-visual="ai"] .visual-product {
  background: #0a2332;
}
.visual-stage[data-visual="ai"] .visual-product::before {
  content: "AI Assistant\A Generating response...";
  white-space: pre;
  padding: 34px;
  color: #fff;
  font-weight: 700;
  background: #071d2a;
}

.headless-panel {
  background: var(--ice);
  color: #090909;
}
.headless-panel .panel-copy p { color: #1a1e23; }
.dark-on-light { color: #050505; }
.headless-rail {
  display: flex;
  gap: 42px;
  overflow-x: auto;
  padding: 42px 0 72px;
  scroll-snap-type: x mandatory;
}
.headless-rail::-webkit-scrollbar { height: 0; }
.api-card {
  flex: 0 0 min(584px, 78vw);
  scroll-snap-align: center;
  display: grid;
  grid-template-columns: 35% 65%;
  position: relative;
  min-height: 340px;
}
.api-card em {
  position: absolute;
  top: -30px;
  left: 0;
  padding: 8px 28px;
  border-radius: 8px 8px 0 0;
  background: var(--acid);
  font-style: normal;
  font-size: 18px;
}
.api-card > div {
  background: #fff;
  color: #050505;
  padding: 28px;
  border-radius: 8px 0 0 8px;
}
.api-card pre {
  background: #082232;
  color: #9bbbe4;
  padding: 30px;
  border-radius: 0 8px 8px 0;
  overflow: hidden;
}
.phone-card,
.booking-card,
.event-card,
.table-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.phone-card::before,
.event-card > span,
.booking-card > span {
  content: "";
  display: block;
  height: 92px;
  border-radius: 4px;
  background: linear-gradient(135deg, #f6b996, #ffe7d7);
}
.phone-card span,
.table-card span {
  height: 9px;
  background: #e6e6e6;
}
.phone-card button,
.booking-card button,
.event-card button {
  border: 0;
  background: #000;
  color: #fff;
  height: 34px;
}
.table-card span { height: 42px; border: 1px solid #e8e8e8; background: #f7f7f7; }
.booking-card b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
}
.event-card > span { background: linear-gradient(135deg, #0d2a3a, #6f8799); }
.tech-row {
  display: grid;
  grid-template-columns: 220px repeat(8, 1fr);
  gap: 34px;
  align-items: center;
  color: #566170;
  font-size: 18px;
}
.tech-row span {
  font-weight: 800;
  text-align: center;
  font-size: 24px;
}

.app-panel,
.mcp-panel,
.community-panel { background: #000; }
.app-grid {
  display: grid;
  grid-template-columns: minmax(330px, 36%) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 30px;
}
.lime-card,
.mint-card {
  border-radius: 20px;
  padding: 48px;
  color: #050505;
  min-height: 280px;
}
.lime-card { background: var(--acid); }
.mint-card { background: #e6f5e3; }
.lime-card h3,
.mint-card h3 {
  margin: 0 0 30px;
  font-size: 29px;
  font-weight: 400;
}
.lime-card p,
.mint-card p { font-size: 18px; line-height: 1.5; margin: 0; }
.app-diagram {
  grid-row: 1 / 3;
  grid-column: 2;
  min-height: 590px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(229, 239, 241, .9), rgba(34, 38, 38, .6)),
    #6e7b7c;
  position: relative;
  overflow: hidden;
}
.module-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding-top: 50px;
}
.module-row span {
  width: 150px;
  padding: 18px;
  border-radius: 10px;
  background: #242424;
  box-shadow: 0 20px 28px rgba(0, 0, 0, .22);
}
.app-node {
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translateX(-50%);
  width: 240px;
  border-radius: 10px;
  overflow: hidden;
  background: #2f2f31;
}
.app-node span {
  display: block;
  height: 150px;
  background:
    linear-gradient(135deg, var(--acid), #fff 50%, transparent 50%),
    #dbe4ee;
  margin: 32px;
  border-radius: 8px;
}
.app-node strong {
  display: block;
  padding: 16px 24px 22px;
}
.market-row {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding: 0 26px;
}
.market-row span {
  height: 120px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .32);
}

.mcp-showcase,
.enterprise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 18px;
  overflow: hidden;
  min-height: 560px;
}
.chat-code {
  background: linear-gradient(140deg, #dcd8ff, var(--acid));
  padding: 58px;
}
.chat-bubble {
  width: 250px;
  margin-left: auto;
  padding: 18px;
  border-radius: 14px;
  background: #3a3b43;
}
.chat-code pre {
  margin: 44px auto 0;
  max-width: 520px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 12px;
  background: #1d1f25;
}
.reply { margin: 26px auto 0; max-width: 520px; color: #252525; }
.site-preview {
  background: #d7e5f4;
  color: #050505;
  padding: 78px 70px;
}
.site-preview h3 {
  margin: 22px 0;
  font-size: 52px;
  line-height: .9;
}
.enterprise-panel {
  background: #6f8f8c;
}
.enterprise-grid { grid-template-columns: 58% 42%; }
.stream-preview {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .82), transparent),
    linear-gradient(135deg, #020406, #4d7782);
  padding: 54px;
  border: 1px solid rgba(255, 255, 255, .4);
}
.stream-preview strong {
  display: block;
  margin-top: 80px;
  font-size: 54px;
  font-weight: 300;
}
.stream-preview span {
  display: block;
  width: 380px;
  height: 80px;
  margin: 28px 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, .2);
}
.stream-preview button {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, .12);
}
.enterprise-grid pre {
  padding: 60px;
  background: #131b28;
  color: #99bddb;
  overflow: hidden;
}

.client-panel {
  min-height: 90vh;
  background:
    linear-gradient(180deg, rgba(34, 37, 121, .95), rgba(34, 37, 121, .9)),
    var(--blue);
  border-radius: 18px 18px 0 0;
}
.client-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-weight: 300;
  font-size: clamp(72px, 7vw, 120px);
  line-height: 1.15;
  letter-spacing: -.05em;
}
.client-panel p {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 52px 0 34px;
  font-size: 22px;
  line-height: 1.55;
}
.client-panel .text-link { position: relative; z-index: 1; }

.community-panel {
  margin: 0;
  padding: 0;
}
.community-panel h2 {
  margin: 0;
  padding: 58px 82px 130px;
  font-weight: 300;
  font-size: clamp(54px, 5.5vw, 88px);
  line-height: 1.1;
}
.community-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 188px;
  padding: 0 82px;
  border-top: 1px solid #3d3d3d;
  color: #f7f7f7;
  font-size: clamp(38px, 4vw, 60px);
  transition: background .2s, color .2s;
}
.community-links a:hover,
.community-links a:focus {
  background: var(--acid);
  color: #050505;
}
.community-links b {
  font-size: 62px;
  font-weight: 300;
}

.code-evolve {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  min-height: 620px;
  background: #fff;
  color: #000;
  padding: 108px 80px 0;
  overflow: hidden;
}
.code-evolve h2 {
  margin: 0;
  font-weight: 300;
  font-size: clamp(64px, 6.2vw, 118px);
  line-height: 1;
  letter-spacing: -.055em;
}
.code-evolve h2 span { color: #342cff; }
.black-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 70px;
  margin-top: 20px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 22px;
}
.stats-art {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 340px;
  margin: 70px -80px 0;
  border-top: 1px solid #a9a9a9;
}
.stats-art span {
  border-right: 1px solid #a9a9a9;
  position: relative;
}
.stats-art span::after {
  content: "";
  position: absolute;
  inset: 26% 25%;
  background: linear-gradient(180deg, rgba(89, 68, 255, .8), rgba(89, 68, 255, 0));
}
.stats-art span:nth-child(2)::after { border-radius: 50%; background: conic-gradient(#4738f5 0 52%, #eee7ff 52%); }
.stats-art span:nth-child(3)::after { inset: 38% 0 38% 0; }
.stats-art span:nth-child(4)::after { inset: 28% 36%; }

.dev-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 70px;
  padding: 72px 100px 92px;
  background: #121212;
  color: #e8e8e8;
  border-top: 1px solid #2b2b2b;
}
.dev-footer p {
  max-width: 270px;
  color: #c8c8c8;
  line-height: 1.45;
}
.dev-footer nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.dev-footer strong {
  margin-bottom: 24px;
  font-size: 13px;
}
.dev-footer a { color: #c8c8c8; }

.mega {
  position: fixed;
  top: var(--nav-h);
  left: 50%;
  z-index: 60;
  width: min(1120px, calc(100vw - 48px));
  min-height: 440px;
  transform: translateX(-50%) translateY(-12px);
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 26px;
  padding: 28px;
  background: #080808;
  color: #fff;
  border: 1px solid #2c2c2c;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
}
.mega.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.menu-kicker {
  margin: 0 0 22px;
  color: #a9a9a9;
  font-size: 14px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.menu-item {
  border: 1px solid #272727;
  background: #151515;
  min-height: 116px;
  padding: 18px;
  text-align: left;
  cursor: pointer;
}
.menu-item strong { display: block; margin-bottom: 10px; font-size: 17px; }
.menu-item span { color: #a9a9a9; font-size: 13px; line-height: 1.3; }
.menu-item.active,
.menu-item:hover {
  background: var(--acid);
  color: #050505;
}
.menu-item.active span,
.menu-item:hover span { color: #222; }
.mega-right { position: relative; min-height: 360px; }
.preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .18s;
}
.preview.active { opacity: 1; }
.preview-card {
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #222579;
}
.preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.small-mega {
  grid-template-columns: repeat(3, 1fr);
  min-height: 160px;
  width: min(780px, calc(100vw - 48px));
}

@media (max-width: 1180px) {
  .solutions-shell { grid-template-columns: 280px minmax(0, 1fr); }
  .solution-sidebar { padding: 56px 28px; font-size: 19px; }
  .panel-copy,
  .web-feature-grid,
  .app-grid,
  .mcp-showcase,
  .enterprise-grid { grid-template-columns: 1fr; }
  .app-diagram { grid-column: auto; grid-row: auto; }
  .visual-stage { grid-template-columns: 1fr; }
  .visual-product { min-height: 360px; }
  .section-pill { min-width: 420px; right: 18px; }
  .floating-command { display: none; }
}

@media (max-width: 820px) {
  :root { --nav-h: 64px; }
  .dev-header { grid-template-columns: 1fr auto; padding: 0 18px; }
  .top-nav { display: none; }
  .mobile-menu { display: block; }
  .avatar-button { display: none; }
  .section-pill { display: none; }
  .hero-grid {
    min-height: 82vh;
    padding: 15vh 24px 12vh;
  }
  .hero-copy { max-width: 100%; }
  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(48px, 13.2vw, 58px);
    letter-spacing: -.06em;
  }
  .hero-copy p { font-size: 20px; }
  .hero-copy p {
    width: 100%;
    max-width: 342px;
    overflow-wrap: break-word;
  }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 22px; }
  .solutions-shell { display: block; }
  .solution-sidebar {
    position: sticky;
    top: var(--nav-h);
    z-index: 20;
    min-height: 0;
    flex-direction: row;
    overflow-x: auto;
    gap: 24px;
    padding: 18px 20px;
    background: #000;
    font-size: 16px;
  }
  .solution-sidebar a { flex: 0 0 auto; }
  .dev-panel,
  .community-panel {
    margin: 0;
    border-radius: 0;
    padding: 54px 22px;
  }
  .panel-copy { gap: 28px; margin-bottom: 46px; }
  .panel-copy h2,
  .client-panel h2,
  .community-panel h2 { font-size: 48px; }
  .panel-copy p { font-size: 18px; }
  .web-feature-grid { gap: 24px; }
  .accordion button.open { min-height: 230px; }
  .headless-rail { gap: 26px; }
  .api-card {
    grid-template-columns: 1fr;
    flex-basis: 86vw;
  }
  .api-card > div,
  .api-card pre { border-radius: 8px; }
  .tech-row { grid-template-columns: repeat(2, 1fr); }
  .app-diagram { min-height: 480px; }
  .module-row { flex-wrap: wrap; }
  .community-panel { padding: 0; }
  .community-panel h2 { padding: 54px 24px 80px; }
  .community-links a {
    min-height: 132px;
    padding: 0 24px;
    font-size: 34px;
  }
  .code-evolve {
    display: block;
    padding: 72px 24px 0;
  }
  .code-evolve h2 { font-size: 54px; }
  .black-cta { margin-top: 28px; }
  .stats-art { margin: 52px -24px 0; grid-template-columns: repeat(2, 1fr); }
  .dev-footer { grid-template-columns: 1fr; padding: 54px 24px 100px; }
  .mega { display: none; }
}

/* Shared generated BUGENCE brand mark. */
.brand-mark,
.bugence-logo::before,
.logo::before {
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;
  display: inline-block !important;
  border-radius: 0 !important;
  background: url("../Images/bugence-logo-mark.png") center / cover no-repeat !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10) !important;
  overflow: hidden !important;
}

.brand-mark::after,
.bugence-logo::after,
.logo::after {
  display: none !important;
  content: none !important;
}

.bugence-logo,
.logo {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.bugence-logo::before,
.logo::before {
  content: "" !important;
}
