/* ============================================================
   Revela Tech | Cyber — Public site stylesheet
   Deployed at: cyber.revelatech.co.uk
   Dark brand theme: bg #0b0d12, primary #4f46e5, secondary #a855f7, accent #fb923c
   ============================================================ */

/* ------------------------------------------------------------
   Tokens
   ------------------------------------------------------------ */
:root {
  /* Brand colours */
  --color-primary:       #4f46e5;
  --color-primary-hover: #4338ca;
  --color-secondary:     #a855f7;
  --color-accent:        #fb923c;
  --color-green:         #22c55e;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, #4f46e5, #a855f7, #fb923c);
  --gradient-cta:   linear-gradient(135deg, #4f46e5, #a855f7);

  /* Surfaces (dark) */
  --color-bg:           #0b0d12;
  --color-surface:      #13161f;       /* raised cards / panels */
  --color-navy:         #0b0d12;       /* hero, header, footer bg */
  --color-navy-mid:     #1a1d2a;       /* hovered nav, popover bg */
  --color-border:       rgba(255,255,255,0.11);
  --color-border-light: rgba(255,255,255,0.07);

  /* Text */
  --color-text:         #eef0ff;
  --color-text-muted:   rgba(238,240,255,0.62);
  --color-text-light:   rgba(238,240,255,0.38);

  /* Compat aliases (used in templates via var()) */
  --color-blue:         #4f46e5;
  --color-blue-hover:   #4338ca;
  --color-blue-light:   rgba(79,70,229,0.08);   /* was light blue panel */
  --color-blue-muted:   rgba(79,70,229,0.06);   /* tinted section wash */

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.35);
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.3);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.55), 0 2px 6px rgba(0,0,0,0.4);

  /* Shape */
  --radius:     6px;
  --radius-lg:  12px;
  --radius-xl:  16px;

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --max-width:     1100px;
  --content-width:  720px;
  --header-h:       64px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; color: var(--color-secondary); }

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

/* ------------------------------------------------------------
   Typography
   ------------------------------------------------------------ */
h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4em; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; }

strong { font-weight: 600; }

/* ------------------------------------------------------------
   Layout helpers
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section--alt {
  background: #0e1118;
}

.section--tinted {
  background: rgba(79,70,229,0.07);
  border-top: 1px solid rgba(79,70,229,0.12);
  border-bottom: 1px solid rgba(79,70,229,0.12);
}

/* ------------------------------------------------------------
   Header / nav
   ------------------------------------------------------------ */
.site-header {
  background: rgba(11,13,18,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Brand */
.brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}

.brand:hover { text-decoration: none; }

.brand__name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.brand__sub {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav links */
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav__link {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.site-nav__link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.07);
  text-decoration: none;
}

/* Start Here nav button */
.site-nav__cta {
  background: var(--gradient-cta);
  color: #ffffff !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  margin-left: 0.5rem;
  box-shadow: 0 1px 6px rgba(79,70,229,0.4);
  transition: filter 0.15s, box-shadow 0.15s;
}

.site-nav__cta:hover {
  filter: brightness(1.12);
  box-shadow: 0 3px 12px rgba(79,70,229,0.5);
  text-decoration: none;
  color: #ffffff !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: rgba(255,255,255,0.8);
  font-size: 1.4rem;
  line-height: 1;
}

@media (max-width: 680px) {
  .site-nav__link { display: none; }
  .nav-toggle { display: block; }
  .site-nav { gap: 0.5rem; }
  .site-nav__cta { display: inline-block; margin-left: 0; }

  .site-header.nav-open .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #0e1118;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem 1.5rem 1.75rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }

  .site-header.nav-open .site-nav__link {
    display: block;
    width: 100%;
    padding: 0.65rem 0.75rem;
  }

  .site-header.nav-open .site-nav__cta {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.site-footer {
  background: #0e1118;
  padding: 2.5rem 0;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.01em;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
}

.site-footer__links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}

.site-footer__links a:hover {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
}

@media (max-width: 640px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: filter 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn--primary {
  background: var(--gradient-cta);
  color: #ffffff;
  padding: 0.65rem 1.5rem;
  box-shadow: 0 2px 8px rgba(79,70,229,0.4);
}

.btn--primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 16px rgba(79,70,229,0.5);
  color: #ffffff;
  text-decoration: none;
}

.btn--lg {
  font-size: 1rem;
  padding: 0.8rem 2rem;
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid rgba(255,255,255,0.22);
  padding: 0.6rem 1.4rem;
}

.btn--ghost:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  text-decoration: none;
}

/* Ghost — explicit white treatment (hero dark bg) */
.btn--ghost-white {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border: 1.5px solid rgba(255,255,255,0.28);
  padding: 0.6rem 1.4rem;
}

.btn--ghost-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  text-decoration: none;
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  background: var(--color-navy);
  color: var(--color-text);
  padding: 5.5rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow behind hero content */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 420px;
  background: radial-gradient(ellipse at top, rgba(79,70,229,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  position: relative;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 {
  color: #ffffff;
  margin-bottom: 1.25rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.1;
  position: relative;
}

.hero__sub {
  font-size: 1.125rem;
  color: rgba(238,240,255,0.65);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.65;
  position: relative;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}

/* Ghost in hero already works via .btn--ghost dark treatment */
.hero .btn--ghost {
  color: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.28);
}

.hero .btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
}

/* Page hero (non-home interior pages) — more compact */
.page-hero {
  background: var(--color-navy);
  color: var(--color-text);
  padding: 3.75rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse at top, rgba(79,70,229,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.page-hero .hero__eyebrow { margin-bottom: 0.75rem; }

.page-hero h1 {
  color: #ffffff;
  max-width: 640px;
  margin: 0 auto 1rem;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  position: relative;
}

.page-hero p {
  color: rgba(238,240,255,0.65);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
  position: relative;
}

/* ------------------------------------------------------------
   Cards / panels
   ------------------------------------------------------------ */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

/* Tinted indigo panel — replaces old blue-light panel */
.card--tinted {
  background: rgba(79,70,229,0.08);
  border-color: rgba(79,70,229,0.22);
}

.card--blue-left {
  border-left: 3px solid var(--color-primary);
}

/* ------------------------------------------------------------
   Steps (How It Works summary)
   ------------------------------------------------------------ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}

.step__num {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--gradient-cta);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(79,70,229,0.45);
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.step p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   Two-column prose layout
   ------------------------------------------------------------ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 680px) {
  .two-col { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ------------------------------------------------------------
   Price blocks
   ------------------------------------------------------------ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.price-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.price-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(255,255,255,0.18);
}

.price-card--featured {
  border-color: rgba(79,70,229,0.55);
  box-shadow: 0 0 0 1px rgba(79,70,229,0.15), var(--shadow-md);
}

.price-card--featured:hover {
  border-color: rgba(79,70,229,0.75);
  box-shadow: 0 0 0 1px rgba(79,70,229,0.2), 0 8px 28px rgba(79,70,229,0.2);
}

.price-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-card__name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.price-card__amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-card__amount span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0;
}

.price-card__us {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.price-card__divider {
  border: none;
  border-top: 1px solid var(--color-border-light);
  margin: 0.25rem 0;
}

.price-card__includes {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.price-card__includes li {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.price-card__includes li::before {
  content: "✓";
  color: var(--color-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   Forms
   ------------------------------------------------------------ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.35rem;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.field-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}

input[type="text"],
input[type="email"],
select,
textarea {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  padding: 0.6rem 0.85rem;
  width: 100%;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
  box-shadow: var(--shadow-xs);
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: rgba(238,240,255,0.28);
}

/* Ensure select option text is visible */
select option {
  background: #1a1d2a;
  color: var(--color-text);
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(79,70,229,0.2);
  background: rgba(79,70,229,0.06);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Radio groups */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.11);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  background: rgba(255,255,255,0.04);
}

.radio-option:hover {
  border-color: rgba(79,70,229,0.5);
  background: rgba(79,70,229,0.08);
}

.radio-option input[type="radio"] {
  margin-top: 0.2rem;
  width: auto;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.radio-option input[type="radio"]:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-color: transparent;
  box-shadow: none;
}

.radio-option__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  display: block;
  margin-bottom: 0.1rem;
  letter-spacing: -0.01em;
}

.radio-option__hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* Form privacy note */
.form-privacy {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--color-text-muted);
  text-decoration: underline;
}

/* ------------------------------------------------------------
   Alert / notice boxes
   ------------------------------------------------------------ */
.notice {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}

.notice--error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
}

.notice--success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #86efac;
}

.notice--info {
  background: rgba(79,70,229,0.1);
  border: 1px solid rgba(79,70,229,0.28);
  color: #a5b4fc;
}

/* ------------------------------------------------------------
   Confirmation panel (Start Here post-submit)
   ------------------------------------------------------------ */
.confirmation {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-green);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem 2.25rem 1.75rem;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.confirmation--outofscope {
  border-left-color: var(--color-text-light);
}

.confirmation__icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.confirmation h2 {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}

.confirmation p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* ------------------------------------------------------------
   Inline list with ticks / bullets
   ------------------------------------------------------------ */
.tick-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.tick-list li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.tick-list li::before {
  content: "✓";
  color: var(--color-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ------------------------------------------------------------
   Section heading helpers
   ------------------------------------------------------------ */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.6rem;
  background: var(--gradient-cta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading {
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin-bottom: 0;
  line-height: 1.65;
}

/* ------------------------------------------------------------
   CTA block (bottom-of-page repeated CTA)
   ------------------------------------------------------------ */
.cta-block {
  text-align: center;
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(79,70,229,0.14) 0%, rgba(168,85,247,0.08) 100%);
  border-top: 1px solid rgba(79,70,229,0.18);
  color: var(--color-text);
}

.cta-block h2 {
  color: var(--color-text);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.cta-block p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Links in CTA block */
.cta-block a:not(.btn) {
  color: rgba(238,240,255,0.75);
}

/* ------------------------------------------------------------
   "Not included" / exclusion note
   ------------------------------------------------------------ */
.exclusion-note {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.1rem 1.35rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ------------------------------------------------------------
   Privacy policy specific
   ------------------------------------------------------------ */
.policy-body h2 {
  font-size: 1.125rem;
  margin: 2rem 0 0.5rem;
  letter-spacing: -0.01em;
}

.policy-body h2:first-child {
  margin-top: 0;
}

.policy-body p,
.policy-body ul {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ------------------------------------------------------------
   HR dividers (used in How It Works between steps)
   ------------------------------------------------------------ */
hr {
  border: none;
  border-top: 1px solid var(--color-border);
}

/* ------------------------------------------------------------
   Utility
   ------------------------------------------------------------ */
.text-muted  { color: var(--color-text-muted); }
.text-sm     { font-size: 0.875rem; }
.text-center { text-align: center; }
.mt-1        { margin-top: 0.5rem; }
.mt-2        { margin-top: 1rem; }
.mt-3        { margin-top: 1.5rem; }
.mb-0        { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
