*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } :root { --gold: #C9A24A; --gold-light: #e0b560; --gold-dim: #6e5020; --white: #f0f2f4; --white-dim: #8a9199; --bg: #000; --bg-panel: #0a0a0a; --bg-card: #111; --border: #1e1e1e; } html { scroll-behavior: smooth; } body { background: var(--bg); color: var(--white); font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; } h1,h2,h3,h4,h5 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.2; } .mono { font-family: 'Space Mono', monospace; } a { color: var(--gold); text-decoration: none; } a:hover { color: var(--gold-light); } /* ANNOUNCEMENT BAR */ #announce-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: #0d0900; border-bottom: 1px solid var(--gold-dim); padding: 8px 20px; text-align: center; font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 0.08em; color: var(--gold); } #announce-bar span { animation: pulse-gold 3s ease-in-out infinite; } @keyframes pulse-gold { 0%,100% { opacity: 1; } 50% { opacity: 0.55; } } /* NAV */ #main-nav { position: fixed; top: 37px; left: 0; right: 0; z-index: 999; background: rgba(0,0,0,0.92); border-bottom: 1px solid #1a1a1a; backdrop-filter: blur(12px); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 56px; } .nav-logo { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: 0.18em; color: var(--white); } .nav-logo span { color: var(--gold); } .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; } .nav-links a { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.06em; color: var(--white-dim); transition: color 0.3s; } .nav-links a:hover { color: var(--white); } .nav-cta { background: var(--gold); color: #000 !important; padding: 8px 20px; font-size: 12px !important; font-weight: 600 !important; letter-spacing: 0.1em !important; transition: background 0.3s !important; } .nav-cta:hover { background: var(--gold-light) !important; color: #000 !important; } .nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; } /* CINEMATIC SECTIONS */ .cin-section { min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; } .cin-bg { position: absolute; inset: -5%; background-size: cover; background-position: center; transition: transform 12s ease-out; transform: scale(1.12); will-change: transform; } .cin-section.cin-active .cin-bg { transform: scale(1.0); } .cin-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.75); } .cin-content { position: relative; z-index: 10; text-align: center; padding: 40px 20px; max-width: 900px; opacity: 0; transform: translateY(30px); transition: opacity 1.8s ease 0.3s, transform 1.8s ease 0.3s; } .cin-section.cin-active .cin-content { opacity: 1; transform: translateY(0); } .cin-eyebrow { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; } .cin-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(36px, 6vw, 80px); font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 20px; } .cin-title.gold { color: var(--gold); } .cin-sub { font-family: 'Inter', sans-serif; font-size: clamp(16px, 2vw, 22px); color: var(--white-dim); font-weight: 300; letter-spacing: 0.04em; } .cin-gold-line { width: 80px; height: 2px; background: var(--gold); margin: 28px auto; } /* SECTION 1 — SILENCE */ #cin-1 { background: #000; padding-top: 93px; } /* STAT BAR */ #stat-bar { background: #070707; border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a; padding: 36px 40px; } .stat-bar-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; } .stat-item { padding: 0 40px; border-right: 1px solid #1a1a1a; } .stat-item:first-child { padding-left: 0; } .stat-item:last-child { border-right: none; } .stat-num { font-family: 'Space Mono', monospace; font-size: clamp(22px, 3vw, 36px); font-weight: 700; color: var(--gold); display: block; margin-bottom: 6px; } .stat-label { font-size: 13px; color: var(--white-dim); letter-spacing: 0.04em; line-height: 1.4; } .stat-sub { font-size: 11px; color: var(--gold-dim); font-style: italic; margin-top: 4px; display: block; } /* CTA ROW */ #cta-row { background: #000; padding: 60px 40px; text-align: center; } .btn { display: inline-block; padding: 14px 36px; font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: all 0.4s ease; text-decoration: none; } .btn-gold { background: var(--gold); color: #000; border: 2px solid var(--gold); } .btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: #000; } .btn-ghost { background: transparent; color: var(--gold); border: 2px solid var(--gold-dim); } .btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); } .cta-row-btns { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; } /* GENERAL SECTION STYLES */ .section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; } .section-full { padding: 100px 40px; background: var(--bg-panel); } .section-full .section-inner { max-width: 1200px; margin: 0 auto; } .section-tag { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 16px; } .section-title { font-size: clamp(28px, 4vw, 52px); font-weight: 700; color: var(--white); margin-bottom: 16px; } .section-subtitle { font-size: 17px; color: var(--white-dim); max-width: 700px; font-weight: 300; } .gold-divider { width: 60px; height: 2px; background: var(--gold); margin: 28px 0; } /* INVESTMENT THESIS — CHARTS */ #investment-thesis { background: #050505; padding: 100px 40px; border-top: 1px solid #111; } .thesis-inner { max-width: 1200px; margin: 0 auto; } .thesis-header { margin-bottom: 80px; } /* CHART 1 — ASSET FLOW PIPELINE */ .pipeline-wrap { margin: 60px 0; } .pipeline-title { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 36px; } .pipeline-track { display: flex; align-items: center; gap: 0; overflow-x: auto; padding-bottom: 12px; } .pipeline-box { flex: 1; min-width: 160px; background: #0d0d0d; border: 1px solid var(--gold-dim); padding: 20px 16px; text-align: center; position: relative; } .pipeline-box-title { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: var(--white); letter-spacing: 0.06em; margin-bottom: 6px; } .pipeline-box-sub { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.08em; } .pipeline-connector { position: relative; width: 50px; flex-shrink: 0; height: 2px; background: var(--gold-dim); overflow: visible; } .pipeline-dot { position: absolute; top: 50%; left: -6px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); transform: translateY(-50%); animation: dot-travel 2.5s linear infinite; } @keyframes dot-travel { 0% { left: -6px; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: calc(100% - 4px); opacity: 0; } } .pipeline-meta { display: flex; gap: 0; margin-top: 20px; } .pipeline-meta-item { flex: 1; min-width: 160px; text-align: center; padding: 12px 10px; border-top: 1px solid #1a1a1a; } .pipeline-meta-val { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--gold); display: block; } .pipeline-meta-label { font-size: 11px; color: var(--white-dim); margin-top: 4px; } /* CHART 2 — SCALE PROJECTION */ .scale-wrap { margin: 60px 0; } .scale-row { display: flex; align-items: center; gap: 20px; margin-bottom: 18px; } .scale-label { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--white-dim); width: 160px; flex-shrink: 0; } .scale-bar-track { flex: 1; height: 28px; background: #0d0d0d; border: 1px solid #1a1a1a; position: relative; overflow: hidden; } .scale-bar-fill { position: absolute; left: 0; top: 0; bottom: 0; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); width: 0; transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1); } .scale-val { font-family: 'Space Mono', monospace; font-size: 13px; color: var(--gold); width: 100px; flex-shrink: 0; text-align: right; } /* CHART 3 — UNIT ECONOMICS */ .unit-table { width: 100%; border-collapse: collapse; margin: 16px 0; } .unit-table tr { border-bottom: 1px solid #1a1a1a; } .unit-table tr:last-child { border-bottom: none; } .unit-table td { padding: 14px 20px; font-size: 14px; color: var(--white-dim); } .unit-table td:first-child { font-family: 'Inter', sans-serif; font-weight: 500; color: var(--white); } .unit-table td:last-child { font-family: 'Space Mono', monospace; color: var(--gold); text-align: right; font-size: 15px; } .unit-table tr:hover td { background: #0d0d0d; } /* CHART 4 — DONUT */ .donut-wrap { display: flex; align-items: center; gap: 60px; flex-wrap: wrap; } .donut-chart { width: 260px; height: 260px; border-radius: 50%; position: relative; flex-shrink: 0; background: conic-gradient( #C9A24A 0% 30%, #a07830 30% 55%, #7a5820 55% 70%, #5a4010 70% 82%, #3a2808 82% 92%, #2a1c08 92% 97%, #1a1004 97% 100% ); } .donut-hole { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 130px; height: 130px; background: #050505; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-direction: column; } .donut-center-val { font-family: 'Space Mono', monospace; font-size: 18px; font-weight: 700; color: var(--gold); } .donut-center-sub { font-size: 9px; color: var(--white-dim); letter-spacing: 0.08em; } .donut-legend { flex: 1; min-width: 240px; } .legend-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: 13px; } .legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; } .legend-name { color: var(--white); flex: 1; } .legend-pct { font-family: 'Space Mono', monospace; color: var(--gold); font-size: 12px; } /* CHART 5 — NFCC ARCHITECTURE */ .arch-flow { display: flex; flex-direction: column; align-items: flex-start; gap: 0; max-width: 600px; } .arch-box { width: 100%; background: #0d0d0d; border: 1px solid #1e1e1e; border-left: 3px solid var(--gold); padding: 18px 24px; } .arch-box-title { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; } .arch-box-desc { font-size: 12px; color: var(--white-dim); } .arch-arrow { width: 2px; height: 32px; background: var(--gold-dim); margin-left: 30px; position: relative; } .arch-arrow::after { content: ''; position: absolute; bottom: -6px; left: -4px; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 8px solid var(--gold-dim); } /* CHART 6 — REVENUE STREAMS */ .rev-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; } .rev-label { font-size: 13px; color: var(--white); width: 220px; flex-shrink: 0; } .rev-bar-track { flex: 1; height: 22px; background: #0d0d0d; border: 1px solid #1a1a1a; position: relative; overflow: hidden; } .rev-bar-fill { position: absolute; left: 0; top: 0; bottom: 0; background: linear-gradient(90deg, var(--gold-dim), var(--gold-light)); width: 0; transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1); } .rev-pct { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--gold); width: 40px; text-align: right; flex-shrink: 0; } /* CHART 7 — ADOPTION FUNNEL */ .funnel-wrap { display: flex; flex-direction: column; align-items: center; gap: 0; } .funnel-stage { display: flex; align-items: center; gap: 20px; margin-bottom: 6px; width: 100%; max-width: 800px; opacity: 0; transform: translateY(20px); transition: opacity 1s ease, transform 1s ease; } .funnel-stage.vis { opacity: 1; transform: translateY(0); } .funnel-bar-wrap { flex: 1; display: flex; justify-content: center; } .funnel-bar { height: 36px; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; color: #000; letter-spacing: 0.06em; transition: width 0.8s ease; } .funnel-meta { width: 160px; flex-shrink: 0; font-size: 12px; color: var(--white-dim); font-family: 'Space Mono', monospace; } /* CHART CARD WRAPPER */ .chart-card { background: #0a0a0a; border: 1px solid #1a1a1a; padding: 40px; margin-bottom: 40px; } .chart-num { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--gold-dim); letter-spacing: 0.2em; margin-bottom: 8px; } .chart-title { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 6px; } .chart-desc { font-size: 13px; color: var(--white-dim); margin-bottom: 32px; } /* HOW IT WORKS */ #how-it-works { background: #000; padding: 100px 40px; } .how-inner { max-width: 800px; margin: 0 auto; } .step-wrap { position: relative; padding-left: 60px; margin-bottom: 0; } .step-line { position: absolute; left: 22px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--gold-dim) 0%, transparent 100%); } .step-item { position: relative; padding-bottom: 56px; opacity: 0; transform: translateX(-20px); transition: opacity 1s ease, transform 1s ease; } .step-item.vis { opacity: 1; transform: translateX(0); } .step-item:last-child { padding-bottom: 0; } .step-dot { position: absolute; left: -48px; top: 4px; width: 28px; height: 28px; border-radius: 50%; background: #000; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; } .step-num-inner { font-family: 'Space Mono', monospace; font-size: 9px; color: var(--gold); } .step-title { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 10px; } .step-desc { font-size: 15px; color: var(--white-dim); line-height: 1.7; max-width: 560px; } .step-icon { margin-top: 14px; } .step-icon svg { width: 32px; height: 32px; stroke: var(--gold); fill: none; stroke-width: 1.5; } /* DECLARATION */ #declaration { background: #050505; border-top: 1px solid #111; border-bottom: 1px solid #111; padding: 120px 40px; text-align: center; } .decl-title { font-family: 'Space Grotesk', sans-serif; font-size: clamp(28px, 5vw, 60px); font-weight: 700; color: var(--white); margin-bottom: 32px; max-width: 900px; margin-left: auto; margin-right: auto; } .decl-statement { font-size: clamp(16px, 2vw, 20px); color: var(--white-dim); max-width: 740px; margin: 0 auto; font-weight: 300; line-height: 1.8; } .decl-statement strong { color: var(--gold); font-weight: 600; } /* STACK */ #stack-section { background: #000; padding: 100px 40px; } .stack-grid { margin-top: 60px; } .stack-layer { display: flex; align-items: stretch; border: 1px solid #1a1a1a; border-bottom: none; } .stack-layer:last-child { border-bottom: 1px solid #1a1a1a; } .stack-layer-id { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--gold); letter-spacing: 0.12em; writing-mode: horizontal-tb; padding: 24px 20px; border-right: 1px solid #1a1a1a; background: #070707; min-width: 70px; display: flex; align-items: center; justify-content: center; } .stack-layer-content { flex: 1; padding: 24px 32px; } .stack-layer-name { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; } .stack-layer-desc { font-size: 13px; color: var(--white-dim); line-height: 1.6; } .stack-layer-tag { padding: 24px 20px; font-family: 'Space Mono', monospace; font-size: 10px; color: var(--gold-dim); border-left: 1px solid #1a1a1a; display: flex; align-items: center; min-width: 140px; text-align: center; } /* DEPLOYMENT */ #deployment { background: #070707; border-top: 1px solid #111; padding: 100px 40px; } .regions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1px; background: #1a1a1a; margin-top: 50px; border: 1px solid #1a1a1a; } .region-card { background: #070707; padding: 28px 24px; transition: background 0.4s; } .region-card:hover { background: #0d0d0d; } .region-code { font-family: 'Space Mono', monospace; font-size: 10px; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 10px; } .region-name { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 6px; } .region-desc { font-size: 12px; color: var(--white-dim); line-height: 1.5; } /* VALUE FLOW */ #value-flow { background: #000; padding: 100px 40px; } .value-streams-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1px; background: #111; margin-top: 50px; border: 1px solid #111; } .stream-card { background: #000; padding: 32px; transition: background 0.4s; border-bottom: 2px solid transparent; } .stream-card:hover { background: #070707; border-bottom-color: var(--gold); } .stream-num { font-family: 'Space Mono', monospace; font-size: 28px; color: var(--gold-dim); font-weight: 700; margin-bottom: 12px; } .stream-name { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; } .stream-desc { font-size: 13px; color: var(--white-dim); line-height: 1.6; } /* IMPLEMENTATION */ #implementation { background: #070707; border-top: 1px solid #111; padding: 100px 40px; } .impl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 50px; } .impl-list { list-style: none; } .impl-list li { padding: 12px 0; border-bottom: 1px solid #111; font-size: 14px; color: var(--white-dim); display: flex; align-items: flex-start; gap: 12px; } .impl-list li::before { content: '→'; color: var(--gold); font-family: 'Space Mono', monospace; flex-shrink: 0; } .impl-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #1a1a1a; border: 1px solid #1a1a1a; align-self: start; } .impl-metric { background: #070707; padding: 24px; } .impl-metric-val { font-family: 'Space Mono', monospace; font-size: 22px; color: var(--gold); font-weight: 700; margin-bottom: 4px; } .impl-metric-label { font-size: 11px; color: var(--white-dim); letter-spacing: 0.04em; } /* WHY URTI */ #why-urti { background: #000; padding: 100px 40px; } .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: #111; margin-top: 50px; border: 1px solid #111; } .why-card { background: #000; padding: 40px; } .why-card.problem { border-left: 3px solid #3a1a1a; } .why-card.solution { border-left: 3px solid var(--gold); } .why-card-tag { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.2em; margin-bottom: 16px; } .problem .why-card-tag { color: #8a3030; } .solution .why-card-tag { color: var(--gold); } .why-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 12px; } .why-card-desc { font-size: 14px; color: var(--white-dim); line-height: 1.7; } /* DEFENSIBILITY */ #defensibility { background: #070707; border-top: 1px solid #111; padding: 100px 40px; } .def-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 50px; } .def-card { background: #000; border: 1px solid #1a1a1a; padding: 32px; transition: border-color 0.4s; } .def-card:hover { border-color: var(--gold-dim); } .def-icon { font-family: 'Space Mono', monospace; font-size: 24px; color: var(--gold); margin-bottom: 16px; } .def-title { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; } .def-desc { font-size: 13px; color: var(--white-dim); line-height: 1.6; } /* WHY NOW */ #why-now { background: #000; padding: 100px 40px; } .now-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 50px; } .now-card { background: #0a0a0a; border: 1px solid #1a1a1a; border-top: 2px solid var(--gold); padding: 32px; } .now-card-num { font-family: 'Space Mono', monospace; font-size: 36px; color: var(--gold-dim); font-weight: 700; margin-bottom: 14px; } .now-card-title { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; } .now-card-desc { font-size: 13px; color: var(--white-dim); line-height: 1.6; } /* FUTURE */ #future-section { background: #050505; border-top: 1px solid #111; padding: 120px 40px; text-align: center; } .future-title { font-size: clamp(32px, 5vw, 64px); font-weight: 700; color: var(--white); margin-bottom: 24px; } .future-desc { font-size: clamp(15px, 2vw, 19px); color: var(--white-dim); max-width: 700px; margin: 0 auto 48px; font-weight: 300; line-height: 1.8; } .future-pillars { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; margin-top: 60px; } .future-pillar { text-align: center; } .future-pillar-val { font-family: 'Space Mono', monospace; font-size: 28px; color: var(--gold); font-weight: 700; display: block; } .future-pillar-label { font-size: 12px; color: var(--white-dim); letter-spacing: 0.06em; } /* FOUNDER */ #founder { background: #000; padding: 100px 40px; } .founder-inner { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: 240px 1fr; gap: 60px; align-items: start; } .founder-portrait { aspect-ratio: 1; background: #0d0d0d; border: 1px solid #1e1e1e; display: flex; align-items: center; justify-content: center; } .founder-initials { font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 700; color: var(--gold-dim); } .founder-tag { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; } .founder-name { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--white); margin-bottom: 6px; } .founder-title { font-size: 14px; color: var(--gold); margin-bottom: 24px; font-family: 'Space Mono', monospace; } .founder-bio { font-size: 15px; color: var(--white-dim); line-height: 1.8; margin-bottom: 28px; } .founder-quote { border-left: 3px solid var(--gold); padding: 16px 24px; background: #070707; font-style: italic; font-size: 15px; color: var(--white); line-height: 1.7; } /* ACCESS */ #access { background: #070707; border-top: 1px solid #111; padding: 100px 40px; } .access-inner { max-width: 800px; margin: 0 auto; } .access-row { display: flex; align-items: center; justify-content: space-between; padding: 28px 32px; border: 1px solid #1a1a1a; margin-bottom: 12px; background: #000; transition: border-color 0.4s, background 0.4s; flex-wrap: wrap; gap: 20px; } .access-row:hover { border-color: var(--gold-dim); background: #070707; } .access-row-left { flex: 1; } .access-row-title { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 4px; } .access-row-desc { font-size: 13px; color: var(--white-dim); } .access-row-btn { background: var(--gold); color: #000; padding: 10px 24px; font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.3s; white-space: nowrap; display: inline-block; } .access-row-btn:hover { background: var(--gold-light); color: #000; } /* FOOTER */ #footer { background: #000; border-top: 1px solid #111; padding: 60px 40px 40px; } .footer-inner { max-width: 1200px; margin: 0 auto; } .footer-top { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid #111; margin-bottom: 32px; } .footer-brand-name { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; letter-spacing: 0.14em; color: var(--white); margin-bottom: 8px; } .footer-brand-sub { font-size: 12px; color: var(--white-dim); max-width: 280px; line-height: 1.6; } .footer-nav-title { font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; } .footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 10px; } .footer-nav-list a { font-size: 13px; color: var(--white-dim); transition: color 0.3s; } .footer-nav-list a:hover { color: var(--white); } .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; } .footer-legal { font-size: 11px; color: #444; line-height: 1.6; max-width: 600px; } .footer-copy { font-family: 'Space Mono', monospace; font-size: 11px; color: #333; } /* SCROLL REVEAL */ .reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s ease, transform 1s ease; } .reveal.vis { opacity: 1; transform: translateY(0); } /* RESPONSIVE */ @media (max-width: 768px) { #main-nav { padding: 0 20px; } .nav-links { display: none; } .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 93px; left: 0; right: 0; background: rgba(0,0,0,0.97); padding: 20px; border-bottom: 1px solid #1a1a1a; } .nav-mobile-toggle { display: block; } .stat-bar-inner { grid-template-columns: 1fr; } .stat-item { border-right: none; border-bottom: 1px solid #1a1a1a; padding: 20px 0; } .stat-item:last-child { border-bottom: none; } .founder-inner { grid-template-columns: 1fr; } .impl-grid { grid-template-columns: 1fr; } .why-grid { grid-template-columns: 1fr; } .section { padding: 60px 20px; } .section-full { padding: 60px 20px; } #investment-thesis, #how-it-works, #declaration, #stack-section, #deployment, #value-flow, #implementation, #why-urti, #defensibility, #why-now, #future-section, #founder, #access, #stat-bar, #cta-row { padding-left: 20px; padding-right: 20px; } .chart-card { padding: 24px; } .pipeline-track { flex-direction: column; align-items: stretch; } .pipeline-connector { width: 2px; height: 30px; margin: 0 auto; } .donut-wrap { flex-direction: column; align-items: center; } }
Sovereign-Grade Financial Infrastructure
Forests. Metals. Energy. Land.
Origin. Ownership. Compliance.
Non-Fungible Compliance Certificates.
5 Regions. 200+ CAP Templates.
Certification. Transactions. Licensing.
"URTI does not participate in markets. It defines how they operate."
A quantitative analysis of the URTI infrastructure opportunity. Targeting $19T+ in addressable global asset markets — starting with a $66M supply chain pilot.
| 1 Tree NFCC | $4.00 |
| 1 Pallet NFCC | $2.00 |
| Minimum Order | 500,000 units |
| Revenue per Client | $33M – $66M |
| 10 Clients | $660M+ |
| 100 Clients | $6.6B+ |
| Global Deployment | $19T+ addressable |
From physical origin to global market — six steps that redefine how real-world assets create financial value.
A tree is registered at origin with GPS coordinates, species data, and ownership verification. Every physical asset receives a unique identity before anything else occurs.
A Non-Fungible Compliance Certificate is issued — cryptographic proof of origin, custody, and compliance. This is the foundational instrument of the URTI system.
The NFCC hash is permanently anchored on Polygon — immutable, auditable, quantum-resistant. The record cannot be altered. The chain of custody cannot be broken.
The verified asset becomes a programmable digital instrument — tradable, fractionable, globally accessible. Static resources are converted into dynamic financial instruments.
Certified assets enter global markets — institutional buyers, sovereign wealth funds, enterprise supply chains. The URTI network spans 5 regions and 200+ CAP-certified commodity templates.
Every certification, transaction, and license generates revenue. Static assets become dynamic financial instruments yielding certification fees, transaction settlement, and enterprise licensing income.
The global economy runs on real assets — forests, metals, energy, land. Yet the infrastructure to certify, tokenize, and trade those assets has never existed at institutional grade. Until now. URTI provides the missing layer between the physical world and the financial system.
Five sovereign layers. One integrated financial infrastructure.
Five strategic regions. Simultaneous infrastructure deployment. A single global standard.
Six distinct revenue streams create a resilient, compounding financial engine.
The $66M pilot demonstrates the model at institutional scale. Forestry and pallet infrastructure as the proving ground for a universal protocol.
Four structural defenses that compound over time.
Four macroeconomic forces converging to create a once-in-a-generation infrastructure opportunity.
In ten years, every significant physical asset on Earth will carry a digital certification record. Supply chains will be cryptographically auditable. Sovereign wealth funds will trade tokenized forests. Carbon markets will be trustless. URTI will be the infrastructure that makes all of it possible.
André Meccya Williams is the architect behind URTI Global — a sovereign-grade financial infrastructure built to certify, tokenize, and standardize real-world assets at institutional scale. His vision: every physical asset on Earth should have a cryptographically verifiable identity, and every transaction involving that asset should flow through a universal protocol.
Building at the intersection of physical commodities, blockchain infrastructure, and institutional finance, Williams has designed a system that does not seek to compete within existing markets — but to define how those markets operate going forward.
"We are not building another fintech product. We are building the certification layer that the $19 trillion real-world asset market has never had. When this infrastructure is in place, every tree, every metal, every unit of energy will have an immutable financial identity. That is not a feature. That is a new standard."
URTI operates at institutional grade. Access is selective. All inquiries are reviewed by the founding team.
Every certified asset receives a sovereign-grade NFCC — an immutable, on-chain compliance record that travels with the asset across every transaction and jurisdiction.
EXAMPLE CERTIFICATE — EVERY CERTIFIED ASSET RECEIVES AN IMMUTABLE NFCC ON-CHAIN
Certificates are issued per asset, per transaction, per jurisdictional requirement. Tamper-proof. Institutionally auditable.
From rare earth metals to space-mined minerals, from timber to stem cells — every physical resource on the planet is certifiable through the URTI Non-Fungible Compliance Certificate infrastructure. Click any tile.
100+ COMMODITY CLASSES · EVERY PHYSICAL RESOURCE ON EARTH AND BEYOND