/* NovaSubito GmbH i.G. — shared stylesheet (DET-WEB-011).
   Design tokens and animation keyframes are taken verbatim from the approved
   "Alternative C — Ordnung aus Chaos" mockup (docs/source-material/). */

/* Self-hosted (not loaded from fonts.googleapis.com) so no visitor IP address
   is ever sent to Google — see REQ-WEB-NF-005 and specs/02-system-design.md DD-005.
   Single variable-font file covers weights 300–700 (SIL OFL 1.1, see fonts/OFL.txt). */
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-variable.woff2") format("woff2");
}
@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/fonts/space-grotesk-variable.woff2") format("woff2");
}

:root {
  --ink: #0d0f14;
  --paper: #ffffff;
  /* Warm, very light beige — a touch warmer than the mockup's original cool
     grey (#f4f5f8), per founder preference. Alternates with --paper as the
     section background. */
  --sand: #f6f2ea;
  --ultra: #0e6e78;
  --ultra-hell: #4fb8c4;
  --night: #0b0c10;
  --text-body: #4a4f5c;
  /* #8a8f9c (the mockup's original muted gray) is only 3.2:1 against white and 2.9:1
     against --sand — below WCAG AA's 4.5:1 for normal text (REQ-WEB-NF-002). Darkened
     to 5.2:1+ against both backgrounds the site actually uses this color on. */
  --text-muted: #5f6472;
  --border: #e7e9ef;
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, "Segoe UI", sans-serif;
  /* Kept moderate on purpose: text max-widths below (52rem) are close to
     this, so full-bleed blocks (card grids, stats) and prose
     blocks read as one consistent width instead of prose looking like a
     narrow column inside a much wider box. */
  --container: 64rem;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Note: deliberately no overflow-x:hidden here. It looks like a safe
   defensive rule, but it puts html/body in a scroll-container context that
   breaks the header's position:sticky (a known cross-browser quirk).
   Horizontal-overflow bugs are fixed at their root cause (flex children
   that refuse to shrink below a nowrap child's content width need
   min-width:0, not a body-level overflow mask) — see git history. */
body {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-display);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

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

a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  z-index: 100;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 2px solid var(--ultra);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  flex: none;
}
.brand-lockup__glyph {
  width: 34px;
  height: 34px;
  flex: none;
}
.brand-lockup__word {
  font-size: 1.25rem;
  line-height: 1;
  white-space: nowrap;
}
.brand-lockup__word .l {
  font-weight: 300;
}
.brand-lockup__word .b {
  font-weight: 700;
  color: var(--ultra);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}
.site-nav__links a:hover {
  color: var(--ultra);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--paper);
  border-radius: var(--radius-md);
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: none;
}
.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle__bar::before {
  top: -6px;
}
.nav-toggle__bar::after {
  top: 6px;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar {
  background: transparent;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after {
  transform: translateY(-6px) rotate(-45deg);
}

.lang-switcher a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.8rem;
  white-space: nowrap;
}
.lang-switcher a:hover {
  border-color: var(--ultra);
  color: var(--ultra);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.6rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--ultra);
  color: #fff;
  box-shadow: 0 8px 24px rgba(14, 110, 120, 0.25);
}
.btn--primary:hover {
  background: #0b5c64;
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn--ghost:hover {
  border-color: var(--ultra);
  color: var(--ultra);
}
.btn--sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem;
}

/* ---------- Section rhythm ---------- */

.section {
  padding: clamp(2.25rem, 4.5vw, 4rem) 0;
}
.section--alt {
  background: var(--sand);
}
.section__eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.9rem;
}
.section__headline {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 1.4rem;
  /* Deliberately no max-width: fills the same width as .container's other
     full-bleed children (card grids, stats) per founder request, rather
     than a narrower "reading width" column. */
  max-width: none;
}
.section__lede {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
  font-weight: 300;
  max-width: none;
}
.section__lede + .section__lede {
  margin-top: 1rem;
}
.section__lede strong {
  color: var(--ink);
  font-weight: 700;
}

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

.hero {
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.hero__title-row {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.75rem);
  margin-bottom: 1.3rem;
}
.hero__mark {
  flex: none;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  line-height: 0;
  border-radius: 50%;
  transition: transform 0.15s ease;
}
.hero__mark:hover {
  transform: scale(1.06);
}
.hero__mark:focus-visible {
  outline: 2px solid var(--ultra);
  outline-offset: 4px;
}
.hero__mark-glyph {
  /* Sized to the headline's own two-line height (font-size * line-height(1.08) * 2
     lines = font-size * 2.16), so the settled glyph's top/bottom edges land on the
     first line's cap-height and the second line's baseline, and .hero__title-row's
     align-items:center keeps it vertically centered against the full two-line
     block. The animation's peak scatter overflows this nominal box by only ~2%
     (measured empirically), so no extra headroom is needed beyond the exact match. */
  width: clamp(4.5rem, 12.96vw, 7.75rem);
  height: auto;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .hero__mark {
    cursor: default;
  }
  .hero__mark:hover {
    transform: none;
  }
}
.hero__headline {
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  max-width: 44rem;
}
.hero__headline-accent {
  /* Matches .brand-lockup__word .b (the "Subito" in the header logo). */
  color: var(--ultra);
}
.hero__sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
  font-weight: 300;
  /* Unlike .hero__headline, this has no bearing on the icon's calibrated
     two-line height — safe to fill the full width like .section__lede. */
  max-width: none;
  margin: 0 0 2rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}
.hero__cta-secondary {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.hero__cta-secondary:hover {
  color: var(--ultra);
}

/* ---------- Services / cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
}
.card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.7rem;
}
.card p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-body);
  font-weight: 300;
  margin: 0;
}

/* ---------- Process ---------- */

.process-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.process-list li {
  border-top: 2px solid var(--ultra);
  padding-top: 1.1rem;
}
.process-list__number {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ultra);
  margin-bottom: 0.6rem;
}
.process-list h3 {
  font-size: 1.02rem;
  margin: 0 0 0.5rem;
}
.process-list p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
  font-weight: 300;
  margin: 0;
}

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

/* Clearfix: the photo floats, so the section needs to contain it or the
   next section's background would start underneath the still-floating
   image instead of below it. */
.about::after {
  content: "";
  display: table;
  clear: both;
}
.about__photo {
  float: left;
  width: clamp(264px, 33vw, 374px);
  height: auto;
  margin: 0.3rem 2rem 1.2rem 0;
  border-radius: var(--radius-lg);
  /* Portrait crop trims empty wall on the sides (not the head/body — the
     photo's full 1026px height is preserved). */
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 35% 22%;
}
/* Eyebrow + headline come before the float in source order, so they stay
   full-width above it; body text after the float wraps around it, then
   reclaims the section's full width (matching every other section) once
   it runs past the photo's bottom edge. */
.about__cert-note {
  margin-top: 1.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 640px) {
  .about__photo {
    float: none;
    width: 100%;
    max-width: 22rem;
    margin: 0 0 1.5rem;
  }
}

/* ---------- Stats ---------- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.stat-tile {
  /* Light card, matching .card (the service tiles) rather than a dark
     block — keeps the stats row visually part of the same page instead of
     reading as an unrelated dark interruption. */
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  text-align: left;
}
.stat-tile__value {
  /* Smaller than before so "15 Monate" (the longest value) stays on one
     line instead of wrapping inside the tile. */
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 700;
  color: var(--ultra);
  line-height: 1;
  margin-bottom: 0.6rem;
  white-space: nowrap;
}
.stat-tile__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

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

.cta-section {
  /* Brand petrol instead of near-black: still a bold, deliberate anchor
     for the page's final call-to-action, but tying to the accent color
     used everywhere else (buttons, the logo's center dot) instead of an
     unrelated dark tone. */
  background: var(--ultra);
  color: #fff;
  border-radius: var(--radius-lg);
  /* Full container width — was inset with its own side margins, which
     made it narrower than the nav bar / stat-tile row above it. */
  margin: 0;
  padding: clamp(1.8rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}
.cta-section__inner {
  max-width: 40rem;
  margin: 0 auto;
}
.cta-section .section__headline {
  color: #fff;
  max-width: none;
}
.cta-section p {
  /* White at ~85% opacity over --ultra computes to 4.8:1 (WCAG AA) —
     var(--ultra-hell) and the site's other muted grays fall below 4.5:1
     on this background, so a plain lighter gray isn't an option here. */
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  line-height: 1.8;
  margin: 0 0 2rem;
}
.cta-section__note {
  margin-top: 1rem !important;
  font-size: 0.8rem;
  /* 0.75 measured at 4.11:1 by axe-core at this font-size — below 4.5:1.
     0.85 (matching .cta-section p) measures 4.78:1. */
  color: rgba(255, 255, 255, 0.85) !important;
}
.cta-section .btn--primary {
  /* Inverted from the site-wide petrol button: on a petrol section, a
     petrol button would disappear. White-on-petrol-text stands out and
     still reads as the same "primary" action. */
  background: #fff;
  color: var(--ultra);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.cta-section .btn--primary:hover {
  background: #f0f7f7;
}

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

.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.site-footer__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
}
.site-footer__brand {
  font-size: 0.85rem;
  font-weight: 600;
}
.site-footer__claim {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.site-footer__copyright {
  margin-top: 1.2rem;
}
.site-footer__links {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__links a {
  text-decoration: none;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.site-footer__links a:hover {
  color: var(--ultra);
}

/* ---------- Legal pages ---------- */

.legal {
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 6vw, 5rem);
  max-width: 46rem;
}
.legal h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0 0 2rem;
}
.legal h2 {
  font-size: 1.15rem;
  margin: 2.2rem 0 0.8rem;
}
.legal p {
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--text-body);
  font-weight: 300;
  margin: 0 0 0.9rem;
}
.legal .placeholder {
  color: #b45309;
  background: #fffbeb;
  border: 1px dashed #f59e0b;
  border-radius: 8px;
  padding: 0.15rem 0.5rem;
  font-weight: 500;
}

/* ---------- 404 ---------- */

.not-found {
  padding: clamp(4rem, 10vw, 7rem) 0;
  text-align: center;
}
.not-found__block + .not-found__block {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.not-found h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0 0 1rem;
}
.not-found p {
  color: var(--text-body);
  font-weight: 300;
  margin: 0 0 1.5rem;
}

/* ---------- Brand-mark chaos → order animation (from approved mockup) ---------- */

.d,
.acc,
.ring {
  transform-box: fill-box;
  transform-origin: center;
}
.ring {
  opacity: 0;
}
/* Per-dot chaos-drift offsets (was inline style="--cx;--cy" in the original mockup;
   moved here so style-src never needs 'unsafe-inline' — see render.yaml). */
.d1 { --cx: 8px; --cy: -28px; }
.d2 { --cx: 34px; --cy: -12px; }
.d3 { --cx: -32px; --cy: 10px; }
.d4 { --cx: 14px; --cy: 26px; }
.d5 { --cx: -10px; --cy: -26px; }
.d6 { --cx: 30px; --cy: 14px; }
.d7 { --cx: -36px; --cy: -8px; }
.d8 { --cx: 6px; --cy: 26px; }
.d9 { --cx: 20px; --cy: -24px; }
.d10 { --cx: 26px; --cy: 22px; }
.d11 { --cx: 28px; --cy: -20px; }
.d12 { --cx: -24px; --cy: 24px; }
.d13 { --cx: -28px; --cy: -22px; }
.d14 { --cx: 20px; --cy: -14px; }
.d15 { --cx: -24px; --cy: 18px; }
.d16 { --cx: -12px; --cy: 18px; }
.d17 { --cx: 10px; --cy: -18px; }
.d18 { --cx: 22px; --cy: 16px; }
.d19 { --cx: 20px; --cy: -20px; }
.d20 { --cx: -26px; --cy: 14px; }
.d21 { --cx: -20px; --cy: -16px; }
.d22 { --cx: 14px; --cy: 20px; }
.d23 { --cx: 24px; --cy: -14px; }
.d24 { --cx: -16px; --cy: 20px; }
.d25 { --cx: -18px; --cy: -20px; }
.play .chA {
  animation: chaosA 2.3s both;
}
.play .chB {
  animation: chaosB 2.3s both;
}
.play .acc {
  animation: accPop 0.45s cubic-bezier(0.2, 1.5, 0.4, 1) 1.98s both;
}
.play .ring {
  animation: ringFlash 0.6s ease-out 1.92s both;
}
@keyframes chaosA {
  0% {
    opacity: 0;
    transform: translate(var(--cx), var(--cy)) scale(0.5);
  }
  10% {
    opacity: 0.85;
  }
  28% {
    transform: translate(calc(var(--cx) * 1.12), calc(var(--cy) * 0.82)) scale(0.9);
    animation-timing-function: ease-in-out;
  }
  48% {
    transform: translate(calc(var(--cx) * 0.8), calc(var(--cy) * 1.15)) scale(0.72);
    animation-timing-function: ease-in-out;
  }
  64% {
    transform: translate(calc(var(--cx) * 1.05), calc(var(--cy) * 0.9)) scale(0.85);
    animation-timing-function: ease-in-out;
  }
  74% {
    transform: translate(var(--cx), var(--cy)) scale(0.8);
    opacity: 0.85;
    animation-timing-function: cubic-bezier(0.3, 0, 0.05, 1);
  }
  88%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
@keyframes chaosB {
  0% {
    opacity: 0;
    transform: translate(var(--cx), var(--cy)) scale(0.55);
  }
  10% {
    opacity: 0.85;
  }
  28% {
    transform: translate(calc(var(--cx) * 0.85), calc(var(--cy) * 1.12)) scale(0.75);
    animation-timing-function: ease-in-out;
  }
  48% {
    transform: translate(calc(var(--cx) * 1.15), calc(var(--cy) * 0.8)) scale(0.92);
    animation-timing-function: ease-in-out;
  }
  64% {
    transform: translate(calc(var(--cx) * 0.92), calc(var(--cy) * 1.06)) scale(0.8);
    animation-timing-function: ease-in-out;
  }
  74% {
    transform: translate(var(--cx), var(--cy)) scale(0.82);
    opacity: 0.85;
    animation-timing-function: cubic-bezier(0.3, 0, 0.05, 1);
  }
  88%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
@keyframes accPop {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  55% {
    opacity: 1;
    transform: scale(1.35);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes ringFlash {
  0% {
    opacity: 0.45;
    transform: scale(0.2);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .play * {
    animation: none !important;
  }
  .ring {
    opacity: 0 !important;
  }
}

/* ---------- Responsive nav ---------- */

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: fixed;
    inset: 64px 0 0 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 1.5rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
    overflow-y: auto;
  }
  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.1rem;
  }
  .site-nav__links a {
    font-size: 1.1rem;
  }
  .lang-switcher {
    order: -1;
  }
}

@media (max-width: 640px) {
  .brand-lockup__word {
    font-size: 1.05rem;
  }
}

@media (max-width: 380px) {
  /* .btn defaults to white-space:nowrap; the German CTA label
     ("Kostenloses Erstgespräch") overflows a ~320px viewport at that
     setting (REQ-WEB-NF-007) — let it wrap to two lines there instead. */
  .btn {
    white-space: normal;
    text-align: center;
  }
}
