/* =========================================================
   AWARE INDEX — styles.css
   Dark monochrome, restrained teal. MLC: Minimalism, Logic, Clarity.

   EDITING COLOURS:
   All brand colours live in the :root block below.
   Change a value once and it updates across the whole site.
   ========================================================= */

:root {
  /* ---- Brand colours (edit here) ---- */
  --bg:           #0B0D0F;   /* main page background */
  --card:         #121518;   /* elevated card background */
  --surface:      #181C20;   /* secondary surface */
  --text:         #F2F2F0;   /* primary text */
  --text-2:       #A4A8AD;   /* secondary text */
  --text-3:       #747A80;   /* muted text */
  --border:       rgba(255, 255, 255, 0.10);
  --teal:         #2D7F6E;   /* accent */
  --teal-hover:   #38957F;   /* accent hover */
  --teal-soft:    rgba(45, 127, 110, 0.14);  /* faint teal fill */
  --amber:        #B08A3E;   /* warning / attention, used sparingly */
  --amber-soft:   rgba(176, 138, 62, 0.14);

  /* ---- Typography ---- */
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;

  /* ---- Layout ---- */
  --max-w: 1080px;
  --max-w-text: 680px;
  --pad-x: clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(4rem, 10vh, 7rem);
  --radius: 10px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* Offset anchored sections so headings clear the sticky header (~68px) */
section[id] { scroll-margin-top: 88px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

body {
  background: var(--bg);
  color: var(--text-2);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

/* ---- Focus states (keyboard accessibility) ---- */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--teal-hover);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--teal); color: #fff; }

/* ---- Typography scale ---- */
h1, h2, h3 { color: var(--text); font-weight: 600; line-height: 1.25; letter-spacing: -0.015em; }

h1 { font-size: clamp(2rem, 5.5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); }
h3 { font-size: 1.1rem; }

.serif-line { font-family: var(--font-serif); font-weight: 400; letter-spacing: -0.01em; }

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-hover);
  margin-bottom: 1.25rem;
}

.lede { font-size: clamp(1rem, 2.2vw, 1.125rem); max-width: var(--max-w-text); }

.note { font-size: 0.8125rem; color: var(--text-3); }

/* ---- Layout helpers ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }

.section { padding: var(--section-y) 0; }

.section + .section { border-top: 1px solid var(--border); }

.section-head { max-width: var(--max-w-text); margin-bottom: clamp(2rem, 5vh, 3rem); }

/* =========================================================
   HEADER / NAVIGATION
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 13, 15, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 68px;
}

.nav-logo { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.nav-logo img { height: 30px; width: auto; }
.nav-logo span {
  color: var(--text);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.10em;
}

.nav-links { display: flex; align-items: center; gap: 1.75rem; list-style: none; }

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--text); }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.7rem 1.35rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-hover); }

.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--text-3); }

.btn-nav { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

.btn[aria-disabled="true"] { opacity: 0.55; pointer-events: none; }
.btn:disabled { opacity: 0.55; pointer-events: none; cursor: not-allowed; }

/* ---- Mobile menu ---- */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 11px;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span { top: 20px; }
.nav-toggle span::before { left: 0; top: -6px; }
.nav-toggle span::after { left: 0; top: 6px; }

.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }

  .nav-menu {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 1rem var(--pad-x) 1.5rem;
    display: none;
  }

  .nav-menu.is-open { display: block; }

  .nav-links { flex-direction: column; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.25rem; }

  .nav-links a { font-size: 1rem; }

  .nav-cta-wrap .btn { width: 100%; text-align: center; }
}

@media (min-width: 861px) {
  .nav-menu { display: flex; align-items: center; gap: 1.75rem; }
}

/* =========================================================
   SECTION 1 — HERO
   ========================================================= */

.hero { padding: clamp(4.5rem, 12vh, 8rem) 0 var(--section-y); }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero h1 .serif-line { display: block; color: var(--text); font-size: 1.08em; }

.hero .lede { margin: 1.5rem 0 2.25rem; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.1rem; }

/* The subtle visual: three labelled signal rows */
.signal-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.signal-row + .signal-row { border-top: 1px solid var(--border); }

.signal-label { display: flex; align-items: center; gap: 0.7rem; color: var(--text); font-size: 0.9rem; font-weight: 500; }

.signal-label svg { width: 18px; height: 18px; stroke: var(--teal-hover); flex-shrink: 0; }

.signal-meter { display: flex; gap: 4px; }

.signal-meter i {
  width: 18px;
  height: 4px;
  border-radius: 2px;
  background: var(--surface);
}

.signal-meter i.on { background: var(--teal); }

.signal-foot { margin-top: 1.1rem; font-size: 0.75rem; color: var(--text-3); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SECTION 2 — THE PROBLEM (text-led)
   ========================================================= */

.problem-list { list-style: none; max-width: var(--max-w-text); margin: 1.75rem 0; }

.problem-list li {
  padding: 0.85rem 0 0.85rem 1.6rem;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--text-2);
}

.problem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.55rem;
  width: 8px;
  height: 2px;
  background: var(--teal);
}

/* =========================================================
   SECTION 3 — THREE PILLARS
   ========================================================= */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pillar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
}

.pillar svg { width: 26px; height: 26px; stroke: var(--teal-hover); margin-bottom: 1.1rem; }

.pillar h3 { margin-bottom: 0.6rem; }

.pillar p { font-size: 0.9rem; }

@media (max-width: 860px) {
  .pillars { grid-template-columns: 1fr; }
}

/* =========================================================
   SECTION 4 — HOW IT WORKS
   ========================================================= */

.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; counter-reset: step; }

.step { padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--teal);
  color: var(--teal-hover);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step h3 { margin-bottom: 0.55rem; }
.step p { font-size: 0.9rem; }

.statement {
  margin-top: 2.25rem;
  padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--teal);
  color: var(--text);
  font-size: 0.95rem;
  max-width: var(--max-w-text);
}

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
}

/* =========================================================
   SECTION 5 — FREE SNAPSHOT
   ========================================================= */

.includes-list { list-style: none; margin: 1.5rem 0; max-width: var(--max-w-text); }

.includes-list li { display: flex; gap: 0.75rem; padding: 0.5rem 0; color: var(--text-2); }

.includes-list li svg { width: 18px; height: 18px; stroke: var(--teal-hover); flex-shrink: 0; margin-top: 4px; }

.scope-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  font-size: 0.875rem;
  color: var(--text-3);
  max-width: var(--max-w-text);
  margin-bottom: 2rem;
}

/* =========================================================
   SECTION 6 — EXAMPLE SNAPSHOT PREVIEW
   ========================================================= */

.report-preview {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 760px;
  overflow: hidden;
}

.report-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1.4rem 1.75rem;
  border-bottom: 1px solid var(--border);
}

.report-head strong { color: var(--text); font-size: 1.05rem; font-weight: 600; }
.report-head span { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }

.report-statuses { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-bottom: 1px solid var(--border); }

.report-status { padding: 1.1rem 1.75rem; }
.report-status + .report-status { border-left: 1px solid var(--border); }

.report-status dt { font-size: 0.75rem; color: var(--text-3); margin-bottom: 0.35rem; }
.report-status dd { font-size: 0.9rem; font-weight: 500; }

.status-moderate { color: var(--teal-hover); }
.status-partial { color: var(--amber); }
.status-needs { color: var(--amber); }

.report-body { padding: 1.5rem 1.75rem; }

.report-body h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

.report-body p { font-size: 0.925rem; color: var(--text-2); margin-bottom: 1.5rem; }

.report-recs { list-style: none; counter-reset: rec; }

.report-recs li {
  counter-increment: rec;
  display: flex;
  gap: 0.85rem;
  padding: 0.6rem 0;
  font-size: 0.925rem;
  color: var(--text);
}

.report-recs li::before {
  content: counter(rec);
  color: var(--teal-hover);
  font-weight: 600;
  font-size: 0.85rem;
}

.report-foot { padding: 1rem 1.75rem; border-top: 1px solid var(--border); font-size: 0.75rem; color: var(--text-3); }

@media (max-width: 700px) {
  .report-statuses { grid-template-columns: 1fr; }
  .report-status + .report-status { border-left: 0; border-top: 1px solid var(--border); }
}

/* =========================================================
   SECTION 7 — PAID REPORT
   ========================================================= */

.price-line { margin: 1.5rem 0 2rem; }
.price-line .price { color: var(--text); font-size: 1.2rem; font-weight: 600; }
.price-line .price-label { font-size: 0.85rem; color: var(--text-3); margin-right: 0.5rem; }

/* Services & pricing tiers (reuses the card pattern; balanced via flex) */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.tier {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.tier h3 { margin-bottom: 0.6rem; }
.tier .price-line { margin: 0 0 1rem; }
.tier > p { font-size: 0.9rem; margin-bottom: 0.75rem; }
.tier .tier-note { color: var(--teal-hover); font-weight: 500; }
.tier .scope-note { max-width: none; margin: 0.6rem 0 1.25rem; }
.tier .btn { margin-top: auto; align-self: flex-start; }
.tier-status {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--amber);
  background: var(--amber-soft);
  border-radius: 4px;
  padding: 0.3em 0.7em;
  margin-bottom: 1rem;
}

/* Full-width "what the pack includes" details below the cards */
.pack-details { margin-top: 2.5rem; }
.pack-details h3 { margin-bottom: 1rem; }
.pack-details .includes-list {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 2rem;
  margin: 0;
}

@media (max-width: 860px) {
  .tiers { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .pack-details .includes-list { grid-template-columns: 1fr; }
}

/* =========================================================
   SECTION 8 — FUTURE PROFILES
   ========================================================= */

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-soft);
  border-radius: 4px;
  padding: 0.3em 0.7em;
  margin-bottom: 1.1rem;
}

/* =========================================================
   SECTION 11 — FAQ ACCORDION
   ========================================================= */

.faq-list { max-width: 760px; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.975rem;
  font-weight: 500;
  text-align: left;
  padding: 1.2rem 0;
  cursor: pointer;
}

.faq-q svg { width: 16px; height: 16px; stroke: var(--text-3); flex-shrink: 0; transition: transform 0.2s ease; }

.faq-q[aria-expanded="true"] svg { transform: rotate(45deg); }

.faq-a { display: none; padding: 0 0 1.3rem; font-size: 0.925rem; max-width: 640px; }

.faq-a.is-open { display: block; }

/* =========================================================
   SECTION 12 — FINAL CTA
   ========================================================= */

.final-cta { text-align: left; }

.final-cta .lede { margin: 1.25rem 0 2rem; }

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer { border-top: 1px solid var(--border); padding: 3.5rem 0 2.5rem; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand img { height: 28px; margin-bottom: 1rem; }

.footer-brand p { font-size: 0.875rem; margin-bottom: 0.4rem; }

.footer-brand a { color: var(--text-2); text-decoration: none; }
.footer-brand a:hover { color: var(--text); }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }

.footer-links a { color: var(--text-2); text-decoration: none; font-size: 0.875rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--text); }

.footer-legal { border-top: 1px solid var(--border); padding-top: 1.75rem; }

.footer-legal p { font-size: 0.75rem; color: var(--text-3); margin-bottom: 0.6rem; max-width: 820px; }

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   LEGAL PAGES (privacy / terms / cookies / 404)
   ========================================================= */

.legal-page { max-width: 760px; padding: clamp(3rem, 8vh, 5rem) 0; }

.legal-page h1 { font-size: clamp(1.75rem, 4vw, 2.4rem); margin-bottom: 0.75rem; }

.legal-page h2 { font-size: 1.2rem; margin: 2.5rem 0 0.75rem; }

.legal-page p, .legal-page li { font-size: 0.95rem; margin-bottom: 0.9rem; }

.legal-page ul { padding-left: 1.25rem; margin-bottom: 1rem; }

.legal-page .updated { font-size: 0.8rem; color: var(--text-3); margin-bottom: 2rem; }

.legal-page a { color: var(--teal-hover); text-decoration: underline; }
.legal-page a:hover { color: var(--text); }
.legal-page address { font-style: normal; }

.review-flag {
  background: var(--amber-soft);
  border-left: 2px solid var(--amber);
  padding: 0.8rem 1.1rem;
  font-size: 0.85rem;
  color: var(--text-2);
  margin: 1rem 0;
}

/* ---- 404 ---- */
.page-404 { min-height: 60vh; display: flex; flex-direction: column; justify-content: center; }
.page-404 h1 { margin-bottom: 1rem; }
.page-404 p { margin-bottom: 2rem; }
