/* Apollo Wave Studios — Static Site
   Theme: Matte / Gold / Electric
   Notes:
   - Fonts: Using Google Fonts (Sora + Cinzel) as close modern/premium substitutes.
   - Swap to your preferred fonts by editing the <link> tags in each HTML file and the font-family variables below.
*/

:root{
  --matte:#0b0d10;
  --matte-2:#12151a;
  --line:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.86);
  --muted:rgba(255,255,255,.68);
  --gold:#c9a45a;
  --gold-2:#e3c67a;
  --electric:#1b6fb8;
  --shadow: rgba(0,0,0,.55);

  --radius: 18px;
  --radius-sm: 12px;
  --max: 1100px;

  --sans: "Sora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --serif: "Cinzel", ui-serif, Georgia, "Times New Roman", serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--sans);
  background:
    radial-gradient(1100px 700px at 20% 10%, rgba(201,164,90,.12), transparent 60%),
    radial-gradient(900px 700px at 85% 10%, rgba(27,111,184,.12), transparent 55%),
    radial-gradient(800px 600px at 40% 90%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, var(--matte), var(--matte-2));
  color:var(--text);
  line-height:1.45;
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:64px 0}
.section.tight{padding:36px 0}

.hr{
  height:1px; background:var(--line);
  border:0; margin:28px 0;
}

.badge{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--line);
  padding:8px 12px; border-radius:999px;
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
}

.badge i{
  width:10px; height:10px; border-radius:999px;
  background:linear-gradient(90deg,var(--gold),var(--electric));
  box-shadow:0 0 18px rgba(201,164,90,.25);
}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background:rgba(11,13,16,.62);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}

.brand{
  display:flex; align-items:center; gap:12px;
  letter-spacing:.08em;
}

.brand-mark{
  width:34px; height:34px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--gold),rgba(201,164,90,.25));
  display:grid; place-items:center;
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
  border:1px solid rgba(201,164,90,.28);
  font-family:var(--serif);
  color:#0b0d10;
  font-weight:700;
}

.brand-name{
  display:flex; flex-direction:column; line-height:1.05;
}
.brand-name strong{font-size:14px; color:var(--text)}
.brand-name span{font-size:12px; color:var(--muted)}

.nav-links{
  display:flex; gap:18px; align-items:center;
}
.nav-links a{
  font-size:14px; color:var(--muted);
  padding:10px 10px; border-radius:12px;
  border:1px solid transparent;
}
.nav-links a.active{
  color:var(--text);
  border-color: var(--line);
  background:rgba(255,255,255,.03);
}
.nav-cta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-size:14px;
  cursor:pointer;
}
.btn:hover{background:rgba(255,255,255,.06)}
.btn.primary{
  border-color: rgba(201,164,90,.35);
  background:linear-gradient(135deg, rgba(201,164,90,.30), rgba(27,111,184,.18));
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
}
.btn.small{padding:8px 12px; border-radius:12px; font-size:13px}

.mobile-toggle{display:none}

.hero{
  padding:66px 0 30px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:28px;
  align-items:stretch;
}
.card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius);
  box-shadow: 0 28px 80px rgba(0,0,0,.35);
}
.card.pad{padding:26px}
.card.soft{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}

.h-eyebrow{
  font-size:12px; letter-spacing:.18em;
  color:var(--gold-2);
  text-transform:uppercase;
}
h1{
  margin:12px 0 10px;
  font-size:44px; line-height:1.05;
  letter-spacing:-0.02em;
}
h1 .accent{
  background: linear-gradient(90deg, var(--gold), var(--electric));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.lede{
  margin:12px 0 0;
  font-size:16px;
  color:var(--muted);
  max-width:60ch;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero-proof{
  display:grid; gap:12px;
}
.proof{
  padding:16px;
  border-radius:var(--radius-sm);
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.proof strong{display:block; font-size:14px}
.proof span{display:block; font-size:13px; color:var(--muted); margin-top:4px}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.feature{
  padding:18px;
}
.feature h3{margin:0 0 8px; font-size:16px}
.feature p{margin:0; color:var(--muted); font-size:14px}

.kicker{
  font-family:var(--serif);
  font-size:34px;
  letter-spacing:.01em;
  margin:0;
}

.pill-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.pill{
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--line);
}
.table th, .table td{
  padding:14px 14px;
  border-bottom:1px solid var(--line);
  vertical-align:top;
}
.table th{
  text-align:left;
  font-size:13px;
  color:var(--muted);
  font-weight:600;
  background:rgba(255,255,255,.03);
}
.table tr:last-child td{border-bottom:0}
.table td{font-size:14px; color:var(--text)}
.table td small{display:block; color:var(--muted); margin-top:6px; font-size:12px}

.footer{
  border-top:1px solid var(--line);
  padding:28px 0;
  color:var(--muted);
  font-size:13px;
}
.footer-grid{
  display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
  flex-wrap:wrap;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

.form{
  display:grid; gap:12px;
}
label{font-size:13px; color:var(--muted)}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.22);
  color:var(--text);
  font-family:var(--sans);
  outline:none;
}
textarea{min-height:130px; resize:vertical}
input:focus, select:focus, textarea:focus{
  border-color: rgba(201,164,90,.45);
  box-shadow: 0 0 0 4px rgba(201,164,90,.14);
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
.help{
  font-size:12px; color:var(--muted); margin-top:6px;
}

.notice{
  padding:14px 14px;
  border-radius:14px;
  border:1px dashed rgba(201,164,90,.45);
  background:rgba(201,164,90,.08);
  color:rgba(255,255,255,.80);
  font-size:13px;
}

.gallery{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}
.gallery img{
  width:100%;
  border-radius:var(--radius);
  border:1px solid var(--line);
  box-shadow: 0 24px 65px rgba(0,0,0,.35);
}

@media (max-width: 980px){
  h1{font-size:40px}
  .hero-grid{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .form-row{grid-template-columns: 1fr}
  .nav-links{display:none}
  .mobile-toggle{display:inline-flex}
  .nav-cta{gap:8px}
}

.mobile-menu{
  display:none;
  border-top:1px solid var(--line);
  padding:10px 0 16px;
}
.mobile-menu a{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  color:var(--muted);
  border:1px solid transparent;
}
.mobile-menu a:hover{
  border-color:var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
}
.mobile-menu a.active{
  color:var(--text);
  border-color:var(--line);
  background:rgba(255,255,255,.03);
}
