/* ─────────────────────────────────────────
   AVADAO — Site-wide base theme (style.css)
   Single source of truth for design tokens + shared chrome
   (header, nav overlay, footer, buttons, .reveal, sections).
   Loaded on EVERY page via template/head.php. Page-specific CSS
   (portal.css / profile.css / docs.css / mint.css) layers on top
   and must only consume these tokens — never redefine colors/fonts.
   ───────────────────────────────────────── */

:root {
  --lime: rgb(192, 230, 19);
  --lime-dim: rgba(192, 230, 19, 0.07);
  --lime-mid: rgba(192, 230, 19, 0.14);
  --lime-glow: rgba(192, 230, 19, 0.28);
  --lime-border: rgba(192, 230, 19, 0.38);

  --bg: #141518;
  --bg2: #0f1012;
  --surface: #1c1e22;
  --surface2: #222428;

  --border: rgba(255, 255, 255, 0.07);
  --border-med: rgba(255, 255, 255, 0.13);

  --text: #e8eaf0;
  --text-dim: #9098a8;
  --text-dimmer: #50586a;

  --hero-bg: #0a0b0d;
  --hero-text: #f0f2f8;
  --hero-dim: #7a8294;

  --mono: "Space Mono", monospace;
  /* Display / UI font — replaces Syne. Change this one line to re-skin the whole
     site (every page uses var(--sans)). Alternatives: "Sora", "Outfit". */
  --sans: "Space Grotesk", "Inter", sans-serif;

  --radius: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 6px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 18px rgba(0, 0, 0, 0.5);
  --shadow-red: 0 8px 28px rgba(192, 230, 19, 0.18);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ════════════════════════════════════════
   HEADER
════════════════════════════════════════ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 500;
  height: 66px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 21, 24, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

header.scrolled {
  border-bottom-color: var(--lime-border);
  box-shadow: 0 2px 20px rgba(192, 230, 19, 0.06);
}

/* ─── LOGO ─── */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--border-med);
  object-fit: cover;
  flex-shrink: 0;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.04em;
}

.logo-sub {
  font-family: var(--mono);
  font-size: 0.58rem;
  color: var(--lime);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-logo .logo-name {
  color: var(--text);
}

/* ─── HAMBURGER ─── */
.menu-btn {
  cursor: pointer;
  width: 32px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 0;
  z-index: 1100;
  flex-shrink: 0;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.77, 0, 0.175, 1),
    opacity 0.25s ease,
    background 0.2s ease;
  transform-origin: center;
}

.menu-btn.active .burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-btn.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-btn.active .burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.menu-btn:hover .burger-line {
  background: var(--lime);
}

/* ════════════════════════════════════════
   NAV OVERLAY
════════════════════════════════════════ */
/* v2: the overlay is now a dimmed backdrop; the menu itself lives in
   .nav-panel, a fixed-width drawer sliding in from the right. Clicking the
   backdrop closes the menu (script.js checks e.target === navOverlay). */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(5, 6, 8, 0.6);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0s linear 0s;
}

.nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 100%);
  background: var(--surface);
  border-left: 1px solid var(--border-med);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  box-shadow: -24px 0 64px rgba(0, 0, 0, 0.55);
}

.nav-overlay.active .nav-panel {
  transform: translateX(0);
}

.nav-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.nav-panel-brand {
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 1rem;
  color: var(--text);
}

.nav-panel-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 8px 20px 16px;
}

.nav-panel-foot {
  flex-shrink: 0;
  padding: 14px 20px 18px;
  border-top: 1px solid var(--border);
}

.nav-socials {
  display: flex;
  gap: 10px;
}

.nav-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  color: var(--text-dim);
  font-size: 1rem;
  text-decoration: none;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}

.nav-socials a:hover {
  color: var(--lime);
  border-color: var(--lime-border);
  background: var(--lime-dim);
}

.nav-ext {
  margin-left: auto;
  font-size: 0.6rem !important;
  opacity: 0.5;
}

.nav-close {
  position: static;
  background: none;
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--text-dim);
  font-size: 1.15rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
}

.nav-close:hover {
  border-color: var(--lime-border);
  color: var(--lime);
  background: var(--lime-dim);
}

.nav-section-label {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  color: var(--text-dimmer);
  text-transform: uppercase;
  margin: 20px 0 6px;
  width: 100%;
  max-width: 340px;
}

.nav-list {
  list-style: none;
  width: 100%;
  max-width: 340px;
}

.nav-list li {
  border-bottom: 1px solid var(--border);
}

.nav-list li:last-child {
  border-bottom: none;
}

.nav-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition:
    color 0.2s,
    padding-left 0.2s;
}

.nav-list a:hover {
  color: var(--lime);
  padding-left: 4px;
}

.nav-list a i {
  width: 18px;
  text-align: center;
  color: var(--text-dimmer);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.nav-list a:hover i {
  color: var(--lime);
}

/* ════════════════════════════════════════
   LAYOUT HELPERS
════════════════════════════════════════ */
main {
  padding-top: 66px;
}

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 24px;
}

.section-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--lime);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-label::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--lime);
  opacity: 0.5;
}

h2 {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 36px;
  color: var(--text);
}

.section-divider {
  max-width: 860px;
  margin: 0 auto;
  height: 1px;
  background: var(--border);
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn-primary {
  background: var(--lime);
  color: #0a0b0d;
}

.btn-primary:hover {
  background: rgb(210, 245, 40);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.btn-outline {
  background: var(--surface2);
  color: var(--text);
  border: 1.5px solid var(--border-med);
}

.btn-outline:hover {
  border-color: var(--lime-border);
  color: var(--lime);
  background: var(--lime-dim);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  background: var(--hero-bg);
  color: var(--hero-text);
  min-height: calc(100vh - 66px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 230, 19, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 230, 19, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 20%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 560px;
  height: 560px;
  background: radial-gradient(
    circle,
    rgba(192, 230, 19, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 230, 19, 0.1);
  border: 1px solid rgba(192, 230, 19, 0.28);
  border-radius: 100px;
  padding: 5px 16px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: rgb(192, 230, 19);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.65);
  }
}

.hero h1 {
  font-size: clamp(2.2rem, 8vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 22px;
  position: relative;
  color: var(--hero-text);
}

.hero h1 em {
  font-style: normal;
  color: var(--lime);
}

.hero-desc {
  max-width: 520px;
  color: var(--hero-dim);
  font-size: clamp(0.88rem, 2.4vw, 1.05rem);
  line-height: 1.75;
  margin-bottom: 36px;
  position: relative;
}

.hero-cta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hero .btn-outline {
  color: var(--hero-text);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
}

.hero .btn-outline:hover {
  color: var(--lime);
  border-color: var(--lime-border);
  background: rgba(192, 230, 19, 0.08);
}

/* ════════════════════════════════════════
   TOKENOMICS
════════════════════════════════════════ */
.tokenomics-wrap {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tokenomics-wrap > .inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 24px;
}

.token-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

@media (min-width: 560px) {
  .token-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.token-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}

.token-card:hover {
  border-color: var(--lime-border);
  box-shadow: 0 4px 18px rgba(192, 230, 19, 0.06);
}

.token-card.highlight {
  border-color: var(--lime-border);
  background: var(--surface2);
}

.token-card-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--text-dimmer);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.token-card-value {
  font-family: var(--mono);
  font-size: 0.92rem;
  color: var(--text);
  font-weight: 700;
  word-break: break-all;
  line-height: 1.4;
}

.token-card.highlight .token-card-value {
  font-size: 1.15rem;
  color: var(--lime);
}

.token-card-value .unit {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 400;
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: inherit;
}

.contract-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.copy-btn {
  background: var(--surface2);
  border: 1px solid var(--border-med);
  color: var(--text-dim);
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 5px;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s;
  flex-shrink: 0;
}

.copy-btn:hover {
  border-color: var(--lime-border);
  color: var(--lime);
  background: var(--lime-dim);
}

.copy-btn.copied {
  border-color: rgba(74, 222, 128, 0.4);
  color: #4ade80;
  background: rgba(74, 222, 128, 0.08);
}

.token-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.token-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.72rem;
  padding: 8px 14px;
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s,
    transform 0.2s;
}

.token-link:hover {
  color: var(--lime);
  border-color: var(--lime-border);
  background: var(--lime-dim);
  transform: translateY(-1px);
}

.token-buy {
  margin-left: auto;
}

/* ════════════════════════════════════════
   ROADMAP
════════════════════════════════════════ */
.roadmap-section {
  padding-bottom: 80px;
}

.roadmap-list {
  display: flex;
  flex-direction: column;
  position: relative;
}

.roadmap-list::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--lime) 0%,
    rgba(192, 230, 19, 0.15) 80%,
    transparent 100%
  );
  z-index: 0;
}

.roadmap-item {
  display: flex;
  gap: 22px;
  padding-bottom: 32px;
  position: relative;
}

.roadmap-item:last-child {
  padding-bottom: 0;
}

.roadmap-dot {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}

.done-dot {
  border-color: var(--lime);
  color: var(--lime);
}

.wip-dot {
  border-color: #e6a817;
  color: #e6a817;
  animation: wip-glow 2.5s infinite alternate;
}

@keyframes wip-glow {
  from {
    box-shadow: 0 0 0 rgba(230, 168, 23, 0);
  }
  to {
    box-shadow: 0 0 14px rgba(230, 168, 23, 0.4);
  }
}

.roadmap-content {
  padding-top: 6px;
  flex: 1;
}

.roadmap-period {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--lime);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.roadmap-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.roadmap-detail {
  font-size: 0.83rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

.status-done {
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  border: 1px solid rgba(74, 222, 128, 0.22);
}

.status-wip {
  background: rgba(230, 168, 23, 0.1);
  color: #e6a817;
  border: 1px solid rgba(230, 168, 23, 0.25);
}

/* ════════════════════════════════════════
   ECOSYSTEM
════════════════════════════════════════ */
.eco-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 480px) {
  .eco-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 780px) {
  .eco-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.eco-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}

.eco-card:hover {
  border-color: var(--lime-border);
  box-shadow: 0 6px 22px rgba(192, 230, 19, 0.08);
  transform: translateY(-3px);
}

.eco-icon {
  width: 40px;
  height: 40px;
  background: var(--lime-dim);
  border: 1px solid var(--lime-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  font-size: 1.05rem;
}

.eco-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
}

.eco-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
  flex: 1;
}

.eco-arrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-dimmer);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}

.eco-card:hover .eco-arrow {
  color: var(--lime);
}

.eco-card:hover .eco-arrow i {
  transform: translateX(3px);
}

.eco-arrow i {
  transition: transform 0.2s;
}

/* ════════════════════════════════════════
   TEAM
════════════════════════════════════════ */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  width: 200px;
  box-shadow: var(--shadow-sm);
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}

.team-card:hover {
  border-color: var(--lime-border);
  box-shadow: 0 8px 28px rgba(192, 230, 19, 0.08);
  transform: translateY(-3px);
}

.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid var(--border-med);
  object-fit: cover;
  margin-bottom: 14px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.team-card-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 4px;
}

.team-card-role {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--lime);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-med);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 1rem;
  background: var(--surface);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s,
    transform 0.2s;
}

.footer-social a:hover {
  border-color: var(--lime-border);
  color: var(--lime);
  background: var(--lime-dim);
  transform: translateY(-2px);
}

.footer-copy {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-dimmer);
  letter-spacing: 0.06em;
}

/* ════════════════════════════════════════
   SCROLL REVEAL
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   RESPONSIVE — TABLET & UP
════════════════════════════════════════ */
@media (min-width: 640px) {
  header {
    padding: 0 32px;
  }
  .section {
    padding: 88px 40px;
  }
  .tokenomics-wrap > .inner {
    padding: 88px 40px;
  }
}

@media (min-width: 1024px) {
  header {
    padding: 0 56px;
  }
  .section {
    padding: 100px 56px;
  }
  .tokenomics-wrap > .inner {
    padding: 100px 56px;
  }
}
