:root {
  --dk-bg: #08090a;
  --dk-bg-2: #101214;
  --dk-panel: rgba(18, 20, 23, 0.92);
  --dk-panel-2: rgba(14, 16, 18, 0.95);
  --dk-line: rgba(255, 255, 255, 0.105);
  --dk-line-gold: rgba(240, 182, 66, 0.28);
  --dk-text: #f5f1e8;
  --dk-muted: #b9bab5;
  --dk-dim: #858983;
  --dk-gold: #f0b642;
  --dk-gold-2: #ffd36d;
  --dk-green: #78c05f;
  --dk-blue: #83d9ef;
  --dk-radius: 10px;
  --dk-radius-lg: 18px;
  --dk-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--dk-text);
  background:
    radial-gradient(circle at 72% 6%, rgba(240, 182, 66, 0.14), transparent 31rem),
    radial-gradient(circle at 12% 26%, rgba(255, 255, 255, 0.045), transparent 23rem),
    linear-gradient(180deg, #141617 0%, #0b0d0e 42%, var(--dk-bg) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 211, 109, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 24px 24px, 96px 96px, 96px 96px;
  mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.32) 82%, transparent);
  opacity: 0.58;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 18%, rgba(240, 182, 66, 0.08), transparent 38rem),
    radial-gradient(ellipse at 50% 72%, rgba(240, 182, 66, 0.055), transparent 44rem);
}

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

a:hover {
  color: var(--dk-gold-2);
}

.dk-muted {
  color: var(--dk-muted);
}

.text-gold {
  color: var(--dk-gold-2);
}

.dk-navbar {
  background: rgba(9, 10, 11, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.dk-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dk-text) !important;
  font-weight: 850;
  letter-spacing: -0.02em;
}

.dk-brand-text {
  white-space: nowrap;
}

.dk-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(240, 182, 66, 0.34);
  border-radius: 14px;
  color: var(--dk-gold-2);
  background: linear-gradient(145deg, rgba(240, 182, 66, 0.2), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 0 0 1px rgba(255, 211, 109, 0.18),
    0 14px 34px rgba(0, 0, 0, 0.34),
    0 0 54px rgba(240, 182, 66, 0.14);
  font-weight: 950;
}

.dk-mark-sm {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  font-size: 0.78rem;
}

.navbar .nav-link {
  border-radius: 999px;
  color: #d7d4cc;
  font-size: 0.94rem;
  font-weight: 650;
  padding-inline: 0.9rem !important;
}

.navbar .nav-link:hover {
  color: var(--dk-text);
  background: rgba(255, 255, 255, 0.055);
}

.dk-toggler {
  border-color: var(--dk-line);
  background: rgba(255, 255, 255, 0.04);
}

.dk-toggler .navbar-toggler-icon {
  filter: invert(1) grayscale(1);
  opacity: 0.86;
}

.dk-btn-outline {
  border: 1px solid rgba(240, 182, 66, 0.36);
  border-radius: 999px;
  color: var(--dk-gold-2);
  background: rgba(240, 182, 66, 0.085);
  font-weight: 820;
  padding: 0.55rem 1rem;
}

.dk-btn-outline:hover {
  border-color: rgba(240, 182, 66, 0.56);
  color: #fff3cf;
  background: rgba(240, 182, 66, 0.16);
}

.dk-hero {
  position: relative;
  padding-top: clamp(26px, 4vw, 54px);
  padding-bottom: clamp(20px, 3.2vw, 38px);
}

.dk-hero::before {
  content: "";
  position: absolute;
  inset: 3rem auto auto 50%;
  width: min(74rem, 88vw);
  height: 22rem;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(240, 182, 66, 0.085), transparent 68%);
  filter: blur(12px);
}

.dk-hero-shell {
  position: relative;
  padding: clamp(18px, 2.2vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.006)),
    rgba(8, 10, 11, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.dk-section {
  padding: clamp(30px, 4.4vw, 58px) 0;
}

.dk-compact-section {
  padding-top: clamp(14px, 2.4vw, 26px);
}

.dk-bottom-section {
  padding-bottom: clamp(48px, 7vw, 88px);
}

.dk-hero > .container-xl,
.dk-section > .container-xl {
  position: relative;
  z-index: 1;
}

.dk-kicker {
  color: var(--dk-gold-2);
  font-size: 0.75rem;
  font-weight: 860;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dk-title {
  max-width: 760px;
  color: var(--dk-text);
  font-size: clamp(2.45rem, 4.6vw, 4.72rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.dk-title-accent {
  color: var(--dk-gold-2);
  overflow-wrap: break-word;
}

.dk-lead {
  max-width: 590px;
  color: #cfccc4;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.68;
}

.dk-hero-actions {
  max-width: 560px;
}

.dk-hero-panel {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--dk-line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 68% 22%, rgba(240, 182, 66, 0.19), transparent 18rem),
    radial-gradient(circle at 28% 70%, rgba(255, 255, 255, 0.05), transparent 16rem),
    linear-gradient(145deg, rgba(28, 31, 34, 0.96), rgba(12, 14, 16, 0.98));
  box-shadow: var(--dk-shadow);
}

.dk-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 18px 18px, 78px 78px, 78px 78px;
  opacity: 0.34;
}

.dk-hero-panel::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 38px;
  width: min(500px, 88%);
  height: 132px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 211, 109, 0.17), transparent 40%),
    repeating-radial-gradient(ellipse at center, transparent 0 27px, rgba(240, 182, 66, 0.1) 28px 29px);
  opacity: 0.9;
}

.dk-ghost-notes {
  position: absolute;
  top: 22px;
  left: 24px;
  color: rgba(255, 211, 109, 0.16);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.76rem;
  line-height: 2;
}

.dk-orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 18px rgba(240, 182, 66, 0.13));
}

.dk-ring {
  position: absolute;
  border: 1px solid rgba(240, 182, 66, 0.22);
  border-radius: 50%;
  transform: rotateX(62deg);
}

.dk-ring.one {
  width: 390px;
  height: 390px;
}

.dk-ring.two {
  width: 260px;
  height: 260px;
}

.dk-ring.three {
  width: 165px;
  height: 165px;
  border-color: rgba(255, 211, 109, 0.34);
}

.dk-core {
  position: relative;
  z-index: 3;
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  border: 2px solid rgba(255, 211, 109, 0.56);
  border-radius: 23px;
  color: var(--dk-gold-2);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.02)), #191b1d;
  box-shadow:
    inset 0 0 22px rgba(240, 182, 66, 0.15),
    0 0 36px rgba(240, 182, 66, 0.32),
    0 34px 54px rgba(0, 0, 0, 0.5);
  font-size: 2.35rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.dk-platform-lines {
  position: absolute;
  left: 50%;
  bottom: 50px;
  z-index: 2;
  width: min(420px, 78%);
  height: 96px;
  transform: translateX(-50%);
}

.dk-platform-lines span {
  position: absolute;
  inset: auto 0 0;
  height: 76px;
  border: 1px solid rgba(240, 182, 66, 0.36);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(240, 182, 66, 0.18), transparent 56%);
  box-shadow: inset 0 1px 0 rgba(255, 216, 120, 0.16);
}

.dk-platform-lines span:nth-child(2) {
  inset: auto 54px 18px;
  height: 50px;
  border-color: rgba(255, 211, 109, 0.5);
}

.dk-platform-lines span:nth-child(3) {
  inset: auto 110px 36px;
  height: 29px;
  border-color: rgba(240, 182, 66, 0.66);
}

.dk-floating-card {
  position: absolute;
  z-index: 4;
  width: min(228px, 42%);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--dk-radius);
  background: rgba(11, 13, 16, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.dk-floating-card strong,
.dk-floating-card small {
  display: block;
}

.dk-floating-card strong {
  color: var(--dk-text);
}

.dk-floating-card small {
  color: var(--dk-muted);
}

.dk-float-a {
  top: 42px;
  left: 34px;
}

.dk-float-b {
  right: 30px;
  bottom: 46px;
}

.dk-status-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--dk-green);
  box-shadow: 0 0 16px rgba(120, 192, 95, 0.8);
}

.dk-mini-node {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 64px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--dk-radius);
  color: var(--dk-gold-2);
  background: rgba(17, 19, 21, 0.84);
  box-shadow: var(--dk-shadow);
  font-weight: 900;
}

.dk-node-a {
  left: 76px;
  bottom: 126px;
}

.dk-node-b {
  right: 84px;
  top: 102px;
  color: var(--dk-blue);
}

.dk-node-c {
  left: 50%;
  top: 42px;
  transform: translateX(-50%);
  color: var(--dk-green);
}

.dk-visual-meter {
  position: absolute;
  right: 30px;
  top: 28px;
  z-index: 4;
  width: 108px;
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.dk-visual-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--dk-gold-2), var(--dk-gold));
}

.dk-status-rail {
  position: relative;
  z-index: 2;
}

.dk-stat {
  min-height: 78px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--dk-radius);
  background: rgba(255, 255, 255, 0.032);
}

.dk-stat strong {
  display: block;
  color: var(--dk-text);
  font-size: 1.45rem;
  line-height: 1;
}

.dk-stat span {
  color: var(--dk-muted);
  font-size: 0.82rem;
}

.dk-card {
  position: relative;
  height: 100%;
  min-width: 0;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--dk-line);
  border-radius: var(--dk-radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.01)),
    var(--dk-panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.2);
}

.dk-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 0%, rgba(255, 211, 109, 0.055), transparent 13rem);
  opacity: 0.9;
}

a.dk-card,
.dk-app-card {
  transition: border-color 180ms ease, transform 180ms ease;
}

a.dk-card:hover,
.dk-app-card:hover {
  transform: translateY(-2px);
  border-color: var(--dk-line-gold);
}

.dk-card > * {
  position: relative;
  z-index: 1;
}

.dk-card p {
  color: var(--dk-muted);
  line-height: 1.58;
}

.dk-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(240, 182, 66, 0.24);
  border-radius: 12px;
  color: var(--dk-gold-2);
  background: rgba(240, 182, 66, 0.105);
  font-weight: 930;
}

.dk-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(240, 182, 66, 0.24);
  border-radius: 999px;
  color: #ffdf91;
  background: rgba(240, 182, 66, 0.095);
  font-size: 0.76rem;
  font-weight: 780;
  padding: 0.34rem 0.6rem;
}

.dk-app-title {
  color: var(--dk-text);
  font-weight: 900;
  letter-spacing: -0.025em;
}

.dk-hub-card {
  display: grid !important;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.dk-hub-art {
  position: relative;
  min-height: 168px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 182, 66, 0.18), transparent 54%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
}

.dk-hub-art .dk-icon {
  position: absolute;
  left: 20px;
  top: 22px;
}

.dk-hub-art i {
  position: absolute;
  display: block;
}

.dk-hub-apps i {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #ffd66b, #b87918);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}

.dk-hub-apps i:nth-of-type(1) { left: 62px; top: 44px; }
.dk-hub-apps i:nth-of-type(2) { left: 44px; top: 76px; }
.dk-hub-apps i:nth-of-type(3) { left: 80px; top: 76px; }

.dk-hub-articles {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.11), transparent 54%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
}

.dk-hub-articles i {
  left: 58px;
  top: 48px;
  width: 56px;
  height: 82px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, #404347, #17191b);
  box-shadow: 15px 12px 0 rgba(255, 255, 255, 0.04);
}

.dk-hub-community {
  background:
    radial-gradient(circle at 50% 50%, rgba(120, 192, 95, 0.22), transparent 54%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent);
}

.dk-hub-community i {
  width: 32px;
  height: 24px;
  border-radius: 22px 22px 6px 6px;
  background: linear-gradient(180deg, #91d576, #4c9d41);
}

.dk-hub-community i::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -21px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #93d76c;
}

.dk-hub-community i:nth-of-type(1) { left: 48px; top: 108px; }
.dk-hub-community i:nth-of-type(2) { left: 86px; top: 106px; transform: scale(0.9); }
.dk-hub-community i:nth-of-type(3) { left: 68px; top: 82px; transform: scale(0.72); opacity: 0.85; }

.dk-hub-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.dk-hub-copy p {
  margin-bottom: 0.8rem;
}

.dk-hub-copy span {
  color: var(--dk-gold-2);
  font-weight: 760;
}

.dk-app-strip > [class*="col-"] {
  min-width: 0;
}

.dk-app-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
}

.dk-app-card.featured {
  min-height: 286px;
  border-color: rgba(240, 182, 66, 0.3);
  background:
    radial-gradient(circle at 88% 12%, rgba(240, 182, 66, 0.17), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.012)),
    var(--dk-panel);
}

.dk-app-card.compact {
  min-height: 250px;
}

.dk-app-card-dim {
  border-style: dashed;
}

.dk-app-card p {
  min-width: 0;
  font-size: 0.94rem;
}

.dk-app-visual {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 10px 0 12px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  color: var(--dk-text);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 211, 109, 0.18), transparent 68%),
    rgba(255, 255, 255, 0.03);
  font-weight: 950;
}

.dk-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  padding-top: 16px;
}

.dk-tag-row span {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 6px;
  color: #cbc8c0;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  padding: 0.24rem 0.42rem;
}

.dk-section-heading {
  margin-bottom: 1.05rem;
}

.dk-section-heading-compact {
  align-items: center;
  margin-bottom: 1.5rem;
}

.dk-section-heading-compact .dk-kicker {
  margin-bottom: 0 !important;
}

.dk-section-heading h2 {
  color: var(--dk-text);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.dk-category-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 18px;
}

.dk-category-card h3,
.dk-category-card p {
  min-width: 0;
}

.dk-category-card p {
  font-size: 0.92rem;
}

.dk-category-count {
  display: block;
  margin-top: 0.35rem;
  color: var(--dk-gold-2);
  font-size: 0.82rem;
  font-weight: 760;
}

.dk-article-card {
  overflow: hidden;
  padding: 14px;
}

.dk-article-thumb {
  position: relative;
  min-height: 118px;
  margin: -1px -1px 16px;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(240, 182, 66, 0.17) 1px, transparent 1px),
    linear-gradient(rgba(240, 182, 66, 0.13) 1px, transparent 1px),
    radial-gradient(circle at 57% 52%, rgba(240, 182, 66, 0.42), transparent 18%),
    #151515;
  background-size: 17px 17px, 17px 17px, auto, auto;
}

.dk-article-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.dk-thumb-lock::after {
  width: 42px;
  height: 34px;
  margin: auto;
  border: 3px solid rgba(255, 219, 130, 0.72);
  border-radius: 6px;
  box-shadow: 0 0 24px rgba(240, 182, 66, 0.28);
}

.dk-thumb-work {
  background:
    radial-gradient(circle at 58% 28%, rgba(115, 205, 234, 0.46), transparent 14%),
    linear-gradient(135deg, rgba(40, 148, 194, 0.3), transparent 44%),
    linear-gradient(180deg, #11232a, #17130f);
}

.dk-thumb-work::after {
  width: 72px;
  height: 42px;
  margin: auto;
  border: 2px solid rgba(110, 210, 240, 0.5);
  box-shadow: 0 43px 0 -35px rgba(240, 182, 66, 0.35);
}

.dk-thumb-android {
  background:
    radial-gradient(circle at 51% 53%, rgba(130, 220, 65, 0.36), transparent 32%),
    linear-gradient(180deg, #0a120b, #161817);
}

.dk-thumb-android::after {
  content: "A";
  color: #93d755;
  font-size: 64px;
  font-weight: 850;
  text-align: center;
  line-height: 118px;
}

.dk-article-card small {
  color: var(--dk-dim);
}

.dk-panel-grid {
  align-items: stretch;
}

.dk-poll-card {
  border-color: rgba(240, 182, 66, 0.2);
}

.dk-poll-row {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 46px;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.dk-poll-row strong {
  color: var(--dk-text);
  text-align: right;
}

.dk-tiny {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--dk-gold-2);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.82rem;
  font-weight: 840;
}

.dk-bar {
  display: block;
  height: 6px;
  margin-top: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.dk-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--dk-gold-2), var(--dk-gold));
}

.ofs-hero {
  padding-top: clamp(28px, 4.8vw, 68px);
}

.ofs-hero-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background:
    radial-gradient(circle at 74% 24%, rgba(240, 182, 66, 0.16), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.008)),
    rgba(8, 10, 11, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.ofs-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255, 211, 109, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 24px 24px, 88px 88px;
  opacity: 0.34;
}

.ofs-hero-shell > * {
  position: relative;
  z-index: 1;
}

.ofs-soon {
  display: block;
  color: var(--dk-muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.ofs-vault-card {
  overflow: hidden;
  min-height: 360px;
  border-color: rgba(240, 182, 66, 0.24);
  background:
    radial-gradient(circle at 68% 18%, rgba(255, 211, 109, 0.17), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012)),
    var(--dk-panel-2);
}

.ofs-vault-mark {
  display: grid;
  width: 104px;
  aspect-ratio: 1;
  margin-bottom: 28px;
  place-items: center;
  border: 1px solid rgba(255, 211, 109, 0.5);
  border-radius: 22px;
  color: var(--dk-gold-2);
  background:
    radial-gradient(circle at 50% 50%, rgba(240, 182, 66, 0.2), transparent 70%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 24px rgba(240, 182, 66, 0.12),
    0 24px 54px rgba(0, 0, 0, 0.34);
  font-size: 2.1rem;
  font-weight: 950;
}

.ofs-vault-lines {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.ofs-vault-lines span {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.ofs-vault-lines span:nth-child(1) { width: 82%; }
.ofs-vault-lines span:nth-child(2) { width: 58%; }
.ofs-vault-lines span:nth-child(3) { width: 70%; }

.ofs-section-head {
  max-width: 780px;
  margin-bottom: 1.2rem;
}

.ofs-section-head h2 {
  color: var(--dk-text);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.ofs-trust-card {
  min-height: 172px;
}

.ofs-trust-card span,
.ofs-step span {
  display: block;
  color: var(--dk-text);
  font-weight: 850;
}

.ofs-trust-card span {
  margin-bottom: 0.55rem;
}

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

.ofs-step {
  min-height: 178px;
}

.ofs-step strong {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid rgba(240, 182, 66, 0.28);
  border-radius: 12px;
  color: var(--dk-gold-2);
  background: rgba(240, 182, 66, 0.1);
}

.ofs-plan-card {
  min-height: 100%;
}

.ofs-plan-pro {
  border-color: rgba(240, 182, 66, 0.28);
}

.ofs-list {
  display: grid;
  gap: 0.72rem;
  margin: 1.2rem 0 0;
  padding: 0;
  color: var(--dk-muted);
  list-style: none;
}

.ofs-list li {
  position: relative;
  min-width: 0;
  padding-left: 1.25rem;
  line-height: 1.55;
}

.ofs-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dk-gold-2);
  box-shadow: 0 0 14px rgba(240, 182, 66, 0.42);
}

.ofs-preview-card,
.ofs-safety-card {
  overflow: hidden;
}

.ofs-format-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.2rem 0;
}

.ofs-format-grid span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #ffdf91;
  background: rgba(240, 182, 66, 0.08);
  font-size: 0.82rem;
  font-weight: 780;
  padding: 0.42rem 0.72rem;
}

.ofs-safety-card {
  border-color: rgba(240, 182, 66, 0.22);
}

.ofs-safety-list {
  margin-top: 0;
}

.dk-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--dk-line);
  background:
    radial-gradient(circle at 20% 0%, rgba(240, 182, 66, 0.08), transparent 22rem),
    rgba(0, 0, 0, 0.24);
}

.dk-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.4;
}

.dk-footer > .container-xl {
  position: relative;
  z-index: 1;
}

.footer-title {
  margin-bottom: 1rem;
  color: var(--dk-gold-2);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: var(--dk-muted);
}

.footer-links a:hover {
  color: var(--dk-gold-2);
}

.dk-footer-line {
  border-top: 1px solid var(--dk-line);
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 14px 0 4px;
  }

  .navbar-nav {
    align-items: stretch !important;
  }

  .navbar .nav-link {
    padding: 0.75rem 0.85rem !important;
  }

  .dk-hero-panel {
    min-height: 370px;
  }

  .dk-node-a {
    left: 60px;
  }

  .dk-node-b {
    right: 60px;
  }
}

@media (max-width: 575.98px) {
  body {
    overflow-x: clip;
  }

  .container-xl,
  .row,
  [class*="col-"] {
    min-width: 0;
  }

  .dk-hero {
    padding-top: 28px;
  }

  .dk-hero-shell {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .dk-title {
    max-width: 100%;
    font-size: clamp(2.05rem, 8.6vw, 2.55rem);
    line-height: 1.08;
    letter-spacing: -0.055em;
    overflow-wrap: normal;
    word-break: normal;
  }

  .dk-title span {
    display: block;
    max-width: 100%;
    white-space: normal;
  }

  .dk-title-accent {
    overflow-wrap: break-word;
  }

  .dk-lead,
  .dk-card,
  .dk-card p,
  .dk-app-card,
  .dk-app-card p,
  .dk-hub-copy,
  .dk-hub-copy p {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .dk-hero-actions .btn {
    width: 100%;
  }

  .dk-hero-panel {
    width: 100%;
    max-width: 100%;
    min-height: 350px;
    border-radius: 18px;
  }

  .dk-ring.one {
    width: 255px;
    height: 255px;
  }

  .dk-ring.two {
    width: 170px;
    height: 170px;
  }

  .dk-ring.three {
    width: 112px;
    height: 112px;
  }

  .dk-core {
    width: 92px;
    height: 92px;
    border-radius: 18px;
    font-size: 1.7rem;
  }

  .dk-platform-lines {
    bottom: 68px;
    width: min(300px, 82%);
  }

  .dk-ghost-notes {
    top: 16px;
    left: 16px;
    font-size: 0.68rem;
  }

  .dk-floating-card {
    width: auto;
    max-width: calc(100% - 40px);
    padding: 12px;
  }

  .dk-float-a {
    top: 26px;
    left: 18px;
  }

  .dk-float-b {
    right: auto;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .dk-mini-node {
    width: 52px;
    height: 56px;
  }

  .dk-node-a {
    left: 20px;
    bottom: 126px;
  }

  .dk-node-b {
    top: 106px;
    right: 20px;
  }

  .dk-node-c,
  .dk-visual-meter {
    display: none;
  }

  .dk-stat {
    min-height: 70px;
  }

  .dk-card {
    border-radius: 16px;
  }

  .dk-hub-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .dk-hub-art {
    min-height: 124px;
  }

  .dk-app-card.featured,
  .dk-app-card.compact {
    min-height: 0;
  }

  .dk-category-card {
    grid-template-columns: 42px minmax(0, 1fr);
  }


  .dk-section-heading {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .dk-section-heading > *,
  .dk-section-heading p,
  .dk-section-heading h2,
  .dk-section-heading .dk-muted {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .dk-app-strip,
  .dk-category-grid,
  .dk-article-grid,
  .dk-panel-grid {
    --bs-gutter-x: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .dk-app-strip > [class*="col-"],
  .dk-category-grid > [class*="col-"],
  .dk-article-grid > [class*="col-"],
  .dk-panel-grid > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .dk-app-card,
  .dk-category-card,
  .dk-article-card,
  .dk-panel-grid .dk-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .dk-app-card.featured,
  .dk-app-card.compact {
    min-width: 0;
    min-height: 0;
  }

  .dk-app-card *,
  .dk-category-card *,
  .dk-article-card *,
  .dk-panel-grid .dk-card * {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: break-word;
  }

  .dk-tag-row,
  .dk-app-visual,
  .dk-article-thumb {
    max-width: 100%;
  }

  .dk-poll-row {
    grid-template-columns: 30px minmax(0, 1fr) 42px;
  }

  .ofs-hero-shell {
    padding: 18px;
    border-radius: 18px;
  }

  .ofs-hero .row {
    --bs-gutter-x: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .ofs-hero [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
  }

  .ofs-hero .dk-title {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .ofs-vault-card {
    min-height: 0;
  }

  .ofs-vault-mark {
    width: 84px;
    margin-bottom: 22px;
    border-radius: 18px;
    font-size: 1.7rem;
  }

  .ofs-section-head,
  .ofs-section-head h2,
  .ofs-section-head p,
  .ofs-trust-card,
  .ofs-step,
  .ofs-plan-card,
  .ofs-preview-card,
  .ofs-safety-card {
    max-width: 100%;
    min-width: 0;
  }

  .ofs-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .ofs-format-grid {
    gap: 0.45rem;
  }
}
/* === DK LOWER MOBILE FINAL CONTAINMENT START === */
@media (max-width: 575.98px) {
  .dk-hero,
  .dk-section,
  .dk-footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: clip;
  }

  .dk-hero > .container-xl,
  .dk-section > .container-xl,
  .dk-footer > .container-xl {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: clip;
  }

  .ofs-hero > .container-xl {
    width: min(calc(100vw - 24px), 366px) !important;
    max-width: min(calc(100vw - 24px), 366px) !important;
    margin-left: 12px !important;
    margin-right: auto !important;
  }

  .ofs-hero-shell,
  .ofs-hero-shell .row,
  .ofs-hero-shell [class*="col-"],
  .ofs-hero-shell .dk-lead {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .dk-section-heading {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.85rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .dk-section-heading > *,
  .dk-section-heading .dk-muted,
  .dk-section-heading p,
  .dk-section-heading h2,
  .dk-section-heading .btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .dk-section-heading .dk-muted {
    max-width: 34ch !important;
    overflow-wrap: break-word;
  }

  .dk-section-heading-compact {
    margin-bottom: 1.25rem !important;
  }

  .dk-app-strip,
  .dk-category-grid,
  .dk-article-grid,
  .dk-panel-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    --bs-gutter-x: 0;
    --bs-gutter-y: 1rem;
  }

  .dk-app-strip > *,
  .dk-category-grid > *,
  .dk-article-grid > *,
  .dk-panel-grid > * {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: 0 0 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .dk-app-card,
  .dk-app-card.featured,
  .dk-app-card.compact,
  .dk-category-card,
  .dk-article-card,
  .dk-panel-grid .dk-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    box-sizing: border-box;
  }

  .dk-app-card.featured {
    padding: 18px !important;
  }

  .dk-app-card .btn,
  .dk-app-card .dk-chip,
  .dk-app-card .dk-tag-row,
  .dk-category-card > *,
  .dk-article-card > *,
  .dk-panel-grid .dk-card > * {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .dk-app-card h3,
  .dk-app-card p,
  .dk-category-card h3,
  .dk-category-card p,
  .dk-article-card h3,
  .dk-article-card p,
  .dk-panel-grid .dk-card h2,
  .dk-panel-grid .dk-card h3,
  .dk-panel-grid .dk-card p {
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
  }

  .dk-app-card.featured .dk-app-title {
    font-size: clamp(1.8rem, 8vw, 2.25rem) !important;
  }
}
/* === DK LOWER MOBILE FINAL CONTAINMENT END === */

/* Compact section headings after helper text cleanup */
.dk-section-heading-compact {
  margin-bottom: 1.5rem;
}

.dk-section-heading-compact + .row {
  margin-top: 0;
}

@media (max-width: 767.98px) {
  .dk-section-heading-compact {
    margin-bottom: 1.15rem;
  }
}
