:root {
  --bg: #08090d;
  --bg-soft: #10131a;
  --panel: rgba(255,255,255,.055);
  --panel-strong: rgba(255,255,255,.085);
  --text: #f6f2e8;
  --muted: #aaa79f;
  --gold: #f3c45d;
  --gold-soft: #8a6422;
  --cyan: #5be7ff;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
code { color: var(--gold); }

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 8%, rgba(243,196,93,.19), transparent 34%),
    radial-gradient(circle at 15% 25%, rgba(91,231,255,.09), transparent 30%),
    linear-gradient(135deg, #07080b, #11151d 46%, #08090d);
}
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  backdrop-filter: blur(18px);
  background: rgba(8,9,13,.72);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.03em; }
.brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; box-shadow: 0 0 24px rgba(243,196,93,.22); }
.brand span { font-family: Sora, sans-serif; }
.nav { display: flex; align-items: center; gap: 24px; color: var(--muted); font-weight: 600; font-size: 14px; }
.nav a:hover { color: var(--text); }
.nav-cta { padding: 10px 16px; border: 1px solid rgba(243,196,93,.35); border-radius: 999px; color: var(--text) !important; }
.nav-toggle { display: none; background: none; border: 0; gap: 5px; flex-direction: column; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); }

.section-pad { padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 72px); }
.hero { min-height: 86vh; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: clamp(34px, 6vw, 90px); }
.eyebrow { margin: 0 0 16px; color: var(--gold); text-transform: uppercase; letter-spacing: .16em; font-weight: 800; font-size: 12px; }
h1, h2, h3 { font-family: Sora, sans-serif; line-height: 1.05; letter-spacing: -.055em; margin: 0; }
h1 { font-size: clamp(46px, 7vw, 92px); max-width: 850px; }
h2 { font-size: clamp(34px, 5vw, 64px); max-width: 850px; }
h3 { font-size: 21px; letter-spacing: -.035em; }
.hero-text, .section-heading p, .contact-panel p { max-width: 650px; color: var(--muted); font-size: clamp(17px, 2vw, 20px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 800; transition: transform .2s, box-shadow .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.primary { background: linear-gradient(135deg, #f7d98a, #d99a2e); color: #14100a; box-shadow: 0 18px 48px rgba(243,196,93,.18); }
.secondary { border: 1px solid rgba(255,255,255,.18); color: var(--text); background: rgba(255,255,255,.04); }

.hero-visual { position: relative; }
.logo-frame { position: relative; overflow: hidden; border-radius: 36px; border: 1px solid rgba(243,196,93,.25); box-shadow: var(--shadow); }
.logo-frame::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.54)); }
.logo-frame img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.floating-card { position: absolute; width: 230px; padding: 16px; border: 1px solid var(--line); border-radius: 20px; background: rgba(10,12,18,.78); backdrop-filter: blur(18px); box-shadow: var(--shadow); }
.floating-card span { display: block; color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.floating-card strong { display: block; margin-top: 6px; }
.card-one { left: -22px; bottom: 32px; }
.card-two { right: -18px; top: 34px; }

.proof-bar { margin: 0 clamp(20px, 5vw, 72px); padding: 22px; display:grid; grid-template-columns: repeat(3,1fr); gap: 14px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.045); }
.proof-bar div { padding: 10px 16px; }
.proof-bar strong { display:block; font-family:Sora; }
.proof-bar span { color: var(--muted); font-size: 14px; }

.section-heading { margin-bottom: 38px; }
.video-grid, .service-grid, .process-grid { display: grid; gap: 22px; }
.video-grid { grid-template-columns: repeat(3, 1fr); }
.video-card, .service-card, .process-step, .split-panel, .contact-panel { border: 1px solid var(--line); background: linear-gradient(180deg, var(--panel-strong), rgba(255,255,255,.035)); border-radius: var(--radius); box-shadow: 0 18px 60px rgba(0,0,0,.22); }
.video-card { padding: 14px; }
.video-shell { overflow: hidden; border-radius: 22px; background: #050505; aspect-ratio: 9/16; }
.video-shell video { width: 100%; height: 100%; object-fit: cover; }
.video-card h3 { margin: 18px 4px 8px; }
.video-card p { margin: 0 4px 8px; color: var(--muted); }

.service-grid { grid-template-columns: repeat(4,1fr); }
.service-card { padding: 28px; min-height: 230px; }
.icon { width: 44px; height: 44px; display:grid; place-items:center; margin-bottom: 24px; border-radius: 14px; color:#15100a; background: var(--gold); font-weight:900; }
.service-card p, .process-step p, .split-panel { color: var(--muted); }

.split { display:grid; grid-template-columns: .8fr 1fr; gap: 28px; align-items: start; }
.split-panel { padding: clamp(26px, 4vw, 44px); font-size: 18px; }
ul { padding-left: 20px; }
li { margin: 9px 0; }
.process-grid { grid-template-columns: repeat(4,1fr); }
.process-step { padding: 28px; }
.process-step span { color: var(--gold); font-weight: 900; }
.process-step h3 { margin: 18px 0 8px; }

.contact { padding-top: 40px; }
.contact-panel { text-align: center; padding: clamp(42px, 8vw, 88px); background: radial-gradient(circle at 50% 0%, rgba(243,196,93,.16), transparent 45%), rgba(255,255,255,.045); }
.contact-panel p { margin-left: auto; margin-right: auto; }
.footer { display:flex; justify-content:space-between; gap: 16px; padding: 30px clamp(20px, 5vw, 72px); color: var(--muted); border-top: 1px solid var(--line); font-size: 14px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; } .delay-2 { transition-delay: .18s; } .delay-3 { transition-delay: .26s; }

@media (max-width: 980px) {
  .hero, .split { grid-template-columns: 1fr; }
  .video-grid, .service-grid, .process-grid, .proof-bar { grid-template-columns: 1fr 1fr; }
  .card-one, .card-two { position: static; margin: 14px 0 0; width: auto; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav { position: absolute; left: 16px; right: 16px; top: 76px; display: none; flex-direction: column; align-items: stretch; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(8,9,13,.96); }
  .nav.open { display: flex; }
  .video-grid, .service-grid, .process-grid, .proof-bar { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
  h1 { font-size: clamp(42px, 14vw, 62px); }
}
