/* Atlas Gold Partners LLC — global stylesheet */
:root {
  --bg: #070a12;
  --bg-2: #0b0f1c;
  --surface: #10162a;
  --surface-2: #151c33;
  --line: rgba(212, 175, 55, 0.14);
  --line-soft: rgba(255, 255, 255, 0.07);
  --text: #eaeefb;
  --muted: #9aa6c4;
  --muted-2: #6f7c9c;
  --gold: #e8c45a;
  --gold-2: #f6dd8e;
  --gold-deep: #b8860b;
  --grad-gold: linear-gradient(135deg, #f6dd8e 0%, #e8c45a 38%, #c79a32 100%);
  --grad-dark: radial-gradient(1200px 600px at 70% -10%, rgba(232,196,90,0.10), transparent 60%);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -20px rgba(0,0,0,0.65);
  --maxw: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; color: var(--muted); }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.text-gold { background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--grad-gold); display: inline-block; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 64px 0; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 620px; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: .96rem;
  cursor: pointer; border: 1px solid transparent; transition: all .25s ease; white-space: nowrap;
}
.btn--gold { background: var(--grad-gold); color: #1a1303; box-shadow: 0 12px 30px -10px rgba(232,196,90,0.5); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(232,196,90,0.65); }
.btn--ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,0.02); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn svg { width: 18px; height: 18px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px); background: rgba(7,10,18,0.72);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; font-size: 1.12rem; letter-spacing: -0.01em; }
.brand .logo { width: 40px; height: 40px; }
.brand small { display: block; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--muted); font-size: .95rem; font-weight: 500; transition: color .2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -22px; height: 2px; background: var(--grad-gold); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: .3s; }

/* Hero */
.hero { position: relative; padding: 110px 0 90px; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: var(--grad-dark); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 34px; font-size: 1.22rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-stats .num { font-size: 2rem; font-weight: 700; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-stats .lbl { font-size: .82rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .1em; }
.hero-visual { position: relative; }
.hero-visual img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.float-card {
  position: absolute; background: rgba(16,22,42,0.92); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 18px; backdrop-filter: blur(8px); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; animation: floaty 5s ease-in-out infinite;
}
.float-card .dot { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(232,196,90,.12); color: var(--gold); }
.float-card b { font-size: .95rem; }
.float-card span { font-size: .76rem; color: var(--muted-2); display: block; }
.float-card.fc1 { top: 22px; left: -28px; animation-delay: 0s; }
.float-card.fc2 { bottom: 28px; right: -24px; animation-delay: 1.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Logo bar */
.logobar { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 30px 0; }
.logobar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.logobar span { color: var(--muted-2); font-weight: 600; font-size: .96rem; letter-spacing: .04em; opacity: .75; white-space: nowrap; }

/* Cards / grid */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.card .ico { width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 18px; background: rgba(232,196,90,.1); color: var(--gold); border: 1px solid var(--line); }
.card .ico svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { margin-bottom: 0; font-size: .96rem; }
.card ul { margin: 14px 0 0; padding-left: 0; list-style: none; }
.card ul li { font-size: .9rem; color: var(--muted); padding: 5px 0 5px 24px; position: relative; }
.card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* Section heading block */
.sec-head { max-width: 680px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; }

/* Steps / process */
.steps { counter-reset: step; }
.step { position: relative; padding: 28px 30px 28px 84px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; left: 28px; top: 26px; font-size: 1.4rem; font-weight: 700;
  background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Portfolio */
.work-card { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); background: var(--surface); }
.work-card img { aspect-ratio: 16/11; object-fit: cover; width: 100%; transition: transform .5s ease; }
.work-card:hover img { transform: scale(1.05); }
.work-body { padding: 22px 24px; }
.work-body .tag { font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); font-weight: 600; }
.work-body h3 { margin: 8px 0 6px; font-size: 1.15rem; }
.work-body p { font-size: .9rem; margin: 0; }
.work-metrics { display: flex; gap: 22px; margin-top: 16px; border-top: 1px solid var(--line-soft); padding-top: 16px; }
.work-metrics div b { display: block; color: var(--gold-2); font-size: 1.1rem; }
.work-metrics div span { font-size: .74rem; color: var(--muted-2); }

/* Feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.checklist { list-style: none; padding: 0; margin: 24px 0 0; }
.checklist li { padding: 10px 0 10px 36px; position: relative; color: var(--text); }
.checklist li::before { content: ""; position: absolute; left: 0; top: 12px; width: 22px; height: 22px; border-radius: 6px; background: rgba(232,196,90,.12); border: 1px solid var(--line); }
.checklist li::after { content: "✓"; position: absolute; left: 5px; top: 9px; color: var(--gold); font-weight: 700; font-size: .85rem; }

/* Stats band */
.band { background: linear-gradient(180deg, var(--surface-2), var(--bg-2)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; text-align: center; }
.stat-grid .num { font-size: 2.8rem; font-weight: 800; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-grid .lbl { color: var(--muted); font-size: .92rem; }

/* Testimonials */
.quote { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 30px; }
.quote p { color: var(--text); font-size: 1rem; font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.quote .who b { display: block; font-size: .92rem; }
.quote .who span { font-size: .8rem; color: var(--muted-2); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.price { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 34px 30px; position: relative; }
.price.featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(232,196,90,.06), var(--bg-2)); }
.price .badge { position: absolute; top: -13px; left: 30px; background: var(--grad-gold); color: #1a1303; font-size: .72rem; font-weight: 700; padding: 5px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: .08em; }
.price h3 { font-size: 1.2rem; }
.price .amount { font-size: 2.6rem; font-weight: 800; margin: 8px 0; }
.price .amount small { font-size: .95rem; color: var(--muted-2); font-weight: 500; }
.price ul { list-style: none; padding: 0; margin: 22px 0; }
.price ul li { padding: 8px 0 8px 26px; position: relative; font-size: .92rem; color: var(--muted); border-bottom: 1px solid var(--line-soft); }
.price ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* CTA band */
.cta {
  position: relative; overflow: hidden; border-radius: 24px; padding: 64px 56px;
  background: linear-gradient(135deg, #161d36, #0b1020); border: 1px solid var(--line);
}
.cta::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(232,196,90,.22), transparent 70%); }
.cta .container, .cta-inner { position: relative; z-index: 2; }
.cta h2 { margin-bottom: 12px; }

/* Forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
  background: var(--bg-2); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  padding: 13px 15px; color: var(--text); font-family: inherit; font-size: .95rem; transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted-2); }
.form-msg { display: none; padding: 14px 16px; border-radius: var(--radius-sm); background: rgba(232,196,90,.1); border: 1px solid var(--line); color: var(--gold-2); margin-top: 16px; }

/* Contact info cards */
.info-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.info-card .ico { flex: 0 0 46px; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(232,196,90,.1); color: var(--gold); }
.info-card b { display: block; margin-bottom: 3px; }
.info-card span, .info-card a { color: var(--muted); font-size: .92rem; }
.info-card a:hover { color: var(--gold); }

/* Page hero (interior) */
.page-hero { padding: 72px 0 48px; position: relative; }
.page-hero::before { content:""; position:absolute; inset:0; background: var(--grad-dark); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { font-size: .85rem; color: var(--muted-2); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--gold); }

/* Legal / prose */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.5rem; margin-top: 42px; }
.prose h3 { margin-top: 28px; color: var(--gold-2); }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose .updated { color: var(--muted-2); font-size: .9rem; }

/* Team */
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line-soft); margin-bottom: 16px; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-card .role { color: var(--gold); font-size: .85rem; font-weight: 600; }

/* Footer */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--bg-2); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--muted-2); margin-bottom: 18px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 11px; }
.footer-grid a { color: var(--muted); font-size: .92rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-about p { font-size: .92rem; margin: 16px 0; max-width: 320px; }
.social { display: flex; gap: 12px; }
.social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line-soft); color: var(--muted); transition: .25s; }
.social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
.footer-bottom { border-top: 1px solid var(--line-soft); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted-2); font-size: .86rem; }
.footer-bottom a { color: var(--muted-2); }
.footer-bottom a:hover { color: var(--gold); }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 940px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .price-grid, .stat-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { order: -1; }
  .float-card.fc1 { left: 0; } .float-card.fc2 { right: 0; }
}
@media (max-width: 680px) {
  .nav-links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; background: var(--bg-2); padding: 24px; gap: 18px; border-bottom: 1px solid var(--line); transform: translateY(-150%); transition: transform .3s; }
  .nav-links.open { transform: none; }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: block; }
  .grid-3, .grid-4, .grid-2, .price-grid, .stat-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .cta { padding: 40px 26px; }
  .hero-stats { gap: 24px; }
}
