/* ── TCA Brand CSS ─────────────────────────────────────────────────────────── */

:root {
  --tca-green:     #3EA37B;
  --tca-dark:      #23474E;
  --tca-secondary: #54595F;
  --tca-text:      #7A7A7A;
  --tca-border:    #CECECE;
}

/* ── Base ────────────────────────────────────────────────────────────────────*/

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', system-ui, sans-serif;
  font-size: 18px;
  color: var(--tca-secondary);
  line-height: 1.6;
}

p { line-height: 1.7; }

/* ── Utilities ───────────────────────────────────────────────────────────────*/

.text-brand      { color: var(--tca-green) !important; }
.text-brand-dark { color: var(--tca-dark) !important; }
.text-muted-tca  { color: var(--tca-text) !important; }
.bg-brand        { background-color: var(--tca-green) !important; }
.bg-brand-dark   { background-color: var(--tca-dark) !important; }
.font-serif      { font-family: 'Roboto Slab', Georgia, serif; }

/* ── Navigation ──────────────────────────────────────────────────────────────*/

#site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  transition: box-shadow .2s;
}
#site-header.shadow-scroll { box-shadow: 0 2px 8px rgba(0,0,0,.08); }

.site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 56px; display: block; }

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  display: block;
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tca-secondary);
  text-decoration: none;
  border-radius: 6px;
  transition: color .15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--tca-green); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--tca-secondary);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  background: #fff;
  border-top: 1px solid #f0f0f0;
}
.nav-mobile.open { display: block; }
.nav-mobile ul {
  list-style: none;
  margin: 0;
  padding: 12px 1.5rem;
}
.nav-mobile a {
  display: block;
  padding: 10px 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tca-secondary);
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
}
.nav-mobile a:hover { color: var(--tca-green); }

@media (max-width: 767px) {
  .nav-toggle { display: block; }
  .nav-links   { display: none; }
}

/* ── Footer ──────────────────────────────────────────────────────────────────*/

.site-footer {
  background: #111827;
  color: #9ca3af;
  padding: 2.5rem 1.5rem;
  margin-top: 5rem;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-footer p   { margin: 0; font-size: 0.875rem; }
.site-footer a   { color: #9ca3af; text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: #fff; }
.site-footer-icons { display: flex; align-items: center; gap: 16px; }

/* ── Hero ────────────────────────────────────────────────────────────────────*/

.hero {
  position: relative;
  background-color: var(--tca-dark);
  color: #fff;
  padding: 6rem 1.5rem;
  overflow: hidden;
  text-align: center;
}
.hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.2; }
.hero p  { font-size: 1.1rem; color: #d1d5db; margin-top: 1.25rem; }
.hero-noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: soft-light;
  opacity: 0.2;
}

/* ── CTA button ──────────────────────────────────────────────────────────────*/

.tca-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--tca-green);
  color: #fff;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s;
  margin-top: 2rem;
}
.tca-cta:hover { background: var(--tca-dark); color: #fff; }
.tca-cta .arrow { transition: transform .2s; }
.tca-cta:hover .arrow { transform: translateX(4px); }

/* ── Stats ───────────────────────────────────────────────────────────────────*/

.stats-section { background: #f9fafb; padding: 3.5rem 1.5rem; }
.stats-grid    { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; text-align: center; }
@media (max-width: 575px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-value { font-size: 2.5rem; font-weight: 700; color: var(--tca-green); }
.stat-label { font-size: 0.875rem; color: var(--tca-text); margin-top: 4px; }

/* ── Section wrappers ────────────────────────────────────────────────────────*/

.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-inner--narrow { max-width: 800px; margin: 0 auto; }
.section-inner--mid    { max-width: 1000px; margin: 0 auto; }

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 0.75rem;
}
.section-subtitle {
  text-align: center;
  color: var(--tca-text);
  margin-bottom: 3rem;
}

/* ── Project cards ───────────────────────────────────────────────────────────*/

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.projects-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .projects-grid--4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px)  { .projects-grid--4 { grid-template-columns: 1fr; } }

.tca-project-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  border-top: 4px solid var(--tca-green);
  box-shadow: 0 1px 4px rgba(0,0,0,.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow .2s;
}
.tca-project-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.1); }

.tca-project-img { aspect-ratio: 1; overflow: hidden; }
.tca-project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; display: block; }
.tca-project-card:hover .tca-project-img img { transform: scale(1.05); }
.tca-project-img--empty {
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.tca-category-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--tca-green); }
.tca-project-title  { font-size: 0.95rem; font-weight: 700; color: #111; line-height: 1.3; margin: 4px 0; }
.tca-project-stats  { font-size: 0.78rem; color: var(--tca-text); margin-top: 8px; }
.tca-project-stats span { display: block; }
.tca-project-desc   { font-size: 0.78rem; color: var(--tca-text); line-height: 1.5; margin-top: 8px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.tca-project-links  { font-size: 0.8rem; padding-top: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
.tca-link-primary   { color: var(--tca-green); font-weight: 600; text-decoration: none; }
.tca-link-primary:hover   { color: var(--tca-dark); text-decoration: underline; }
.tca-link-secondary { color: var(--tca-secondary); font-weight: 500; text-decoration: none; }
.tca-link-secondary:hover { color: var(--tca-dark); text-decoration: underline; }

/* ── Filter buttons ──────────────────────────────────────────────────────────*/

.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 2.5rem; }
.filter-btn {
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--tca-border);
  background: #fff;
  color: var(--tca-secondary);
  cursor: pointer;
  transition: all .2s;
}
.filter-btn:hover,
.filter-btn.active { background: var(--tca-green); border-color: var(--tca-green); color: #fff; }

/* ── Testimonials ────────────────────────────────────────────────────────────*/

.testimonials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
@media (max-width: 767px) { .testimonials-grid { grid-template-columns: 1fr; } }

.tca-testimonial  { background: #fff; border-radius: 12px; padding: 2rem; border: 1px solid #f0f0f0; box-shadow: 0 1px 4px rgba(0,0,0,.05); }
.tca-stars        { color: #fbbf24; font-size: 1rem; }
.tca-quote        { font-style: italic; color: var(--tca-secondary); line-height: 1.75; margin: 1rem 0; position: relative; padding-left: 0.25rem; }
.tca-quote::before {
  content: '"';
  font-size: 5rem;
  color: var(--tca-green);
  opacity: .12;
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: -1.5rem;
  left: -0.25rem;
  pointer-events: none;
}
.tca-reviewer    { font-weight: 700; color: #111; font-size: 0.875rem; }
.tca-reviewer-co { color: var(--tca-text); font-size: 0.8rem; }

/* ── Project detail ──────────────────────────────────────────────────────────*/

.page-header    { background: var(--tca-dark); color: #fff; padding: 2.5rem 1.5rem; }
.page-header h1 { font-size: 2rem; font-weight: 700; margin: 0; }

.breadcrumb-bar  { background: #f9fafb; border-bottom: 1px solid #eee; padding: 0.75rem 1.5rem; }
.breadcrumb-bar nav { max-width: 1000px; margin: 0 auto; font-size: 0.875rem; color: var(--tca-text); }
.breadcrumb-bar a   { color: var(--tca-text); text-decoration: none; }
.breadcrumb-bar a:hover { color: var(--tca-green); }

.detail-layout      { max-width: 1000px; margin: 0 auto; padding: 3rem 1.5rem; display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
@media (max-width: 767px) { .detail-layout { grid-template-columns: 1fr; } }

.tca-prose p  { margin-bottom: 1rem; line-height: 1.7; }
.tca-prose h2 { font-size: 1.4rem; font-weight: 700; color: #111; margin: 2rem 0 0.75rem; }
.tca-prose ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.tca-prose ul li { margin-bottom: 0.5rem; }
.tca-prose a  { color: var(--tca-green); }
.tca-prose a:hover { color: var(--tca-dark); }

.tca-behind { background: rgba(62,163,123,.07); border-left: 3px solid var(--tca-green); padding: 1.25rem 1.5rem; border-radius: 0 8px 8px 0; margin: 1.5rem 0; }
.tca-behind p { margin: 0 0 0.5rem; }
.tca-behind p:last-child { margin-bottom: 0; }

.fact-sheet { background: #f9fafb; border-radius: 12px; padding: 1.5rem; border: 1px solid #eee; }
.fact-sheet h3 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--tca-text); margin-bottom: 1rem; }
.fact-sheet dl { margin: 0; }
.fact-sheet dt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--tca-text); margin-top: 1rem; }
.fact-sheet dt:first-of-type { margin-top: 0; }
.fact-sheet dd { font-size: 0.875rem; font-weight: 600; color: #111; margin-left: 0; }
.fact-sheet dd a { color: var(--tca-green); text-decoration: none; }
.fact-sheet dd a:hover { text-decoration: underline; }

.sidebar-links h3 { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--tca-text); margin-bottom: 0.75rem; }
.sidebar-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tca-secondary);
  text-decoration: none;
  margin-bottom: 8px;
  transition: all .2s;
}
.sidebar-link:hover { border-color: var(--tca-green); color: var(--tca-green); }
.sidebar-link svg { width: 14px; height: 14px; opacity: .35; flex-shrink: 0; }
.sidebar-link:hover svg { opacity: 1; }

/* ── Gallery + Lightbox ──────────────────────────────────────────────────────*/

.gallery-section { padding: 2.5rem 1.5rem; background: #f9fafb; }
.gallery-inner   { max-width: 1000px; margin: 0 auto; }
.gallery-section h2 { font-size: 1rem; font-weight: 600; color: var(--tca-secondary); margin-bottom: 1.25rem; }

.tca-gallery     { display: grid; gap: 12px; }
.tca-gallery-3   { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .tca-gallery-3 { grid-template-columns: repeat(3, 1fr); } }

.gallery-btn {
  display: block; overflow: hidden; border-radius: 8px;
  border: none; padding: 0; cursor: pointer; background: none;
  width: 100%;
}
.gallery-btn img {
  width: 100%; height: 160px; object-fit: cover;
  transition: transform .3s; display: block;
}
.gallery-btn:hover img { transform: scale(1.05); }

.tca-lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92); padding: 1rem;
  align-items: center; justify-content: center;
}
.tca-lightbox.open { display: flex; }
.lightbox-img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute; background: none; border: none; color: #fff;
  cursor: pointer; transition: color .2s; line-height: 1; padding: 8px;
}
.lightbox-close { top: 1rem; right: 1rem; }
.lightbox-prev  { left: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { color: #ccc; }
.lightbox-caption {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.6); font-size: 0.875rem; white-space: nowrap;
}

/* ── Work With Us ────────────────────────────────────────────────────────────*/

.service-card { background: #fff; border: 1px solid #f0f0f0; border-radius: 12px; padding: 2rem; box-shadow: 0 1px 4px rgba(0,0,0,.05); }
.service-card--accent { background: var(--tca-green); color: #fff; }
.service-card--accent .text-muted { color: rgba(255,255,255,.7) !important; }
.service-card--accent p, .service-card--accent li { color: rgba(255,255,255,.85); }
.service-card ul { margin-top: 1.5rem; padding-left: 0; list-style: none; }
.service-card ul li { margin-bottom: 0.5rem; font-size: 0.95rem; }
.service-price { font-size: 2rem; font-weight: 800; margin-top: 1.5rem; }
.service-card--accent .service-price { color: #fff; }
.service-card:not(.service-card--accent) .service-price { color: var(--tca-green); }

/* ── Page sections (work-with-us, contact) ───────────────────────────────────*/

.page-hero { background: var(--tca-green); color: #fff; padding: 5rem 1.5rem; text-align: center; }
.page-hero h1 { font-size: 2.5rem; font-weight: 800; }
.page-hero p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-top: 1rem; }

.tally-section { padding: 4rem 1.5rem; background: #f9fafb; }
.tally-inner   { max-width: 760px; margin: 0 auto; }
.tally-inner h2 { text-align: center; font-size: 1.75rem; font-weight: 700; color: #111; }
.tally-inner p  { text-align: center; color: var(--tca-text); margin-bottom: 2.5rem; }

/* ── Prose pages (privacy policy) ───────────────────────────────────────────*/

.prose-page { max-width: 760px; margin: 0 auto; padding: 3rem 1.5rem; }
.prose-page h1 { font-size: 2rem; font-weight: 700; color: #111; margin-bottom: 2rem; }
.prose-page h2 { font-size: 1.25rem; font-weight: 700; color: #111; margin: 2rem 0 1rem; }
.prose-page p, .prose-page li { line-height: 1.8; color: var(--tca-secondary); }
.prose-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-page a  { color: var(--tca-green); }

/* ── Playmat landing pages ───────────────────────────────────────────────────*/

.landing-body {
  background: radial-gradient(ellipse at top, #341660 0%, #1a0a33 50%, #0d0720 100%);
  background-attachment: fixed;
  color: #fff;
  min-height: 100vh;
}
.landing-footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,.3);
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 3rem;
}
.landing-footer a { color: #b08de8; text-decoration: none; }
.landing-footer a:hover { color: #d0b0ff; }

/* Carousel */
.playmat-carousel { position: relative; width: 100%; background: #0d0720; overflow: hidden; }
.playmat-slide {
  position: absolute; top: 0; left: 0; width: 100%;
  display: flex; justify-content: center; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s ease, visibility .4s;
  pointer-events: none;
}
.playmat-slide.active { position: relative; opacity: 1; visibility: visible; pointer-events: auto; }
.playmat-slide img   { max-width: 100%; max-height: 620px; object-fit: contain; display: block; }
.playmat-slide--cover { aspect-ratio: 3/1; }
.playmat-slide--cover .active { position: absolute; }
.playmat-slide--cover img { width: 100%; height: 100%; object-fit: cover; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.55); color: #fff; border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%; width: 44px; height: 44px;
  font-size: 1.5rem; cursor: pointer; z-index: 2; line-height: 44px; text-align: center;
  transition: background .2s, border-color .2s; padding: 0;
}
.carousel-btn:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); }
#carousel-prev { left: 16px; }
#carousel-next { right: 16px; }

.carousel-dots { position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.carousel-dot  {
  width: 7px; height: 7px; border-radius: 50%; border: none;
  cursor: pointer; background: rgba(255,255,255,.3);
  transition: background .25s, transform .25s; padding: 0;
}
.carousel-dot.active { background: #c9a227; transform: scale(1.3); }

/* Playmat content */
.playmat-content { max-width: 620px; margin: 0 auto; padding: 3.5rem 1.5rem 1.5rem; text-align: center; }
.gold-rule {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, #c9a227, transparent);
  margin: 0 auto 1.5rem; border: none; display: block;
}
.playmat-content h1 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2rem; font-weight: 600; color: #fff;
  line-height: 1.3; margin-bottom: 1.25rem;
}

.status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 100px; padding: 0.4rem 1rem;
  font-size: 0.9rem; margin-bottom: 2rem;
}
.status-badge--live    { background: rgba(62,163,123,.15); border: 1px solid rgba(62,163,123,.35); color: #7de8b8; }
.status-badge--ended   { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.65); }
.status-badge--soon    { background: rgba(201,162,39,.12); border: 1px solid rgba(201,162,39,.3); color: #f0d070; }

.badge-dot { width: 8px; height: 8px; border-radius: 50%; }
.badge-dot--live { background: #3EA37B; animation: live-pulse 2s ease-in-out infinite; }
.badge-dot--soon { background: #c9a227; animation: soon-pulse 2.5s ease-in-out infinite; }

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62,163,123,.6); }
  50%       { box-shadow: 0 0 0 5px rgba(62,163,123,0); }
}
@keyframes soon-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,162,39,.6); }
  50%       { box-shadow: 0 0 0 5px rgba(201,162,39,0); }
}

.playmat-cta {
  display: inline-block;
  background: #fff; color: #1e0a3c;
  font-weight: 700; padding: 0.85rem 2.4rem;
  border-radius: 6px; text-decoration: none; font-size: 1rem;
  animation: glow-pulse 3s ease-in-out infinite;
  transition: background .2s, color .2s, box-shadow .2s;
}
.playmat-cta:hover {
  background: #e0c8ff; color: #1e0a3c;
  box-shadow: 0 0 32px rgba(255,255,255,.3);
  animation: none;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,255,255,.15); }
  50%       { box-shadow: 0 0 32px rgba(255,255,255,.3); }
}

.playmat-form-section { border-top: 1px solid rgba(255,255,255,.1); padding-top: 2.5rem; margin-top: 2.5rem; }
.playmat-form-section p { color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 1.5rem; }
.playmat-privacy { margin-top: 1.25rem; font-size: 0.78rem; }
.playmat-privacy a { color: rgba(255,255,255,.3); text-decoration: underline; }
.playmat-privacy a:hover { color: rgba(255,255,255,.6); }

/* Playmat gallery */
.playmat-gallery { max-width: 960px; margin: 0 auto; padding: 1rem 1.5rem 3rem; }
.playmat-gallery-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.playmat-gallery-grid img { width: 100%; border-radius: 8px; display: block; transition: transform .3s, box-shadow .3s; }
.playmat-gallery-grid img:hover { transform: scale(1.02); box-shadow: 0 8px 32px rgba(0,0,0,.5); }

/* ── MailerLite form overrides (dark background) ─────────────────────────────*/

.ml-form-embedContainer, .ml-form-embedWrapper { all: unset; display: block; }
.ml-block-form, .ml-form-horizontalRow { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; width: 100%; }
.ml-input-horizontal { flex: 1; min-width: 220px; }
.ml-field-group input[type="email"] {
  width: 100%; padding: 0.75rem 1rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px; color: #fff; font-size: 0.95rem;
  outline: none; transition: border-color .2s;
}
.ml-field-group input[type="email"]::placeholder { color: rgba(255,255,255,.35); }
.ml-field-group input[type="email"]:focus { border-color: rgba(255,255,255,.5); }
.ml-button-horizontal button.primary {
  padding: 0.75rem 1.75rem; background: #fff; color: #1e0a3c;
  font-weight: 700; border: none; border-radius: 6px;
  cursor: pointer; font-size: 0.95rem; white-space: nowrap; transition: background .2s;
}
.ml-button-horizontal button.primary:hover { background: #e0c8ff; }
.ml-button-horizontal button.loading { display: none !important; }
.ml-mobileButton-horizontal { display: none; }
.ml-form-successBody { margin-top: 1rem; }
.ml-form-successContent h4 { color: #7de8b8; font-size: 1rem; margin-bottom: 0.25rem; }
.ml-form-successContent p  { color: rgba(255,255,255,.65); font-size: 0.875rem; }
input[type="hidden"] { display: none; }
