:root {
  --bg: #0f1115;
  --bg-soft: #161a22;
  --ink: #f7f3ec;
  --muted: #c9c2b7;
  --gold: #f6c453;
  --gold-dark: #c28f1f;
  --silver: #b9c1ce;
  --accent: #6dd6c6;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(4, 7, 16, 0.6);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at 10% 20%, rgba(246, 196, 83, 0.15), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(109, 214, 198, 0.18), transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(185, 193, 206, 0.18), transparent 50%),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(15, 17, 21, 0.8);
  border-bottom: 1px solid var(--border);
}

.ticker {
  --ticker-label-width: clamp(140px, 16vw, 180px);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(120deg, rgba(246, 196, 83, 0.14), rgba(109, 214, 198, 0.12));
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 10px 0;
  font-size: 0.95rem;
  overflow: hidden;
  position: relative;
}

.ticker-label {
  width: var(--ticker-label-width);
  min-width: var(--ticker-label-width);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
  margin-right: 16px;
}

.ticker-mask {
  flex: 1;
  overflow: hidden;
  /* Ensure the mask respects the flex layout */
  min-width: 0; 
}

.ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: ticker-scroll 24s linear infinite;
  min-width: 0;
  /* padding-left removed */
  flex: 1;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-row {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  color: var(--muted);
  font-weight: 500;
}

.ticker-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ticker-row span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(246, 196, 83, 0.6);
}

.ticker-icon {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.1);
  stroke: #0e0b05;
  stroke-width: 1.6;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.ticker-icon.gold {
  fill: #f6c453;
  stroke: #6b4a07;
}

.ticker-icon.silver {
  fill: #d7dde7;
  stroke: #6f7a8a;
}

.ticker-icon.platinum {
  fill: #8fe0d1;
  stroke: #2f6f66;
}

.ticker-icon.clock {
  fill: #f5a64d;
  stroke: #7b3d09;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand .logo-circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: none;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.2); /* Zoom in to remove internal image padding */
}

.brand h1 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 500;
  color: var(--muted);
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a:hover::after {
  width: 100%;
}

.hero {
  padding: 80px 0 72px;
  position: relative;
}

.hero-banner {
  width: 80%;
  margin: 0 auto 42px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-banner img {
  width: 100%;
  height: auto;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 17, 21, 0.1), rgba(15, 17, 21, 0.45));
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}


.hero h2 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
  color: #1a1301;
  box-shadow: 0 12px 30px rgba(246, 196, 83, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(246, 196, 83, 0.35);
}

.btn-outline {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.hero-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% 50% auto -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(246, 196, 83, 0.22), transparent 70%);
  transform: rotate(18deg);
}

.hero-card h3 {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.hero-card li strong {
  color: var(--ink);
}

.section {
  padding: 70px 0;
}

.section-title {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 680px;
}

.cards {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 190px;
  position: relative;
  overflow: hidden;
}

.card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
}

.card span {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gold);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  margin-top: 26px;
}

.price-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.price-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: grid;
  gap: 6px;
}

.price-card strong {
  font-size: 1rem;
}

.price-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.market-card {
  background: rgba(8, 10, 14, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.market-card img {
  border-radius: var(--radius-sm);
  background: #0b0e13;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}

.callout {
  border-radius: var(--radius-lg);
  padding: 36px;
  background: linear-gradient(120deg, rgba(109, 214, 198, 0.18), rgba(246, 196, 83, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 14px;
}

.callout strong {
  font-size: 1.2rem;
}

.footer {
  padding: 50px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  color: var(--muted);
}

.footer h5 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--ink);
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--ink);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--silver);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .navbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
  }

  .ticker-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .ticker-track {
    animation-duration: 36s;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-card {
    padding: 26px;
  }

  .cta-row {
    width: 100%;
  }
}