:root{
  --topbar-height: 64px;
  --topbar-height-mobile: 56px;
  --page-max: 1100px;
  --accent-a: #7b2ff7;
  --accent-b: #ff6fb5;
  --muted: #222;
  --muted-weak: #6b7280;
  --card-bg: rgba(255,255,255,0.90);
  --radius: 12px;
  --site-bg: #e2f3ff; /* same background color as main page */
}

html, body {
  height: 100%;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background: var(--site-bg);
  color: var(--muted);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}

.topbar {
  position: fixed;
  top: env(safe-area-inset-top, 12px);
  left: 0;
  right: 0;
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  pointer-events: none;
  background: transparent;
}

.topnav {
  pointer-events: auto;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 6px 12px;
  border-radius: 12px;
}

.tab {
  text-decoration: none;
  color: rgba(14,14,13,0.92);
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform .12s ease, background .12s ease;
  background: transparent;
  box-shadow: none;
  pointer-events: auto;
}
.tab:hover { transform: translateY(-2px); background: rgba(2,6,23,0.04); }

.tab--active {
  background: linear-gradient(90deg, #8bddfa 0%, #54d2fe 100%);
  color: #05345a;
  box-shadow: 0 8px 28px rgba(5,52,90,0.08);
}

.menu-button {
  pointer-events: auto;
  position: absolute;
  right: 12px;
  top: calc(env(safe-area-inset-top, 12px) + 6px);
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: none;
  background: rgba(0,0,0,0.02);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 8px;
  cursor: pointer;
  align-items: center;
  z-index: 1300;
}
.menu-button:focus { outline: 2px solid rgba(5,52,90,0.08); }
.menu-button .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(14,14,13,0.92), rgba(14,14,13,0.6));
  border-radius: 2px;
}

.mobile-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(2,6,23,0.60);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.mobile-modal.mobile-modal--open { opacity: 1; pointer-events: auto; }

.mobile-modal-panel {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  color: #05345a;
  box-shadow: 0 20px 80px rgba(2,6,23,0.08);
  display:flex;
  flex-direction:column;
  box-sizing:border-box;
}

.mobile-modal-header {
  height: 56px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  padding:8px 12px;
  z-index:2;
}
.mobile-modal-close {
  background: transparent;
  border: none;
  font-size: 30px;
  color: rgba(5,52,90,0.95);
  padding: 6px 8px;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-modal-list {
  overflow:auto;
  -webkit-overflow-scrolling: touch;
  display:flex;
  flex-direction:column;
  gap:0;
  padding:8px 0 16px 0;
  box-sizing: border-box;
  flex:1 1 auto;
}
.mobile-modal-item {
  display:block;
  width:100%;
  padding:18px 20px;
  text-decoration:none;
  color: rgba(5,52,90,0.65);
  font-weight:700;
  font-size:18px;
  border-top:1px solid rgba(2,6,23,0.06);
  background:transparent;
}
.mobile-modal-item:first-child { border-top:none; }
.mobile-modal-item--active { font-weight:800; color:#05345a; background: rgba(5,52,90,0.04); }

/*
.ov-main {
  position: relative;
  z-index: 0;
  padding-top: calc(var(--topbar-height) + env(safe-area-inset-top, 12px));
  box-sizing: border-box;
  max-height: calc(100vh - var(--topbar-height) - env(safe-area-inset-top, 12px));
  min-height: calc(100vh - var(--topbar-height));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
*/

.ov-main {
  position: fixed;
  left: 0;
  right: 0;
  top: calc(var(--topbar-height) + env(safe-area-inset-top, 12px));
  bottom: 0;
  box-sizing: border-box;
  padding: 20px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 1100;
  background: transparent;
}

.no-scroll .ov-main {
  overflow: hidden !important;
}

.ov-inner {
  max-width: var(--page-max);
  margin: 28px auto;
  padding: 20px;
  box-sizing: border-box;
}

.ov-hero {
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:flex-start;
  background: linear-gradient(90deg, rgba(123,47,247,0.04), rgba(255,111,181,0.03));
  padding:18px;
  border-radius:12px;
  margin-bottom:18px;
}
.ov-hero-left { display:flex; gap:12px; align-items:center; }
.ov-logo { width:56px; height:56px; object-fit:contain; border-radius:10px; }
.ov-hero-copy { flex:1; }
.ov-hero .tagline { margin:0; font-size:18px; }
.ov-hero .tagline2 { margin:6px 0 0; }

.section-title { font-size:22px; margin:18px 0 8px; justify-content:center; align-items:center; text-align:center; }
.ov-lead { color: var(--muted-weak); margin:0 0 16px; line-height:1.45; font-size: 18px; }

.card-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:14px; }
.card { background: var(--card-bg); padding:16px; border-radius:12px; box-shadow: 0 8px 30px rgba(2,6,23,0.06); }
.card h3 { margin:0 0 8px; }
.card p { margin:0; color:var(--muted-weak); }

.ov-section { margin-top:6px; margin-bottom:6px; padding:6px; border-radius:10px; background: linear-gradient(180deg, rgba(0,0,0,0.01), transparent); }
.ov-list { padding-left:18px; }
.ov-footer { margin-top:22px; padding-top:12px; border-top:1px solid rgba(0,0,0,0.04); text-align:center; color:var(--muted-weak); font-size: 14px; }
.ov-footer a { color:var(--accent-a); text-decoration:underline; }

.tagline2 { margin:0; display:flex; flex-wrap:wrap; gap:6px; align-items:baseline; }
.tagline2 .site-title { display:inline; font-size:inherit; vertical-align:baseline; background: linear-gradient(to bottom, #0720fa, #fa0795); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

@media (max-width: 720px) {
  .ov-hero { flex-direction: column; align-items: flex-start; }
  .ov-logo { width:44px; height:44px; }
  .ov-inner { margin: 18px auto; }
  .section-title { font-size: 22px; }
}

@media (max-width: 540px) {
  .topnav { display: none; }
  .menu-button { display: flex; }
  .topbar { height: var(--topbar-height-mobile); }
  .menu-button { top: calc(env(safe-area-inset-top,12px) + 6px); }
  .ov-main {
    top: calc(var(--topbar-height-mobile) + env(safe-area-inset-top, 12px));
    padding: 16px;
  }

  .ov-main::-webkit-scrollbar { display: none; width: 0; height: 0; }
  .ov-main { scrollbar-width: none; } 

  html, body {
    overflow: hidden;
  }

  body.no-scroll {
    overflow: hidden;
  }
}

@media (max-width: 420px) {
  .ov-inner { padding: 12px; }
  .ov-hero { padding: 12px; }
  .ov-lead { font-size: 18px; }
}

.visually-hidden { position:absolute!important;height:1px;width:1px;overflow:hidden;clip:rect(1px,1px,1px,1px);white-space:nowrap; }

.ov-note-label {
  text-decoration: underline;
  text-underline-offset: 2px;     /* subtle gap between text and line */
  text-decoration-thickness: 1.5px;
  -webkit-text-decoration-thickness: 1.5px;
}

#pricing-heading,
#pricing-heading + .ov-columns,
#pricing-heading ~ .ov-note {
}

#pricing-heading ~ .ov-columns p,
#pricing-heading ~ .ov-columns p a,
#pricing-heading ~ .ov-note {
  font-weight: 400;          /* normal weight for body copy */
  color: var(--muted-weak);  /* keep the softer color used elsewhere */
}

#pricing-heading ~ .ov-columns p strong,
#pricing-heading ~ .ov-note strong,
#pricing-heading ~ .ov-note .ov-note-label {
  font-weight: 650;          /* medium-bold — less heavy than 700 */
}

@media (max-width: 420px) {
  #pricing-heading ~ .ov-columns p,
  #pricing-heading ~ .ov-note {
    font-size: 15px;
    line-height: 1.45;
  }
}

#unlock-heading ~ .ov-list,
#unlock-heading ~ .ov-list li,
#unlock-heading ~ .ov-list li strong {
  font-weight: 400;            /* normal weight for list copy */
  color: var(--muted-weak);
}

#unlock-heading ~ .ov-list li strong {
  font-weight: 650;            /* medium weight for emphasis (not full-bold) */
}

#nftcard-heading ~ p,
#nftcard-heading ~ .ov-small {
  font-weight: 400;
  color: var(--muted-weak);
}

#content-engage ~ p {
  font-weight: 400;
  color: var(--muted-weak);
}

#listing-heading ~ p {
  font-weight: 400;
  color: var(--muted-weak);
}

@media (max-width: 420px) {
  #unlock-heading ~ .ov-list li,
  #nftcard-heading ~ p,
  #content-engage ~ p,
  #listing-heading ~ p {
    font-size: 15px;
    line-height: 1.45;
  }
}

  
.site-title {
  margin: 0;
  font-family: 'Monotype Corsiva';  
  font-size: clamp(20px, 3.2vw, 28px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.8px;
  margin-top: 6px;
  margin-bottom: 6px;
  background: linear-gradient(to bottom, #0720fa, #fa0795);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
} 

.ov-lead .site-title {
  font-size: clamp(20px, 3.2vw, 28px);
  line-height: 1;
  vertical-align: baseline;
  display: inline-block;
  margin-right: 0.45ch;
  transform: translateY(0.08em);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

