
:root {
  --bg: #070b11;
  --bg-2: #0d131d;
  --card: rgba(14, 20, 30, 0.78);
  --card-solid: #101722;
  --text: #ecf1f7;
  --muted: #9eb0c4;
  --line: rgba(255, 255, 255, 0.08);
  --green: #7ee643;
  --green-deep: #2d7f2c;
  --orange: #ff9d20;
  --orange-deep: #d76c07;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(0, 0, 0, .45);
  --radius: 24px;
  --radius-sm: 18px;
  --max: 1220px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(126, 230, 67, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(255, 157, 32, 0.16), transparent 28%),
    linear-gradient(180deg, #05080d 0%, #0a1018 55%, #070b11 100%);
  color: var(--text);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 4.5rem 0; position: relative; }
.section.compact { padding: 2.25rem 0; }
.surface {
  background: linear-gradient(180deg, rgba(16, 23, 34, .86), rgba(11, 16, 25, .88));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .55rem .95rem; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  color: #d6e0ea; font-size: .86rem; letter-spacing: .04em; text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--orange));
  box-shadow: 0 0 18px rgba(255, 157, 32, 0.45);
}
h1, h2, h3 { line-height: 1.08; margin: 0 0 1rem; letter-spacing: -.03em; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
p.lead, .lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: #d5e1ec; max-width: 62ch; }
p, li { color: var(--muted); }
.gradient-text {
  background: linear-gradient(90deg, var(--green) 0%, #d8ffb8 35%, #ffe2b1 65%, var(--orange) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-split span:first-child { color: var(--green); }
.text-split span:last-child { color: var(--orange); }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.5rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  min-height: 50px; padding: .9rem 1.2rem; border-radius: 16px; border: 1px solid transparent;
  font-weight: 700; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #08100b;
  background: linear-gradient(135deg, var(--green), #d7ff70 52%, var(--orange));
  box-shadow: 0 14px 35px rgba(126, 230, 67, .18);
}
.btn-secondary {
  color: var(--text); border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.04);
}
.btn-dark {
  background: #040609; color: white; border: 1px solid rgba(255,255,255,.12);
}
.site-header {
  position: sticky; top: 0; z-index: 50; backdrop-filter: blur(16px);
  background: rgba(7, 11, 17, .72); border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 82px; }
.brand { display: flex; align-items: center; gap: .85rem; font-weight: 800; }
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand .brand-text { display: grid; line-height: 1; }
.brand .small { font-size: .74rem; color: var(--muted); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1rem; }
.nav-links a {
  padding: .7rem .9rem; border-radius: 12px; color: #dbe6f1; font-weight: 600; font-size: .96rem;
}
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.06); }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.menu-toggle { display: none; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); color: white; width: 48px; height: 48px; border-radius: 14px; }
.mobile-panel { display: none; }
.hero {
  position: relative; overflow: clip;
  min-height: 88vh; display: flex; align-items: center;
  background:
    linear-gradient(90deg, rgba(5,8,13,.9) 0%, rgba(5,8,13,.78) 42%, rgba(5,8,13,.45) 72%, rgba(5,8,13,.4) 100%),
    url('assets/images/processed/hero-banner.jpg') center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 160px;
  background: linear-gradient(180deg, rgba(7,11,17,0), rgba(7,11,17,1));
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.2fr .9fr; gap: 2rem; align-items: center; }
.hero-copy { padding: 2rem 0 3rem; }
.hero-copy p { max-width: 60ch; }
.hero-points { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .85rem; margin-top: 1.4rem; }
.pill {
  padding: .9rem 1rem; border-radius: 16px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08); color: #dbe7f1; font-weight: 600;
}
.glass-card {
  background: linear-gradient(180deg, rgba(15, 22, 34, .68), rgba(8, 11, 17, .72));
  border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); border-radius: 28px;
}
.hero-card { padding: 1.25rem; max-width: 510px; justify-self: end; }
.hero-card img { border-radius: 20px; border: 1px solid rgba(255,255,255,.08); }
.stat-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .75rem; margin-top: 1rem; }
.stat { padding: 1rem; border-radius: 18px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); }
.stat strong { display: block; color: white; font-size: 1.2rem; }
.grid-3, .grid-4, .grid-2 { display: grid; gap: 1.2rem; }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.feature-card, .product-card, .info-card, .gallery-card, .faq-card, .contact-card, .checkout-card {
  position: relative; overflow: hidden; padding: 1.15rem; border-radius: 24px;
  background: linear-gradient(180deg, rgba(15, 22, 34, .86), rgba(10, 14, 20, .92));
  border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow);
}
.feature-card::before, .product-card::before, .info-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, rgba(126,230,67,.85), rgba(255,157,32,.85));
}
.feature-icon {
  width: 54px; height: 54px; display: grid; place-items: center;
  border-radius: 16px; background: linear-gradient(135deg, rgba(126,230,67,.18), rgba(255,157,32,.18));
  color: white; font-size: 1.35rem; margin-bottom: .9rem;
}
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.section-head p { max-width: 64ch; margin: 0; }
.product-card img, .gallery-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 18px; margin-bottom: 1rem; }
.product-card .meta { display: flex; justify-content: space-between; align-items: center; gap: .8rem; margin: .8rem 0; }
.price { font-size: 1.2rem; color: white; font-weight: 800; }
.tag { display: inline-flex; align-items: center; gap: .45rem; padding: .45rem .8rem; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: #dce6f2; font-size: .86rem; }
.badge-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .7rem; }
.highlight-banner {
  background:
    linear-gradient(90deg, rgba(6, 9, 12, .92), rgba(6, 9, 12, .72)),
    url('assets/images/processed/section-banner.jpg') center/cover no-repeat;
  border-radius: 32px; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow);
  padding: 2rem;
}
.split-callout { display: grid; grid-template-columns: 1fr .9fr; gap: 1.6rem; align-items: center; }
.split-callout img, .process-image { border-radius: 22px; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; counter-reset: process; }
.process-step {
  padding: 1.2rem; border-radius: 22px; border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03); position: relative;
}
.process-step::before {
  counter-increment: process; content: counter(process, decimal-leading-zero);
  display: inline-flex; width: 42px; height: 42px; border-radius: 12px; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(126,230,67,.24), rgba(255,157,32,.24));
  color: white; font-weight: 800; margin-bottom: 1rem;
}
.logo-strip { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: .85rem; }
.logo-strip .slot {
  min-height: 90px; border-radius: 18px; border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.03); display: grid; place-items: center; text-align: center; padding: 1rem;
}
.quote-box {
  padding: 1.5rem; border-radius: 24px; background: linear-gradient(180deg, rgba(8,11,17,.86), rgba(11,16,25,.95));
  border: 1px solid rgba(255,255,255,.08);
}
.page-hero {
  padding: 5.2rem 0 3rem;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
}
.page-hero.compact-hero { padding-top: 3.8rem; }
.page-hero .surface { padding: 2rem; overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 1.6rem; align-items: center; }
.page-hero-grid img { border-radius: 24px; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.filters { display: flex; flex-wrap: wrap; gap: .65rem; margin: .5rem 0 1.4rem; }
.filter-chip {
  border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); color: #dce7f2;
  padding: .65rem .9rem; border-radius: 999px; cursor: pointer;
}
.filter-chip.active { background: rgba(126,230,67,.12); border-color: rgba(126,230,67,.35); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
.input, .textarea, .select {
  width: 100%; padding: .95rem 1rem; border-radius: 16px; border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.035); color: var(--text);
}
.input::placeholder, .textarea::placeholder { color: #89a0b6; }
.textarea { min-height: 150px; resize: vertical; }
.small-note { font-size: .88rem; color: #94a9be; }
.payment-methods { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .9rem; }
.pay-btn {
  min-height: 58px; border-radius: 16px; border: 1px solid rgba(255,255,255,.08); font-weight: 800;
  display: flex; align-items: center; justify-content: center; color: white;
}
.pay-btn.paypal { background: linear-gradient(135deg, #003087, #0070ba); }
.pay-btn.apple { background: linear-gradient(135deg, #000, #222); }
.pay-btn.google { background: linear-gradient(135deg, #1a73e8, #34a853); }
.cart-list { display: grid; gap: .9rem; }
.cart-item {
  display: grid; grid-template-columns: 82px 1fr auto; gap: 1rem; align-items: center;
  padding: .9rem; border-radius: 18px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.06);
}
.cart-item img { width: 82px; height: 82px; object-fit: cover; border-radius: 16px; }
.qty-row { display: inline-flex; align-items: center; gap: .4rem; }
.qty-row button, .mini-btn {
  width: 34px; height: 34px; border-radius: 10px; border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.045); color: white;
}
.summary-row { display: flex; justify-content: space-between; gap: 1rem; padding: .6rem 0; border-bottom: 1px dashed rgba(255,255,255,.08); }
.summary-row:last-child { border-bottom: 0; }
.empty-state {
  padding: 1.5rem; border-radius: 18px; background: rgba(255,255,255,.03); border: 1px dashed rgba(255,255,255,.14);
}
.notice {
  padding: 1rem 1.15rem; border-radius: 16px; background: rgba(255, 157, 32, .08);
  border: 1px solid rgba(255, 157, 32, .22); color: #f2ddc1;
}
.footer { padding: 2rem 0 3rem; border-top: 1px solid rgba(255,255,255,.06); margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.15fr .8fr .8fr .9fr; gap: 1rem; }
.footer h3, .footer h4 { margin-bottom: .8rem; }
.footer a { color: #cfdaea; }
.footer .muted { color: var(--muted); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.social-row { display: flex; gap: .6rem; margin-top: 1rem; }
.social-row a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08);
}
.subfooter { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.8rem; color: #8ba1b7; font-size: .92rem; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: .75rem; }
.mt-2 { margin-top: 1.2rem; }
.mt-3 { margin-top: 1.8rem; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--muted); }
.hide { display: none !important; }

@media (max-width: 1100px) {
  .hero-grid, .page-hero-grid, .split-callout { grid-template-columns: 1fr; }
  .hero-card { justify-self: stretch; max-width: none; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid, .process-grid, .logo-strip { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 860px) {
  .nav-links, .nav-actions .btn { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .mobile-panel {
    display: none; position: absolute; left: 1rem; right: 1rem; top: calc(100% + .6rem);
    padding: .8rem; border-radius: 18px; background: rgba(7,11,17,.97); border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow);
  }
  .mobile-panel.open { display: grid; gap: .35rem; }
  .mobile-panel a { padding: .95rem 1rem; border-radius: 12px; color: #dce8f2; }
  .mobile-panel a:hover { background: rgba(255,255,255,.04); }
  .hero { min-height: auto; padding: 2rem 0 4rem; }
  .hero-points, .stat-row, .grid-3, .grid-2, .payment-methods, .footer-grid, .process-grid, .logo-strip { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .brand img { width: 48px; height: 48px; }
  .section { padding: 3.4rem 0; }
  .page-hero { padding: 4.4rem 0 2.4rem; }
  .hero-copy { padding-top: 1.6rem; }
  .grid-4 { grid-template-columns: 1fr; }
  .container { width: min(var(--max), calc(100% - 1rem)); }
  .section-head { align-items: start; }
}


.brand .brand-text { row-gap: .32rem; line-height: 1.14; }
.brand .brand-name { letter-spacing: -.02em; }
.account-bar {
  display:flex; justify-content:space-between; gap:1rem; align-items:center; padding:.95rem 1rem;
  border-radius:16px; background:rgba(255,255,255,.035); border:1px solid rgba(255,255,255,.08);
}
.account-bar a { color: #dff5c7; font-weight: 700; }
.pay-btn { cursor:pointer; transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease; }
.pay-btn.selected { outline: 2px solid rgba(255,255,255,.88); box-shadow: 0 0 0 4px rgba(255,255,255,.08); }
.auth-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.2rem; }
.account-summary {
  display:grid; gap:.65rem; padding:1rem; border-radius:18px; background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.08);
}
.account-summary strong { color:white; }
label { display:block; margin:0 0 .45rem; color:#dce7f2; font-weight:600; }
.site-toast { transition: opacity .2s ease; }
@media (max-width: 860px) {
  .auth-grid { grid-template-columns: 1fr; }
}


/* Final launch additions */
.policy-list, .content-list { margin: .8rem 0 0 1.2rem; color: var(--muted); }
.policy-list li, .content-list li { margin: .35rem 0; }
.full { grid-column: 1 / -1; }
.notice strong { color: #fff; }
.price-note { font-size: .92rem; color: #b7c7d8; margin-top: .55rem; }
.card-kicker { color: #dff5c7; font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.mini-grid { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap:1rem; }
.two-col-copy { display:grid; grid-template-columns: 1.1fr .9fr; gap:1.4rem; align-items:start; }
.quote-note { padding: 1rem 1.1rem; border-radius: 18px; background: rgba(126,230,67,.09); border: 1px solid rgba(126,230,67,.22); color:#dff5c7; }
.inline-link { color:#dff5c7; text-decoration:underline; text-underline-offset:2px; }
.faq-card h3, .process-step h3 { margin-bottom: .65rem; }
.hero-stat-grid { display:grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: .9rem; margin-top: 1rem; }
.hero-stat-grid .stat { min-height: 100%; }
.section-head .small-note { max-width: 52ch; }
table.pricing-table { width:100%; border-collapse: collapse; margin-top:1rem; }
table.pricing-table th, table.pricing-table td { text-align:left; padding:.9rem 1rem; border-bottom:1px solid rgba(255,255,255,.08); color: var(--muted); }
table.pricing-table th { color:#fff; font-size:.95rem; }
table.pricing-table td strong { color:#fff; }
.hero-card img.cover-center, .product-card img.cover-center { object-position: center; }
@media (max-width: 860px) {
  .mini-grid, .two-col-copy, .hero-stat-grid { grid-template-columns: 1fr; }
}
