/* Rohkeusgeneraattori MVP - styles (dark + light theme) */
:root{
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0,0,0,0.18);
  --container: 1080px;
  --font: 'Raleway', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-heading: 'Raleway', ui-sans-serif, system-ui, sans-serif;
}

/* Dark theme */
html[data-theme="dark"]{
  --bg: #0b1220;
  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.10);
  --border: rgba(255,255,255,0.14);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --muted-2: rgba(255,255,255,0.58);
  --primary: #4da3ff;
  --primary-soft: rgba(77,163,255,0.18);
  --danger: #ff5c7a;
}

/* Light theme */
html[data-theme="light"]{
  --bg: #f5f7fc;
  --surface: #ffffff;
  --surface-2: #f1f4fb;
  --border: rgba(10,20,40,0.10);
  --text: rgba(10,20,40,0.92);
  --muted: rgba(10,20,40,0.70);
  --muted-2: rgba(10,20,40,0.55);
  --primary: #1f6fff;
  --primary-soft: rgba(31,111,255,0.14);
  --danger: #d30f3a;
  --shadow: 0 18px 40px rgba(15,23,42,0.08);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 500px at 20% 10%, var(--primary-soft), transparent 60%),
    radial-gradient(900px 700px at 70% 90%, rgba(61,220,151,0.10), transparent 60%),
    var(--bg);
  display: flex;
  flex-direction: column;
}
main{ flex: 1; }

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{ width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

.site-header{
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.0);
  border-bottom: 1px solid rgba(0,0,0,0.0);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding: 16px 0; gap: 16px; }

/* Logo – theme-aware (dark/light) */
.brand-logo{ display: flex; align-items: center; }
.logo{
  display: block;
  height: 140px;
  width: auto;
  max-width: 560px;
  object-fit: contain;
  margin-top: -18px;
}
.brand-logo .logo-light{ display: none; }
.brand-logo .logo-dark{ display: block; }
html[data-theme="light"] .brand-logo .logo-dark{ display: none; }
html[data-theme="light"] .brand-logo .logo-light{ display: block; }
.header-right{ display:flex; align-items:center; gap: 12px; }
#themeToggle{ width: 36px; height: 36px; padding: 0; border-radius: 50%; font-size: 16px; display:flex; align-items:center; justify-content:center; }
.header-links{ display:flex; gap: 14px; font-size: 13px; color: var(--muted); }

/* DEV font picker — piilotettu, koodi tallessa admin-siirtoa varten */
.dev-font-picker{ display:none; align-items:center; gap: 6px; }
.dev-label{ font-size: 10px; font-weight: 900; color: #ff5c7a; letter-spacing: 0.08em; }
.dev-font-picker select{ font-size: 12px; padding: 4px 6px; border-radius: 6px; border: 1px solid var(--border); background: var(--surface-2); color: var(--text); cursor: pointer; }

.hero{ padding: 60px 0 18px; }
.hero-grid{ display:grid; grid-template-columns: minmax(300px, 620px) 1fr; gap: 40px; align-items: start; }
.hero-title{ margin: 0 0 10px; font-size: clamp(26px, 3.2vw, 40px); letter-spacing: -0.02em; font-family: var(--font-heading); }
h1, h2{ font-family: var(--font-heading); }
.hero-lede{ margin: 0 0 18px; color: var(--muted); font-size: 15px; line-height: 1.5; max-width: 64ch; }

.card{ background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-card{ padding: 16px; }

/* Light theme hero panel */
html[data-theme="light"] .hero{
  background: #ffffff;
  border-radius: 0;
  box-shadow: 0 22px 50px rgba(15,23,42,0.10);
  margin-top: 0;
  padding: 60px 0 24px;
}
html[data-theme="light"] .form-card,
html[data-theme="dark"] .form-card{
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Light header */
html[data-theme="light"] .site-header{
  background: #ffffff;
  border-bottom: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 8px 24px rgba(15,23,42,0.05);
}

/* Light footer */
html[data-theme="light"] .site-footer{
  background: #ffffff;
  box-shadow: 0 -22px 50px rgba(15,23,42,0.10);
}

/* Light theme – form refinements */
html[data-theme="light"] textarea.input{
  background: transparent;
  border-color: rgba(10,20,40,0.12);
}
html[data-theme="light"] .form-card .field{
  margin-bottom: 8px;
}
html[data-theme="light"] .consent{
  margin-top: 14px;
}
html[data-theme="light"] .mini-card,
html[data-theme="dark"] .mini-card{
  background: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
html[data-theme="light"] .mini-title,
html[data-theme="dark"] .mini-title{
  display: none;
}
html[data-theme="light"] .mini-text,
html[data-theme="dark"] .mini-text{
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.4;
}
html[data-theme="light"] .input,
html[data-theme="dark"] .input{
  border-radius: 5px;
}
html[data-theme="light"] select.input,
html[data-theme="dark"] select.input{
  padding: 6px 10px;
}
html[data-theme="light"] .btn,
html[data-theme="dark"] .btn{
  border-radius: 5px;
}
html[data-theme="light"] .btn.small,
html[data-theme="dark"] .btn.small{
  border-radius: 4px;
}
html[data-theme="light"] .hero-title,
html[data-theme="dark"] .hero-title{
  margin-bottom: 2px;
}
html[data-theme="light"] .hero-lede,
html[data-theme="dark"] .hero-lede{
  margin-bottom: 28px;
}
html[data-theme="light"] #goBtn{
  background: #2957b3;
  color: #ffffff;
  border-color: #2957b3;
  padding: 9px 18px;
  font-size: 14px;
}
html[data-theme="light"] #goBtn:hover{
  background: #1f449a;
  filter: none;
}

/* Light theme – showcase cards */
html[data-theme="light"] .example-card,
html[data-theme="dark"] .example-card{
  border-radius: 8px;
}
html[data-theme="light"] .ctx,
html[data-theme="dark"] .ctx{
  position: absolute;
  top: 14px;
  right: 16px;
  margin: 0;
  border-radius: 6px;
}
html[data-theme="light"] .before span,
html[data-theme="light"] .after span,
html[data-theme="light"] .why span,
html[data-theme="dark"] .before span,
html[data-theme="dark"] .after span,
html[data-theme="dark"] .why span{ display: none; }
html[data-theme="light"] .before::before,
html[data-theme="dark"] .before::before{
  content: "Alkuperäinen:";
  display: block;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}
html[data-theme="light"] .after::before,
html[data-theme="dark"] .after::before{
  content: "Rohkeampi:";
  display: block;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: var(--primary);
  margin-bottom: 4px;
}
html[data-theme="light"] .why::before,
html[data-theme="dark"] .why::before{
  content: "Miksi tämä toimii:";
  display: block;
  font-weight: 700;
  font-style: normal;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}
html[data-theme="light"] .before,
html[data-theme="light"] .after,
html[data-theme="dark"] .before,
html[data-theme="dark"] .after{ font-style: italic; padding-left: 12px; }
html[data-theme="light"] .before,
html[data-theme="dark"] .before{ border-left: 3px solid var(--muted-2); }
html[data-theme="light"] .after,
html[data-theme="dark"] .after{ border-left: 3px solid var(--primary); }
html[data-theme="light"] .why,
html[data-theme="dark"] .why{ font-style: normal; padding-left: 12px; border-left: 3px solid var(--muted-2); }

.field{ display:block; margin-bottom: 12px; }
.label{ display:block; font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.input{
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 12px;
  outline: none;
  font-size: 14px;
  line-height: 1.4;
}
textarea.input{ resize: vertical; min-height: 88px; }
.input:focus{
  border-color: rgba(31,111,255,0.55);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.hint{ display:block; margin-top: 8px; font-size: 12px; color: var(--muted-2); }

.field-footer{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-top: 6px;
}
.field-footer .hint{ margin-top: 0; }
html[data-theme="light"] .field-footer{ margin-bottom: 20px; }

.row{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  align-items:center;
}

.field-inline-label{
  flex: 0 0 auto;
  min-width: 70px;
}
.field-inline-inputs{
  flex: 1 1 0;
}
.inline-selects{
  display:flex;
  gap: 8px;
}
.inline-selects .input{
  flex: 1 1 0;
}

.field-inline-label .label{
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0;
}

.ctx-tone-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
  align-items: start;
  margin-bottom: 12px;
}
.ctx-col, .tone-col{
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ctx-label{
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0;
}

.field-sentence .label{
  display:none;
}

.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;
}

.mini-card{
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}
.mini-title{ font-weight: 900; font-size: 12px; margin-bottom: 6px; color: var(--muted); }
.mini-text{ font-size: 12px; color: var(--muted); line-height: 1.4; }

.consent{
  display:flex; align-items:center; justify-content:flex-start; gap: 10px;
  margin-top: 4px; margin-bottom: 10px;
}
.consent-divider{
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--border);
  flex-shrink: 0;
}
.checkbox{ display:flex; gap: 10px; align-items:center; font-size: 13px; color: var(--muted); }
.checkbox input{ width: 16px; height: 16px; margin-top: 1px; }
.mini-links{ font-size: 12px; color: var(--muted-2); margin-top: 1px; }
.mini-links a{ color: var(--muted-2); }

.form-error{ min-height: 18px; color: var(--danger); font-size: 13px; margin: 6px 0 10px; }

.actions{ display:flex; gap: 10px; align-items:center; }
.btn{
  appearance:none;
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 800;
  cursor:pointer;
}
.btn:hover{ filter: brightness(1.03); }
.btn.primary{
  border-color: rgba(31,111,255,0.55);
  background: linear-gradient(180deg, rgba(31,111,255,0.18), var(--surface-2));
}
.btn.ghost{ background: transparent; }
.btn.small{ padding: 8px 10px; border-radius: 12px; font-size: 12px; font-weight: 800; }

.micro{ margin-top: 12px; font-size: 12px; color: var(--muted-2); line-height: 1.4; }

.result-card{ margin-top: 14px; padding: 14px 16px; }
.hidden{ display:none !important; }

.result-head{ display:flex; justify-content:space-between; gap: 12px; align-items:flex-start; margin-bottom: 10px; }
.result-title{ font-weight: 900; letter-spacing: -0.01em; }
.result-meta{ margin-top: 4px; font-size: 12px; color: var(--muted-2); }
.result-actions{ display:flex; gap: 8px; flex-wrap:wrap; }

.result-sentence{
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}
.result-why{
  margin: 10px 0 0;
  padding: 0 4px;
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.55;
}

.feedback{ display:flex; align-items:center; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pill{
  border: 1px solid var(--border);
  background: var(--surface-2);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  cursor:pointer;
  font-weight: 900;
  font-size: 12px;
}
.feedback-thanks{ color: var(--muted); font-size: 12px; }

.divider{ height: 1px; background: rgba(0,0,0,0.08); margin: 14px 0; }

.share-bar{ display:flex; align-items:center; gap:8px; margin-top:14px; }
.share-label{ font-size:0.8rem; color:var(--muted); font-weight:600; margin-right:4px; }
.share-btn{ background:none; border:1.5px solid var(--border); border-radius:8px; padding:6px 8px; cursor:pointer; color:var(--muted); display:flex; align-items:center; justify-content:center; transition:border-color 0.15s, color 0.15s; }
.share-btn svg{ width:18px; height:18px; }
.share-btn:hover{ border-color:var(--primary); color:var(--primary); }

.publish{ display:flex; align-items:center; gap: 10px; flex-wrap: wrap; }

.hero-right{ position: relative; }
.mascot-wrap{
  position: sticky;
  top: 96px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}
.mascot{
  width: min(320px, 100%);
  height: auto;
  margin-top: -56px;
  border-radius: 0;
  background: transparent;
  border: none;
  filter: drop-shadow(0 18px 40px rgba(15,23,42,0.25));
  order: 1;
}
.speech{
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  width: 280px;
  max-width: 100%;
  margin: 0;
  padding: 12px 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 24px rgba(15,23,42,0.12);
  order: 0;
}
html[data-theme="dark"] .speech{
  background: #111827;
  border-color: rgba(148,163,184,0.7);
  box-shadow: 0 16px 36px rgba(0,0,0,0.65);
}
.speech::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
  transform: translateX(-50%);
}
html[data-theme="dark"] .speech::after{
  border-color: rgba(148,163,184,0.7) transparent transparent transparent;
}
.speech-text{
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
  font-style: italic;
}
.speech-title{
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.showcase{ padding: 48px 0 26px; }
html[data-theme="light"] .showcase{ background: #ffffff; }
.section-head{ margin-bottom: 28px; }
.section-title{ margin: 0 0 6px; font-size: 22px; }
.section-lede{ margin: 0; color: var(--muted); font-size: 13px; }

.cards-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.example-card{ padding: 28px; position: relative; }
.ctx{
  display:inline-block;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary-soft);
  border: 1px solid rgba(31,111,255,0.22);
  margin-bottom: 10px;
  color: var(--muted);
}
.before{ font-size: 13px; line-height: 1.6; margin-bottom: 14px; margin-top: 40px; }
.after{ font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.why{ font-size: 12px; line-height: 1.6; margin-bottom: 14px; color: var(--muted); }
.before span,.after span,.why span{ display:inline-block; min-width: 64px; color: var(--muted); font-weight: 900; }
.entry-tag{ font-size: 11px; color: var(--muted-2); font-style: italic; }
.meta{ color: var(--muted-2); font-size: 12px; display:flex; align-items:center; gap:8px; }
.showcase-like-btn{ background:none; border:1.5px solid var(--border); border-radius:20px; padding:3px 10px; font-size:12px; cursor:pointer; color:var(--muted-2); transition:background 0.15s; }
.showcase-like-btn:hover:not(:disabled){ background:var(--surface-2); }
.showcase-like-btn:disabled{ opacity:0.5; cursor:default; }

.details{
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.details > summary{
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}
.details > summary::-webkit-details-marker{ display:none; }
.details-body{ margin-top: 10px; color: var(--muted); }
html[data-theme="light"] .details-body .why::before,
html[data-theme="dark"] .details-body .why::before{ display: none; }
html[data-theme="light"] .details-body .why span,
html[data-theme="dark"] .details-body .why span{ display: block; font-weight: 700; font-size: 14px; color: var(--muted); margin-bottom: 2px; }
.small{ color: var(--muted-2); font-size: 12px; }

.modal-overlay{ position:fixed; inset:0; background:rgba(0,0,0,0.85); z-index:1000; display:flex; align-items:flex-end; justify-content:center; padding:0; }
@media(min-width:600px){ .modal-overlay{ align-items:center; padding:24px; } }
.modal-overlay[hidden]{ display:none; }
.modal-box{ background:#1e1e2e; color:#f0f0f5; width:100%; max-width:560px; max-height:90vh; border-radius:16px 16px 0 0; overflow:hidden; display:flex; flex-direction:column; }
html[data-theme="light"] .modal-box{ background:#ffffff; color:#1a1a2e; }
@media(min-width:600px){ .modal-box{ border-radius:12px; } }
.modal-head{ display:flex; align-items:center; justify-content:space-between; padding:18px 20px 14px; border-bottom:1px solid var(--border); }
.modal-title{ font-weight:700; font-size:15px; }
.modal-close{ background:none; border:none; font-size:22px; cursor:pointer; color:var(--muted); line-height:1; padding:0 4px; }
.modal-body{ padding:20px; overflow-y:auto; font-size:13px; color:var(--muted); line-height:1.7; }
.modal-body p{ margin:0 0 12px; }
.modal-body p:last-child{ margin-bottom:0; }

.legal-body{ font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0 0 12px; }
.about-layout{ display: flex; align-items: center; gap: 40px; }
.about-niko{ flex-shrink: 0; width: 180px; }
.about-niko-img{ width: 100%; display: block; }
.about-text{ flex: 1; }
@media(max-width: 600px){
  .about-layout{ flex-direction: column; gap: 16px; }
  .about-niko{ width: 120px; margin: 0 auto; order: 2; }
  .about-text{ order: 1; }
}

.legal-sections{ margin-top: 32px; }
.legal-section{ border-top: 1px solid var(--border); }
.legal-section details{ padding: 14px 0; }
.legal-section summary{ cursor: pointer; font-weight: 700; font-size: 13px; color: var(--muted); list-style: none; }
.legal-section summary::-webkit-details-marker{ display: none; }
.legal-content{ margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.7; }
.legal-content p{ margin: 0 0 10px; }
.legal-content p:last-child{ margin-bottom: 0; }

/* Beta-palaute yläpalkissa */
.nav-sep{ color: var(--muted); user-select: none; opacity: 0.6; }
.header-bottom-row{ display: flex; align-items: center; gap: 8px; }

.site-footer{
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,0.0);
  margin-top: 26px;
  padding: 18px 0;
}
.footer-inner{ display:flex; justify-content:space-between; align-items:flex-start; gap: 14px; }
.footer-brand{ font-weight: 900; letter-spacing: 0.04em; font-size: 12px; }
.dot{ opacity: 0.5; }
.footer-note{ color: var(--muted); font-size: 12px; margin-top: 6px; }
.footer-right{ display:flex; gap: 14px; font-size: 12px; color: var(--muted); }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .mascot-wrap{
    position: static;
    top: auto;
    margin-top: 16px;
  }
  .speech{
    width: 260px;
    max-width: 90%;
  }
  .mascot{
    width: 190px;
  }
  .cards-grid{ grid-template-columns: repeat(2, 1fr); }
  .header-links{ display:none; }
}

.carousel-controls{
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.carousel-btn{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--text);
  padding: 0;
}
.carousel-btn:disabled{ opacity: 0.3; cursor: default; }
.carousel-hidden{ display: none !important; }

/* FAQ */
.faq-section{ padding: 48px 0 32px; }
.faq-list{ display: flex; flex-direction: column; gap: 8px; max-width: 720px; }
.faq-item{
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}
.faq-q{
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-q::-webkit-details-marker{ display: none; }
.faq-q::after{
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-q::after{ content: "−"; }
.faq-a{
  margin: 0;
  padding: 0 20px 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* Consent-banneri */
.consent-banner{
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 900;
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
}
.consent-banner[hidden]{ display: none; }
.consent-banner-text{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}
.consent-banner-text a{ color: var(--primary); }
.consent-banner-actions{ display: flex; gap: 8px; flex-shrink: 0; }

@media (max-width: 560px){
  .container{ width: min(var(--container), calc(100% - 26px)); }
  /* Header mobiilissa */
  .header-inner{ flex-direction: column; align-items: flex-start; gap: 6px; padding: 10px 0; }
  .brand-logo{ width: 100%; }
  .brand-logo .logo{ height: auto !important; width: 100%; max-width: 100%; max-height: 110px; margin-top: 0; object-fit: contain; object-position: left center; }
  .header-right{ width: 100%; justify-content: flex-end; }
  .header-bottom-row{ width: 100%; justify-content: space-between; }
  #openBetaFeedbackMobile{ width: auto; flex-shrink: 0; }
  #themeToggle{ width: auto; height: auto; border-radius: 6px; font-size: 12px; padding: 4px 10px; }
  .hero-title{ font-size: 22px; }
  /* Footer mobiilissa */
  .footer-inner{ flex-direction: column; gap: 0; }
  .footer-left{ margin-bottom: 10px; }
  .footer-note{ margin-top: 4px; }
  .footer-right{ flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--border); padding-top: 10px; }
  .row{
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }
  .field-inline-label .label{
    margin-bottom: 0;
  }
  .inline-selects{
    flex-direction: column;
  }
  .cards-grid{ grid-template-columns: 1fr; }
  .actions{ flex-direction: column; align-items: stretch; }
  .btn{ width: 100%; }
  .consent{ flex-direction: column; }
  .mascot{
    width: 180px;
    margin-top: -32px;
  }
}
