/*### FONT ###*/
@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@1,500&display=swap');

:root {
  --bg: #0b0f1a;
  --bg-elev: #121726;
  --text: #e6e9f2;
  --muted: #9aa3b2;
  --primary: #4da3ff;
  --primary-700: #2f7ad8;
  --outline: #2a3245;
  --card: #161c2f;
  --success: #58d68d;
  --danger: #ff6b6b;
  --radius: 5px;
  --shadow: 0 12px 30px rgba(0,0,0,0.35);
}


* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Exo 2', sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 75% -50%, rgba(166, 124, 82, 0.5), transparent 60%), #0b0f1a;
  line-height: 1.6;
}

::-webkit-scrollbar-thumb:hover {background-color: rgba(0, 0, 0, 0.4);border: 1px solid rgba(255, 255, 255, 0.9);backdrop-filter: blur(10px) saturate(150%);-webkit-backdrop-filter: blur(10px) saturate(150%); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);}
::-webkit-scrollbar-track {background-color: #0b0f1a;}
::-webkit-scrollbar {width: 7px;background-color: #eaebef;}
::-webkit-scrollbar-thumb { width: 7.5px; background: #a67c52; border-radius: 2.5px;box-shadow: var(--box-shadow);}

/* Utilities */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,15,26,0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(154,163,178,0.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text);
}
.brand-logo { width: 55px; height: 55px; }
.brand-name { font-weight: 700; letter-spacing: 0.2px; color: #a67c52; text-shadow: 0 0 24px #a67c52; }

.main-nav { display: flex; align-items: center; gap: 24px; }
.nav-menu {
  display: flex; align-items: center; gap: 20px; list-style: none; margin: 0; padding: 0;
}
.nav-link {
  color: var(--muted); text-decoration: none; font-weight: 600;
  padding: 8px 12px; border-radius: 5px; transition: color .2s, background .2s;
}
.nav-link:hover { color: #a67c52; text-shadow: 0 0 24px #a67c52;  }
.nav-link.active { color: #a67c52; text-shadow: 0 0 24px #a67c52;  }

.nav-toggle {
  display: none;
  width: 44px; height: 36px; border: 1px solid var(--outline);
  border-radius: 5px; background: transparent; cursor: pointer;
  align-items: center; justify-content: center; gap: 4px;
}
.nav-toggle-bar {
  display: block; width: 20px; height: 2px; background: var(--muted);
}

.header-cta .btn-outline {
  border: 1px solid var(--outline);
  background: transparent;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 5px;
}

/* Buttons */
.btn {
    
    font-family: 'Exo 2', sans-serif;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 700; text-decoration: none; cursor: pointer;
  border: none; border-radius: 5px; transition: background .2s, transform .02s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: #2b3350; color: #e6e9f2; padding: 12px 18px; border-radius: 5px;}
.btn-primary:hover { background: var(--primary-700); color: #fff; }
.btn-secondary { background: #232a40; color: var(--text); padding: 12px 18px; }
.btn-secondary:hover { background: #2b3350; }
.btn-outline:hover { background: rgba(255,255,255,0.06); }
.btn-large { padding: 16px 24px; border-radius: 5px; }

/* Hero */
.hero { position: relative; }
.hero-inner {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 32px;
  padding: 64px 0 48px;
}
.hero-title {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}
.hero-title .accent { color: #a67c52; text-shadow: 0 0 24px #a67c52; }
.hero-subtitle {
  font-size: 18px; color: var(--muted); margin: 0 0 24px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-art {
  display: flex; align-items: center; justify-content: center;
}
.avatar-card {


  padding: 16px;
  max-width: 360px;
}
.avatar-img {
  display: block; width: 100%; height: auto; border-radius: 5px;
  object-fit: cover; 
}
.avatar-meta {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-top: 12px; color: var(--muted);
}
.avatar-name { font-weight: 700; color: var(--text); }
.avatar-signature { font-style: italic; }

.radial-bg {
  position: absolute; inset: -200px 0 auto 50%;
  width: 800px; height: 800px; transform: translateX(-50%);
  background: radial-gradient(closest-side, #a67c5226, transparent 70%);
  filter: blur(40px); pointer-events: none; z-index: -1;
}

/* Features */
.features { padding: 32px 0 60px; }
.section-title { font-size: 28px; margin: 0 0 20px; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.feature-card {
  background: #161c2f;
  border: 1px solid rgba(154,163,178,0.12);
  border-radius: var(--radius);
  padding: 16px;
}
.feature-title { margin: 0 0 8px; font-size: 18px;color: #a67c52; text-shadow: 0 0 24px #a67c52; }
.feature-text { margin: 0; color: var(--muted); }
.feature-text a { color: var(--text); text-decoration: none; }
/* CTA Banner */
.cta-banner {
  background: linear-gradient(90deg, rgba(77,163,255,0.15), rgba(124,198,255,0.10));
  border-top: 1px solid rgba(154,163,178,0.12);
  border-bottom: 1px solid rgba(154,163,178,0.12);
}
.cta-inner {
  padding: 28px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.cta-title { margin: 0; font-size: 22px; }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(154,163,178,0.12);
  background: #0a0f18;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.footer-text { margin: 0; color: var(--muted); }
.footer-links {
  display: flex; gap: 16px; list-style: none; margin: 0; padding: 0;
}
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute; top: 72px; right: 24px;
    background: var(--bg-elev);
    border: 1px solid rgba(154,163,178,0.12);
    border-radius: 5px;
    padding: 8px;
    display: none; flex-direction: column; gap: 6px;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
}


.site-footer {
  background: #0b0f1a;
  color: #e6e9f2;
  font-size: 14px;
  margin-top: 60px;
}

.footer-highlights {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 24px;
}
.highlight {
  text-align: center;
}
.highlight .icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}
.highlight h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.highlight p {
  margin: 0;
  color: #9aa3b2;
}

.footer-main {
  padding: 40px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-brand h2 {
  margin: 0 0 8px;
}
.footer-brand p {
  margin: 4px 0;
}
.footer-brand .copy {
  margin-top: 12px;
  font-size: 13px;
  color: #9aa3b2;
}
.footer-brand .disclaimer {
  margin-top: 12px;
  font-size: 12px;
  color: #7a8395;
  line-height: 1.4;
}

.footer-brand .disclaimer a {
  color: #7a8395;
  text-decoration: none;
}

.footer-links h3 {
  font-size: 15px;
  margin-bottom: 8px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 6px;
}
.footer-links a {
  color: #9aa3b2;
  text-decoration: none;
}
.footer-links a:hover {
  color: #fff;
}

.footer-credit {
  display: flex;
  align-items: flex-end;
  font-size: 13px;
  color: #9aa3b2;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}




























































#onama {}
#onama .timeline {
  position: relative;
  width: 660px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 1em 0;
  list-style-type: none;
}

#onama .timeline:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: ' ';
  display: block;
  width: 6px;
  height: 100%;
  margin-left: -3px;
  background: rgb(80,80,80);
  background: -moz-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,87,153,1)), color-stop(100%,rgba(125,185,232,1)));
  background: -webkit-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  background: -o-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  background: -ms-linear-gradient(top, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  background: linear-gradient(to bottom, rgba(80,80,80,0) 0%, rgb(80,80,80) 8%, rgb(80,80,80) 92%, rgba(80,80,80,0) 100%);
  
  z-index: 5;
}

#onama .timeline li {
  padding: 1em 0;
}

#onama .timeline li:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#onama .direction-l {
  position: relative;
  width: 300px;
  float: left;
  text-align: right;
}

#onama .direction-r {
  position: relative;
  width: 300px;
  float: right;
}

#onama .flag-wrapper {
  position: relative;
  display: inline-block;
  
  text-align: center;
}

#onama .flag {
  position: relative;
  display: inline;
  background: rgb(248,248,248);
  padding: 6px 10px;
  border-radius: 5px;
  
  font-weight: 600;
  text-align: left;
}

#onama .direction-l .flag {
  -webkit-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  -moz-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
}

#onama .direction-r .flag {
  -webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  -moz-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
  box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
}

#onama .direction-l .flag:before,
#onama .direction-r .flag:before {
  position: absolute;
  top: 50%;
  right: -40px;
  content: ' ';
  display: block;
  width: 12px;
  height: 12px;
  margin-top: -10px;
  background: #fff;
  border-radius: 10px;
  border: 4px solid rgb(255,80,80);
  z-index: 10;
}

#onama .direction-r .flag:before {
  left: -40px;
}

#onama .direction-l .flag:after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -8px;
  border: solid transparent;
  border-left-color: rgb(248,248,248);
  border-width: 8px;
  pointer-events: none;
}

#onama .direction-r .flag:after {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  height: 0;
  width: 0;
  margin-top: -8px;
  border: solid transparent;
  border-right-color: rgb(248,248,248);
  border-width: 8px;
  pointer-events: none;
}

#onama .time-wrapper {
  display: inline;
  
  line-height: 1em;
  font-size: 0.66666em;
  color: rgb(250,80,80);
  vertical-align: middle;
}

#onama .direction-l .time-wrapper {
  float: left;
}

#onama .direction-r .time-wrapper {
  float: right;
}

.time {
  display: inline-block;
  padding: 4px 6px;
  background: rgb(248,248,248);
}

.desc {
  margin: 1em 0.75em 0 0;
  
  font-size: 0.77777em;
  font-style: italic;
  line-height: 1.5em;
}

.direction-r .desc {
  margin: 1em 0 0 0.75em;
}

/* ================ Timeline Media Queries ================ */

@media screen and (max-width: 660px) {

.timeline {
 	width: 100%;
	padding: 4em 0 1em 0;
}

.timeline li {
	padding: 2em 0;
}

.direction-l,
.direction-r {
	float: none;
	width: 100%;

	text-align: center;
}

.flag-wrapper {
	text-align: center;
}

.flag {
	background: rgb(255,255,255);
	z-index: 15;
}

.direction-l .flag:before,
.direction-r .flag:before {
  position: absolute;
  top: -30px;
	left: 50%;
	content: ' ';
	display: block;
	width: 12px;
	height: 12px;
	margin-left: -9px;
	background: #fff;
	border-radius: 10px;
	border: 4px solid rgb(255,80,80);
	z-index: 10;
}

.direction-l .flag:after,
.direction-r .flag:after {
	content: "";
	position: absolute;
	left: 50%;
	top: -8px;
	height: 0;
	width: 0;
	margin-left: -8px;
	border: solid transparent;
	border-bottom-color: rgb(255,255,255);
	border-width: 8px;
	pointer-events: none;
}

.time-wrapper {
	display: block;
	position: relative;
	margin: 4px 0 0 0;
	z-index: 14;
}

.direction-l .time-wrapper {
	float: none;
}

.direction-r .time-wrapper {
	float: none;
}

.desc {
	position: relative;
	margin: 1em 0 0 0;
	padding: 1em;
	background: rgb(245,245,245);
	-webkit-box-shadow: 0 0 1px rgba(0,0,0,0.20);
	-moz-box-shadow: 0 0 1px rgba(0,0,0,0.20);
	box-shadow: 0 0 1px rgba(0,0,0,0.20);
	
  z-index: 15;
}

.direction-l .desc,
.direction-r .desc {
	position: relative;
	margin: 1em 1em 0 1em;
	padding: 1em;
	
  z-index: 15;
}

}

@media screen and (min-width: 400px ?? max-width: 660px) {

.direction-l .desc,
.direction-r .desc {
	margin: 1em 4em 0 4em;
}

}