:root {
  --navy: #0d1f35;
  --navy2: #122840;
  --gold: #EF9F27;
  --gold-light: #FAC775;
  --white: #ffffff;
  --off-white: #f5f3ef;
  --muted: #8faac4;
  --text: #1a2e42;
  --border: rgba(255,255,255,0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(13,31,53,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; }
.nav-logo span { font-size: 15px; font-weight: 500; letter-spacing: 0.01em; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold); color: var(--navy);
  font-size: 13px; font-weight: 500;
  padding: 8px 20px; border-radius: 100px;
  text-decoration: none; transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  text-align: center;
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(239,159,39,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(239,159,39,0.12);
  border: 0.5px solid rgba(239,159,39,0.3);
  color: var(--gold);
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
  position: relative; z-index: 5;
}
.hero h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s 0.1s ease both;
  position: relative; z-index: 5;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.6s 0.2s ease both;
  position: relative; z-index: 5;
}
.hero-actions {
  display: flex; gap: 1rem; align-items: center;
  animation: fadeUp 0.6s 0.3s ease both;
  margin-bottom: 4rem;
  position: relative; z-index: 5;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  font-size: 14px; font-weight: 500;
  padding: 14px 32px; border-radius: 100px;
  text-decoration: none; transition: transform 0.2s, opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-1px); opacity: 0.9; }
.btn-cta { margin-top: 2rem; }
.btn-secondary {
  font-size: 14px; color: var(--muted);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.btn-secondary:hover { color: var(--white); }

/* HERO SCREENS */
.hero-screens {
  position: relative; width: 100%; max-width: 900px; margin: 0 auto;
  animation: fadeUp 0.8s 0.4s ease both;
}
.screen-main {
  width: 62%; margin: 0 auto;
  border-radius: 12px;
  border: 0.5px solid rgba(255,255,255,0.12);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  position: relative; z-index: 3;
}
.screen-main img { width: 100%; display: block; }
.screen-float {
  position: absolute;
  width: 62%;
  border-radius: 10px;
  border: 0.5px solid rgba(255,255,255,0.1);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.screen-float img { width: 100%; display: block; }
.screen-float.left { bottom: -20px; left: 0; transform: rotate(-3deg); }
.screen-float.right { bottom: -10px; right: 0; transform: rotate(2deg); }

/* STATS BAR */
.stats {
  background: var(--navy2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
  display: flex; justify-content: center;
  padding: 2.5rem 3rem; gap: 5rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 2.8rem; color: var(--gold); line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 12px; color: var(--muted); font-weight: 400; letter-spacing: 0.03em; }

/* SECTION SHARED */
section { padding: 6rem 3rem; max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; line-height: 1.15;
  margin-bottom: 1.2rem;
}
.section-sub {
  font-size: 1rem; font-weight: 300; color: var(--muted);
  line-height: 1.7; max-width: 480px;
}

/* FEATURES GRID */
.features-section { padding: 6rem 3rem; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 4rem; }
.features-header .section-sub { max-width: 520px; margin: 0 auto; }
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px;
  background: var(--border);
  border: 0.5px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.feat {
  background: var(--navy2);
  padding: 2.5rem;
  transition: background 0.3s;
}
.feat:hover { background: #162d48; }
.feat-tag {
  display: inline-block;
  font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); background: rgba(239,159,39,0.1);
  padding: 4px 10px; border-radius: 100px; margin-bottom: 1.2rem;
}
.feat h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem; font-weight: 400; margin-bottom: 0.7rem;
}
.feat p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* SCREEN SHOWCASE */
.showcase {
  padding: 6rem 3rem;
  background: var(--navy2);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.showcase--navy { background: var(--navy); }
.showcase-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.showcase-inner.reverse { direction: rtl; }
.showcase-inner.reverse > * { direction: ltr; }
.showcase-text { }
.showcase-screen {
  border-radius: 12px; overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.showcase-screen img { width: 100%; display: block; }

/* WHO */
.who-section {
  padding: 6rem 3rem;
  text-align: center;
}
.who-inner { max-width: 700px; margin: 0 auto; }
.who-quote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--off-white);
  margin-bottom: 2rem;
}
.who-tags {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-top: 2.5rem;
}
.who-tag {
  font-size: 12px; color: var(--muted);
  border: 0.5px solid rgba(255,255,255,0.12);
  padding: 6px 16px; border-radius: 100px;
}

/* CTA */
.cta-section {
  padding: 8rem 3rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(239,159,39,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { max-width: 600px; margin: 0 auto; position: relative; }
.cta-section h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400; line-height: 1.1;
  margin-bottom: 1.2rem;
}
.cta-section p {
  font-size: 1rem; color: var(--muted); font-weight: 300;
  line-height: 1.7; margin-bottom: 2.5rem;
}
.cta-em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--gold);
}

/* FOOTER */
footer {
  border-top: 0.5px solid var(--border);
  padding: 2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 24px; height: 24px; border-radius: 6px; }
.footer-logo span { font-size: 13px; color: var(--muted); }
.footer-right {
  font-size: 12px; color: var(--muted);
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
}
.footer-link { font-size: 12px; color: var(--muted); text-decoration: none; }
.footer-link:hover { color: var(--white); }
.footer-social { display: flex; gap: 14px; align-items: center; }
.footer-social-link { color: var(--muted); display: flex; align-items: center; transition: color 0.2s; }
.footer-social-link.instagram:hover { color: #E1306C; }
.footer-social-link.facebook:hover { color: #1877F2; }
.footer-social-link.tiktok:hover { color: #fff; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
