/* =====================================================================
   BrandLAB welcome / landing — standalone stylesheet
   Extracted from style.css; edit here without touching the app chrome.
   ===================================================================== */

/* =====================================================================
   THEME
   ===================================================================== */
:root {
  /* page background (dark) */
  --color-bg:            #0b0b0d;
  --color-bg-2:          #26262b;
  --color-glow-1:        #ff7a18;
  --color-glow-2:        #ffd23f;

  /* content blocks (white) */
  --color-surface:       #ffffff;
  --color-surface-soft:  #f6f7f9;
  --color-text:          #14181f;
  --color-text-muted:    #626c7a;
  --color-border:        #e4e7ee;

  /* text sitting directly on the dark stage (bare-background sections) */
  --color-on-dark:        #ffffff;
  --color-on-dark-muted:  rgba(255, 255, 255, 0.7);
  --color-on-dark-faint:  rgba(255, 255, 255, 0.45);
  --color-on-dark-border: rgba(255, 255, 255, 0.12);

  /* accent */
  --color-brand:         #ff7a18;
  --color-brand-hover:   #ffc107;
  --color-brand-soft:    #fff2e4;
  --color-on-brand:      #ffffff;
  --gradient-brand:      linear-gradient(135deg, #ff5f0f 0%, #ff9d2e 100%);
  --gradient-brand-hover:linear-gradient(135deg, #ff7a18 0%, #ffd23f 100%);
  --color-danger:        #c02626;
  --color-success:       #0e8a5f;

  --font-body: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-head: var(--font-body);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --space-1: 6px;
  --space-2: 12px;
  --space-3: 18px;
  --space-4: 26px;
  --space-5: 40px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .25);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, .45);

  --maxw: 1120px;
  --radius-pill: 999px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 80px;
  --space-9: 96px;
  --transition-fast: 150ms ease;
}

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

html, body { min-height: 100%; }

body {
  margin: 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-2) 70%, #141417 100%);
  background-attachment: fixed;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

/* bottom orange-yellow glow */
.glow {
  position: fixed;
  left: 50%;
  bottom: -260px;
  transform: translateX(-50%);
  width: min(1200px, 160vw);
  height: 520px;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(closest-side, rgba(255,210,63,.55), rgba(255,210,63,0) 70%) center/60% 100% no-repeat,
    radial-gradient(closest-side, rgba(255,122,24,.55), rgba(255,122,24,0) 72%) center/100% 100% no-repeat;
  filter: blur(30px);
}

button, input, textarea { font: inherit; color: inherit; }

code {
  background: var(--color-surface-soft);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: .9em;
}

.shell {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: var(--space-4) var(--space-3) var(--space-5);
  gap: var(--space-3);
}

/* =====================================================================
   SKIP LINK + BREADCRUMBS
   ===================================================================== */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #fff;
  color: #14181f;
  padding: 8px 12px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.breadcrumbs {
  margin: 0;
  padding: 0;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .82rem;
  color: #ffb45a;
}
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 10px;
  opacity: .7;
}
.breadcrumbs a {
  color: #ffc107;
  text-decoration: none;
}
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: #ffe2a8; }

/* =====================================================================
   LANDING / WELCOME / SEO
   ===================================================================== */
.landing {
  display: grid;
  gap: var(--space-3);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-brand);
  background: var(--color-brand-soft);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
}

/* --------------------------------------------------
   Hero — bare dark stage, centred, no card
   -------------------------------------------------- */
.hero {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 80px;

  text-align: center;
}

.hero-content {
  margin: 0 auto;
}

.hero h1 {
  margin: 0 0 var(--space-3);
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--color-on-dark);
}

.hero-subheadline {
  margin: 0 auto var(--space-4);
  font-size: 19px;
  line-height: 1.6;
  color: var(--color-on-dark-muted);
}

.hero-benefits {
  display: inline-grid;
  gap: 8px;
  margin: 0 0 var(--space-4);
  padding: 0;
  list-style: none;
  text-align: left;
  color: var(--color-on-dark-muted);
}
.hero-benefits li {
  position: relative;
  padding-left: 20px;
}
.hero-benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: var(--space-4);
  font-size: .88rem;
  color: var(--color-on-dark-faint);
}
.hero-trust a {
  color: var(--color-brand-hover);
  font-weight: 600;
  text-decoration: none;
}
.hero-trust a:hover { text-decoration: underline; }

.hero-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-cta .welcome-cta {
  min-width: min(100%, 260px);
  font-size: 1rem;
  padding: 14px 26px;
}

.hero-micro {
  margin: var(--space-2) 0 0;
  font-size: .85rem;
  color: var(--color-on-dark-faint);
}

.seo-card h2 {
  margin: 0 0 var(--space-3);
  font-size: clamp(1.4rem, 2.1vw, 1.7rem);
  line-height: 1.3;
  letter-spacing: -.01em;
}
.seo-card p,
.seo-card li {
  color: var(--color-text);
  line-height: 1.6;
}
.seo-card > p {
  max-width: 72ch;
}
.seo-card a {
  color: var(--color-brand);
  font-weight: 600;
  text-decoration: none;
}
.seo-card a:hover { text-decoration: underline; }

/* --------------------------------------------------
   Section heading — centred, light text, used above any
   section that sits on the bare stage instead of a card
   -------------------------------------------------- */
.section {
  padding: var(--space-6) 0;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-4);
}

.section-heading h2 {
  margin: 0 0 var(--space-2);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  letter-spacing: -.01em;
  color: var(--color-on-dark);
}

.section-heading p {
  margin: 0;
  line-height: 1.6;
  color: var(--color-on-dark-muted);
}

.seo-steps {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 10px;
}

.seo-grid {
  margin: 0;
  padding-left: 1.2em;
  columns: 2;
  gap: 18px;
}

.seo-note {
  margin: var(--space-3) 0 0;
  color: var(--color-text-muted) !important;
  font-size: .95rem;
}

.seo-links {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 8px;
}

.faq-list {
  display: block;
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  border: 0;
  border-bottom: 1px solid var(--color-on-dark-border);
  border-radius: 0;
  padding: var(--space-4) 0;
  background: transparent;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-on-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--color-brand-hover);
  font-size: 20px;
  font-weight: 400;
  transition: transform var(--transition-fast);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 10px 0 0;
  color: var(--color-on-dark-muted) !important;
}

.site-footer {
  margin-top: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background: rgba(18, 18, 21, .88);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #ffb45a;
}
.site-footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}
.site-footer-title {
  margin: 0 0 10px;
  font-size: .9rem;
  color: #ffc107;
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.site-footer a {
  color: #ffe2a8;
  text-decoration: none;
  font-size: .88rem;
}
.site-footer a:hover { text-decoration: underline; color: #fff; }
.site-footer-legal,
.site-footer-social {
  margin: var(--space-3) 0 0;
  font-size: .8rem;
  color: #c9a36a;
}

/* =====================================================================
   CARD (landing sections use .card)
   ===================================================================== */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-brand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-4);
  animation: rise .28s ease;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .card { animation: none; }
}

/* =====================================================================
   NAVBAR (links + one CTA — logo/tagline already live in the header
   include, so this bar is nav links only)
   ===================================================================== */
.site-nav {
  border-bottom: 1px solid var(--color-on-dark-border);
  background: rgba(11, 11, 13, .55);
  backdrop-filter: blur(6px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-6);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--space-3);
}
.site-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.site-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-on-dark-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.site-nav-links a:hover { color: var(--color-brand-hover); }
.site-nav-cta {
  padding: 10px 20px;
  font-size: .9rem;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .site-nav-links { display: none; }
}

/* =====================================================================
   BUTTONS (landing CTA)
   ===================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 22px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, border-color .15s, opacity .15s, color .15s;
}

.btn.primary { background: var(--gradient-brand); color: var(--color-on-brand); }
.btn.primary:hover:not(:disabled) { background: var(--gradient-brand-hover); color: var(--color-on-brand); }

/* =====================================================================
   MOBILE
   ===================================================================== */
@media (max-width: 640px) {
  .shell { padding: var(--space-3) var(--space-2) var(--space-4); }
  .card { padding: var(--space-3); border-radius: var(--radius-md); }
  .hero { padding: var(--space-6) 0 var(--space-5); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .welcome-cta { width: 100%; }
  .seo-grid { columns: 1; }
  .site-footer-grid { grid-template-columns: 1fr; }
}
