/* ===== Navbar ===== */
.navbar {
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid rgba(250, 204, 21, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
}

.nav__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

.nav__logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent, #facc15);
}

.nav__links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.nav__links a:hover {
  color: var(--accent, #facc15);
}

@media (max-width: 700px) {
  .nav__inner {
    flex-direction: column;
    gap: 12px;
  }

  .nav__links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* ===== Notice Bar ===== */
.notice-bar {
  position: relative;
  background: rgba(250, 204, 21, 0.08);
  border-bottom: 1px solid rgba(250, 204, 21, 0.25);
  color: var(--accent);
  font-weight: 500;
  text-align: center;
  padding: 14px 50px;
  font-size: 1rem;
  backdrop-filter: blur(5px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.notice-text {
  display: inline-block;
  line-height: 1.5;
  color: #facc15;
}

.notice-bar strong {
  color: #fff;
}

.notice-close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

.notice-close:hover {
  color: #fff;
}

.notice-bar.hide {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

@media (max-width: 600px) {
  .notice-bar {
    font-size: 0.9rem;
    padding: 12px 40px;
  }

  .notice-close {
    font-size: 1rem;
    right: 12px;
  }
}


/* Coming soon page placeholder layout */
.coming-soon {
  text-align: center;
  padding: 120px 20px;
  color: #fff;
}
/* ===== Root & Global Styles ===== */
:root {
  --accent: #facc15;
  --bg: #0b0d10;
  --text: #e5e5e5;
  --panel: #14161a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
}

/* ===== Header / Hero ===== */
.hero {
  text-align: center;
  padding: 80px 16px 40px;
  background: radial-gradient(circle at top, #1a1a1a 0%, #0b0d10 100%);
}

.hero__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.brand {
  font-size: clamp(24px, 6vw, 40px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 1px;
}

.tagline {
  font-size: clamp(14px, 3.5vw, 18px);
  margin-top: 10px;
  color: #ccc;
}

/* ===== Typewriter (Mobile Safe) ===== */
.typewriter {
  display: inline-block;
  margin: 10px auto 0;
  font-size: 22px;
  border-right: 2px solid var(--accent);
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: blink .8s step-end infinite;
  text-align: center;
  max-width: 100%;
  color: #fff;
}

@keyframes blink {
  50% { border-color: transparent; }
}

@media (max-width: 600px) {
  .typewriter {
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: anywhere;
    width: auto !important;
    font-size: 18px;
  }
}

/* ===== Buttons ===== */
.btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  font-weight: 500;
}

.btn:hover {
  background: var(--accent);
  color: #000;
}

.btn--primary {
  background: var(--accent);
  color: #000;
  border: none;
}

.cta-row {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Sections ===== */
.section {
  padding: 56px 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 900px) {
  .grid.two {
    grid-template-columns: 1fr;
  }
}

/* ===== Panels ===== */
.panel {
  background: var(--panel);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.pill {
  display: inline-block;
  background: rgba(250, 204, 21, 0.1);
  color: var(--accent);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 14px;
  margin-bottom: 10px;
}

.kpis {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.kpi {
  flex: 1 1 120px;
  text-align: center;
}

.kpi .label {
  font-size: 12px;
  color: #aaa;
}

.kpi .value {
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
}

/* ===== Performance List ===== */
.perf__list {
  list-style: none;
  margin-top: 10px;
}

.perf__list li {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  border-bottom: 1px solid #222;
}

.muted {
  color: #aaa;
}

.small {
  font-size: 13px;
}

/* ===== Chart ===== */
.tv-wrap {
  width: 100%;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
}

/* ===== Steps (How to Copy Section) ===== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 20px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(250, 204, 21, 0.05);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 14px 18px;
  transition: background 0.25s ease;
}

.step:hover {
  background: rgba(250, 204, 21, 0.1);
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent, #facc15);
  color: #000;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
}

.step strong {
  color: var(--accent);
}

.steps a {
  color: var(--accent);
  text-decoration: none;
}

.steps a:hover {
  text-decoration: underline;
}

/* ===== Footer ===== */
.footer {
  background: #090a0c;
  text-align: center;
  padding: 30px 16px;
  border-top: 1px solid #111;
}

.footer p {
  color: #888;
  font-size: 13px;
  margin-bottom: 4px;
}

/* ===== Profile Avatar & Header (FIX) ===== */
.profile .profile__header{
  display:flex;
  align-items:center;
  gap:12px;
}

.avatar-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;          /* crop inside the circle */
  object-position: center top;/* show face nicely */
  border: 2px solid var(--accent);
  display: inline-block;
  flex-shrink: 0;
}
/* ===== Large Portrait under name ===== */
.portrait-wrap {
  max-width: 240px;
  margin: 14px 0 10px;
}

.portrait-img {
  width: 220px !important;
  height: 220px !important;
  border-radius: 12px; 
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--accent);
  display: block;
}
