@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

/* -------------------------------------------------- */
/* BASE LAYOUT + TYPOGRAPHY                           */
/* -------------------------------------------------- */

body {
    margin: 0;
    font-family: "Inter", "SF Pro Text", "SF Pro Display", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at 20% 20%, #0a0f2b 0%, #050816 55%, #030712 100%);
    color: #f9fafb;
    line-height: 1.5;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    color: #38bdf8;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* -------------------------------------------------- */
/* HEADER + NAVBAR                                    */
/* -------------------------------------------------- */

header {
    padding: 20px 32px;
    border-bottom: 1px solid #1f2933;
    background: rgba(3, 7, 18, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

nav .logo {
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 14px;
    color: #e5e7eb;
}

/* -------------------------------------------------- */
/* BRAND LOCKUP (HEADER + FOOTER)                     */
/* -------------------------------------------------- */

.brand-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-title {
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 15px;
    color: #e5e7eb;
    line-height: 1;
}

.brand-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    vertical-align: middle;
}

.brand-logo-legal {
    width: 22px;
    height: 22px;
    object-fit: contain;
    opacity: 0.85;
    margin-right: 6px;
}

.footer-brand {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.footer-brand img {
    margin-bottom: 6px;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

nav .links a {
    margin-left: 14px;
    font-size: 14px;
    color: #9ca3af;
    padding: 6px 10px;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}

nav .links a:hover {
    color: #e5e7eb;
    text-decoration: none;
    background: rgba(56, 189, 248, 0.12);
}

nav .links a.active {
    color: #e5e7eb;
    background: rgba(168, 85, 247, 0.22);
    box-shadow: inset 0 0 0 1px rgba(168, 85, 247, 0.35);
}

nav .links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

nav .links a:first-child {
    margin-left: 0;
}

/* -------------------------------------------------- */
/* MAIN LAYOUT                                        */
/* -------------------------------------------------- */

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

main > section:first-child {
    margin-top: 4px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* -------------------------------------------------- */
/* HERO SECTION                                       */
/* -------------------------------------------------- */

.hero {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 40px;
    align-items: center;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: #f9fafb;
    text-shadow: 0 0 14px rgba(56, 189, 248, 0.25);
}

.hero h2 {
    font-size: 26px;
    margin: 0 0 10px 0;
    color: #e5e7eb;
    text-shadow: 0 0 12px rgba(168, 85, 247, 0.25);
}

.hero p {
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 0;
}

.hero .primary-btn,
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #22d3ee, #a855f7);
    color: #020617;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 14px rgba(168, 85, 247, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.primary-btn:hover {
    box-shadow: 0 0 22px rgba(168, 85, 247, 0.55);
    text-decoration: none;
    transform: translateY(-1px);
}

.primary-btn.small-btn {
    margin-top: 10px;
    padding: 8px 14px;
    font-size: 13px;
}

.hero .secondary-link {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    font-size: 13px;
    color: #9ca3af;
}

/* -------------------------------------------------- */
/* SECTIONS                                           */
/* -------------------------------------------------- */

.section {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(56, 189, 248, 0.12);
}

.section h2 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #e5e7eb;
    position: relative;
    padding-bottom: 6px;
}

.section h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, #38bdf8, #a855f7);
    border-radius: 2px;
}

.section p {
    color: #9ca3af;
    font-size: 14px;
    max-width: 640px;
    line-height: 1.65;
    overflow-wrap: anywhere;
}

/* -------------------------------------------------- */
/* CARDS                                              */
/* -------------------------------------------------- */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 22px;
}

.card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    padding: 18px;
    background: linear-gradient(145deg, #0b0f1e, #050816);
    border: 1px solid rgba(56, 189, 248, 0.25);
    box-shadow:
        0 0 12px rgba(56, 189, 248, 0.08),
        inset 0 0 18px rgba(56, 189, 248, 0.05);
    transition: 0.25s ease;
}

.card:hover {
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow:
        0 0 22px rgba(56, 189, 248, 0.25),
        inset 0 0 25px rgba(56, 189, 248, 0.12);
    transform: translateY(-2px);
}

.card h3 {
    font-size: 15px;
    margin-bottom: 6px;
    color: #e5e7eb;
}

.card p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0 0 12px;
}

.card p:last-child {
    margin-bottom: 0;
}

.card .primary-btn {
    margin-top: auto;
}

.feature-image-card {
    padding: 0;
    overflow: hidden;
    min-height: 220px;
}

.feature-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.feature-image-slot {
    min-height: 220px;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #93c5fd;
    border-style: dashed;
    background: rgba(30, 41, 59, 0.3);
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 11px;
    margin-bottom: 6px;
    border: 1px solid rgba(168, 85, 247, 0.45);
    color: #d8b4fe;
    background: rgba(168, 85, 247, 0.12);
}

/* -------------------------------------------------- */
/* FOOTER                                             */
/* -------------------------------------------------- */

#global-footer-root {
    margin-top: 60px;
    min-height: 240px;
}

.global-footer {
    background: #0D0F12;
    color: #D7D9DF;
    padding: 24px 20px;
    border-top: 1px solid rgba(215, 217, 223, 0.14);
}

.global-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px 32px;
}

.global-footer__column h2 {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.4;
    color: #f3f4f6;
}

.global-footer__column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.global-footer__column li + li {
    margin-top: 8px;
}

.global-footer__column a {
    color: #D7D9DF;
    font-size: 13px;
    line-height: 1.45;
    opacity: 0.92;
    transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.global-footer__column a:hover {
    color: #ffffff;
    opacity: 1;
    transform: translateX(2px);
    text-decoration: none;
}

.global-footer__legal {
    max-width: 1100px;
    margin: 24px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(215, 217, 223, 0.12);
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.5;
}

/* Brand hero lockup (shared) */
.hero-brand-h1 {
    font-size: 42px;
    line-height: 1.1;
    margin: 0 0 4px;
    color: #f9fafb;
}

.hero-brand-by {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #94a3b8;
    margin: 0 0 16px;
}

.hero-page-h2 {
    font-size: 28px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #e5e7eb;
}

.hero-official-line {
    font-size: 14px;
    opacity: 0.78;
    margin: 0 0 16px;
    color: #cbd5e1;
}

.site-banner {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(31, 41, 51, 0.9);
    background: rgba(3, 7, 18, 0.96);
    letter-spacing: 0.03em;
}

.genesis-hero-content .hero-brand-h1 {
    font-size: 32px;
}

.genesis-hero-content .hero-brand-by {
    margin-bottom: 10px;
}

.genesis-hero-content .hero-product-title {
    font-size: 26px;
    margin: 0 0 8px;
    color: #f9fafb;
    line-height: 1.2;
}

/* -------------------------------------------------- */
/* LEGAL PAGES                                        */
/* -------------------------------------------------- */

.legal-page {
    padding-bottom: 40px;
}

.legal-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 28px 20px 12px;
}

.legal-container h1 {
    margin: 0 0 8px;
}

.legal-last-updated {
    color: #cbd5e1;
    margin: 0 0 28px;
}

.legal-container section {
    margin-top: 28px;
}

.legal-container h2 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.45;
}

.legal-container p,
.legal-container li {
    line-height: 1.55;
    color: #d1d5db;
}

.legal-container ol {
    margin: 10px 0 0 20px;
    padding: 0;
}

.gena-note {
    margin: 14px 0 0;
    font-style: italic;
    color: #a5b4fc;
}

/* -------------------------------------------------- */
/* GENESIS OS HERO                                    */
/* -------------------------------------------------- */

.genesis-hero {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: 26px;
    align-items: stretch;
}

.genesis-hero-image {
    min-height: 320px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(56, 189, 248, 0.24);
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.15);
}

.genesis-hero-content {
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 16px;
    padding: 22px;
    background: rgba(5, 8, 22, 0.74);
}

.genesis-hero-content h1 {
    margin: 0 0 8px;
    font-size: 38px;
}

.genesis-hero-content .tagline {
    margin: 0 0 10px;
    font-size: 17px;
    color: #d1d5db;
}

.genesis-hero-content .subtext {
    margin: 0;
    color: #9ca3af;
}

/* -------------------------------------------------- */
/* GENESIS INFO + INLINE FORM                         */
/* -------------------------------------------------- */

.genesis-info-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.genesis-info-copy p {
    max-width: none;
}

.genesis-info-copy {
    grid-column: 2;
    grid-row: 1;
}

.genesis-inline-form {
    grid-column: 3;
    grid-row: 1;
    max-width: 100%;
    padding: 14px 16px;
}

.genesis-inline-image {
    grid-column: 1;
    grid-row: 1;
    border: 1px dashed rgba(56, 189, 248, 0.45);
    border-radius: 12px;
    min-height: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    color: #93c5fd;
    background: rgba(30, 41, 59, 0.35);
    overflow: hidden;
}

.genesis-inline-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: 8px;
    object-fit: cover;
    transform: scale(0.85);
    transform-origin: center;
}

.genesis-inline-form .lead-title {
    font-size: 18px;
    margin-bottom: 4px;
}

.genesis-inline-form .lead-subtitle {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.5;
}

.genesis-inline-form .lead-form {
    gap: 10px;
}

.genesis-inline-form .lead-form input,
.genesis-inline-form .lead-form textarea {
    font-size: 12px;
    padding: 7px 9px;
}

.genesis-inline-form .lead-btn {
    margin-top: 2px;
}

/* -------------------------------------------------- */
/* RESPONSIVE                                         */
/* -------------------------------------------------- */

@media (max-width: 800px) {
    header {
        padding: 14px 18px;
    }

    nav {
        align-items: flex-start;
    }

    nav .links {
        width: 100%;
        gap: 10px 14px;
    }

    nav .links a {
        margin-left: 0;
    }

    main {
        padding: 28px 16px 60px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .hero h1 {
        font-size: 30px;
    }

    .section {
        margin-top: 42px;
        padding-top: 14px;
    }

    .genesis-hero {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .genesis-hero-image {
        min-height: 240px;
    }

    .genesis-info-section {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .genesis-inline-form {
        grid-column: auto;
        grid-row: auto;
        max-width: 440px;
        margin: 0;
    }

    .genesis-inline-image {
        grid-column: auto;
        grid-row: auto;
        min-height: 180px;
    }

    .genesis-inline-image img {
        min-height: 220px;
    }

    #global-footer-root {
        min-height: 0;
    }

    .global-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 24px;
    }

    .genesis-info-copy {
        grid-column: auto;
        grid-row: auto;
    }

}

@media (max-width: 520px) {
    .global-footer {
        padding: 24px 16px;
    }

    .global-footer__inner {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
/* --- COMPACT NEON LEAD FORM --- */

.lead-section {
  margin-top: 30px;
  padding: 20px 0;
}

.lead-container {
  max-width: 360px; /* MUCH smaller */
  margin: 0 auto;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 255, 0.18);
  border-radius: 10px;
  backdrop-filter: blur(4px);
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.12);
}

.lead-title {
  font-size: 22px;
  margin-bottom: 6px;
  color: #00f6ff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

.lead-subtitle {
  opacity: 0.75;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.4;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form label,
.form-group label {
  font-size: 12px;
  opacity: 0.75;
  margin-bottom: 4px;
  display: block;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 5px;
  border: 1px solid rgba(0, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-size: 13px;
  transition: 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: #00f6ff;
  box-shadow: 0 0 8px rgba(0, 255, 255, 0.35);
  outline: none;
}

.lead-btn {
  margin-top: 6px;
  width: 100%;
  padding: 10px;
  font-size: 14px;
}

.lead-btn[disabled] {
  opacity: 0.75;
  cursor: not-allowed;
}

.form-note {
  margin-top: 6px;
  opacity: 0.55;
  font-size: 11px;
  text-align: center;
}

.form-status {
  margin-top: 6px;
  font-size: 12px;
  color: #a5f3fc;
  min-height: 1.2em;
}

:focus-visible {
  outline: 2px solid #22d3ee;
  outline-offset: 2px;
}
.genesisos-flex {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 30px;
}

.genesisos-left {
  flex: 2;
}

.genesisos-right {
  flex: 1;
  text-align: center;
}

@media (max-width: 900px) {
  .genesisos-flex {
    flex-direction: column;
    text-align: center;
  }
}

/* Coliseum page */
.coliseum-hero {
  position: relative;
}

.coliseum-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0, 240, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

.coliseum-hero > * {
  position: relative;
  z-index: 1;
}

.coliseum-hero__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #e5e7eb;
  text-shadow: 0 0 18px rgba(0, 240, 255, 0.35);
}

.coliseum-hero__subtitle {
  font-size: 1.15rem;
  color: #00f0ff;
  margin: 0.35rem 0 1rem;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.35);
}

.coliseum-embed {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.coliseum-embed iframe,
.coliseum-embed .twitter-tweet {
  margin: 0 auto !important;
  max-width: 100%;
}

.coliseum-cta .primary-btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

/* Real estate page */
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.form-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
}

.genesis-inline-image .form-image {
  min-height: auto;
  transform: none;
  object-fit: contain;
}

.rwa-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (max-width: 768px) {
  .rwa-columns {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Marketplace page */
.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.marketplace-coming-soon {
  font-size: 18px;
  font-weight: 600;
  color: #38bdf8;
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

.marketplace-note {
  font-size: 12px;
  color: #9ca3af;
  margin: 10px 0 0;
  max-width: none;
}

.marketplace-grid .card .primary-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}
