/* ============================================
   GetFIFOReady — Global Design System
   Mining-inspired: dark charcoal, white, gold/orange accents
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Colours */
  --bg: #0a0e14;
  --bg-alt: #0f141c;
  --bg-card: rgba(255,255,255,0.06);
  --bg-card-hover: rgba(255,255,255,0.09);
  --text: #f5f7fb;
  --text-body: #d8dee8;
  --muted: #8b97a8;
  --line: rgba(255,255,255,0.12);
  --gold: #f4b942;
  --orange: #ff7a32;
  --orange-dark: #e5641a;
  --blue: #6ea8ff;
  --green: #45d483;
  --danger: #ff5a5a;
  
  /* Layout */
  --radius: 16px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.45);
  --max-width: 1140px;
  
  /* Type */
  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(circle at 15% 8%, rgba(244,185,66,0.10), transparent 35%),
    radial-gradient(circle at 85% 0%, rgba(255,122,50,0.08), transparent 32%);
  background-attachment: fixed;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* Layout helpers */
.wrap { width: min(var(--max-width), calc(100% - 32px)); margin: 0 auto; }
.section-pad { padding: 64px 0; }
.section-pad-sm { padding: 40px 0; }
.center { text-align: center; }

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--text);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #111;
  font-size: 20px;
}
.nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.nav-link {
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-link:hover {
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #111 !important;
  border: none;
  font-weight: 800;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  padding: 8px 12px;
  cursor: pointer;
  font-size: 20px;
}

/* Typography */
h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.03em; }
h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 900; line-height: 0.95; }
h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
h3 { font-size: 22px; font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
p { margin: 0 0 16px; color: var(--text-body); }
.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
  display: inline-block;
}
.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-body);
  line-height: 1.5;
  max-width: 680px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  appearance: none;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  border-radius: var(--radius-pill);
  padding: 14px 24px;
  font-size: 15px;
  font-family: var(--font);
  transition: all 0.2s;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #121212;
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(244,185,66,0.3); }
.btn-secondary {
  background: rgba(255,255,255,0.08);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }
.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* Cards */
.card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s;
}
.card:hover { background: var(--bg-card-hover); border-color: rgba(255,255,255,0.18); }

/* Grid */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; min-width: 0; }
.founder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; min-width: 0; }
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; align-items: center; min-width: 0; }
.hero-grid > *, .founder-grid > *, .about-grid > * { min-width: 0; }

/* Section dividers */
.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* Trust bar */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-item {
  text-align: center;
  padding: 8px;
}
.trust-item .icon { font-size: 24px; margin-bottom: 6px; }
.trust-item .label { font-size: 13px; color: var(--muted); font-weight: 600; }

/* Feature cards */
.feature-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s;
}
.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(244,185,66,0.3);
  transform: translateY(-2px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(244,185,66,0.15), rgba(255,122,50,0.10));
  border: 1px solid rgba(244,185,66,0.2);
  font-size: 22px;
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 14px; margin: 0; color: var(--muted); }

/* Pricing */
.pricing-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
}
.pricing-card:hover { border-color: rgba(255,255,255,0.2); }
.pricing-card.featured {
  border-color: rgba(244,185,66,0.4);
  background: linear-gradient(180deg, rgba(244,185,66,0.08), rgba(255,122,50,0.04));
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #111;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.price { font-size: 44px; font-weight: 900; color: var(--gold); margin: 12px 0; }
.price small { font-size: 16px; color: var(--muted); font-weight: 600; }

/* Testimonial cards */
.testimonial-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-placeholder {
  color: var(--muted);
  font-style: italic;
  text-align: center;
  padding: 40px 20px;
}

/* Steps */
.step-number {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: #111;
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 16px;
}

/* Forms */
form { display: grid; gap: 18px; }
label {
  display: block;
  font-size: 13px;
  color: #d7dde7;
  font-weight: 700;
  margin-bottom: 6px;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0,0,0,0.25);
  color: var(--text);
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: rgba(244,185,66,0.4); }
textarea { min-height: 90px; resize: vertical; }
select option { background: #111827; color: #fff; }
.note { color: var(--muted); font-size: 13px; line-height: 1.5; }

/* Checkbox groups */
.checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.15);
  border-radius: 10px;
  padding: 10px;
  color: #dbe3ee;
  font-size: 13px;
  line-height: 1.3;
  cursor: pointer;
  transition: border-color 0.2s;
}
.check:hover { border-color: rgba(255,255,255,0.2); }
.check input { width: auto; margin-top: 2px; }

/* Checker results */
.results { display: none; padding: 24px; border-top: 1px solid var(--line); background: rgba(0,0,0,0.12); }
.results.show { display: block; }
.warning {
  border-left: 4px solid var(--gold);
  padding: 12px 14px;
  background: rgba(244,185,66,0.08);
  border-radius: 8px;
  color: #ffe2a0;
  margin-top: 14px;
}

/* FAQ */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-card);
  overflow: hidden;
  margin-bottom: 12px;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font);
}
.faq-question:hover { color: var(--gold); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}
.faq-answer.open { max-height: 500px; padding-bottom: 18px; }
.faq-answer p { margin: 0; color: var(--text-body); font-size: 15px; line-height: 1.6; }
.faq-icon { font-size: 20px; transition: transform 0.3s; }
.faq-icon.open { transform: rotate(45deg); }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 60px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-links a { color: var(--muted); }
.footer-links a:hover { color: var(--text); }
.footer-disclaimer {
  max-width: 700px;
  opacity: 0.7;
  font-size: 12px;
}

/* Utility */
.hidden { display: none !important; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; } .mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }

/* List styles */
.list-check { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.list-check li {
  padding-left: 28px;
  position: relative;
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.5;
}
.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

/* Responsive */
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4, .hero-grid, .founder-grid, .about-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .checks { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 70px; right: 16px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 16px; z-index: 100; }
  .nav-toggle { display: block; }
  .section-pad { padding: 40px 0; }
  h1 { font-size: 40px; }
}

@media (max-width: 480px) {
  .trust-bar { grid-template-columns: 1fr; }
  .btn { width: 100%; }
}

/* ============================================
   Scroll Animations — DISABLED (caused blank sections on mobile)
   ============================================ */
[data-animate] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
[data-animate="fade"] {
  opacity: 1 !important;
  transform: none !important;
}
[data-animate="slide-left"] {
  transform: none !important;
  opacity: 1 !important;
}
[data-animate="slide-left"].in-view {
  transform: none !important;
}
[data-animate="slide-right"] {
  transform: none !important;
  opacity: 1 !important;
}
[data-animate="slide-right"].in-view {
  transform: none !important;
}
[data-animate="scale"] {
  transform: none !important;
  opacity: 1 !important;
}
[data-animate="scale"].in-view {
  transform: none !important;
}

/* Stagger delays — disabled */
[data-delay="1"] { transition-delay: 0s; }
[data-delay="2"] { transition-delay: 0s; }
[data-delay="3"] { transition-delay: 0s; }
[data-delay="4"] { transition-delay: 0s; }
[data-delay="5"] { transition-delay: 0s; }
[data-delay="6"] { transition-delay: 0s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Explore Mining foundation */
.brand-logo { width:40px; height:40px; border-radius:12px; object-fit:cover; }
.directory-hero { padding:72px 0 56px; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:linear-gradient(135deg,rgba(244,185,66,.10),rgba(255,122,50,.03)); }
.directory-hero h1 { max-width:900px; }
.directory-hero .lead { margin-top:20px; }
.action-row { display:flex; flex-wrap:wrap; gap:12px; margin-top:24px; align-items:center; }
.directory-card { display:flex; gap:22px; min-height:240px; border:1px solid var(--line); background:var(--bg-card); border-radius:var(--radius-lg); padding:30px; color:var(--text); transition:.2s ease; }
.directory-card:hover { text-decoration:none; border-color:rgba(244,185,66,.38); background:var(--bg-card-hover); transform:translateY(-2px); }
.directory-card h2, .role-card h2, .region-card h2 { font-size:28px; margin-bottom:12px; }
.directory-card p, .role-card p, .region-card p { color:var(--text-body); }
.directory-icon { flex:0 0 58px; width:58px; height:58px; border-radius:16px; display:grid; place-items:center; background:linear-gradient(135deg,rgba(244,185,66,.20),rgba(255,122,50,.10)); font-size:28px; }
.card-link { display:inline-block; margin-top:8px; color:var(--gold); font-weight:800; }
.callout-card { display:flex; justify-content:space-between; gap:24px; align-items:center; border-color:rgba(244,185,66,.3); }
.callout-card p { margin-bottom:0; }
.filter-strip { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:24px; }
.filter-strip span, .role-tag, .region-card > span, .status-pill { display:inline-block; border:1px solid var(--line); border-radius:999px; padding:5px 10px; color:var(--gold); font-size:12px; font-weight:800; text-transform:uppercase; letter-spacing:.06em; }
.role-card, .region-card { display:block; border:1px solid var(--line); background:var(--bg-card); border-radius:var(--radius-lg); padding:28px; color:var(--text); }
a.role-card:hover { text-decoration:none; border-color:rgba(244,185,66,.38); }
.role-card h2, .region-card h2 { margin-top:14px; }
.role-card ul, .sidebar-card ul { color:var(--text-body); padding-left:20px; }
.role-card li, .sidebar-card li { margin-bottom:7px; }
.breadcrumbs { color:var(--muted); font-size:13px; }
.content-layout { display:grid; grid-template-columns:minmax(0,1fr) 340px; gap:24px; align-items:start; }
.article-stack { display:grid; gap:20px; }
.article-stack h2 { margin-bottom:16px; }
.sidebar-card { position:sticky; top:20px; border:1px solid rgba(244,185,66,.28); background:var(--bg-card); border-radius:var(--radius-lg); padding:26px; }
.sidebar-card hr { border:0; border-top:1px solid var(--line); margin:24px 0; }
.sidebar-card .btn { margin-top:10px; }
.plain-steps { color:var(--text-body); padding-left:22px; }
.plain-steps li { padding-left:6px; margin-bottom:12px; }
.tracker-layout { display:grid; grid-template-columns:390px minmax(0,1fr); gap:28px; align-items:start; }
.tracker-form { position:sticky; top:18px; }
.tracker-form h2 { margin-bottom:20px; }
.tracker-actions { display:flex; justify-content:space-between; gap:18px; align-items:flex-end; margin-bottom:18px; }
.tracker-actions .action-row { margin-top:0; }
.empty-state { text-align:center; color:var(--muted); padding:48px 24px; }
.table-wrap { overflow-x:auto; border:1px solid var(--line); border-radius:var(--radius); }
.tracker-table { width:100%; border-collapse:collapse; min-width:720px; }
.tracker-table th, .tracker-table td { text-align:left; padding:14px; border-bottom:1px solid var(--line); vertical-align:top; color:var(--text-body); font-size:14px; }
.tracker-table th { color:var(--muted); font-size:11px; text-transform:uppercase; letter-spacing:.08em; }
.tracker-table tr:last-child td { border-bottom:0; }
.table-delete { border:1px solid rgba(255,90,90,.35); color:#ff8b8b; background:transparent; border-radius:8px; padding:7px 10px; cursor:pointer; }
@media (max-width:880px) {
  .content-layout, .tracker-layout { grid-template-columns:1fr; }
  .sidebar-card, .tracker-form { position:static; }
  .directory-hero { padding:48px 0 38px; }
  .callout-card, .tracker-actions { align-items:stretch; flex-direction:column; }
}
@media (max-width:560px) {
  .directory-card { flex-direction:column; min-height:0; padding:24px; }
  .directory-card h2, .role-card h2, .region-card h2 { font-size:24px; }
}

/* Trust-first homepage journey */
.trust-first-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-first-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,14,20,.84), rgba(10,14,20,.93)),
    url('/images/site-photo-9.jpg') center 40%/cover no-repeat;
  opacity: .62;
}
.trust-first-hero-inner { position: relative; }
.trust-first-hero .lead { margin-top: 20px; }
.trust-first-note { margin-top: 18px; max-width: 720px; }
.free-path-card {
  background: linear-gradient(155deg, rgba(69,212,131,.11), rgba(110,168,255,.06));
  border-color: rgba(69,212,131,.28);
  box-shadow: var(--shadow);
}
.free-path-card h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 20px; }
.trust-first-list { margin: 22px 0; }
.journey-heading { max-width: 780px; margin: 0 auto 42px; }
.journey-heading .lead { margin: 16px auto 0; }
.journey-grid { align-items: stretch; }
.journey-card { display: flex; flex-direction: column; min-height: 300px; }
.journey-card p { flex: 1; }
.compact-tool-card { min-height: 290px; flex-direction: column; }
.compact-tool-card h3 { margin-bottom: 8px; }
.cohort-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 40px;
  padding: 40px;
  border-color: rgba(244,185,66,.3);
  background: linear-gradient(135deg, rgba(244,185,66,.10), rgba(69,212,131,.04));
}
.cohort-card h2 { margin-bottom: 18px; }
.cohort-card .list-check { margin: 24px 0; }
.cohort-note { max-width: 650px; }
.cohort-form {
  align-self: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10,14,20,.72);
}
.cohort-form .check { margin: 0; }
.trust-first-final {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.trust-first-final-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,20,.86), rgba(10,14,20,.98)), url('/images/site-photo-8.jpg') center/cover no-repeat;
}
.trust-first-final-card {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 32px;
  background: linear-gradient(180deg, rgba(69,212,131,.09), rgba(110,168,255,.05));
  border-color: rgba(69,212,131,.25);
}
.trust-first-final-card .lead { margin: 16px auto 24px; }
.trust-first-actions { justify-content: center; }
.optional-help-grid { align-items: stretch; }
.optional-help-grid > .card { height: 100%; }
.optional-review-card { border-color: rgba(244,185,66,.26); }
.optional-review-details summary {
  cursor: pointer;
  list-style: none;
  margin: 22px 28px;
  padding: 14px 22px;
  border: 1px solid rgba(244,185,66,.3);
  border-radius: var(--radius-pill);
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  font-weight: 800;
  text-align: center;
}
.optional-review-details summary::-webkit-details-marker { display: none; }
.optional-review-details summary::after { content: ' ↓'; }
.optional-review-details[open] summary::after { content: ' ↑'; }
.optional-review-details[open] summary { margin-bottom: 0; }

@media (max-width:880px) {
  .trust-first-hero { padding: 48px 0 34px; }
  .cohort-card { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
  .compact-tool-card { min-height: 0; }
  .journey-card { min-height: 0; }
}

@media (max-width:480px) {
  .trust-first-hero h1 { font-size: clamp(38px, 12vw, 50px); }
  .free-path-card, .cohort-card, .cohort-form, .trust-first-final-card { padding: 22px; }
  .trust-first-hero .action-row, .trust-first-final .action-row { align-items: stretch; }
  .optional-review-details summary { margin: 18px; }
}
