:root {
 --bg: #050507;
 --bg-alt: #0b0c10;
 --text: #f5f5f5;
 --muted: #b3b3b3;
 --accent: #d4af37;
 --accent-soft: #f3e4b0;
 --card: #111218;
 --border: #262733;
 --font-main: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
 "Segoe UI", sans-serif;
 --font-serif: "Georgia", "Times New Roman", serif;
 }
 * {
 box-sizing: border-box;
 margin: 0;
 padding: 0;
 }
 body {
 background: radial-gradient(circle at top, #151623 0, #050507 55%);
 color: var(--text);
 font-family: var(--font-main);
 line-height: 1.6;
 }
 a {
 color: inherit;
 text-decoration: none;
 }
 img {
 max-width: 100%;
 display: block;
 }
 /* Layout */
 header {
 position: sticky;
 top: 0;
 z-index: 50;
 backdrop-filter: blur(18px);
 background: linear-gradient(to bottom, rgba(5,5,7,0.96), rgba(5,5,7,0.85));
 border-bottom: 1px solid rgba(255,255,255,0.04);
 }
 .nav {
 max-width: 1120px;
 margin: 0 auto;
 padding: 0.9rem 1.5rem;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 1.5rem;
 }
 .nav-left {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 }
 .nav-logo-mark {
 width: 32px;
 height: 32px;
 border-radius: 999px;
 border: 1px solid rgba(212,175,55,0.6);
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 0.8rem;
 color: var(--accent);
 background: radial-gradient(circle at 30% 0%, #2b2520, #050507 70%);
 overflow: hidden;
 }
 .nav-logo-text {
 font-size: 0.9rem;
 letter-spacing: 0.18em;
 text-transform: uppercase;
 color: var(--muted);
 }
 .nav-links {
 display: flex;
 gap: 1.5rem;
 font-size: 0.85rem;
 text-transform: uppercase;
 letter-spacing: 0.16em;
 color: var(--muted);
 }
 .nav-links a {
 position: relative;
 padding-bottom: 0.25rem;
 }
 .nav-links a::after {
 content: "";
 position: absolute;
 left: 0;
 bottom: 0;
 width: 0;
 height: 1px;
 background: linear-gradient(90deg, var(--accent), var(--accent-soft));
 transition: width 0.25s ease;
 }
 .nav-links a:hover::after {
 width: 100%;
 }
 .nav-cta {
 font-size: 0.8rem;
 text-transform: uppercase;
 letter-spacing: 0.18em;
 padding: 0.55rem 1.4rem;
 border-radius: 999px;
 border: 1px solid rgba(212,175,55,0.7);
 background: radial-gradient(circle at 0 0, rgba(212,175,55,0.18), transparent
60%);
 color: var(--accent-soft);
 cursor: pointer;
 transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s
ease;
 }
 .nav-cta:hover {
 background: radial-gradient(circle at 0 0, rgba(212,175,55,0.28), transparent
65%);
 box-shadow: 0 0 24px rgba(212,175,55,0.25);
 transform: translateY(-1px);
 }
 main {
 max-width: 1120px;
 margin: 0 auto;
 padding: 2.5rem 1.5rem 4rem;
 }
 section {
 padding: 3.5rem 0;
 border-bottom: 1px solid rgba(255,255,255,0.04);
 }
 section:last-of-type {
 border-bottom: none;
 }
 .section-label {
 font-size: 0.75rem;
 text-transform: uppercase;
 letter-spacing: 0.22em;
 color: var(--muted);
 margin-bottom: 0.75rem;
 }
 .section-heading {
 font-family: var(--font-serif);
 font-size: 2.1rem;
 letter-spacing: 0.04em;
 margin-bottom: 1.5rem;
 }
 .section-sub {
 font-size: 0.95rem;
 color: var(--muted);
 max-width: 540px;
 margin-bottom: 2rem;
 }
 .grid-2 {
 display: grid;
 grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
 gap: 2.5rem;
 align-items: center;
 }
 .grid-2.reverse {
 grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
 }
 .card {
 background: radial-gradient(circle at top left, #1b1c26, #090a0f 60%);
 border-radius: 18px;
 border: 1px solid var(--border);
 padding: 1.5rem;
 box-shadow: 0 18px 40px rgba(0,0,0,0.55);
 }
 .card-soft {
 background: linear-gradient(135deg, #14151f, #090a0f);
 border-radius: 18px;
 border: 1px solid rgba(255,255,255,0.04);
 padding: 1.5rem;
 }
 .pill {
 display: inline-flex;
 align-items: center;
 gap: 0.4rem;
 padding: 0.25rem 0.7rem;
 border-radius: 999px;
 border: 1px solid rgba(212,175,55,0.5);
 font-size: 0.7rem;
 text-transform: uppercase;
 letter-spacing: 0.18em;
 color: var(--accent-soft);
 margin-bottom: 0.9rem;
 }
 .pill-dot {
 width: 6px;
 height: 6px;
 border-radius: 999px;
 background: var(--accent);
 }
 .hero {
 padding-top: 3.5rem;
 }
 .hero-title {
 font-family: var(--font-serif);
 font-size: 2.6rem;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 margin-bottom: 0.75rem;
 }
 .hero-sub {
 font-size: 0.98rem;
 color: var(--muted);
 max-width: 520px;
 margin-bottom: 1.75rem;
 }
 .hero-tagline {
 font-size: 0.8rem;
 text-transform: uppercase;
 letter-spacing: 0.22em;
 color: var(--accent-soft);
 margin-bottom: 1.25rem;
 }
 .hero-cta-row {
 display: flex;
 flex-wrap: wrap;
 gap: 0.9rem;
 align-items: center;
 margin-bottom: 1.5rem;
 }
 .btn-primary {
 font-size: 0.8rem;
 text-transform: uppercase;
 letter-spacing: 0.18em;
 padding: 0.7rem 1.6rem;
 border-radius: 999px;
 border: 1px solid rgba(212,175,55,0.8);
 background: radial-gradient(circle at 0 0, rgba(212,175,55,0.3), #050507
70%);
 color: var(--accent-soft);
 cursor: pointer;
 transition: background 0.25s ease, transform 0.15s ease, box-shadow 0.25s
ease;
 }
 .btn-primary:hover {
 background: radial-gradient(circle at 0 0, rgba(212,175,55,0.4), #050507
70%);
 box-shadow: 0 0 26px rgba(212,175,55,0.35);
 transform: translateY(-1px);
 }
 .btn-ghost {
 font-size: 0.8rem;
 text-transform: uppercase;
 letter-spacing: 0.18em;
 padding: 0.7rem 1.4rem;
 border-radius: 999px;
 border: 1px solid rgba(255,255,255,0.16);
 background: transparent;
 color: var(--muted);
 cursor: pointer;
 transition: border 0.25s ease, color 0.25s ease, background 0.25s ease;
 }
 .btn-ghost:hover {
 border-color: rgba(255,255,255,0.32);
 color: var(--text);
 background: rgba(255,255,255,0.02);
 }
 .hero-meta {
 font-size: 0.75rem;
 color: var(--muted);
 }
 .hero-meta span {
 color: var(--accent-soft);
 }
 .hero-image-frame {
 border-radius: 22px;
 overflow: hidden;
 border: 1px solid rgba(212,175,55,0.5);
 background: radial-gradient(circle at top, #26232a, #050507 70%);
 padding: 0.9rem;
 position: relative;
 }
 .hero-image-inner {
 border-radius: 18px;
 overflow: hidden;
 background: #000;
 }
 .hero-image-caption {
 position: absolute;
 left: 1.2rem;
 bottom: 1.1rem;
 font-size: 0.7rem;
 text-transform: uppercase;
 letter-spacing: 0.18em;
 color: rgba(255,255,255,0.7);
 background: rgba(0,0,0,0.55);
 padding: 0.35rem 0.7rem;
 border-radius: 999px;
 border: 1px solid rgba(255,255,255,0.18);
 backdrop-filter: blur(10px);
 }
 .pill-row {
 display: flex;
 flex-wrap: wrap;
 gap: 0.5rem;
 margin-top: 0.75rem;
 }
 .pill-soft {
 font-size: 0.7rem;
 text-transform: uppercase;
 letter-spacing: 0.16em;
 padding: 0.3rem 0.7rem;
 border-radius: 999px;
 border: 1px solid rgba(255,255,255,0.08);
 color: var(--muted);
 background: rgba(255,255,255,0.02);
 }
 .columns-3 {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 1.5rem;
 }
 .pillar-title {
 font-size: 0.85rem;
 text-transform: uppercase;
 letter-spacing: 0.18em;
 margin-bottom: 0.5rem;
 color: var(--accent-soft);
 }
 .pillar-body {
 font-size: 0.9rem;
 color: var(--muted);
 }
 .image-card {
 border-radius: 18px;
 overflow: hidden;
 border: 1px solid rgba(255,255,255,0.06);
 background: #000;
 }
 .image-row {
 display: grid;
 grid-template-columns: repeat(3, minmax(0, 1fr));
 gap: 1rem;
 }
 .image-row-2 {
 display: grid;
 grid-template-columns: repeat(2, minmax(0, 1fr));
 gap: 1rem;
 }
 .caption {
 font-size: 0.75rem;
 color: var(--muted);
 margin-top: 0.6rem;
 }
 .badge {
 display: inline-flex;
 align-items: center;
 gap: 0.4rem;
 font-size: 0.75rem;
 text-transform: uppercase;
 letter-spacing: 0.18em;
 color: var(--muted);
 margin-top: 0.75rem;
 }
 .badge-flag {
 width: 16px;
 height: 11px;
 border-radius: 2px;
 background: linear-gradient(to right, #008C45 0 33%, #F4F5F0 33% 66%, #CD212A
66% 100%);
 border: 1px solid rgba(0,0,0,0.4);
 }
 .timeline {
 border-left: 1px solid rgba(255,255,255,0.12);
 padding-left: 1.25rem;
 margin-top: 1rem;
 }
 .timeline-item {
 margin-bottom: 1rem;
 position: relative;
 }
 .timeline-dot {
 width: 9px;
 height: 9px;
 border-radius: 999px;
 background: var(--accent);
 position: absolute;
 left: -1.8rem;
 top: 0.25rem;
 box-shadow: 0 0 0 4px rgba(212,175,55,0.18);
 }
 .timeline-title {
 font-size: 0.85rem;
 text-transform: uppercase;
 letter-spacing: 0.16em;
 margin-bottom: 0.2rem;
 color: var(--accent-soft);
 }
 .timeline-body {
 font-size: 0.85rem;
 color: var(--muted);
 }
 .cta-section {
 text-align: center;
 padding: 3rem 1rem 0;
 }
 .cta-heading {
 font-family: var(--font-serif);
 font-size: 1.9rem;
 letter-spacing: 0.06em;
 text-transform: uppercase;
 margin-bottom: 0.75rem;
 }
 .cta-sub {
 font-size: 0.9rem;
 color: var(--muted);
 max-width: 420px;
 margin: 0 auto 1.8rem;
 }
 footer {
 border-top: 1px solid rgba(255,255,255,0.04);
 padding: 1.5rem;
 font-size: 0.75rem;
 color: var(--muted);
 text-align: center;
 }
 footer span {
 color: var(--accent-soft);
 }
 @media (max-width: 900px) {
 .grid-2,
 .grid-2.reverse {
 grid-template-columns: minmax(0, 1fr);
 }
 .columns-3 {
 grid-template-columns: minmax(0, 1fr);
 }
 .image-row {
 grid-template-columns: repeat(2, minmax(0, 1fr));
 }
 }
 @media (max-width: 640px) {
 .nav {
 flex-wrap: wrap;
 justify-content: center;
 }
 .nav-links {
 display: none;
 }
 .image-row {
 grid-template-columns: minmax(0, 1fr);
 }
 main {
 padding-inline: 1.1rem;
 }
 .hero-title {
 font-size: 2.1rem;
 }
 }

 img.qr-img {
    width: 20%;
    margin: 0 auto;
    margin-top: 20px !important;
}