/* ============================================================
   Aura Concepts — main site stylesheet
   Palette: near-black base, violet→teal "aura" gradient accent
   ============================================================ */

:root {
  --bg: #0b0b12;
  --bg-alt: #11111c;
  --surface: #171725;
  --surface-2: #1e1e30;
  --border: #2a2a40;
  --text: #eceaf6;
  --muted: #9b98b0;
  --violet: #7c6cff;
  --teal: #34d9c3;
  --grad: linear-gradient(100deg, var(--violet), var(--teal));
  --radius: 16px;
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; }

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
h3 { font-size: 1.15rem; font-weight: 600; }

a { color: inherit; text-decoration: none; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.section-sub { color: var(--muted); max-width: 560px; margin-bottom: 2.5rem; }

.desktop-only { display: none; }
@media (min-width: 720px) { .desktop-only { display: inline; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  background: var(--grad);
  color: #0b0b12;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124, 108, 255, 0.35); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { box-shadow: none; border-color: var(--violet); }

.btn-small { padding: 0.5rem 1.1rem; font-size: 0.85rem; }
.btn-full { width: 100%; text-align: center; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 18, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(42, 42, 64, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(124, 108, 255, 0.8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.nav-links a:not(.btn):hover { color: var(--text); }

@media (max-width: 640px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ---------- Aura glows (radial gradients — cheap to composite) ---------- */
.aura {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.aura-1 { width: 900px; height: 900px; background: radial-gradient(circle, rgba(124, 108, 255, 0.35), transparent 65%); top: -400px; left: -320px; }
.aura-2 { width: 800px; height: 800px; background: radial-gradient(circle, rgba(52, 217, 195, 0.16), transparent 65%); top: -160px; right: -350px; }
.aura-3 { width: 900px; height: 900px; background: radial-gradient(circle, rgba(124, 108, 255, 0.16), transparent 65%); bottom: -420px; right: -340px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
  text-align: center;
}

.hero-inner { position: relative; }

.lede {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 620px;
  margin: 1.4rem auto 2.2rem;
}

.hero-cta { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.hero-points {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 3rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.hero-points li::before {
  content: "✓";
  color: var(--teal);
  margin-right: 0.45rem;
  font-weight: 700;
}

/* ---------- Sections ---------- */
.section { position: relative; overflow: hidden; padding: 5.5rem 0; }
.section-alt { background: var(--bg-alt); }

/* ---------- Work ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.work-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.work-card:hover { transform: translateY(-4px); border-color: var(--violet); }

.work-preview {
  height: 180px;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.7rem;
}

.preview-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
}

.preview-line {
  display: block;
  height: 8px;
  width: 70%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
}
.preview-line.short { width: 45%; }

.preview-cafe {
  background: linear-gradient(135deg, #4a2c17, #b5652f);
  color: #fdf3e7;
}
.preview-contractor {
  background: linear-gradient(135deg, #101c2e, #2e4a75);
  color: #eaf1fb;
}
.preview-dental {
  background: linear-gradient(135deg, #0e5f63, #45c4b0);
  color: #f0fdfb;
}

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 1.4rem 1.4rem;
}
.work-meta p { color: var(--muted); font-size: 0.88rem; margin-top: 0.25rem; }

.tag {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(52, 217, 195, 0.4);
  border-radius: 999px;
  padding: 0.2rem 0.65rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
}
.service-card p { color: var(--muted); font-size: 0.92rem; margin-top: 0.6rem; }

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad);
  color: #0b0b12;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

/* ---------- Process ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  border-top: 1px solid var(--border);
  padding-top: 1.4rem;
}
.process-list p { color: var(--muted); font-size: 0.92rem; margin-top: 0.5rem; }

.step-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--violet);
  display: block;
  margin-bottom: 0.6rem;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: start;
}

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
}

.price-card.featured {
  background: var(--surface-2);
  border-color: var(--violet);
  box-shadow: 0 12px 40px rgba(124, 108, 255, 0.18);
}

.badge {
  position: absolute;
  top: -12px;
  left: 1.8rem;
  background: var(--grad);
  color: #0b0b12;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
}

.price {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0.6rem 0 0.2rem;
}
.price .per { font-size: 1rem; font-weight: 600; color: var(--muted); }

.price-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 1.2rem; }

.price-card ul { list-style: none; margin-bottom: 1.6rem; }
.price-card li {
  font-size: 0.92rem;
  color: var(--muted);
  padding: 0.35rem 0;
}
.price-card li::before {
  content: "✓";
  color: var(--teal);
  font-weight: 700;
  margin-right: 0.55rem;
}

/* Custom-quote banner — deliberately styled unlike the tier cards
   so "fixed plans" vs "quoted work" reads at a glance */
.custom-quote {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.8rem 2rem;
  border: 1px dashed rgba(124, 108, 255, 0.55);
  background: rgba(124, 108, 255, 0.07);
  border-radius: var(--radius);
}
.custom-quote h3 { font-size: 1.2rem; }
.custom-quote p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 0.35rem;
  max-width: 540px;
}
.custom-quote .btn { flex-shrink: 0; }

/* ---------- Contact ---------- */
.contact-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 860px) {
  .contact-inner { grid-template-columns: 1fr 1.1fr; align-items: start; }
}

.contact-alt { color: var(--muted); font-size: 0.95rem; }
.contact-alt a { color: var(--teal); font-weight: 600; }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: grid;
  gap: 1.1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--violet);
}

.form-note { font-size: 0.85rem; color: var(--teal); min-height: 1.2em; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner { display: grid; gap: 0.6rem; }
.footer p { color: var(--muted); font-size: 0.9rem; }
.fineprint { font-size: 0.8rem; opacity: 0.7; }
