/* ================================================================
   Trusted Results Hub — app.css
   Aesthetic: Verified Anchor / Boarding-Pass document
              cream-mint paper · dashed cartography borders ·
              stamp-style HOME / VERIFIED / ANCHORED badges ·
              pin-shaped step numbers · floating region pills
   Palette:   teal #0E7490 · emerald #10B981 · coral #F97316
              ink #0B2F3F · mint bg #F2FAFB / #ECFDF5
   Type:      Space Grotesk (display) + Inter Tight (body)
================================================================ */

/* ----------------------------------------------------------------
   1. Custom Properties
---------------------------------------------------------------- */
:root {
  --bg:                 #F2FAFB;
  --bg-alt:             #ECFDF5;
  --surface:            #FFFFFF;
  --surface-alt:        #F5FBFC;

  --accent:             #0E7490;
  --accent-2:           #10B981;
  --accent-light:       #5EEAD4;
  --warm:               #F97316;
  --warm-soft:          #FFF1E5;

  --text:               #0B2F3F;
  --text-muted:         #4B6B73;
  --text-subtle:        #7A949B;

  --border:             #CFE6EA;
  --border-subtle:      #E0EDF0;
  --dash-color:         rgba(14, 116, 144, 0.45);

  --gradient-brand:     linear-gradient(125deg, #0E7490 0%, #10B981 100%);
  --gradient-soft:      linear-gradient(180deg, #F5FBFC 0%, #ECFDF5 100%);

  --radius-card:        18px;
  --radius-pill:        999px;
  --shadow-sm:          0 2px 10px rgba(11, 47, 63, 0.06);
  --shadow-md:          0 14px 38px rgba(11, 47, 63, 0.10);
  --shadow-stamp:       0 1px 0 rgba(11, 47, 63, 0.04);

  --font-display:       'Space Grotesk', 'Segoe UI', Arial, sans-serif;
  --font-body:          'Inter Tight', 'Segoe UI', Arial, sans-serif;
}

/* ----------------------------------------------------------------
   2. Reset / Base
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  font-family: var(--font-body);
  font-size: 1.6rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin: 0 0 0.6em;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; }

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}
@media (hover: hover) {
  a:hover { color: var(--accent-2); }
}

button { cursor: pointer; outline: 0; border: 0; background: none; font: inherit; color: inherit; }

::selection { background: rgba(14, 116, 144, 0.18); color: var(--text); }

/* ----------------------------------------------------------------
   3. Template-required selectors
---------------------------------------------------------------- */
.fullscreen {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 140px 0 80px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.18;
  color: var(--text);
}
.title-big { font-size: 5.4rem; line-height: 1.1; }
.title-small { font-size: 3rem; }

.text {
  font-family: var(--font-body);
  font-size: 1.7rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Buttons */
.btn,
.btn_main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: var(--gradient-brand);
  color: #FFFFFF;
  border: none;
  background-clip: padding-box;
  box-shadow: 0 8px 22px rgba(14, 116, 144, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
@media (hover: hover) {
  .btn:hover,
  .btn_main:hover {
    color: #FFFFFF;
    box-shadow: 0 14px 32px rgba(14, 116, 144, 0.34);
    transform: translateY(-2px);
    text-decoration: none;
  }
}

.btn_ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  color: var(--accent);
  background: transparent;
  border: 1.5px dashed var(--accent);
  transition: background 0.2s ease, color 0.2s ease;
}
@media (hover: hover) {
  .btn_ghost:hover {
    background: rgba(14, 116, 144, 0.08);
    color: var(--accent);
    text-decoration: none;
  }
}

.gradient-text {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 0.15em; /* prevent descender clipping */
}

/* Page loader (kept from template behavior) */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-loader .loader { filter: url(#goo); }
.page-loader .blobs { position: relative; width: 80px; height: 80px; }
.page-loader .blob,
.page-loader .blob-center {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  top: 50%;
  left: 50%;
  margin: -10px;
}
.page-loader .blob-center {
  background: var(--accent-2);
  animation: blob-pulse 2.4s infinite ease-in-out;
}
.page-loader .blob:nth-child(2) { animation: blob-orbit 2.4s infinite ease-in-out 0.0s; }
.page-loader .blob:nth-child(3) { animation: blob-orbit 2.4s infinite ease-in-out 0.4s; }
.page-loader .blob:nth-child(4) { animation: blob-orbit 2.4s infinite ease-in-out 0.8s; }
.page-loader .blob:nth-child(5) { animation: blob-orbit 2.4s infinite ease-in-out 1.2s; }
.page-loader .blob:nth-child(6) { animation: blob-orbit 2.4s infinite ease-in-out 1.6s; }
.page-loader .blob:nth-child(7) { animation: blob-orbit 2.4s infinite ease-in-out 2.0s; }
@keyframes blob-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.5); } }
@keyframes blob-orbit {
  0%, 100% { transform: translate(0, 0) scale(0.4); opacity: 0.6; }
  50%      { transform: translate(28px, -28px) scale(1); opacity: 1; }
}
body.loaded .page-loader { display: none; }

/* Return to top */
.return-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.2s ease, visibility 0.3s ease;
  box-shadow: 0 8px 22px rgba(14, 116, 144, 0.3);
}
body.header-fixed .return-to-top { opacity: 1; visibility: visible; }
.return-to-top:hover { transform: translateY(-3px); color: #FFFFFF; }
.return-to-top__icon { width: 18px; height: 18px; display: block; }

/* ----------------------------------------------------------------
   4. Site Header / Navigation
---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 18px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.pix-header-fixed {
  background: rgba(242, 250, 251, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 18px rgba(11, 47, 63, 0.06);
  padding: 12px 0;
}

.header-container { display: flex; align-items: center; justify-content: space-between; }
.header-inner    { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }

.site-mobile-logo { display: flex; align-items: center; }
.site-logo { display: none; }
.site-mobile-logo .logo { display: inline-flex; align-items: center; }
.site-mobile-logo img { height: 40px; width: auto; }

.site-mobile-logo .sticky-logo { display: none; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.menu-wrapper { display: flex; align-items: center; }

.site-main-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-main-menu li a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.site-main-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .site-main-menu li a:hover { color: var(--accent); }
  .site-main-menu li a:hover::after,
  .site-main-menu li a.active::after { transform: scaleX(1); }
}

.toggle-menu {
  display: none;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}
.toggle-menu .bar {
  display: block;
  height: 2.5px;
  background: var(--text);
  border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.close-menu { display: none; }

/* ----------------------------------------------------------------
   5. Hero
---------------------------------------------------------------- */
.hero {
  background: var(--gradient-soft);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(14, 116, 144, 0.18) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(14, 116, 144, 0.10) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.6;
  mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
}

.hero__split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 56px;
}

.hero__text { max-width: 560px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(16, 185, 129, 0.10);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px dashed rgba(14, 116, 144, 0.45);
  margin-bottom: 22px;
}
.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.hero__title { margin-bottom: 18px; }
.hero__subtitle {
  font-size: 1.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero__subtitle strong { color: var(--text); font-weight: 600; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--text-muted);
}
.hero__trust li { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

/* Hero visual — wrapper for the boarding-pass component */
.hero__visual {
  position: relative;
  z-index: 2;
}

/* ----------------------------------------------------------------
   5b. Boarding Pass (hand-built hero visual, unique to this hub)
---------------------------------------------------------------- */
.boarding-pass {
  position: relative;
  background: var(--surface);
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow:
    0 24px 60px rgba(11, 47, 63, 0.16),
    0 4px 14px rgba(11, 47, 63, 0.06);
  overflow: hidden;
  isolation: isolate;
}
.boarding-pass::before {
  /* faint paper grid on the pass body */
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(14, 116, 144, 0.07) 1px, transparent 0);
  background-size: 18px 18px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}

.boarding-pass__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: var(--gradient-brand);
  color: #FFFFFF;
}
.boarding-pass__brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}
.boarding-pass__brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.22);
}
.boarding-pass__type {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.92;
}

.boarding-pass__main {
  position: relative;
  z-index: 1;
  padding: 26px 22px 22px;
}

.boarding-pass__route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}
.boarding-pass__field { min-width: 0; }
.boarding-pass__field--to { text-align: right; }
.boarding-pass__label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 4px;
}
.boarding-pass__value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.boarding-pass__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
.boarding-pass__sub strong {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.boarding-pass__path {
  position: relative;
  width: 110px;
  height: 32px;
  color: var(--accent);
  flex-shrink: 0;
}
.boarding-pass__path svg { width: 100%; height: 100%; display: block; }
.boarding-pass__plane {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%) rotate(-12deg);
  font-size: 1.9rem;
  color: var(--warm);
  background: var(--surface);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px var(--surface);
  line-height: 1;
}

.boarding-pass__details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 16px 0 0;
  border-top: 1.5px dashed var(--border-subtle);
  margin: 0;
}
.boarding-pass__detail { text-align: left; }
.boarding-pass__detail dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 4px;
}
.boarding-pass__detail dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
}

.boarding-pass__perforation {
  position: relative;
  height: 14px;
  background: var(--surface);
  z-index: 1;
}
.boarding-pass__perforation::before,
.boarding-pass__perforation::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  transform: translateY(-50%);
  box-shadow: 0 0 0 1px var(--border);
}
.boarding-pass__perforation::before { left: -7px; }
.boarding-pass__perforation::after  { right: -7px; }

.boarding-pass__perforation > * { display: none; }
.boarding-pass__perforation {
  background:
    linear-gradient(90deg,
      transparent 0,
      transparent 14px,
      var(--border) 14px,
      var(--border) calc(14px + 6px),
      transparent calc(14px + 6px),
      transparent calc(14px + 14px)
    );
  background-size: 20px 1px;
  background-position: 14px 50%;
  background-repeat: repeat-x;
  background-color: var(--surface);
}

.boarding-pass__stub {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px 22px;
  background: var(--surface-alt);
  border-top: 0;
}
.boarding-pass__barcode {
  display: inline-flex;
  align-items: flex-end;
  gap: 3px;
  height: 44px;
  flex-shrink: 0;
}
.boarding-pass__barcode span {
  display: block;
  width: 3px;
  height: 100%;
  background: var(--text);
  border-radius: 1px;
}
.boarding-pass__barcode span:nth-child(2n)  { width: 2px; height: 70%; opacity: 0.85; }
.boarding-pass__barcode span:nth-child(3n)  { width: 5px; opacity: 0.95; }
.boarding-pass__barcode span:nth-child(5n)  { width: 2px; height: 55%; opacity: 0.7; }
.boarding-pass__barcode span:nth-child(7n)  { width: 4px; height: 90%; }
.boarding-pass__barcode span:nth-child(11n) { width: 6px; opacity: 0.9; }

.boarding-pass__stamp {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border: 2.5px solid var(--warm);
  border-radius: 50%;
  color: var(--warm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.1;
  background: var(--surface);
  transform: rotate(-10deg);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.boarding-pass__stamp::before {
  content: '';
  position: absolute;
  inset: 5px;
  border: 1.4px dashed var(--warm);
  border-radius: 50%;
  opacity: 0.6;
}
.boarding-pass__stamp span { position: relative; z-index: 1; }

/* Ambient flight-arc ornaments behind the hero */
.hero__arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  color: var(--accent);
}
.hero__arc {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-dasharray: 6 8;
  stroke-linecap: round;
  opacity: 0.28;
  vector-effect: non-scaling-stroke;
}
.hero__arc--alt {
  color: var(--accent-2);
  opacity: 0.24;
}
.hero__arc--faint {
  color: var(--warm);
  opacity: 0.14;
  stroke-dasharray: 4 10;
}
.hero__arc-dot {
  fill: var(--accent);
  opacity: 0.55;
}
.hero__arc-dot--warm { fill: var(--warm); opacity: 0.55; }
.hero__arc-dot--faint { fill: var(--accent-2); opacity: 0.4; }
.hero__arc-cross {
  stroke: var(--accent);
  stroke-width: 1.4;
  stroke-linecap: round;
  opacity: 0.35;
}
.hero__arc-cross--warm { stroke: var(--warm); opacity: 0.45; }

/* ----------------------------------------------------------------
   6. Section eyebrow (shared across all body sections)
---------------------------------------------------------------- */
.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ----------------------------------------------------------------
   6b. Reality Split — same query, two outcomes
---------------------------------------------------------------- */
.reality {
  position: relative;
  padding: 110px 0 110px;
  background: var(--surface);
}
.reality::before,
.reality::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  background-image:
    radial-gradient(circle at 7px 7px, var(--bg) 6px, transparent 6.5px);
  background-size: 14px 14px;
  background-repeat: repeat-x;
}
.reality::before { top: -1px; }
.reality::after  { bottom: -1px; transform: rotate(180deg); }

.reality__header { max-width: 760px; margin: 0 auto 56px; }
.reality__title  { font-size: 4rem; line-height: 1.16; margin-bottom: 14px; }
.reality__intro  { font-size: 1.7rem; }

.reality__split {
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: stretch;
  gap: 0;
}

.reality__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.reality__panel-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 14px;
}
.reality__panel--with .reality__panel-head { align-items: flex-end; }
/* Visually align the context text with the pill's text (pill has 14px horizontal padding) */
.reality__panel--without .reality__panel-context { padding-left: 14px; }
.reality__panel--with .reality__panel-context { padding-right: 14px; }

.reality__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}
.reality__pill--bad {
  color: #B23A1F;
  background: #FFE3D6;
  border: 1.2px dashed #E76A3F;
}
.reality__pill--good {
  color: #066647;
  background: #D1FADF;
  border: 1.2px dashed var(--accent-2);
}
.reality__panel-context {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--text-subtle);
  letter-spacing: 0.04em;
}

/* Center divider — vertical, with vertical-text pill so it fits the narrow column */
.reality__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--accent);
  position: relative;
}
.reality__divider::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  border-left: 2px dashed var(--dash-color);
  opacity: 0.45;
  transform: translateX(-50%);
}
.reality__divider-pill {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 6px;
  background: var(--surface);
  color: var(--accent);
  border: 1.2px dashed var(--accent);
  border-radius: 14px;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.reality__divider-arrow {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 56px;
  background: var(--surface);
  color: var(--accent-2);
  padding: 4px 0;
}

/* Browser mock */
.browser-mock {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.browser-mock--bad { border-color: #F0BBA0; }
.browser-mock--good { border-color: #A6E5C8; }

.browser-mock__chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--border-subtle);
}
.browser-mock--bad .browser-mock__chrome  { background: #FFF1E5; border-bottom-color: #F0BBA0; }
.browser-mock--good .browser-mock__chrome { background: #ECFDF5; border-bottom-color: #A6E5C8; }

.browser-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.browser-mock__dot--r { background: #FF6B6B; }
.browser-mock__dot--y { background: #FFD166; }
.browser-mock__dot--g { background: #06D6A0; }

.browser-mock__url {
  flex: 1;
  min-width: 0;
  display: block;
  margin-left: 10px;
  padding: 5px 12px;
  background: var(--surface);
  border-radius: var(--radius-pill);
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  font-size: 1.15rem;
  line-height: 18px;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.browser-mock__lock {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FBBF24;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-right: 6px;
  vertical-align: middle;
}
.browser-mock__lock--ok { background: var(--accent-2); }

.browser-mock__body {
  position: relative;
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.browser-mock__query {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--text);
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border-subtle);
  margin-bottom: 14px;
}

.browser-mock__results {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.browser-mock__results li {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.browser-mock__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--accent);
  line-height: 1.3;
}
.browser-mock--bad .browser-mock__title { color: #6B6B6B; }
.browser-mock__url-faded {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--text-subtle);
}
.browser-mock__price {
  font-weight: 700;
  color: #B23A1F;
}
.browser-mock__price--ok { color: var(--accent-2); }
.browser-mock__snippet {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.browser-mock__warning,
.browser-mock__success {
  margin-top: auto;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.4;
}
.browser-mock__warning {
  background: #FFE3D6;
  color: #B23A1F;
  border: 1px dashed #E76A3F;
}
.browser-mock__success {
  background: #D1FADF;
  color: #066647;
  border: 1px dashed var(--accent-2);
}
.browser-mock__success strong { color: #044F36; font-weight: 700; }

.reality__stamp {
  position: absolute;
  bottom: 64px;
  right: 14px;
  width: 84px;
  height: 84px;
  border: 2px solid var(--accent-2);
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  line-height: 1.15;
  transform: rotate(-10deg);
  box-shadow: var(--shadow-sm);
}
.reality__stamp::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1.2px dashed var(--accent-2);
  border-radius: 50%;
  opacity: 0.6;
}
.reality__stamp span { position: relative; z-index: 1; }

/* ----------------------------------------------------------------
   6c. How it works — 3-step horizontal walkthrough
---------------------------------------------------------------- */
.howto {
  position: relative;
  padding: 120px 0 130px;
  background: var(--surface);
  overflow: hidden;
}

.howto__header { max-width: 760px; margin: 0 auto 64px; }
.howto__title  { font-size: 4rem; line-height: 1.16; margin-bottom: 14px; }
.howto__intro  { font-size: 1.7rem; }

/* Horizontal row with step columns + arrows between them */
.howto__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.howto-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
}

.howto-step__head {
  margin-bottom: 22px;
  padding: 0 6px;
  /* Lock all step heads to the same height so the visuals start at the
     same y across columns and the side-by-side mocks read as identical. */
  min-height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.howto-step__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 14px;
  margin-bottom: 14px;
  background: rgba(16, 185, 129, 0.10);
  border: 1px dashed var(--accent-2);
  border-radius: var(--radius-pill);
}
.howto-step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.1rem;
  line-height: 1.22;
  color: var(--text);
  margin: 0 0 10px;
}
.howto-step__desc {
  font-family: var(--font-body);
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
}

/* Equal-height visual area so all three step visuals align cleanly */
.howto-step__visual {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 460px;
}
.howto-step__visual--popup { padding: 0; }

.howto-mock {
  width: 100%;
  max-width: 100%;
}

.howto-popup-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 480px;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow:
    0 30px 70px rgba(11, 47, 63, 0.18),
    0 8px 18px rgba(11, 47, 63, 0.08);
}

/* Connector arrow — horizontal between steps */
.howto-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(14, 116, 144, 0.55);
  align-self: center;
  margin-top: 60px;
}
.howto-arrow svg { width: 56px; height: 24px; display: block; }

/* ----------------------------------------------------------------
   8. Footer
---------------------------------------------------------------- */
.footer {
  background: linear-gradient(160deg, #0B2F3F 0%, #0E7490 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 70px 0 0;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
  background-size: 22px 22px;
  pointer-events: none;
  opacity: 0.7;
}

.footer-content { position: relative; z-index: 1; }
.footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}
.footer-logo img { height: 40px; width: auto; }

.footer-menu .footer__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-nav-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-link {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  transition: color 0.2s ease;
}
.footer-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: var(--accent-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
@media (hover: hover) {
  .footer-link:hover { color: #FFFFFF; text-decoration: none; }
  .footer-link:hover::after { transform: scaleX(1); }
}

.footer-copyright {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 22px 0 26px;
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.62);
}

/* ----------------------------------------------------------------
   7. Inner pages — 404 & removed (Off-course pass + Itinerary receipt)
---------------------------------------------------------------- */
.inner-page {
  padding: 160px 0 100px;
  background: var(--gradient-soft);
  min-height: 80vh;
  position: relative;
}
.inner-page .main-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(16, 185, 129, 0.16) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(14, 116, 144, 0.16) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.inner-page > .container { position: relative; z-index: 1; }
.inner-page .title { margin-bottom: 16px; }
.inner-page p { color: var(--text-muted); font-size: 1.7rem; margin-bottom: 28px; }
.inner-page img { margin: 30px auto; max-width: 460px; }
.inner-page .btn { margin-top: 8px; }

.section-404 .title,
.removed-section .title,
.uninstall-section .title { margin-bottom: 18px; }

/* =================================================================
   7a. Inner-figure — minimal shared hero illustration
   (compass on 404, anchor + wave on removed)
   ================================================================= */
.inner-figure {
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
  padding: 0;
}
.inner-figure__svg {
  display: block;
  width: 280px;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 40px rgba(11, 47, 63, 0.12));
}

/* Contact page */
.contact-section { padding: 160px 0 100px; background: var(--gradient-soft); position: relative; }
.contact-section__container { position: relative; z-index: 1; }
.contact-section__container .title { margin-bottom: 50px; }
.contact-section__wrap { margin-top: 12px; }

.contact-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border);
  padding: 32px 28px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1.4px dashed var(--dash-color);
  border-radius: calc(var(--radius-card) - 6px);
  opacity: 0.5;
  pointer-events: none;
}
.contact-card__subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.contact-card__text {
  font-size: 1.55rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}

/* Privacy / Terms */
.terms-section {
  padding: 160px 0 80px;
  background: var(--bg);
  position: relative;
}
.terms-section .decor { display: none; } /* legal pages stay clean: no gradient background behind copy */
.terms-section .container { position: relative; z-index: 1; }
.terms-section .title { margin-bottom: 36px; }

.terms-privacy {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  margin-top: 12px;
}
.terms-privacy h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--text);
  margin: 1.6em 0 0.6em;
  padding-bottom: 0.3em;
  border-bottom: 1px dashed var(--border);
}
.terms-privacy h2:first-child { margin-top: 0; }
.terms-privacy h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.85rem;
  color: var(--text);
  margin: 1.3em 0 0.5em;
}
.terms-privacy p {
  font-size: 1.55rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 1em;
}
.terms-privacy a { color: var(--accent); text-decoration: underline; }
.terms-privacy ul,
.terms-privacy ol { padding-left: 1.5em; color: var(--text-muted); margin: 0 0 1em; font-size: 1.55rem; }
.terms-privacy li { margin-bottom: 0.5em; line-height: 1.7; }
.terms-privacy strong { color: var(--text); }

/* ----------------------------------------------------------------
  11. Modal (template required)
---------------------------------------------------------------- */
.modal-content {
  border: 0;
  border-radius: var(--radius-card);
  box-shadow: 0 30px 80px rgba(11, 47, 63, 0.25);
  overflow: hidden;
}
.modal-header { border: 0; padding-bottom: 0; }
.modal-body p { font-size: 1.55rem; color: var(--text-muted); line-height: 1.65; }
.modal-content .pix-btn {
  background: var(--gradient-brand);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  background-clip: padding-box;
}

/* ----------------------------------------------------------------
  12. Mobile nav state (html.sidebar-open)
---------------------------------------------------------------- */
.mask-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 47, 63, 0.55);
  z-index: 998;
}

/* ----------------------------------------------------------------
  13. Animations (kept from template — wow.js trigger)
---------------------------------------------------------------- */
.wow { visibility: hidden; }
.pixFadeUp {
  visibility: visible;
  animation: pixFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes pixFadeUp {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: translateY(0); }
}
