/* ─────────────────────────────────────────────
   LILANAY LLC — Premium Digital Services
   Design System: Dark luxury, editorial spacing
   ───────────────────────────────────────────── */

/* ── CSS Variables ── */
:root {
  --ink:        #0D0B0A;
  --ink-soft:   #1A1816;
  --ink-mid:    #2A2724;
  --paper:      #FAFAF8;
  --paper-warm: #F5F3EF;
  --cream:      #EDEAE4;
  --accent:     #E85D3E;
  --accent-soft:#F07054;
  --gold:       #C4A35A;
  --muted:      #8A8580;
  --muted-light:#B5B0AA;
  --border:     #E8E5E0;
  --r-sm:       6px;
  --r-md:       12px;
  --r-lg:       20px;
  --r-xl:       28px;
  --shadow-sm:  0 2px 8px rgba(13,11,10,0.06);
  --shadow-md:  0 8px 32px rgba(13,11,10,0.10);
  --shadow-lg:  0 24px 64px rgba(13,11,10,0.14);
  --shadow-glow:0 0 40px rgba(232,93,62,0.15);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: 'Inter', 'Inter Tight', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 15px;
  letter-spacing: -0.01em;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}
h1 { font-size: clamp(40px, 6vw, 72px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2.2vw, 28px); }

/* ── Navigation ── */
.gw-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  max-width: 1400px; margin: 0 auto;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
}
.gw-nav.scrolled {
  background: rgba(250,250,248,0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: var(--shadow-sm);
}
.gw-brand {
  font-weight: 700; font-size: 18px; letter-spacing: -0.02em;
  color: var(--ink);
}
.gw-nav nav { display: flex; gap: 8px; align-items: center; }
.gw-nav nav a {
  font-size: 14px; font-weight: 500;
  color: var(--muted);
  padding: 8px 16px; border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.gw-nav nav a:hover { color: var(--ink); background: var(--cream); }
.gw-nav nav a.active { color: var(--ink); background: var(--cream); }

/* ── Hero ── */
.gw-hero {
  position: relative;
  padding: 160px 32px 120px;
  text-align: center;
  background: linear-gradient(165deg, var(--paper) 0%, var(--paper-warm) 50%, var(--cream) 100%);
  overflow: hidden;
}
.gw-hero::before {
  content: '';
  position: absolute; top: -50%; left: -20%; right: -20%; bottom: -50%;
  background: radial-gradient(ellipse at 30% 20%, rgba(232,93,62,0.06) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 80%, rgba(196,163,90,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.gw-hero > * { position: relative; z-index: 1; }
.gw-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,93,62,0.08);
  border: 1px solid rgba(232,93,62,0.15);
  padding: 10px 22px; border-radius: 999px;
  margin-bottom: 32px;
}
.gw-eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.gw-hero h1 {
  max-width: 800px; margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gw-lede {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--muted);
  max-width: 560px; margin: 0 auto 40px;
  line-height: 1.7;
}
.gw-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 600; font-size: 15px;
  border-radius: var(--r-md);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s, background 0.2s;
  box-shadow: var(--shadow-md);
}
.gw-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
  background: var(--ink-soft);
}
.gw-cta::after {
  content: '→';
  transition: transform 0.2s;
}
.gw-cta:hover::after { transform: translateX(4px); }

/* ── Stats bar ── */
.gw-stats {
  display: flex; justify-content: center; gap: 64px;
  padding: 48px 32px;
  background: var(--ink);
  color: var(--paper);
}
.gw-stat { text-align: center; }
.gw-stat-num {
  font-size: clamp(28px, 3vw, 40px); font-weight: 700;
  color: var(--accent-soft); letter-spacing: -0.02em;
}
.gw-stat-label { font-size: 13px; color: var(--muted-light); margin-top: 4px; }

/* ── Section headers ── */
.gw-sec-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 40px; padding: 0 8px;
}
.gw-sec-head h2 { color: var(--ink); }
.gw-sec-head .gw-subtitle {
  font-size: 15px; color: var(--muted); margin-top: 8px;
}
.gw-link {
  font-size: 14px; font-weight: 500;
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  padding-bottom: 2px;
}
.gw-link:hover { border-bottom-color: var(--accent); }

/* ── Grid & Cards ── */
.gw-grid-section { padding: 100px 32px; max-width: 1400px; margin: 0 auto; }
.gw-grid-section h1 { margin-bottom: 40px; }
.gw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.gw-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s, border-color 0.2s;
  position: relative;
}
.gw-card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-glow);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.gw-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,93,62,0.2);
}
.gw-card:hover::before { opacity: 1; }
.gw-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ink-soft) 0%, var(--ink-mid) 100%);
}
.gw-card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.gw-card:hover .gw-card-image img { transform: scale(1.06); }
.gw-pill {
  position: absolute; top: 16px; left: 16px;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.gw-card-body { padding: 24px; }
.gw-card-body h3 {
  font-size: 18px; font-weight: 600;
  margin-bottom: 8px; color: var(--ink);
}
.gw-card-body p {
  font-size: 14px; color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.gw-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.gw-price { display: flex; align-items: baseline; gap: 10px; }
.gw-strike {
  text-decoration: line-through;
  color: var(--muted-light); font-size: 14px;
}
.gw-now { font-size: 20px; font-weight: 700; color: var(--ink); }
.gw-now.free { color: var(--accent); }
.gw-buy {
  font-size: 13px; font-weight: 600;
  color: var(--accent);
  transition: color 0.2s;
}
.gw-buy:hover { color: var(--ink); }

/* ── Band / CTA Section ── */
.gw-band {
  position: relative;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--paper);
  padding: 100px 32px; text-align: center;
  margin: 0 32px 80px; border-radius: var(--r-xl);
  overflow: hidden;
}
.gw-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,93,62,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(196,163,90,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.gw-band > * { position: relative; z-index: 1; }
.gw-band h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px; max-width: 600px; margin-left: auto; margin-right: auto;
}
.gw-band p { color: var(--muted-light); font-size: 15px; }

/* ── Trust badges ── */
.gw-trust {
  display: flex; justify-content: center; gap: 48px; flex-wrap: wrap;
  padding: 40px 32px;
}
.gw-trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: var(--muted);
}
.gw-trust-item svg {
  width: 20px; height: 20px; color: var(--accent);
}

/* ── Contact / Narrow pages ── */
.gw-narrow { max-width: 640px; margin: 0 auto; padding: 140px 32px 100px; }
.gw-narrow h1 { margin-bottom: 24px; }
.gw-narrow p { font-size: 16px; color: var(--muted); margin-bottom: 20px; line-height: 1.7; }
.gw-narrow .gw-cta { margin: 8px 0 24px; }
.gw-fine {
  font-size: 14px; color: var(--muted);
  line-height: 1.8;
}
.gw-fine strong { color: var(--ink); font-weight: 600; }

/* ── Product Detail Page ── */
.gw-product { max-width: 1200px; margin: 0 auto; padding: 120px 32px 80px; }
.gw-product-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.gw-product-visual {
  position: sticky; top: 100px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--ink-soft) 0%, var(--ink-mid) 100%);
}
.gw-product-visual img {
  width: 100%; height: auto; display: block;
}
.gw-product-badge {
  position: absolute; top: 24px; left: 24px;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(8px);
  color: var(--ink);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 8px 18px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.gw-product-info h1 { margin-bottom: 8px; }
.gw-product-tagline {
  font-size: 17px; color: var(--muted);
  margin-bottom: 24px; line-height: 1.6;
}
.gw-product-info .gw-price {
  margin-bottom: 24px;
  padding: 20px 24px;
  background: var(--paper-warm);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.gw-product-info .gw-now { font-size: 36px; font-weight: 700; }
.gw-product-info .gw-strike { font-size: 20px; }
.gw-product-meta {
  display: flex; gap: 32px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.gw-product-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--muted);
}
.gw-product-meta-item strong { color: var(--ink); font-weight: 600; }
.gw-product-meta-item svg {
  width: 18px; height: 18px; color: var(--accent);
}
.gw-product-desc {
  font-size: 15px; line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.gw-product-desc h3 {
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted);
  margin: 32px 0 16px;
}
.gw-product-desc ul { padding-left: 0; }
.gw-product-desc li {
  position: relative;
  padding-left: 28px; margin-bottom: 12px;
  list-style: none;
}
.gw-product-desc li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 14px; height: 14px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.2;
}
.gw-product-desc li::after {
  content: '✓';
  position: absolute; left: 3px; top: 5px;
  font-size: 10px; font-weight: 700;
  color: var(--accent);
}
.gw-product-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.gw-product-actions .gw-cta {
  padding: 18px 40px; font-size: 16px;
  border-radius: var(--r-md);
}
.gw-btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 40px;
  background: transparent; color: var(--ink);
  font-weight: 600; font-size: 16px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--border);
  transition: all 0.2s;
}
.gw-btn-secondary:hover {
  border-color: var(--ink);
  background: var(--paper-warm);
}

/* ── Footer ── */
.gw-footer {
  padding: 80px 32px 40px;
  border-top: 1px solid var(--border);
  background: var(--paper-warm);
}
.gw-foot-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.gw-foot-brand { max-width: 320px; }
.gw-brand-lg {
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.gw-foot-tagline {
  font-size: 14px; color: var(--muted);
  line-height: 1.6; margin-bottom: 20px;
}
.gw-foot-contact {
  font-size: 14px; color: var(--muted);
  line-height: 1.8;
}
.gw-foot-contact a { color: var(--ink); font-weight: 500; transition: color 0.2s; }
.gw-foot-contact a:hover { color: var(--accent); }
.gw-foot-head {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 20px; color: var(--muted);
}
.gw-foot-grid a {
  display: block; font-size: 14px;
  margin-bottom: 12px; color: var(--muted);
  transition: color 0.2s, transform 0.2s;
}
.gw-foot-grid a:hover { color: var(--ink); transform: translateX(2px); }
.gw-copy {
  max-width: 1200px; margin: 48px auto 0;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--muted-light);
  text-align: center;
}

/* ── 404 ── */
.gw-404 {
  text-align: center; padding: 160px 32px;
}
.gw-404 h1 { font-size: 120px; color: var(--border); margin-bottom: 16px; }
.gw-404 p { color: var(--muted); margin-bottom: 32px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .gw-product-grid { grid-template-columns: 1fr; }
  .gw-product-visual { position: relative; top: 0; }
  .gw-foot-grid { grid-template-columns: 1fr 1fr; }
  .gw-stats { gap: 32px; flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .gw-nav { padding: 14px 20px; }
  .gw-hero { padding: 120px 20px 80px; }
  .gw-grid-section { padding: 60px 20px; }
  .gw-grid { grid-template-columns: 1fr; }
  .gw-band { margin: 0 16px 60px; padding: 60px 20px; }
  .gw-foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .gw-stats { flex-direction: column; gap: 24px; }
  .gw-product { padding: 100px 20px 60px; }
  .gw-product-grid { gap: 40px; }
}
