:root {
  --accent: #EE8C23;
  --accent-bright: #FFA84A;
  --accent-soft: rgba(238, 140, 35, 0.08);
  --accent-medium: rgba(238, 140, 35, 0.22);
  --bg: #FFF9F2;
  --bg-card: #FFFFFF;
  --bg-dark: #1A130A;
  --bg-dark-2: #2B1F12;
  --fg: #2A1F14;
  --fg-on-dark: #FBF1E0;
  --muted: #6B5840;
  --muted-on-dark: #C9B89B;
  --border: #E8DDC8;
  --border-strong: #D9CBB0;
  --shadow: 0 10px 40px rgba(42, 31, 20, 0.08);
  --shadow-lg: 0 30px 80px rgba(42, 31, 20, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover { text-decoration: underline; text-underline-offset: 3px; }

code {
  font-family: "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: var(--accent-soft);
  padding: 2px 7px;
  border-radius: 4px;
  color: var(--accent);
}

em { font-style: italic; color: var(--muted); }

ul { list-style: none; }

/* ─── Top nav ──────────────────────────────────────────────────────── */

.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  background: rgba(26, 19, 10, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(238, 140, 35, 0.12);
}

.topnav .brand {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg-on-dark);
  letter-spacing: -0.01em;
}

.topnav-links {
  display: flex;
  gap: 28px;
}

.topnav-links a {
  color: var(--muted-on-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 120ms;
}
.topnav-links a:hover { color: var(--fg-on-dark); text-decoration: none; }

@media (max-width: 600px) {
  .topnav { padding: 14px 20px; }
  .topnav-links { gap: 18px; }
  .topnav-links a:not(:last-child) { display: none; }
}

/* ─── Hero ─────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  background:
    radial-gradient(ellipse 90% 60% at 20% 0%, rgba(238, 140, 35, 0.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 30%, rgba(255, 168, 74, 0.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  color: var(--fg-on-dark);
  padding: 96px 32px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: hidden;
}

.hero-inner { max-width: 600px; }

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-bright);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--fg-on-dark);
}

.hero-title-soft {
  color: var(--accent-bright);
  font-weight: 600;
}

.hero-lead {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--muted-on-dark);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-lead strong { color: var(--fg-on-dark); font-weight: 600; }

.cta-row {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.cta-primary {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 24px 14px;
  background: var(--fg-on-dark);
  color: var(--bg-dark);
  border-radius: 12px;
  text-decoration: none;
  font-family: inherit;
  line-height: 1.1;
  transition: transform 140ms, box-shadow 140ms;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}
.cta-primary:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45); }
.cta-primary-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 2px;
}
.cta-primary-main {
  font-size: 1.25rem;
  font-weight: 600;
}

.cta-secondary {
  color: var(--accent-bright);
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 4px;
  transition: color 120ms;
}
.cta-secondary:hover { color: var(--fg-on-dark); text-decoration: none; }

.hero-meta {
  font-size: 0.85rem;
  color: var(--muted-on-dark);
  opacity: 0.7;
}

.hero-screen {
  position: relative;
  text-align: center;
}

.hero-screen img {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  border-radius: 38px;
  box-shadow:
    0 30px 100px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(238, 140, 35, 0.15),
    0 0 0 12px rgba(0, 0, 0, 0.35);
  transform: rotate(-3deg);
  transition: transform 400ms;
}

.hero-screen img:hover { transform: rotate(0deg) scale(1.02); }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 64px 24px 60px;
    text-align: center;
  }
  .hero-inner { max-width: 100%; }
  .cta-row { justify-content: center; }
  .hero-screen img { max-width: 260px; transform: rotate(0deg); }
}

/* ─── Proof bar ────────────────────────────────────────────────────── */

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px 32px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.proof-item {
  text-align: center;
  border-right: 1px solid var(--border);
  padding: 0 16px;
}
.proof-item:last-child { border-right: none; }

.proof-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.proof-item span {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 700px) {
  .proof-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
    padding: 28px 20px;
  }
  .proof-item { border-right: none; }
  .proof-item:nth-child(odd) { border-right: 1px solid var(--border); }
}

/* ─── Section base ─────────────────────────────────────────────────── */

section {
  padding: 96px 32px;
  max-width: 1180px;
  margin: 0 auto;
}

section.proof-bar { padding: 36px 32px; max-width: 100%; }

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--fg);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 48px;
  max-width: 640px;
}

@media (max-width: 700px) {
  section { padding: 64px 20px; }
}

/* ─── Features ─────────────────────────────────────────────────────── */

.features { background: var(--bg); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: transform 180ms, box-shadow 180ms, border-color 180ms;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--accent-medium);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
}

.feature h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.feature p {
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--muted);
}

.feature p strong {
  color: var(--accent);
  font-weight: 600;
}

/* ─── Screens ──────────────────────────────────────────────────────── */

.screens {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(238, 140, 35, 0.06) 0%, transparent 70%),
    var(--bg);
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 16px;
}

@media (max-width: 900px) { .screens-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .screens-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; } }

.screen { text-align: center; }

.screen img {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 28px;
  box-shadow:
    0 20px 60px rgba(42, 31, 20, 0.15),
    0 0 0 1px rgba(238, 140, 35, 0.08);
  transition: transform 240ms, box-shadow 240ms;
}

.screen:hover img {
  transform: translateY(-6px);
  box-shadow:
    0 30px 80px rgba(42, 31, 20, 0.25),
    0 0 0 1px rgba(238, 140, 35, 0.15);
}

.screen figcaption {
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 18px;
  line-height: 1.5;
}

.screen figcaption strong {
  color: var(--fg);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

/* ─── Trust ────────────────────────────────────────────────────────── */

.trust { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
  margin-top: 32px;
  max-width: 960px;
}

@media (max-width: 700px) { .trust-list { grid-template-columns: 1fr; gap: 20px; } }

.trust-list li {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  padding-left: 32px;
  position: relative;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
}

.trust-list strong { color: var(--fg); font-weight: 600; }

/* ─── For organisations ───────────────────────────────────────────── */

.for-organisations { background: var(--bg); }

.for-org-inner {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  border-radius: 20px;
  padding: 56px 48px;
  color: var(--fg-on-dark);
  position: relative;
  overflow: hidden;
}

.for-org-inner::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(238, 140, 35, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.for-org-inner h2 {
  font-size: 1.8rem;
  color: var(--accent-bright);
  margin-bottom: 18px;
  position: relative;
}

.for-org-inner h3 {
  font-size: 1.05rem;
  color: var(--fg-on-dark);
  margin: 28px 0 14px;
  font-weight: 600;
  position: relative;
}

.for-org-inner p, .for-org-inner ul { color: var(--muted-on-dark); position: relative; }
.for-org-inner ul { list-style: disc; padding-left: 22px; margin-bottom: 18px; }
.for-org-inner li { margin-bottom: 8px; }

.contact-cta {
  margin-top: 28px !important;
  font-size: 1.1rem !important;
  font-weight: 500;
}
.contact-cta a {
  color: var(--accent-bright);
  font-weight: 600;
}

@media (max-width: 700px) {
  .for-org-inner { padding: 40px 28px; }
}

/* ─── Download ─────────────────────────────────────────────────────── */

.download {
  text-align: center;
  background: var(--bg);
  padding: 80px 32px;
}

.download h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.download p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ─── Footer ───────────────────────────────────────────────────────── */

.site-footer {
  background: var(--bg-dark);
  color: var(--muted-on-dark);
  padding: 40px 32px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand strong {
  color: var(--accent-bright);
  display: block;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.footer-brand p {
  font-size: 0.88rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: var(--muted-on-dark);
  font-size: 0.93rem;
  transition: color 120ms;
}
.footer-links a:hover { color: var(--accent-bright); text-decoration: none; }

/* ─── Privacy / Support sub-pages (re-use older patterns) ────────── */

.subpage {
  max-width: 740px;
  margin: 0 auto;
  padding: 80px 24px;
}

.subpage .back {
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.subpage .back a {
  color: var(--muted);
  font-weight: 500;
}

.subpage h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.subpage .meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
}

.subpage h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--accent);
  letter-spacing: -0.01em;
}

.subpage h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--fg);
}

.subpage p { margin-bottom: 14px; line-height: 1.65; }

.subpage ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 18px;
}

.subpage li { margin-bottom: 8px; line-height: 1.6; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 14px;
  transition: border-color 140ms;
}

.faq-item:hover { border-color: var(--accent-medium); }

.faq-item h3 {
  margin-top: 0;
  color: var(--fg);
  font-size: 1.08rem;
}

.faq-item p:last-child { margin-bottom: 0; }
