
:root {

  --night-900: #0b0a14;
  --night-800: #141021;
  --night-700: #1d1730;
  --night-600: #28203f;
  --night-500: #332954;
  --ink: #0a0812;

  --saffron: #f5b544;
  --sun: #ffd37a;
  --terracotta: #d4623a;
  --rose: #e89282;
  --sand: #eedcc0;
  --jade: #7fb8a1;

  --text: #f5e9d4;
  --text-dim: #c7b9a2;
  --text-muted: #8a7f6f;

  --glass: rgba(245, 233, 212, 0.06);
  --glass-border: rgba(245, 181, 68, 0.18);
  --glow-saffron: 0 0 80px rgba(245, 181, 68, 0.25);
  --glow-terra: 0 0 120px rgba(212, 98, 58, 0.2);

  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Manrope', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --ar: 'Amiri', 'Noto Naskh Arabic', serif;
  --cn: 'Noto Serif SC', 'Songti SC', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background:
    radial-gradient(1100px 700px at 15% 200px, rgba(245, 181, 68, 0.12), transparent 60%),
    radial-gradient(900px 600px at 100% 600px, rgba(212, 98, 58, 0.10), transparent 60%),
    radial-gradient(800px 800px at 50% 90%, rgba(127, 184, 161, 0.06), transparent 60%),
    var(--night-900);
  background-repeat: no-repeat;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--saffron);
}

.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: currentColor;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--sand);
}

h1 { font-size: clamp(3.2rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.75rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

.serif-italic { font-family: var(--display); font-style: italic; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.2, 1);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--terracotta) 100%);
  color: var(--ink);
  box-shadow:
    0 20px 50px -12px rgba(245, 181, 68, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 30px 60px -10px rgba(245, 181, 68, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-ghost {
  background: var(--glass);
  color: var(--sand);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(245, 181, 68, 0.08);
  border-color: var(--saffron);
}

.btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px 8px 24px;
  background: rgba(11, 10, 20, 0.6);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(245, 233, 212, 0.08);
  border-radius: 999px;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  color: var(--sand);
  text-decoration: none;
  padding-right: 14px;
  border-right: 1px solid rgba(245, 233, 212, 0.1);
  margin-right: 8px;
}

.nav-logo-mark {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--terracotta));
  display: grid;
  place-items: center;
  font-family: var(--display);
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 4px;
}

.nav a.nav-link {
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: none;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.nav a.nav-link:hover {
  color: var(--sand);
  background: rgba(245, 233, 212, 0.05);
}

.nav .btn {
  padding: 10px 18px;
  font-size: 14px;
}

.ticker {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid rgba(245, 233, 212, 0.08);
  border-bottom: 1px solid rgba(245, 233, 212, 0.08);
  background: rgba(11, 10, 20, 0.4);
}

.ticker-track {
  display: flex;
  gap: 80px;
  white-space: nowrap;
  animation: tick 48s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: var(--display);
  font-size: 38px;
  font-style: italic;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 80px;
}

.ticker-item::after {
  content: "✦";
  font-style: normal;
  color: var(--saffron);
  font-size: 14px;
}

.ticker-item .ar { font-family: var(--ar); font-style: normal; }
.ticker-item .cn { font-family: var(--cn); font-style: normal; }

@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 120px 0; position: relative; }
.section-sm { padding: 80px 0; }

.glass-card {
  background: linear-gradient(180deg, rgba(245, 233, 212, 0.04), rgba(245, 233, 212, 0.015));
  border: 1px solid rgba(245, 233, 212, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 0.9, 0.3, 1);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
