 :root {
     --bg: #07090c;
     --bg-soft: #0e1116;
     --panel: #12161c;
     --panel-2: #171c24;
     --cream: #faf7f1;
     --cream-2: #f1ebdd;
     --ink: #161310;
     --ink-soft: #5b564c;
     --line: rgba(255, 255, 255, 0.09);
     --line-soft: rgba(22, 19, 16, 0.1);
     --gold-1: #f6d98a;
     --gold-2: #d9a94a;
     --gold-3: #9c7326;
     --gold-grad: linear-gradient(120deg, var(--gold-1), var(--gold-2) 55%, var(--gold-3));
     --white: #ffffff;
     --muted-dark: #9aa0aa;
     --radius: 20px;
     --radius-sm: 12px;
     --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.45);
     --shadow-gold: 0 16px 40px -18px rgba(217, 169, 74, 0.55);
     --cattle: #c98f5b;
     --realestate: #7fa0c9;
     --cash: #7fbf95;
}
 * {
     box-sizing: border-box;
}
 html {
     scroll-behavior: smooth;
     scroll-padding-top: 82px;
}
 body {
     margin: 0;
     background: var(--bg);
     color: var(--muted-dark);
     font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
     -webkit-font-smoothing: antialiased;
}
 body, input, textarea, button {
     font-family: "Inter", sans-serif;
}
 h1, h2, h3, .display {
     font-family: "Sora", sans-serif;
     font-weight: 700;
     color: var(--white);
     margin: 0;
     letter-spacing: -0.02em;
}
 a {
     color: inherit;
     text-decoration: none;
}
 img {
     max-width: 100%;
     display: block;
}
 button {
     font-family: inherit;
}
 .wrap {
     max-width: 1180px;
     margin: 0 auto;
     padding: 0 28px;
}
 :focus-visible {
     outline: 2px solid var(--gold-2);
     outline-offset: 3px;
}
 ::selection {
     background: var(--gold-2);
     color: #161310;
}
 section[id] {
     scroll-margin-top: 82px;
}
/* ================= NAV ================= */
 header.site-nav {
     position: sticky;
     top: 0;
     z-index: 60;
     background: rgba(7, 9, 12, 0.88);
     backdrop-filter: blur(12px);
     -webkit-backdrop-filter: blur(12px);
}
 .nav-inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 16px 28px;
     max-width: 1180px;
     margin: 0 auto;
}
 .brand {
     display: flex;
     align-items: center;
     gap: 11px;
}
 .brand .mark {
     width: 38px;
     height: 38px;
     border-radius: 10px;
     background: var(--gold-grad);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #161310;
     font-family: "Sora";
     font-weight: 800;
     font-size: 0.85rem;
     box-shadow: var(--shadow-gold);
}
 .brand-name {
     font-family: "Sora";
     font-weight: 700;
     font-size: 1rem;
     color: var(--white);
     line-height: 1.15;
}
 .brand-name small {
     display: block;
     font-family: "Inter";
     font-weight: 500;
     font-size: 0.65rem;
     color: var(--muted-dark);
     letter-spacing: 0.02em;
     margin-top: 2px;
}
 nav.links {
     display: flex;
     gap: 4px;
     align-items: center;
}
 nav.links a {
     color: var(--muted-dark);
     font-size: 0.9rem;
     font-weight: 500;
     padding: 9px 16px;
     border-radius: 100px;
     transition: all 0.15s ease;
}
 nav.links a:hover {
     color: var(--white);
     background: rgba(255, 255, 255, 0.06);
}
 nav.links a.active {
     color: #161310;
     background: var(--gold-grad);
     font-weight: 600;
}
 .nav-cta {
     margin-left: 6px;
     padding: 10px 20px !important;
     background: transparent !important;
     border: 1px solid var(--gold-2);
     color: var(--gold-1) !important;
}
 .nav-cta:hover {
     background: rgba(217, 169, 74, 0.12) !important;
     color: var(--gold-1) !important;
}
 .nav-toggle {
     display: none;
     background: none;
     border: 1px solid var(--line);
     color: var(--white);
     width: 40px;
     height: 40px;
     border-radius: 10px;
     font-size: 1.1rem;
     cursor: pointer;
}
 @media (max-width: 880px) {
     nav.links {
         display: none;
         position: absolute;
         top: 100%;
         left: 0;
         right: 0;
         flex-direction: column;
         align-items: stretch;
         background: var(--bg-soft);
         border-bottom: 1px solid var(--line);
         padding: 10px 20px 20px;
         gap: 6px;
    }
     nav.links.open {
         display: flex;
    }
     nav.links a {
         text-align: left;
    }
     .nav-toggle {
         display: block;
    }
}
/* ================= GENERAL ================= */
 .eyebrow {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-size: 0.78rem;
     font-weight: 600;
     color: var(--gold-1);
     background: rgba(217, 169, 74, 0.12);
     border: 1px solid rgba(217, 169, 74, 0.35);
     padding: 7px 16px;
     border-radius: 100px;
     margin-bottom: 22px;
}
 .eyebrow-dark {
     color: var(--gold-3);
     background: rgba(156, 115, 38, 0.1);
     border-color: rgba(156, 115, 38, 0.35);
}
 .btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     padding: 14px 26px;
     font-size: 0.94rem;
     font-weight: 600;
     border-radius: 100px;
     border: 1px solid transparent;
     cursor: pointer;
     transition: all 0.2s ease;
}
 .btn-gold {
     background: var(--gold-grad);
     color: #161310;
     box-shadow: var(--shadow-gold);
}
 .btn-gold:hover {
     filter: brightness(1.06);
     transform: translateY(-1px);
}
 .btn-outline {
     border-color: var(--line);
     color: var(--white);
     background: transparent;
}
 .btn-outline:hover {
     border-color: var(--gold-2);
     color: var(--gold-1);
}
 .btn-outline-dark {
     border-color: var(--line-soft);
     color: var(--ink);
     background: transparent;
}
 .btn-outline-dark:hover {
     border-color: var(--gold-3);
}
 .btn-row {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
}
 .section {
     padding: 88px 0;
}
 .section-tight {
     padding: 56px 0;
}
 .light {
     background: var(--cream);
     color: var(--ink);
}
 .light h2, .light h3 {
     color: var(--ink);
}
 .panel-bg {
     background: var(--cream-2);
}
 .dark {
     background: var(--bg);
}
 .section-head {
     max-width: 620px;
     margin-bottom: 48px;
}
 .section-head.center {
     margin-left: auto;
     margin-right: auto;
     text-align: center;
}
 .section-head h2 {
     font-size: clamp(1.7rem, 3.2vw, 2.3rem);
     line-height: 1.15;
}
 .section-head p {
     margin-top: 14px;
     font-size: 1rem;
     line-height: 1.6;
     color: var(--ink-soft);
}
 .dark .section-head p {
     color: var(--muted-dark);
}
/* ================= HERO ================= */
 .hero {
     position: relative;
     overflow: hidden;
     padding: 88px 0 0;
}
 .hero::before {
     content: "";
     position: absolute;
     top: -220px;
     right: -160px;
     width: 640px;
     height: 640px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(217, 169, 74, 0.28) 0%, rgba(217, 169, 74, 0) 68%);
     animation: drift 9s ease-in-out infinite alternate;
}
 .hero::after {
     content: "";
     position: absolute;
     bottom: -260px;
     left: -200px;
     width: 520px;
     height: 520px;
     border-radius: 50%;
     background: radial-gradient(circle, rgba(127, 160, 201, 0.14) 0%, rgba(127, 160, 201, 0) 70%);
}
 @keyframes drift {
     to {
         transform: translate(-30px, 30px);
    }
}
 .hero-inner {
     position: relative;
     display: grid;
     grid-template-columns: 1fr 0.95fr;
     gap: 56px;
     align-items: center;
     padding-bottom: 70px;
}
 @media (max-width: 920px) {
     .hero-inner {
         grid-template-columns: 1fr;
    }
}
 .hero h1 {
     font-size: clamp(2.3rem, 4.6vw, 3.4rem);
     line-height: 1.08;
     opacity: 0;
     transform: translateY(16px);
     animation: rise 0.7s ease forwards 0.1s;
}
 .hero h1 .accent {
     background: var(--gold-grad);
     -webkit-background-clip: text;
     background-clip: text;
     color: transparent;
}
 .hero p.lede {
     margin: 22px 0 30px;
     max-width: 48ch;
     font-size: 1.05rem;
     line-height: 1.6;
     color: var(--muted-dark);
     opacity: 0;
     transform: translateY(16px);
     animation: rise 0.7s ease forwards 0.24s;
}
 @keyframes rise {
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .trust-row {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     margin-top: 30px;
}
 .chip {
     display: flex;
     align-items: center;
     gap: 7px;
     font-size: 0.8rem;
     font-weight: 500;
     color: var(--muted-dark);
     background: var(--panel);
     border: 1px solid var(--line);
     padding: 8px 14px;
     border-radius: 100px;
}
 .chip svg {
     width: 14px;
     height: 14px;
     flex-shrink: 0;
}
/* ================= MOCK LEDGER ================= */
 .mock-card {
     background: var(--panel);
     border: 1px solid var(--line);
     border-radius: calc(var(--radius) + 4px);
     padding: 26px;
     box-shadow: var(--shadow);
     position: relative;
}
 .mock-top {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
}
 .mock-top .label {
     font-size: 0.72rem;
     font-weight: 600;
     letter-spacing: 0.03em;
     color: var(--muted-dark);
}
 .mock-top .live {
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 0.72rem;
     color: #7fbf95;
     font-weight: 600;
}
 .mock-top .live .dot {
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: #7fbf95;
}
 .mock-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 14px 0;
     border-bottom: 1px solid var(--line);
}
 .mock-row:last-child {
     border-bottom: none;
}
 .mock-tok {
     display: flex;
     align-items: center;
     gap: 12px;
}
 .mock-tok .sw {
     width: 36px;
     height: 36px;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: "Sora";
     font-weight: 700;
     font-size: 0.68rem;
     color: #0a0a0a;
     flex-shrink: 0;
}
 .mock-tok .name {
     color: var(--white);
     font-weight: 600;
     font-size: 0.9rem;
}
 .mock-tok .sub {
     color: var(--muted-dark);
     font-size: 0.74rem;
     margin-top: 2px;
}
 .mock-val {
     text-align: right;
}
 .mock-val .amt {
     color: var(--white);
     font-weight: 600;
     font-size: 0.92rem;
}
 .mock-val .chg {
     font-size: 0.72rem;
     color: #7fbf95;
}
 .mock-foot {
     margin-top: 18px;
     padding-top: 16px;
     border-top: 1px dashed var(--line);
     display: flex;
     justify-content: space-between;
     gap: 12px;
     font-size: 0.76rem;
     color: var(--muted-dark);
}
 @media (max-width: 600px) {
     .mock-foot {
         flex-direction: column;
    }
}
/* ================= GRIDS ================= */
 .grid-3 {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 22px;
}
 .grid-4 {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
}
 @media (max-width: 900px) {
     .grid-3 {
         grid-template-columns: 1fr 1fr;
    }
     .grid-4 {
         grid-template-columns: 1fr 1fr;
    }
}
 @media (max-width: 560px) {
     .grid-3, .grid-4 {
         grid-template-columns: 1fr;
    }
}
/* ================= CARDS ================= */
 .card {
     background: var(--white);
     border: 1px solid var(--line-soft);
     border-radius: var(--radius);
     padding: 28px;
     box-shadow: 0 12px 30px -18px rgba(22, 19, 16, 0.18);
}
 .card .icon {
     width: 46px;
     height: 46px;
     border-radius: 13px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 18px;
}
 .card .icon svg {
     width: 22px;
     height: 22px;
}
 .card h3 {
     font-size: 1.05rem;
     margin-bottom: 9px;
}
 .card p {
     font-size: 0.9rem;
     line-height: 1.6;
     color: var(--ink-soft);
     margin: 0;
}
 .card .topline {
     height: 4px;
     width: 44px;
     border-radius: 4px;
     margin-bottom: 16px;
}
/* ================= FEATURES ================= */
 .feat-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 18px;
}
 @media (max-width: 860px) {
     .feat-grid {
         grid-template-columns: 1fr 1fr;
    }
}
 @media (max-width: 480px) {
     .feat-grid {
         grid-template-columns: 1fr;
    }
}
 .feat-card {
     background: var(--white);
     border: 1px solid var(--line-soft);
     border-radius: 16px;
     padding: 22px;
     text-align: left;
}
 .feat-card .icon {
     width: 40px;
     height: 40px;
     border-radius: 11px;
     background: var(--cream-2);
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 14px;
}
 .feat-card .icon svg {
     width: 19px;
     height: 19px;
     color: var(--gold-3);
}
 .feat-card h3 {
     font-size: 0.95rem;
     margin-bottom: 6px;
     color: var(--ink);
}
 .feat-card p {
     font-size: 0.84rem;
     line-height: 1.5;
     color: var(--ink-soft);
     margin: 0;
}
/* ================= HOW IT WORKS ================= */
 .hiw-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 18px;
}
 @media (max-width: 860px) {
     .hiw-grid {
         grid-template-columns: 1fr 1fr;
    }
}
 @media (max-width: 480px) {
     .hiw-grid {
         grid-template-columns: 1fr;
    }
}
 .hiw-card {
     text-align: left;
}
 .hiw-card .circle {
     width: 34px;
     height: 34px;
     border-radius: 50%;
     background: var(--gold-grad);
     color: #161310;
     font-family: "Sora";
     font-weight: 700;
     font-size: 0.85rem;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 14px;
}
 .hiw-card h3 {
     font-size: 0.92rem;
     margin-bottom: 6px;
     color: var(--ink);
}
 .hiw-card p {
     font-size: 0.83rem;
     line-height: 1.5;
     color: var(--ink-soft);
     margin: 0;
}
/* ================= APP BANNER ================= */
 .app-banner {
     background: var(--panel-2);
     border: 1px solid var(--line);
     border-radius: 28px;
     padding: 44px;
     display: grid;
     grid-template-columns: 1fr auto;
     gap: 32px;
     align-items: center;
}
 @media (max-width: 760px) {
     .app-banner {
         grid-template-columns: 1fr;
         text-align: center;
    }
}
 .app-banner h2 {
     font-size: 1.5rem;
     max-width: 22ch;
     margin-bottom: 10px;
}
 .app-banner p {
     font-size: 0.92rem;
     color: var(--muted-dark);
     max-width: 40ch;
     margin: 0;
}
 .badge-row {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     margin-top: 22px;
}
 @media (max-width: 760px) {
     .badge-row {
         justify-content: center;
    }
}
 .store-badge {
     display: flex;
     align-items: center;
     gap: 10px;
     background: #0a0c10;
     border: 1px solid var(--line);
     color: var(--white);
     padding: 11px 18px;
     border-radius: 12px;
     font-size: 0.84rem;
}
 .store-badge svg {
     width: 20px;
     height: 20px;
     color: var(--gold-1);
     flex-shrink: 0;
}
 .store-badge .l1 {
     display: block;
     font-size: 0.62rem;
     color: var(--muted-dark);
}
 .store-badge .l2 {
     display: block;
     font-weight: 600;
}
 .phone-mock {
     width: 140px;
     height: 190px;
     background: linear-gradient(180deg, var(--bg-soft), #05070a);
     border: 1px solid var(--line);
     border-radius: 22px;
     margin: 0 auto;
     position: relative;
     box-shadow: var(--shadow);
     flex-shrink: 0;
}
 .phone-mock::before {
     content: "";
     position: absolute;
     top: 13px;
     left: 50%;
     transform: translateX(-50%);
     width: 30px;
     height: 4px;
     border-radius: 4px;
     background: var(--line);
}
 .phone-mock .pm-mark {
     position: absolute;
     top: 34px;
     left: 50%;
     transform: translateX(-50%);
     width: 30px;
     height: 30px;
     border-radius: 9px;
     background: var(--gold-grad);
}
 .phone-mock .pm-bar {
     position: absolute;
     left: 16px;
     right: 16px;
     height: 7px;
     border-radius: 6px;
     background: var(--line);
}
 .phone-mock .pm-bar.b1 {
     top: 82px;
}
 .phone-mock .pm-bar.b2 {
     top: 97px;
     width: 55%;
     right: auto;
}
 .phone-mock .pm-bar.b3 {
     top: 120px;
     background: var(--gold-2);
     height: 24px;
     border-radius: 8px;
}
/* ================= STEPS ================= */
 .steps {
     display: flex;
     flex-direction: column;
     gap: 0;
}
 .step {
     display: grid;
     grid-template-columns: 60px 1fr;
     gap: 20px;
     padding: 26px 0;
     border-bottom: 1px solid var(--line-soft);
}
 .step:last-child {
     border-bottom: none;
}
 .step .circle {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: var(--gold-grad);
     color: #161310;
     font-family: "Sora";
     font-weight: 700;
     font-size: 0.95rem;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .step h3 {
     font-size: 1.05rem;
     margin-bottom: 6px;
     color: var(--ink);
}
 .step p {
     font-size: 0.9rem;
     color: var(--ink-soft);
     line-height: 1.6;
     margin: 0;
     max-width: 62ch;
}
/* ================= TOKEN ================= */
 .tok-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 20px;
}
 @media (max-width: 900px) {
     .tok-grid {
         grid-template-columns: 1fr 1fr;
    }
}
 @media (max-width: 560px) {
     .tok-grid {
         grid-template-columns: 1fr;
    }
}
 .tok-card {
     background: var(--white);
     border: 1px solid var(--line-soft);
     border-radius: var(--radius);
     padding: 26px;
     position: relative;
     overflow: hidden;
}
 .tok-card .band {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 5px;
}
 .tok-card .code {
     font-family: "Sora";
     font-weight: 700;
     font-size: 1.3rem;
     color: var(--ink);
     margin-top: 8px;
}
 .tok-card .name {
     font-size: 0.82rem;
     font-weight: 600;
     color: var(--gold-3);
     margin: 6px 0 12px;
}
 .tok-card p {
     font-size: 0.86rem;
     line-height: 1.55;
     color: var(--ink-soft);
     margin: 0;
}
/* ================= CTA ================= */
 .cta-banner {
     background: var(--panel-2);
     border: 1px solid var(--line);
     border-radius: 28px;
     padding: 52px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 24px;
     flex-wrap: wrap;
}
 .cta-banner h2 {
     font-size: 1.7rem;
     max-width: 22ch;
}
/* ================= TEAM ================= */
 .team-note {
     border: 1px solid var(--line-soft);
     background: var(--white);
     padding: 16px 20px;
     border-radius: 14px;
     font-size: 0.86rem;
     color: var(--ink-soft);
     margin-bottom: 44px;
     max-width: 640px;
}
 .team-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 22px;
}
 @media (max-width: 820px) {
     .team-grid {
         grid-template-columns: 1fr 1fr;
    }
}
 @media (max-width: 560px) {
     .team-grid {
         grid-template-columns: 1fr;
    }
}
 .member {
     background: var(--white);
     border: 1px solid var(--line-soft);
     border-radius: var(--radius);
     padding: 26px;
     text-align: left;
}
 .avatar {
     width: 56px;
     height: 56px;
     border-radius: 50%;
     background: var(--gold-grad);
     color: #161310;
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: "Sora";
     font-weight: 700;
     font-size: 1.05rem;
     margin-bottom: 18px;
}
 .member h3 {
     font-size: 1rem;
     margin-bottom: 3px;
     color: var(--ink);
}
 .member .role {
     font-size: 0.8rem;
     color: var(--gold-3);
     font-weight: 600;
     margin-bottom: 12px;
}
 .member p.bio {
     font-size: 0.86rem;
     line-height: 1.55;
     color: var(--ink-soft);
     margin: 0;
}
/* ================= CONTACT ================= */
 .contact-grid {
     display: grid;
     grid-template-columns: 0.9fr 1.1fr;
     gap: 40px;
}
 @media (max-width: 860px) {
     .contact-grid {
         grid-template-columns: 1fr;
    }
}
 .info-card, .form-card {
     background: var(--white);
     border: 1px solid var(--line-soft);
     border-radius: var(--radius);
}
 .info-card {
     padding: 30px;
}
 .form-card {
     padding: 34px;
}
 .info-row {
     display: flex;
     gap: 14px;
     padding: 16px 0;
     border-bottom: 1px solid var(--line-soft);
}
 .info-row:last-child {
     border-bottom: none;
}
 .info-row .ic {
     width: 38px;
     height: 38px;
     border-radius: 10px;
     background: var(--cream-2);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
}
 .info-row .ic svg {
     width: 18px;
     height: 18px;
     color: var(--gold-3);
}
 .info-row .lbl {
     font-size: 0.72rem;
     font-weight: 600;
     color: var(--ink-soft);
     letter-spacing: 0.02em;
     text-transform: uppercase;
}
 .info-row .val {
     font-size: 0.94rem;
     color: var(--ink);
     margin-top: 3px;
}
 .field {
     margin-bottom: 18px;
}
 .field label {
     display: block;
     font-size: 0.82rem;
     color: var(--ink-soft);
     margin-bottom: 7px;
     font-weight: 500;
}
 .field input, .field textarea {
     width: 100%;
     border: 1px solid var(--line-soft);
     background: var(--cream);
     color: var(--ink);
     padding: 13px 15px;
     border-radius: 12px;
     font-family: inherit;
     font-size: 0.95rem;
}
 .field input:focus, .field textarea:focus {
     outline: none;
     border-color: var(--gold-2);
     box-shadow: 0 0 0 3px rgba(217, 169, 74, 0.12);
}
 .field textarea {
     resize: vertical;
     min-height: 120px;
}
 .form-note {
     font-size: 0.8rem;
     color: var(--ink-soft);
     margin-top: 14px;
}
/* ================= BRANCHES ================= */
 .branch-row {
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     justify-content: center;
     margin-top: 36px;
}
 .branch-chip {
     font-size: 0.82rem;
     font-weight: 500;
     padding: 9px 18px;
     border-radius: 100px;
     background: var(--white);
     border: 1px solid var(--line-soft);
     color: var(--ink-soft);
}
/* ================= FOOTER ================= */
 footer {
     background: var(--bg-soft);
     border-top: 1px solid var(--line);
     padding: 60px 0 28px;
}
 .footer-grid {
     display: grid;
     grid-template-columns: 1.5fr repeat(3, 1fr);
     gap: 32px;
     padding-bottom: 36px;
     border-bottom: 1px solid var(--line);
}
 @media (max-width: 760px) {
     .footer-grid {
         grid-template-columns: repeat(2, 1fr);
    }
}
 @media (max-width: 500px) {
     .footer-grid {
         grid-template-columns: 1fr;
    }
}
 .footer-grid h4 {
     font-size: 0.78rem;
     font-weight: 600;
     color: var(--gold-1);
     letter-spacing: 0.03em;
     margin-bottom: 16px;
}
 .footer-grid a, .footer-grid p {
     display: block;
     font-size: 0.88rem;
     color: var(--muted-dark);
     margin-bottom: 11px;
     line-height: 1.5;
}
 .footer-grid a:hover {
     color: var(--white);
}
 .foot-bottom {
     display: flex;
     justify-content: space-between;
     padding-top: 22px;
     font-size: 0.78rem;
     color: var(--muted-dark);
     flex-wrap: wrap;
     gap: 8px;
}
/* ================= RESPONSIVE ================= */
 @media (max-width: 600px) {
     .wrap {
         padding: 0 18px;
    }
     .nav-inner {
         padding: 14px 18px;
    }
     .brand-name {
         font-size: 0.88rem;
    }
     .brand-name small {
         font-size: 0.58rem;
    }
     .hero {
         padding-top: 60px;
    }
     .section {
         padding: 64px 0;
    }
     .section-tight {
         padding: 44px 0;
    }
     .cta-banner {
         padding: 32px 24px;
    }
     .app-banner {
         padding: 30px 24px;
    }
}

.nav-login {
    margin-left: 10px;
    border: 1px solid var(--gold-2);
    color: var(--gold-1) !important;
    background: transparent;
    padding: 9px 18px !important;
}

.nav-login:hover {
    background: rgba(217,169,74,0.12) !important;
    color: var(--gold-1) !important;
}

.nav-signup {
    margin-left: 4px;
    background: var(--gold-grad);
    color: #161310 !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    box-shadow: var(--shadow-gold);
}

.nav-signup:hover {
    filter: brightness(1.06);
    color: #fff !important;
}

footer {
    background: #0b0a08;
    border-top: 1px solid rgba(217, 169, 74, 0.18);
    padding: 70px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-grid h4 {
    color: var(--gold-1);
    font-size: 13px;
    letter-spacing: 1.5px;
    margin: 0 0 20px;
}

.footer-grid p {
    color: #aaa49a;
    font-size: 14px;
    line-height: 1.8;
    max-width: 320px;
    margin: 0 0 20px;
}

.footer-grid a {
    display: block;
    color: #aaa49a;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 13px;
    transition: all 0.25s ease;
}

.footer-grid a:hover {
    color: var(--gold-1);
    padding-left: 4px;
}


/* Social Icons */

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(217, 169, 74, 0.25);
    border-radius: 50%;

    color: var(--gold-1);

    margin: 0;

    transition: all 0.25s ease;
}

.footer-social a:hover {
    background: var(--gold-grad);
    color: #161310;
    border-color: var(--gold-1);
    transform: translateY(-3px);
    padding-left: 0;
}

.footer-social i {
    font-size: 16px;
}


/* Bottom */

.foot-bottom {
    margin-top: 55px;
    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #77736c;
    font-size: 12px;
}


/* Mobile */

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }

}

@media (max-width: 600px) {

    footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-company {
        max-width: 100%;
    }

    .foot-bottom {
        flex-direction: column;
        align-items: flex-start;
        line-height: 1.6;
    }

}