/* Mind Muscle Training — shared stylesheet for index.html + in-person.html
   Design system from Ian's July 2026 drafts (index-4, in-person-da-nang-8):
   dark base, cream alternating sections, Archivo display + Inter body. */

:root {
  --ink: #14151a;
  --bg: #0a0a0c;
  --panel: #161619;
  --panel2: #1d1d21;
  --cream: #f5f1e8;
  --muted: #9a9aa3;
  --red: #e0432b;
  --red-dark: #c23620;
  --line: #2a2b32;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display { font-family: 'Archivo', sans-serif; letter-spacing: -0.01em; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
iframe { border: 0; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700;
  color: var(--red); margin-bottom: 12px;
}

.btn {
  display: inline-block; padding: 16px 30px; border-radius: 4px; font-weight: 700;
  font-family: 'Archivo', sans-serif; font-size: 16px; text-align: center;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  cursor: pointer; border: none;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline:hover { border-color: #fff; }
/* outline buttons on cream sections */
.on-cream .btn-outline { color: var(--ink); border-color: var(--ink); }
.on-cream .btn-outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,10,12,.92); backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-top: 12px; padding-bottom: 12px;
}
.brand {
  display: flex; align-items: center; gap: 10px; color: #fff;
  font-weight: 700; font-family: 'Archivo', sans-serif; font-size: 15px;
  text-transform: uppercase; letter-spacing: .02em; flex-shrink: 0;
}
.brand img { width: 38px; height: 38px; }
.site-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.site-nav > a { font-size: 14px; color: #c9c9cf; font-weight: 500; }
.site-nav > a:hover { color: #fff; }
.site-nav > a[aria-current="page"] { color: #fff; border-bottom: 2px solid var(--red); padding-bottom: 2px; }
.nav-cta { padding: 11px 20px; font-size: 14px; }

/* Mobile: brand + CTA on row 1, the two page links as a segmented row underneath,
   so you can always switch between online and in-person coaching. */
@media (max-width: 760px) {
  .site-header .container { flex-wrap: wrap; gap: 12px; }
  .site-nav { order: 3; width: 100%; margin-left: 0; gap: 10px; }
  .site-nav > a {
    flex: 1; text-align: center; font-size: 13px; font-weight: 600;
    padding: 9px 6px; border: 1px solid var(--line); border-radius: 4px;
  }
  .site-nav > a[aria-current="page"] {
    border-color: var(--red); background: rgba(224,67,43,.14); padding-bottom: 9px;
  }
}
@media (max-width: 520px) {
  .brand span { font-size: 13px; }
  .nav-cta { padding: 10px 14px; font-size: 13px; }
}

/* ---------- Hero ---------- */

.hero { background: radial-gradient(ellipse at top right, #2a0f0c 0%, var(--bg) 55%); padding: 64px 0 0; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 44px; line-height: 1.05; font-weight: 900; margin-bottom: 20px; }
.hero h1 span { color: var(--red); display: block; }
.hero p.sub { font-size: 19px; color: #c9c9cf; max-width: 520px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.hero-fine { font-size: 13px; color: var(--muted); margin-bottom: 36px; }
.hero-img { border-radius: 6px; overflow: hidden; align-self: end; }
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
  .hero-img { order: -1; max-width: 340px; margin: 0 auto; }
}

/* ---------- Experience stat panel ---------- */

.experience { background: var(--bg); padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.experience .eyebrow-big {
  text-align: center; font-family: 'Archivo', sans-serif; font-weight: 900;
  font-size: 28px; letter-spacing: .3em; color: var(--red); margin-bottom: 44px;
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px 24px; max-width: 520px; margin: 0 auto; }
.stat-num { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: clamp(22px, 6vw, 36px); color: #fff; margin-bottom: 10px; line-height: 1.1; }
.stat-rule { width: 46px; height: 2px; background: #fff; opacity: .35; margin-bottom: 12px; }
.stat-label { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; letter-spacing: .03em; color: var(--muted); text-transform: uppercase; line-height: 1.35; }
@media (max-width: 520px) { .experience .eyebrow-big { font-size: 22px; letter-spacing: .2em; } }

/* ---------- Sections ---------- */

section { padding: 72px 0; }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head h2 { font-size: 32px; }
.section-head p { color: var(--muted); margin-top: 10px; font-size: 17px; }
.on-cream .section-head p { color: #5c5c66; }

/* ---------- Video ---------- */

.video-feature { background: var(--panel); }
.video-wrap { max-width: 820px; margin: 0 auto; position: relative; padding-top: 56.25%; border-radius: 8px; overflow: hidden; }
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* click-to-play facade: custom poster frame + play button, iframe loads on click */
.video-poster { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; cursor: pointer; background: #000; display: block; }
.video-poster img { width: 100%; height: 100%; object-fit: cover; }
.video-poster .play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 54px; background: var(--red); border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,.45); transition: background .15s ease, transform .15s ease;
}
.video-poster .play-btn::after {
  content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-38%, -50%);
  border-style: solid; border-width: 11px 0 11px 19px;
  border-color: transparent transparent transparent #fff;
}
.video-poster:hover .play-btn { background: var(--red-dark); transform: translate(-50%, -50%) scale(1.06); }

/* ---------- Transformations ---------- */

.transformations { background: var(--cream); color: var(--ink); }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ba-card img { border-radius: 6px; margin-bottom: 14px; width: 100%; aspect-ratio: 1.05; object-fit: cover; }
.ba-card h4 { font-size: 17px; margin-bottom: 4px; color: var(--ink); }
.ba-card p { color: #5c5c66; font-size: 14px; }
.ba-card p strong { color: var(--ink); font-weight: 600; }
/* Needs .ba-card to outrank `.ba-card p` above, which would otherwise grey it out. */
.ba-card .ba-stats { color: var(--red); font-weight: 600; font-size: 13px; margin-top: 2px; }
@media (max-width: 800px) { .ba-grid { grid-template-columns: 1fr; } }

/* ---------- Is this for you (index) ---------- */

.qualify { background: var(--cream); color: var(--ink); }
.qualify-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.qualify ul { list-style: none; }
.qualify li { padding: 10px 0 10px 30px; position: relative; font-size: 16px; border-bottom: 1px solid #e4ddd0; }
.qualify li:before { content: "→"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.qualify .callout { background: var(--ink); color: #fff; padding: 28px; border-radius: 8px; }
.qualify .callout p { color: #c9c9cf; }
@media (max-width: 800px) { .qualify-grid { grid-template-columns: 1fr; } }

/* ---------- Who this is for (in-person) ---------- */

.who { background: var(--cream); color: var(--ink); }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.who-card { background: #fff; border: 1px solid #e4ddd0; border-radius: 8px; padding: 24px; }
.who-card h4 { font-size: 17px; margin-bottom: 10px; }
.who-card p { color: #5c5c66; font-size: 14.5px; }
@media (max-width: 800px) { .who-grid { grid-template-columns: 1fr; } }

/* ---------- Most trainers get this wrong (index) ---------- */

.different { background: var(--bg); }
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.diff-col h3 { font-size: 18px; margin-bottom: 16px; }
.diff-col ul { list-style: none; }
.diff-col li { padding: 8px 0 8px 26px; position: relative; font-size: 15px; }
.diff-col.bad li { color: var(--muted); }
.diff-col.good li { color: #e4e4e8; }
.diff-col.bad li:before { content: "✕"; position: absolute; left: 0; color: #b7452f; }
.diff-col.good li:before { content: "✓"; position: absolute; left: 0; color: #3fa568; }
@media (max-width: 700px) { .diff-grid { grid-template-columns: 1fr; } }

/* ---------- About Ian ---------- */

.about { background: var(--cream); color: var(--ink); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: center; }
.about img { border-radius: 8px; }
.about-copy p { margin-bottom: 16px; color: #3a3a42; font-size: 16px; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- What's included ---------- */

.included { background: var(--bg); color: #fff; }
.inc-photo { max-width: 800px; margin: 0 auto 44px; border-radius: 8px; overflow: hidden; }
.inc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.inc-card { background: var(--panel); padding: 26px; border-radius: 8px; border: 1px solid var(--line); }
.inc-card h4 { font-size: 17px; margin-bottom: 10px; }
.inc-card p { color: #a8a8b0; font-size: 14.5px; }
@media (max-width: 800px) { .inc-grid { grid-template-columns: 1fr; } }

/* in-person variant: arrow feature list beside a photo */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.included-grid h2 { font-size: 28px; margin-bottom: 18px; }
.included-grid ul { list-style: none; }
.included-grid li { padding: 9px 0 9px 26px; position: relative; font-size: 15px; }
.included-grid li:before { content: "→"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.included-grid img { border-radius: 8px; }
@media (max-width: 800px) {
  .included-grid { grid-template-columns: 1fr; }
  .included-grid img { order: -1; }
}

/* ---------- Testimonials ---------- */

.testimonials { background: var(--cream); color: var(--ink); }
.test-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.test-card { background: #fff; border: 1px solid #e4ddd0; border-radius: 8px; padding: 28px; }
.test-card h4 { font-size: 17px; margin-bottom: 12px; color: var(--red); }
.test-card blockquote { color: #5c5c66; font-size: 15px; margin-bottom: 18px; }
.test-person { display: flex; align-items: center; gap: 10px; }
.test-person img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
/* Letter avatar for Google reviewers, where we have a real name but no photo to use. */
.test-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16px;
}
/* An odd final card would otherwise sit alone against the left edge. Two-column
   layouts only: below 700px the grid is single-column and this would shrink it. */
@media (min-width: 701px) {
  .test-grid > .test-card:last-child:nth-child(odd) {
    grid-column: 1 / -1; justify-self: center; max-width: calc(50% - 12px);
  }
}
.test-person span { font-size: 14px; font-weight: 600; }
.test-person small { display: block; color: #8a8a94; font-weight: 400; }

/* Verifiable third-party proof: links out to Ian's Google Business Profile. */
.reviews-badge {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 18px;
  background: #fff; border: 1px solid #e4ddd0; border-radius: 40px;
  padding: 9px 18px; font-size: 14px; font-weight: 600; color: var(--ink);
  transition: border-color .15s ease, transform .15s ease;
}
.reviews-badge .stars { display: inline-flex; gap: 1px; flex-shrink: 0; }
.reviews-badge svg { width: 15px; height: 15px; fill: #f4b400; }
.reviews-badge strong { font-weight: 700; }
.reviews-badge:hover { border-color: var(--ink); transform: translateY(-1px); }

/* Centered rating line + stars (index). Same Google Business Profile link as the
   pill badge above, which in-person.html still uses. */
.google-rating { display: block; margin: 18px auto 8px; font-weight: 700; color: var(--ink); }
.google-rating span { color: var(--red); }
.google-rating a:hover { text-decoration: underline; }
.google-stars { display: flex; justify-content: center; gap: 3px; }
.google-stars svg { width: 18px; height: 18px; fill: #f4b400; }

/* Testimonial card that leads with the client's before/after photo: the image runs
   edge to edge, so the card's own padding moves onto the text children. */
.test-card-photo { padding: 0 0 28px; overflow: hidden; }
.test-ba-img { width: 100%; margin-bottom: 20px; border-radius: 0; }
.test-card-photo h4,
.test-card-photo blockquote,
.test-card-photo .test-person { padding-left: 28px; padding-right: 28px; }

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

/* ---------- How it works ---------- */

.how { background: var(--panel); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.how-grid + .how-photo { margin-top: 44px; }
.how-num {
  width: 36px; height: 36px; border-radius: 50%; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo', sans-serif; font-weight: 900; margin-bottom: 14px;
}
.how-card h4 { font-size: 16px; margin-bottom: 8px; color: #fff; }
.how-card p { color: var(--muted); font-size: 14.5px; }
.how-photo { border-radius: 8px; overflow: hidden; max-width: 820px; margin-left: auto; margin-right: auto; }
@media (max-width: 700px) { .how-grid { grid-template-columns: 1fr; } }

/* ---------- Pricing ---------- */

.pricing { background: var(--cream); color: var(--ink); }
.price-note { text-align: center; color: #5c5c66; margin-bottom: 40px; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card {
  background: #fff; border: 1px solid #e4ddd0; border-radius: 8px; padding: 26px;
  display: flex; flex-direction: column; position: relative;
}
.price-card.featured { border: 2px solid var(--red); }
.badge {
  position: absolute; top: -12px; left: 20px; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .05em;
}
.badge.alt { background: var(--ink); }
.price-card h4 { font-size: 17px; margin-bottom: 6px; color: var(--ink); font-family: 'Archivo', sans-serif; }
.price { font-family: 'Archivo', sans-serif; font-weight: 900; font-size: 28px; margin-bottom: 2px; }
.price small { font-size: 14px; font-weight: 600; }
.price-sub { font-size: 13px; color: #8a8a94; margin-bottom: 18px; }
.price-card ul { list-style: none; margin-bottom: 22px; flex-grow: 1; }
.price-card li { font-size: 13.5px; padding: 6px 0 6px 20px; position: relative; color: #3a3a42; }
.price-card li:before { content: "•"; position: absolute; left: 0; color: var(--red); }
.price-card .btn { margin-top: auto; }
.price-fine { text-align: center; color: #5c5c66; font-size: 14px; margin-top: 28px; max-width: 620px; margin-left: auto; margin-right: auto; }
.price-fine strong { color: var(--ink); }

/* Guarantee panel under the pricing grid: dark block on the cream section. */
.guarantee {
  background: var(--ink); color: #fff; border-radius: 8px; padding: 28px 30px;
  margin: 36px 0 8px; display: flex; gap: 18px; align-items: flex-start;
}
.guarantee-icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px; flex-shrink: 0;
}
.guarantee h4 { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 8px; color: #fff; }
.guarantee p { color: #fff; font-size: 15px; line-height: 1.55; margin-bottom: 10px; }
.guarantee .guarantee-fine { color: var(--muted); font-size: 13px; line-height: 1.5; margin-bottom: 0; }
@media (max-width: 640px) { .guarantee { flex-direction: column; padding: 24px; } }

/* ---------- FAQ ---------- */

.faq { background: var(--bg); }
.faq-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.faq h2 { font-size: 32px; margin-bottom: 8px; }
.faq-lede { color: var(--muted); max-width: 52ch; margin-bottom: 36px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left; padding: 20px 4px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  cursor: pointer; color: #fff; font-family: 'Inter', system-ui, sans-serif;
  font-weight: 600; font-size: 16.5px;
}
.faq-q:hover { color: var(--red); }
.faq-icon { flex: 0 0 auto; width: 22px; height: 22px; position: relative; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--red);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-icon::before { width: 14px; height: 2px; }
.faq-icon::after { width: 2px; height: 14px; transition: transform .25s ease, opacity .25s ease; }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 4px 22px; color: var(--muted); font-size: 15px; max-width: 60ch; }
.faq-a-inner strong { color: #fff; }
.faq-footer {
  margin-top: 28px; padding: 18px 20px; background: var(--panel);
  border: 1px solid var(--line); border-radius: 8px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; font-size: 14px; color: var(--muted);
}
.faq-footer .btn { padding: 11px 20px; font-size: 14px; white-space: nowrap; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }

/* ---------- Cross-link teasers (in-person on index, online on in-person) ---------- */

.danang, .crosslink { background: var(--panel); color: #fff; }
.danang-grid, .crosslink-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
.danang h2, .crosslink h2 { font-size: 28px; margin-bottom: 14px; }
.danang ul, .crosslink ul { list-style: none; margin: 22px 0; }
.danang li, .crosslink li { padding: 8px 0 8px 26px; position: relative; font-size: 15.5px; color: #d6d6db; }
.danang li:before, .crosslink li:before { content: "✓"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.danang img, .crosslink img { border-radius: 8px; }
.danang .btn-row, .crosslink .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 800px) {
  .danang-grid, .crosslink-grid { grid-template-columns: 1fr; }
}

/* ---------- Final CTA ---------- */

.final-cta { text-align: center; background: radial-gradient(ellipse at bottom, #2a0f0c 0%, var(--bg) 60%); }
.final-cta h2 { font-size: 34px; max-width: 640px; margin: 0 auto 16px; }
.final-cta p { color: #c9c9cf; max-width: 560px; margin: 0 auto 34px; font-size: 17px; }
.urgency { font-size: 14px; color: var(--red); font-weight: 600; margin-top: 20px; }

/* ---------- Footer ---------- */

.site-footer { background: #000; border-top: 1px solid var(--line); color: #8a8a94; padding: 36px 0; font-size: 13.5px; }
.site-footer .container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { width: 28px; height: 28px; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.site-footer a { color: #c9c9cf; }
.site-footer a:hover { color: #fff; }
.site-footer .also { width: 100%; border-top: 1px solid var(--line); padding-top: 16px; margin-top: 4px; font-size: 13px; }

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover { transform: translateY(-2px); }


/* ---------- Contact form ---------- */
.contact { background: radial-gradient(ellipse at top, #1a0d0b 0%, var(--bg) 60%); }
.contact-form { max-width: 560px; margin: 0 auto; display: grid; gap: 20px; }
.contact-form .field { display: grid; gap: 8px; }
.contact-form label {
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 12.5px;
  letter-spacing: .05em; text-transform: uppercase; color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%; background: var(--panel); color: #fff;
  border: 1px solid var(--line); border-radius: 4px; padding: 14px 16px;
  font-family: 'Inter', sans-serif; font-size: 16px;
  transition: border-color .15s ease, background .15s ease;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #6b6b73; }
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--red); background: var(--panel2); }
.contact-form textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.contact-form .btn { width: 100%; margin-top: 4px; }
.contact-form .btn[disabled] { opacity: .6; cursor: not-allowed; transform: none; }
/* honeypot — kept out of sight and out of the tab order */
.cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.cf-status { font-size: 14.5px; text-align: center; min-height: 1.2em; margin: 0; }
.cf-status.ok { color: #4cc96a; }
.cf-status.err { color: var(--red); }
.cf-alt { text-align: center; font-size: 14px; color: var(--muted); margin: 0; }
.cf-alt a { color: #fff; border-bottom: 1px solid var(--red); padding-bottom: 1px; }
.cf-alt a:hover { color: var(--red); }
