*, *::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; } }
◆ Launching with a $66M supply chain pilot in pallet and forestry infrastructure  |  Sovereign-Grade Asset Certification Now Operational ◆
PROTOCOL: TLTS-v2
LAYER: CERTIFICATION
NODES: 44 ACTIVE
QUANTUM: ANCHORED
CHAIN: DUAL-ACTIVE
CERT: ML-DSA-65
LAT: 34.0°N LNG: 81.0°W
ORIGIN: ROWESVILLE, SC
STATUS: DEPLOYED
NETWORK: GLOBAL
ASSETS: VERIFIED
UPTIME: 99.99%
Universal Reserve Token Infrastructure

URTI GLOBAL

Sovereign-Grade Financial Infrastructure

NETWORK ONLINE
$19T+ RESERVE
44 CATEGORIES
QUANTUM SECURED
The Foundation

Every Asset Begins in the Physical World

Forests. Metals. Energy. Land.

The Process

We Verify It

Origin. Ownership. Compliance.

The Transformation

We Convert It Into Value

Non-Fungible Compliance Certificates.

The Network

We Connect It to the World

5 Regions. 200+ CAP Templates.

The Revenue

We Turn It Into Revenue

Certification. Transactions. Licensing.

The Standard

This Is the New Financial Standard

"URTI does not participate in markets. It defines how they operate."

$66M Active Supply Chain Pilot Forestry & pallet infrastructure — deploying now.
200+ CAP Templates Every certifiable commodity on Earth — food, metals, energy, carbon, biotech, space & more.
$19T+ Addressable Market Designed to scale across $19T+ in global asset markets.
◆ Live Deployment
Launching with real-world deployment
in forestry and pallet supply chains.
The $66M pilot is not a projection — it is active infrastructure in the wood supply chain. This is where the protocol is proven before global expansion.
$66M
Pilot Deal — Active
Request Institutional Briefing Apply for Strategic Access

The Investment Thesis — By The Numbers

A quantitative analysis of the URTI infrastructure opportunity. Targeting $19T+ in addressable global asset markets — starting with a $66M supply chain pilot.

CHART 01 / 07
Asset Flow Pipeline
How a physical asset becomes a revenue-generating financial instrument.
PHYSICAL ASSET
Origin Registered
NFCC ISSUED
Compliance Cert
BLOCKCHAIN ANCHOR
Immutable Record
TOKEN
Digital Instrument
REVENUE
Multiple Streams
$4.00
Tree = 1 NFCC
$2.00
Pallet = 1 NFCC
500K
Min order units
$33M–$66M
Revenue per client
Multiple
Revenue streams
CHART 02 / 07
Scale Projection
From $66M pilot to $19T+ global standard. Each phase expands the certification infrastructure.
Pilot
$66M
Expansion
$660M
Multi-Client
$6.6B
Global Scale
$19T+
CHART 03 / 07
Unit Economics
The mathematics of asset certification at institutional scale.
1 Tree NFCC$4.00
1 Pallet NFCC$2.00
Minimum Order500,000 units
Revenue per Client$33M – $66M
10 Clients$660M+
100 Clients$6.6B+
Global Deployment$19T+ addressable
CHART 04 / 07
$19T+ Market Opportunity
Distribution across 200+ CAP templates spanning 11 commodity categories and 7 major asset classes. These are the global markets URTI is built to serve.
$19T+ TARGET MARKET
Energy (Oil/Gas/Renewables) 30%
Metals (Gold/Silver/Platinum/Copper/Al) 25%
Real Estate & Land 15%
Forestry & Timber 12%
Agriculture 10%
Carbon Credits 5%
Space & Off-Planet 3%
CHART 05 / 07
NFCC Architecture
The five-layer certification stack that transforms physical assets into programmable financial instruments.
Physical Asset Registration
GPS coordinates, species/type data, ownership verification, provenance chain
Compliance Verification
Regulatory audit, environmental standards, custody confirmation, ESG scoring
NFCC Certificate Issued
Non-Fungible Compliance Certificate generated — cryptographic proof of origin and compliance
Blockchain Anchor (Polygon)
NFCC hash permanently recorded on-chain — immutable, auditable, quantum-resistant record
Market Access
Certified asset enters global markets — institutional buyers, sovereign wealth, enterprise supply chains
CHART 06 / 07
Revenue Streams
Six diversified revenue channels provide resilience and compounding growth.
Certification Fees
85%
Tokenization Fees
72%
Transaction & Settlement
90%
Enterprise Licensing
60%
API Infrastructure Access
45%
Carbon Credit Integration
55%
CHART 07 / 07
Adoption Funnel
The path from a $66M pilot to a global financial protocol.
Pilot — $66M
Launch Phase
Partner Network
Regional Expansion
Multi-Client Expansion
$660M+ Stage
Industry Standard
$6.6B+ Stage
Global
$19T+ Protocol

How URTI Works

From physical origin to global market — six steps that redefine how real-world assets create financial value.

01
Asset Registration

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.

02
NFCC Issuance

A Non-Fungible Compliance Certificate is issued — cryptographic proof of origin, custody, and compliance. This is the foundational instrument of the URTI system.

03
Blockchain Anchoring

The NFCC hash is permanently anchored on Polygon — immutable, auditable, quantum-resistant. The record cannot be altered. The chain of custody cannot be broken.

04
Tokenization

The verified asset becomes a programmable digital instrument — tradable, fractionable, globally accessible. Static resources are converted into dynamic financial instruments.

05
Market Access

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.

06
Revenue Generation

Every certification, transaction, and license generates revenue. Static assets become dynamic financial instruments yielding certification fees, transaction settlement, and enterprise licensing income.

A New Financial Standard Has Emerged

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.

The URTI Stack

Five sovereign layers. One integrated financial infrastructure.

L01
Physical Asset Layer
Registration of real-world assets — forests, metals, energy, land. GPS verification, provenance chains, ownership records. The foundational layer from which all value derives.
ORIGIN & CUSTODY
L02
Compliance & Certification Layer
Non-Fungible Compliance Certificates (NFCC) issued after rigorous verification. Regulatory alignment, ESG scoring, audit trails. The trust anchor of the system.
NFCC PROTOCOL
L03
Blockchain Infrastructure Layer
Polygon-anchored immutable records. Smart contract execution, cryptographic hashing, quantum-resistant architecture. Permanence without a single point of failure.
POLYGON NETWORK
L04
Tokenization & Market Layer
Programmable digital instruments backed by verified physical assets. Fractionable, tradable, globally accessible. Transforms static assets into liquid financial instruments.
ASSET TOKENS
L05
Revenue & Settlement Layer
Certification fees, transaction settlement, enterprise licensing, API infrastructure access, carbon credit integration. Six diversified revenue channels operating in parallel.
REVENUE ENGINE

Global Deployment Vision

Five strategic regions. Simultaneous infrastructure deployment. A single global standard.

REG-01
North America
Forestry, agriculture, energy. Initial pilot deployment. Pallet and supply chain infrastructure. Regulatory framework alignment with SEC and CFTC.
REG-02
Europe
Metals, real estate, carbon credits. EU regulatory compliance. MiCA framework alignment. Sovereign wealth fund integration pathways.
REG-03
Asia-Pacific
Energy, minerals, maritime assets. Singapore regulatory hub. Supply chain corridor integration. Institutional banking partnerships.
REG-04
Middle East & Africa
Oil, gas, rare earth minerals, land. Sovereign wealth alignment. Infrastructure-grade deployment. Long-term strategic partnerships.
REG-05
Latin America
Forestry, agriculture, carbon offsets. Amazon basin asset certification. Cross-border settlement infrastructure. ESG compliance frameworks.

How Value Flows Through URTI

Six distinct revenue streams create a resilient, compounding financial engine.

01
Certification Fees
Every NFCC issued generates a certification fee. $4 per tree, $2 per pallet. At 500,000 minimum units, this is $1M–$2M per client per cycle. Recurring, scalable, defensible.
02
Tokenization Fees
When a certified asset is tokenized, URTI captures a tokenization fee. As asset volumes grow, tokenization revenue scales proportionally without additional infrastructure cost.
03
Transaction & Settlement
Every transfer, trade, and settlement of a URTI-certified asset generates a transaction fee. The more liquid the market becomes, the more this stream compounds.
04
Enterprise Licensing
Enterprise clients license the URTI certification infrastructure to embed within their own supply chains, ERP systems, and compliance workflows. Annual recurring revenue at institutional rates.
05
API Infrastructure Access
Third-party financial platforms, exchanges, and data providers access URTI certification data and tokenization rails via API. Usage-based pricing scales with ecosystem growth.
06
Carbon Credit Integration
URTI-certified forestry and land assets generate verifiable carbon credits. Integration with voluntary carbon markets creates an additional monetization layer for certified assets.

Forestry Implementation

The $66M pilot demonstrates the model at institutional scale. Forestry and pallet infrastructure as the proving ground for a universal protocol.

  • GPS-tagged tree registration with species, age, and harvest timeline data
  • NFCC issuance at $4 per tree upon verification completion
  • Pallet manufacturing certification at $2 per unit
  • Blockchain anchoring of all certification records on Polygon
  • Supply chain integration with existing ERP and logistics platforms
  • Carbon offset credit generation for certified forestry assets
  • Institutional buyer access via tokenized asset marketplace
  • Real-time audit trail available to regulatory bodies
  • Minimum order volume: 500,000 units per client engagement
  • Revenue per client: $33M to $66M depending on mix
$66M
Pilot Revenue Target
500K
Min Units / Client
$4.00
Per Tree NFCC
$2.00
Per Pallet NFCC
24hr
Cert Issuance Time
100%
On-Chain Auditability

The Problem. The Solution.

THE PROBLEM
No Universal Standard Exists
Trillions in physical assets — forests, metals, energy, land — are locked in fragmented, opaque systems. No unified certification standard. No trustless chain of custody. No institutional-grade market access for real-world assets.
THE SOLUTION
URTI Becomes the Standard
A sovereign-grade certification infrastructure that transforms any verifiable physical asset into a programmable financial instrument. One protocol. 200+ CAP templates. 5 global regions. Every asset that flows through URTI pays to do so.
THE PROBLEM
Trust Gaps in Supply Chains
Enterprise supply chains are built on paper trails and manual audits. ESG compliance is unverifiable. Carbon offsets are unauditable. Institutional buyers cannot confirm asset provenance. Trust gaps create massive inefficiency.
THE SOLUTION
Cryptographic Proof of Everything
URTI's NFCC protocol provides cryptographic proof of origin, ownership, compliance, and custody — anchored immutably on-chain. Any buyer, regulator, or counterparty can verify any asset in real time without intermediaries.

Why This Cannot Be Replicated

Four structural defenses that compound over time.

[01]
Protocol Lock-In
Once institutional buyers and supply chains integrate URTI certification, switching costs are prohibitive. The protocol becomes embedded in regulatory compliance workflows and enterprise contracts.
[02]
Data Network Effects
Every certified asset adds to the provenance data network. More data makes certification faster and more accurate. More accuracy attracts more assets. The flywheel is self-reinforcing.
[03]
Regulatory Alignment
URTI is designed from the ground up for regulatory compliance across jurisdictions. Building this alignment takes years and deep institutional relationships — not capital alone.
[04]
First-Mover as Standard
Financial protocols that become standards are nearly impossible to displace. URTI is positioning to be to real-world assets what SWIFT is to interbank payments: the only option.

Why This Moment

Four macroeconomic forces converging to create a once-in-a-generation infrastructure opportunity.

01
RWA Tokenization Goes Mainstream
BlackRock, JPMorgan, and Goldman Sachs are actively tokenizing real-world assets. The institutional infrastructure race is underway. URTI provides the certification layer these institutions need.
02
ESG Mandates Require Proof
Regulatory bodies globally are mandating verifiable ESG compliance. Companies need cryptographic proof — not PDFs. URTI's NFCC protocol is the institutional-grade answer.
03
Supply Chain Transparency Crisis
Post-pandemic, supply chain opacity is a board-level risk. Institutional procurement requires provenance verification. The demand for URTI-grade certification has never been higher.
04
Blockchain Infrastructure Matures
Polygon and layer-2 networks now offer enterprise-grade throughput, cost efficiency, and regulatory clarity. The underlying infrastructure that makes URTI possible has reached maturity.

The Future of Asset Ownership

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.

$19T+ Addressable Market
200+ CAP Templates
5 Global Regions
1 Universal Protocol

The Founder

AMW
Founder & Chief Executive
André Meccya Williams
Architect of the URTI Protocol

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."

Request Access

URTI operates at institutional grade. Access is selective. All inquiries are reviewed by the founding team.

Request Institutional Briefing
For sovereign wealth funds, family offices, and institutional investors seeking a full briefing on the URTI investment thesis.
URTIGlobal@gmail.com
Apply for Strategic Partnership
For enterprises, supply chain operators, and commodity market participants seeking to integrate URTI certification into their operations.
URTIGlobal@gmail.com
Enterprise Integration Inquiries
For technology platforms, exchanges, and infrastructure providers seeking API access to URTI certification rails and data.
enterprise@urtiglobal.com

Non-Fungible Compliance Certificate

Every certified asset receives a sovereign-grade NFCC — an immutable, on-chain compliance record that travels with the asset across every transaction and jurisdiction.

URTI 🌲
Non-Fungible Compliance Certificate
URTI Global Network
CERT ID
URTI-NFCC-0001
DEMO CERTIFICATE
COMPLIANCE STATUS: VERIFIED & ACTIVE
ML-DSA-65 PQC SIGNATURE VALID
Asset Type
Mixed Hardwood Timber
Primary commodity: FSC-A
Origin & Jurisdiction
Sweden — Norrland Region
Verified under EU Timber Regulation
Chain of Custody
7 nodes verified
Harvest → Mill → Pallet → Port → Customs
Blockchain Anchoring
Dual-chain
Polygon + QRL (quantum-resistant)
Certification Timestamp
2026-04-11T23:29:00Z
Block #21,847,392 · Immutable
Regulatory Compliance
Lacey Act · EUTR · FLEGT
3 frameworks satisfied automatically
POST-QUANTUM DIGITAL SIGNATURE
3f8a2c…b91d47e2 · ML-DSA-65 · NIST FIPS 204
Signed by: URTI Certification Authority · v4.2
VERIFY ON-CHAIN
URTI GLOBAL CERTIFICATION AUTHORITY · ISO/TC 307 COMPLIANT
NFT TOKEN: 0x4f3a…c8d2

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.

URTI Certifies Everything on Earth

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