/*
Theme Name: Beyond ecom LLC
Theme URI: https://example.com/beyond-ecom-llc
Author: Beyond ecom LLC
Author URI: https://example.com
Description: Futuristic dark one-page theme for a Google Ads ecommerce agency. No retainers, no setup fees—just 10% spend.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: beyondecom
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

:root {
  --bg: 230 15% 6%;
  --surface: 230 15% 10%;
  --text: 220 15% 96%;
  --muted: 220 10% 65%;
  --brand: 258 92% 72%;
  --brand-2: 200 94% 66%;
  --ring: 215 100% 60%;
  --radius: 14px;

  --gradient-primary: linear-gradient(135deg, hsl(var(--brand)), hsl(var(--brand-2)));
  --shadow-glow: 0 0 40px hsl(var(--brand-2) / 0.35);
  --shadow-elegant: 0 16px 40px -10px hsl(var(--brand) / 0.25);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: hsl(var(--text));
  background: hsl(var(--bg));
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.header {
  position: sticky; top: 0; z-index: 1000;
  backdrop-filter: saturate(160%) blur(10px);
  background: color-mix(in hsl, hsl(var(--bg)) 70%, transparent);
  border-bottom: 1px solid hsl(var(--surface) / 0.6);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand {
  font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em;
  background: var(--gradient-primary);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav { display: none; gap: 24px; color: hsl(var(--muted)); }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a { color: inherit; text-decoration: none; position: relative; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 100%;
  transform: scaleX(0); transform-origin: right; transition: transform .3s ease;
  background: hsl(var(--brand));
}
.nav a:hover { color: hsl(var(--text)); }
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  height: 48px; padding: 0 20px; border-radius: calc(var(--radius) - 4px);
  font-weight: 600; text-decoration: none; border: 1px solid hsl(var(--surface));
  transition: transform .2s ease, filter .2s ease, background .2s ease, color .2s ease;
}
.btn-outline { color: hsl(var(--text)); background: transparent; }
.btn-outline:hover { background: hsl(var(--surface)); }
.btn-hero {
  background: var(--gradient-primary); color: hsl(var(--bg));
  box-shadow: var(--shadow-glow);
}
.btn-hero:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-lg { height: 56px; padding: 0 28px; font-size: 1.05rem; }
.btn-sm { height: 40px; padding: 0 14px; font-size: .95rem; }

.hero {
  position: relative; overflow: hidden;
  padding: clamp(96px, 12vw, 144px) 0 clamp(72px, 10vw, 120px);
}
.hero .backdrop {
  position: absolute; inset: 0; background:
   radial-gradient(600px 300px at var(--x, 50%) var(--y, 20%), hsl(var(--brand) / 0.18), transparent 60%),
   linear-gradient(180deg, hsl(var(--bg) / .3), hsl(var(--bg)));
}
.hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 16px;
}
.hero p {
  color: hsl(var(--muted));
  font-size: clamp(18px, 2.2vw, 26px);
  margin: 0 0 24px;
}

.kicker {
  display: inline-block; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px; background: hsl(var(--surface)); color: hsl(var(--text));
}

.section { padding: clamp(60px, 9vw, 100px) 0; }
.section h2 {
  font-size: clamp(32px, 4.5vw, 56px); line-height: 1.15; margin: 0 0 12px;
}
.section .lead { color: hsl(var(--muted)); margin-top: 6px; }

.grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.card {
  background: hsl(var(--surface)); border: 1px solid hsl(var(--surface) / .7);
  border-radius: var(--radius); padding: 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-elegant); }

.pill {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px; width: 40px; border-radius: 10px;
  background: var(--gradient-primary); color: hsl(var(--bg)); box-shadow: var(--shadow-glow);
}

.list { list-style: none; padding: 0; margin: 0; }
.list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; }

.pricing .price { font-size: clamp(44px, 6vw, 72px); font-weight: 800; letter-spacing: -0.02em; }

.faq details {
  background: hsl(var(--surface)); border: 1px solid hsl(var(--surface) / .7);
  border-radius: var(--radius); padding: 16px 18px;
}
.faq summary {
  cursor: pointer; font-weight: 600; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }

.footer {
  border-top: 1px solid hsl(var(--surface) / .7); padding: 28px 0; color: hsl(var(--muted));
}

.fade-in { animation: fade-in .35s ease-out both; }
@keyframes fade-in {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
