/* ═══════════════════════════════════════════════════
   UMAGA Brand Landing Page — style.css
   Matches main site: umagazin.com design system
   ═══════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --bg-base: #050b14;
  --bg-surface: #0d1726;
  --bg-panel: #121f32;
  --bg-soft: #18263d;
  --gold-1: #d4af37;
  --gold-2: #f4d47c;
  --gold-3: #ffd66b;
  --blue-1: #1b3a66;
  --blue-2: #1f4f8a;
  --cyan: #36c7f4;
  --text-strong: #f8f6f0;
  --text-body: #d2d9e5;
  --text-muted: #95a3bb;
  --line: rgba(212, 175, 55, 0.24);
  --line-soft: rgba(54, 199, 244, 0.2);
  --shadow-panel: 0 16px 36px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.28);
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(212,175,55,.22), transparent 62%),
    radial-gradient(980px 540px at 90% 4%, rgba(54,199,244,.13), transparent 70%),
    repeating-linear-gradient(0deg, rgba(149,163,187,.03) 0 1px, transparent 1px 36px),
    repeating-linear-gradient(90deg, rgba(149,163,187,.03) 0 1px, transparent 1px 36px),
    linear-gradient(180deg, #060c16 0%, #081223 45%, #0a1528 100%);
  color: var(--text-body);
  line-height: 1.7;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

h1,h2,h3,h4,h5,h6 {
  color: var(--text-strong);
  font-family: 'Cinzel', Georgia, serif;
  letter-spacing: .02em;
  line-height: 1.15;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Layout ── */
.container-shell { width: min(1240px, calc(100% - 2.5rem)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-alt { background: linear-gradient(180deg, rgba(11,21,36,.96) 0%, rgba(13,24,40,.96) 100%); }
.section-soft { background: linear-gradient(180deg, rgba(16,30,49,.62) 0%, rgba(12,23,38,.86) 100%); }

.section-heading { text-align: center; margin-bottom: 56px; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-2); margin-bottom: 14px;
}
.section-kicker::before, .section-kicker::after {
  content: ''; width: 22px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-1), transparent);
}

.title-gold {
  background: linear-gradient(100deg, #fff2bf 0%, var(--gold-1) 45%, var(--gold-3) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 26px rgba(212,175,55,.22);
}

.sec-title { font-size: clamp(30px, 4.8vw, 52px); }
.section-lead { max-width: 860px; margin: 18px auto 0; color: var(--text-body); font-size: 18px; }

/* ── Panels & Cards ── */
.panel {
  background: linear-gradient(160deg, rgba(18,31,50,.84) 0%, rgba(11,21,35,.9) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-panel);
}

.fin-card {
  background: linear-gradient(160deg, rgba(20,34,55,.9) 0%, rgba(11,20,33,.92) 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-panel);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.fin-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,.58);
  box-shadow: var(--shadow-panel), var(--shadow-gold);
}

.card-pad { padding: 30px; }
.card-pad h3 { margin: 14px 0 10px; font-size: 22px; }
.card-pad p { font-size: 15px; line-height: 1.8; color: var(--text-body); }

.card-icon {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
}
.card-icon svg { width: 26px; height: 26px; }
.card-icon.icon-gold, .card-icon:not(.icon-cyan) {
  color: var(--gold-2);
  background: linear-gradient(145deg, rgba(212,175,55,.18) 0%, rgba(212,175,55,.06) 100%);
  border: 1px solid rgba(212,175,55,.3);
}
.card-icon.icon-cyan {
  color: var(--cyan);
  background: linear-gradient(145deg, rgba(54,199,244,.14) 0%, rgba(54,199,244,.04) 100%);
  border: 1px solid rgba(54,199,244,.26);
}

.card-link {
  display: inline-block; margin-top: 14px; font-size: 14px; font-weight: 700;
  color: var(--gold-2); letter-spacing: .04em;
  transition: color 200ms;
}
.card-link:hover { color: var(--gold-3); }

/* ── Grids ── */
.card-grid, .metric-grid { display: grid; gap: 20px; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.metric-grid { grid-template-columns: repeat(4, 1fr); }
.metric-card { padding: 32px 24px; text-align: center; }
.metric-value {
  font-size: clamp(36px, 5vw, 56px); font-family: 'Cinzel', Georgia, serif;
  line-height: 1; margin-bottom: 14px;
}
.metric-label { color: var(--text-body); font-size: 15px; }

/* ── Text Block ── */
.text-block { max-width: 860px; margin: 0 auto; }
.text-block p { font-size: 16px; line-height: 1.9; color: var(--text-body); }
.text-block p + p { margin-top: 18px; }
.text-block strong { color: var(--text-strong); }

/* ── Buttons ── */
.btn-gold, .btn-outline {
  border-radius: 999px; font-weight: 700; letter-spacing: .04em;
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 28px; cursor: pointer; font-size: 14px;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
  text-decoration: none; font-family: 'Manrope', sans-serif;
}
.btn-gold {
  color: #131f2f;
  background: linear-gradient(120deg, #fce8a6 0%, var(--gold-1) 48%, #f6ca58 100%);
  box-shadow: 0 8px 24px rgba(212,175,55,.35);
  border: 1px solid rgba(255,222,128,.8);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(212,175,55,.42); }
.btn-outline {
  color: var(--gold-2); border: 1px solid var(--line);
  background: rgba(12,23,37,.66);
}
.btn-outline:hover { color: #f8efcf; border-color: rgba(212,175,55,.55); transform: translateY(-2px); }

/* ── Header ── */
.header-shell {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200;
  height: 84px; border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(6,12,22,.95) 0%, rgba(10,19,33,.92) 55%, rgba(9,18,31,.95) 100%);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: min(1240px, calc(100% - 2.5rem)); height: 100%; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.logo-link { display: inline-flex; align-items: center; max-height: 64px; overflow: hidden; }
.logo-link img { height: 52px; width: auto; object-fit: contain; }
.header-nav { display: none; align-items: center; gap: 22px; }
.nav-link {
  color: #e5ecf8; font-size: 14px; text-transform: uppercase;
  letter-spacing: .08em; font-weight: 600; transition: color 200ms;
}
.nav-link:hover { color: var(--gold-2); }
.header-cta { display: none; }
.mobile-menu-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid var(--line); background: rgba(12,20,33,.8);
  color: var(--gold-2); cursor: pointer;
}
.mobile-nav {
  display: none; flex-direction: column; gap: 8px;
  position: fixed; top: 84px; left: 0; right: 0; z-index: 1100;
  background: rgba(8,18,35,.98); padding: 16px 20px 24px;
  border-bottom: 1px solid var(--line); backdrop-filter: blur(12px);
}
.mobile-nav a {
  display: block; padding: 12px 14px; border-radius: 12px;
  border: 1px solid rgba(212,175,55,.2); background: rgba(16,30,49,.55);
  color: #e5ecf8; font-size: 14px; text-transform: uppercase;
  letter-spacing: .08em; font-weight: 600; transition: color 200ms;
}
.mobile-nav a:hover { color: var(--gold-2); }
body.nav-open .mobile-nav { display: flex; }

@media (min-width: 1025px) {
  .header-nav, .header-cta { display: flex; }
  .mobile-menu-btn, .mobile-nav { display: none !important; }
}

/* ── Hero ── */
.hero-shell {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; justify-content: center; text-align: center; overflow: hidden;
  padding-top: 84px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 50% 40%, rgba(212,175,55,.12), transparent 70%),
    radial-gradient(600px 400px at 80% 20%, rgba(54,199,244,.08), transparent 60%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4,9,18,.68) 0%, rgba(5,10,18,.84) 60%, rgba(4,8,15,.95) 100%),
    radial-gradient(720px 360px at 52% 72%, rgba(212,175,55,.16), transparent 78%);
}
.hero-content { position: relative; z-index: 1; width: min(980px, calc(100% - 2rem)); }
.hero-chip {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line-soft); color: #9adff7;
  padding: 6px 16px; border-radius: 999px; font-size: 12px;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-title { font-size: clamp(56px, 12vw, 130px); margin-bottom: 10px; }
.hero-subtitle {
  font-size: clamp(18px, 2.6vw, 32px); color: #edf2fb;
  margin: 0 auto 14px; max-width: 920px;
  font-family: 'Cinzel', Georgia, serif; letter-spacing: .02em;
}
.hero-lead {
  font-size: 17px; color: var(--text-body); max-width: 700px;
  margin: 0 auto 34px; line-height: 1.8;
}
.hero-cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--text-muted); animation: bounceDown 2.2s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: .5; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* ── Network Grid ── */
.network-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  max-width: 900px; margin: 0 auto;
}
.network-node {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(12,23,37,.66);
  font-size: 14px; font-weight: 600; color: var(--text-strong);
  transition: border-color 200ms, transform 200ms, box-shadow 200ms;
}
.network-node:hover {
  border-color: rgba(212,175,55,.55); transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.3);
}
.network-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-1); box-shadow: 0 0 8px rgba(212,175,55,.5);
}

/* ── CTA ── */
.section-cta {
  background:
    radial-gradient(600px 300px at 50% 50%, rgba(212,175,55,.1), transparent 70%),
    linear-gradient(180deg, rgba(11,21,36,.96) 0%, rgba(8,16,28,.98) 100%);
}
.cta-box { padding: 60px 40px; text-align: center; }
.cta-lead {
  max-width: 800px; margin: 18px auto 32px; font-size: 16px;
  line-height: 1.9; color: var(--text-body);
}
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-contact {
  margin-top: 24px; font-size: 15px; color: var(--text-muted);
}
.cta-contact a {
  color: var(--gold-2); font-weight: 700;
  transition: color 200ms;
}
.cta-contact a:hover { color: var(--gold-3); }

/* ── Footer ── */
.footer-shell {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(6,13,23,.96) 0%, rgba(8,16,28,.97) 100%);
  padding: 64px 0 32px;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-brand img { height: 52px; width: auto; }
.footer-tagline {
  font-family: 'Cinzel', Georgia, serif; color: var(--gold-2);
  font-size: 15px; margin-top: 4px;
}
.footer-addr { font-size: 14px; color: var(--text-body); line-height: 1.6; }
.footer-addr a { color: var(--gold-2); transition: color 200ms; }
.footer-addr a:hover { color: var(--gold-3); }
.footer-nav { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-title {
  font-family: 'Cinzel', Georgia, serif; color: var(--gold-2);
  margin-bottom: 6px; font-size: 16px;
}
.footer-nav a {
  color: #d7e1f0; font-size: 14px; transition: color 200ms;
}
.footer-nav a:hover { color: var(--gold-2); }
.footer-copy {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid rgba(212,175,55,.2);
  text-align: center; font-size: 13px; color: var(--text-muted);
}
.footer-copy a { color: var(--gold-2); transition: color 200ms; }
.footer-copy a:hover { color: var(--gold-3); }

/* ── Animations ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .section { padding: 76px 0; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
}
@media (max-width: 640px) {
  .container-shell, .header-inner { width: calc(100% - 1.5rem); }
  .section-heading { margin-bottom: 36px; }
  .hero-lead { font-size: 15px; }
  .metric-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 30px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
