:root {
  --bg: #07090b;
  --bg-soft: #11151a;
  --paper: #f4efe6;
  --paper-2: #fffaf0;
  --text: #f7f4ed;
  --muted: #c9c0b3;
  --ink: #15110b;
  --gold: #e6b34a;
  --gold-soft: #f4d58a;
  --line: rgba(255,255,255,.14);
  --shadow: 0 28px 80px rgba(0,0,0,.45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 6vw, 84px);
  background: rgba(5, 6, 8, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.brand, .footer-brand { display: flex; align-items: center; gap: 16px; font-weight: 800; font-size: clamp(1.25rem, 2vw, 1.75rem); }
.brand-mark { width: 56px; height: 56px; }
.site-nav { display: flex; gap: clamp(18px, 4vw, 48px); font-weight: 800; letter-spacing: .13em; text-transform: uppercase; font-size: .82rem; }
.site-nav a { opacity: .86; }
.site-nav a:hover { color: var(--gold); opacity: 1; }
.nav-toggle { display: none; background: none; color: white; border: 1px solid var(--line); padding: 8px 11px; border-radius: 10px; font-size: 1.4rem; }

.hero {
  min-height: 820px;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  padding: 150px clamp(24px, 8vw, 130px) 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 26%, rgba(255, 202, 110, .58), transparent 22%),
    linear-gradient(90deg, rgba(7,9,11,.98), rgba(7,9,11,.75) 38%, rgba(7,9,11,.42)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2400&q=80") center/cover;
  filter: saturate(.8) contrast(1.05);
  opacity: .92;
}
.hero-content, .hero-logo { position: relative; z-index: 1; }
.eyebrow, .section-kicker, .app-label { color: var(--gold); letter-spacing: .16em; text-transform: uppercase; font-weight: 900; font-size: .78rem; }
h1 { font-size: clamp(3.4rem, 7vw, 6.8rem); line-height: .96; letter-spacing: -.06em; margin: 20px 0 28px; max-width: 720px; }
h1 span { color: var(--gold-soft); text-shadow: 0 6px 24px rgba(0,0,0,.5); }
.hero-copy { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.55; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; font-size: .78rem; }
.primary { color: var(--ink); background: linear-gradient(135deg, #fff3c6, var(--gold)); box-shadow: 0 18px 45px rgba(230,179,74,.24); }
.secondary { color: var(--gold-soft); border: 1px solid rgba(230,179,74,.7); }
.hero-logo { width: min(44vw, 470px); justify-self: center; filter: drop-shadow(0 32px 52px rgba(0,0,0,.55)); }

.feature-strip { background: linear-gradient(180deg, var(--paper-2), #eee6db); color: var(--ink); display: grid; grid-template-columns: repeat(4, 1fr); padding: 42px clamp(24px, 8vw, 130px); gap: 0; }
.feature-strip article { text-align: center; padding: 0 34px; border-right: 1px solid rgba(0,0,0,.1); }
.feature-strip article:last-child { border-right: 0; }
.icon { display: inline-grid; place-items: center; width: 52px; height: 52px; border: 1.5px solid rgba(0,0,0,.22); border-radius: 13px; color: #5f4518; font-size: 1.7rem; }
.feature-strip h2 { font-size: 1.1rem; margin: 18px 0 8px; }
.feature-strip p { margin: 0; line-height: 1.5; }

.section { padding: 92px clamp(24px, 8vw, 130px); border-top: 1px solid rgba(255,255,255,.08); }
.section h2 { font-size: clamp(2.1rem, 4vw, 4rem); line-height: 1.02; letter-spacing: -.045em; max-width: 880px; margin: 14px 0 22px; }
.section > p { color: var(--muted); font-size: 1.2rem; line-height: 1.7; max-width: 820px; }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-top: 34px; }
.app-card { display: block; padding: clamp(28px, 4vw, 46px); border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); box-shadow: var(--shadow); min-height: 300px; transition: transform .2s ease, border-color .2s ease; }
.app-card:hover { transform: translateY(-6px); border-color: rgba(230,179,74,.65); }
.app-card h3 { font-size: clamp(2rem, 3.4vw, 3.7rem); margin: 18px 0 12px; letter-spacing: -.055em; }
.app-card p { color: var(--muted); font-size: 1.1rem; line-height: 1.65; max-width: 520px; }
.app-card strong { color: var(--gold-soft); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; max-width: 900px; }
.service-grid p { margin: 0; padding: 22px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.04); font-weight: 800; }
.contact { background: radial-gradient(circle at 70% 20%, rgba(230,179,74,.18), transparent 32%), var(--bg-soft); }

.site-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 34px clamp(24px, 8vw, 130px); color: var(--muted); border-top: 1px solid rgba(255,255,255,.08); }
.footer-mark { width: 48px; }
.footer-links { display: flex; gap: 20px; color: var(--gold-soft); font-weight: 800; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .site-nav { position: absolute; top: 88px; right: 20px; display: none; flex-direction: column; gap: 18px; background: rgba(5,6,8,.96); border: 1px solid var(--line); padding: 22px; border-radius: 18px; }
  .site-nav.open { display: flex; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 130px; }
  .hero-logo { width: min(70vw, 360px); margin-top: 40px; justify-self: start; opacity: .92; }
  .feature-strip, .cards, .service-grid { grid-template-columns: 1fr; }
  .feature-strip article { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.1); padding: 28px 0; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}
