.otherside-devs-page {
  background: #050507;
  color: var(--text);
}

.otherside-devs-page .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  display: inline-block;
}

.odc-topbar {
  position: fixed;
  inset: 16px 16px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  width: min(1500px, calc(100% - 32px));
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(5, 5, 8, 0.72);
  backdrop-filter: blur(18px);
}

.odc-brand,
.odc-nav,
.odc-top-action,
.odc-button {
  min-width: 0;
}

.odc-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font: 800 0.86rem/1 var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}

.odc-brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
}

.odc-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.odc-nav a,
.odc-top-action,
.odc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: 800 0.76rem/1 var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}

.odc-nav a {
  padding: 10px 13px;
  color: var(--text-muted);
}

.odc-top-action,
.odc-button {
  padding: 12px 17px;
}

.odc-top-action {
  background: var(--green);
  border-color: var(--green);
  color: #06120b;
}

.odc-button svg,
.odc-top-action svg {
  width: 16px;
  height: 16px;
  flex: none;
}

.odc-nav a:hover,
.odc-button:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.odc-top-action:hover,
.odc-button-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.odc-main {
  overflow: hidden;
}

.odc-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 64px));
  display: grid;
  align-items: end;
  padding: 128px clamp(20px, 5vw, 72px) 76px;
  isolation: isolate;
}

.odc-hero-media,
.odc-hero-media img,
.odc-hero-shade {
  position: absolute;
  inset: 0;
}

.odc-hero-media {
  z-index: -2;
  overflow: hidden;
}

.odc-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.odc-hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 34%, rgba(0, 0, 0, 0.18) 74%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.14) 52%, #050507 100%);
}

.odc-hero-content {
  max-width: 780px;
  min-width: 0;
  width: 100%;
}

.odc-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: #c9b8ff;
  font: 800 0.74rem/1.25 var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}

.odc-hero h1,
.odc-section h2,
.odc-split h2,
.odc-community-banner h2,
.odc-final h2 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0;
  color: #fff;
}

.odc-hero h1 {
  font-size: 7.6rem;
  line-height: 0.88;
  max-width: 9ch;
}

.odc-tagline {
  margin: 18px 0 0;
  color: #b995ff;
  font: 800 1.05rem/1.35 var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}

.odc-hero-copy {
  max-width: 62ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.58;
}

.odc-hero-actions,
.odc-office-links,
.odc-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.odc-button-primary {
  background: var(--green);
  border-color: var(--green);
  color: #06120b;
}

.odc-section,
.odc-split,
.odc-community-banner,
.odc-final {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
}

.odc-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 80px);
  align-items: end;
  padding: 54px 0 34px;
}

.odc-intro h2,
.odc-section h2,
.odc-split h2,
.odc-community-banner h2,
.odc-final h2 {
  font-size: 3.7rem;
  line-height: 0.98;
}

.odc-intro p,
.odc-split p,
.odc-community-banner p,
.odc-final p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.odc-section {
  padding: 52px 0;
}

.odc-section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.odc-tool-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.odc-tool-card {
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    #0d0d11;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.odc-tool-card:hover {
  transform: translateY(-2px);
  border-color: rgba(74, 222, 128, 0.38);
  background:
    linear-gradient(180deg, rgba(74, 222, 128, 0.09), rgba(255, 255, 255, 0.025)),
    #101013;
}

.odc-tool-card svg {
  width: 30px;
  height: 30px;
  color: var(--green);
}

.odc-tool-card strong {
  color: #fff;
  font-size: 1rem;
}

.odc-tool-card span {
  color: var(--text-muted);
  line-height: 1.48;
  font-size: 0.93rem;
}

.odc-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(20px, 5vw, 70px);
  align-items: center;
  padding: 62px 0;
}

.odc-office-copy {
  min-width: 0;
}

.odc-event-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 8px;
  background: #101015;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.odc-event-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
}

.odc-event-card h3 {
  margin: 0 0 16px;
  font-family: var(--sans);
  font-size: 1.85rem;
  line-height: 1.05;
  color: #fff;
}

.odc-event-facts {
  display: grid;
  gap: 8px;
  margin: 0;
}

.odc-event-facts div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.odc-event-facts dt {
  color: var(--text-dim);
  font: 800 0.7rem/1.35 var(--mono);
  letter-spacing: 0;
  text-transform: uppercase;
}

.odc-event-facts dd {
  margin: 0;
  color: var(--text);
  line-height: 1.35;
}

.odc-community-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #0e0e13;
}

.odc-community-banner img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  object-position: center;
}

.odc-community-banner > div {
  padding: 12px 8px 12px 0;
}

.odc-asset-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 14px;
}

.odc-asset-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #0f0f14;
  overflow: hidden;
}

.odc-asset-card img {
  width: 100%;
  aspect-ratio: 16 / 8.65;
  object-fit: cover;
}

.odc-asset-card-small img {
  aspect-ratio: 1.5 / 1;
}

.odc-asset-card figcaption {
  display: grid;
  gap: 5px;
  padding: 16px;
}

.odc-asset-card strong {
  color: #fff;
  font-size: 1rem;
}

.odc-asset-card span {
  color: var(--text-muted);
  line-height: 1.45;
  font-size: 0.9rem;
}

.odc-final {
  padding: 58px 0 74px;
  text-align: center;
}

.odc-final h2,
.odc-final p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.odc-final-actions {
  justify-content: center;
}

@media (max-width: 1080px) {
  .odc-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .odc-topbar {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .odc-nav {
    display: none;
  }
}

@media (max-width: 820px) {
  .odc-topbar {
    inset: 10px 10px auto;
    width: calc(100% - 20px);
  }

  .odc-brand span {
    display: none;
  }

  .odc-top-action span {
    display: none;
  }

  .odc-hero {
    min-height: calc(100svh - 58px);
    padding: 104px 18px 48px;
  }

  .odc-hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.58) 58%, rgba(0, 0, 0, 0.2) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.18) 52%, #050507 100%);
  }

  .odc-hero h1 {
    font-size: 5.4rem;
    max-width: 8ch;
  }

  .odc-intro h2,
  .odc-section h2,
  .odc-split h2,
  .odc-community-banner h2,
  .odc-final h2 {
    font-size: 2.8rem;
  }

  .odc-section,
  .odc-split,
  .odc-community-banner,
  .odc-final,
  .odc-intro {
    width: min(100% - 28px, 1320px);
  }

  .odc-intro,
  .odc-split,
  .odc-community-banner,
  .odc-asset-grid {
    grid-template-columns: 1fr;
  }

  .odc-community-banner > div {
    padding: 0;
  }

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

  .odc-tool-card {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .odc-hero-actions,
  .odc-office-links,
  .odc-final-actions {
    display: grid;
  }

  .odc-button {
    width: 100%;
    white-space: normal;
    min-height: 46px;
    text-align: center;
  }

  .odc-button span {
    overflow-wrap: anywhere;
  }

  .odc-event-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .odc-hero h1 {
    font-size: 3.5rem;
    max-width: 100%;
  }

  .odc-intro h2,
  .odc-section h2,
  .odc-split h2,
  .odc-community-banner h2,
  .odc-final h2 {
    font-size: 2.2rem;
  }

  .odc-tagline,
  .odc-hero-copy,
  .odc-intro p,
  .odc-split p,
  .odc-community-banner p,
  .odc-final p {
    font-size: 0.98rem;
  }
}

@media (max-width: 430px) {
  .odc-hero h1 {
    font-size: 2.45rem;
    line-height: 0.96;
  }
}
