* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

:root {
  --bg: #FFF6E9;
  --card: #FFFFFF;
  --ink: #3B3024;
  --ink-soft: #8A7A66;
  --coral: #FF8A5C;
  --coral-dark: #E06A3C;
  --teal: #4EC9B0;
  --teal-dark: #2E9A85;
  --amber: #FFC24B;
  --amber-dark: #C98F1B;
  --purple: #B08CE8;
  --purple-dark: #8A63C4;
  --pink: #FF9EBB;
  --green: #7ECB6F;
  --green-dark: #4E9E41;
  --red-soft: #FFDAD1;
  --radius: 22px;
}

html, body {
  height: 100%;
  background: var(--bg);
  font-family: "SF Pro Rounded", ui-rounded, "Nunito", "Comic Sans MS", system-ui, sans-serif;
  color: var(--ink);
  -webkit-user-select: none;
  user-select: none;
  overscroll-behavior: none;
}

#app { max-width: 720px; margin: 0 auto; padding: 16px 16px 48px; min-height: 100%; }

button { font-family: inherit; color: inherit; border: none; background: none; cursor: pointer; }
button:active { transform: scale(0.96); }

.screen { animation: pop-in 0.25s ease; }
@keyframes pop-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.topbar { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.topbar .spacer { flex: 1; }

.chip {
  background: var(--card); border-radius: 999px; padding: 8px 14px;
  font-size: 16px; font-weight: 700; box-shadow: 0 2px 0 rgba(59,48,36,0.08);
  display: inline-flex; align-items: center; gap: 6px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius); font-size: 22px; font-weight: 800;
  padding: 16px 26px; color: #fff; background: var(--coral);
  box-shadow: 0 4px 0 var(--coral-dark); min-height: 60px;
}
.btn:active { box-shadow: 0 1px 0 var(--coral-dark); transform: translateY(3px); }
.btn.teal { background: var(--teal); box-shadow: 0 4px 0 var(--teal-dark); }
.btn.teal:active { box-shadow: 0 1px 0 var(--teal-dark); }
.btn.amber { background: var(--amber); box-shadow: 0 4px 0 var(--amber-dark); }
.btn.amber:active { box-shadow: 0 1px 0 var(--amber-dark); }
.btn.purple { background: var(--purple); box-shadow: 0 4px 0 var(--purple-dark); }
.btn.purple:active { box-shadow: 0 1px 0 var(--purple-dark); }
.btn.green { background: var(--green); box-shadow: 0 4px 0 var(--green-dark); }
.btn.green:active { box-shadow: 0 1px 0 var(--green-dark); }
.btn.ghost { background: var(--card); color: var(--ink); box-shadow: 0 3px 0 rgba(59,48,36,0.12); font-size: 18px; }
.btn.big { font-size: 26px; padding: 20px 34px; width: 100%; }
.btn.small { font-size: 16px; padding: 10px 16px; min-height: 44px; }

.card {
  background: var(--card); border-radius: var(--radius); padding: 20px;
  box-shadow: 0 3px 0 rgba(59,48,36,0.08); margin-bottom: 14px;
}

.title { font-size: 30px; font-weight: 900; }
.subtitle { font-size: 17px; color: var(--ink-soft); font-weight: 600; }

.mascot-big { font-size: 90px; line-height: 1; text-align: center; }

.mascot-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 16px auto; max-width: 460px; }
.mascot-pick {
  font-size: 44px; background: var(--card); border-radius: 18px;
  padding: 10px 12px; box-shadow: 0 3px 0 rgba(59,48,36,0.1); line-height: 1;
}
.mascot-pick.chosen { outline: 5px solid var(--teal); }

.path { display: flex; flex-direction: column; gap: 0; margin-top: 6px; }
.path-node {
  display: flex; align-items: center; gap: 16px; background: var(--card);
  border-radius: var(--radius); padding: 14px 18px; width: 100%; text-align: left;
  box-shadow: 0 3px 0 rgba(59,48,36,0.08); position: relative;
}
.path-node .ico { font-size: 40px; width: 52px; text-align: center; }
.path-node .nm { font-size: 21px; font-weight: 800; }
.path-node .mn { font-size: 14px; color: var(--ink-soft); font-weight: 700; }
.path-node .st { margin-left: auto; font-size: 30px; }
.path-node.done { background: #EAF8E4; }
.path-node.locked { opacity: 0.45; }
.path-node.now { outline: 4px solid var(--coral); animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100% { outline-color: var(--coral); } 50% { outline-color: var(--amber); } }
.path-link { width: 6px; height: 16px; background: #EAD9BF; margin: 0 0 0 42px; border-radius: 3px; }

.bigword {
  font-size: 64px; font-weight: 900; text-align: center; padding: 40px 10px;
  letter-spacing: 2px; word-break: break-word;
}

.two-btns { display: flex; gap: 14px; }
.two-btns .btn { flex: 1; }

.opt-list { display: flex; flex-direction: column; gap: 12px; }
.opt {
  background: var(--card); border-radius: var(--radius); padding: 16px 18px;
  font-size: 21px; font-weight: 700; text-align: left; width: 100%;
  box-shadow: 0 3px 0 rgba(59,48,36,0.1); border: 4px solid transparent;
}
.opt.right { border-color: var(--green); background: #EAF8E4; }
.opt.wrong { border-color: #E86A5E; background: var(--red-soft); animation: shake 0.35s; }
@keyframes shake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-7px); } 75% { transform: translateX(7px); } }

.emoji-opts { display: flex; gap: 14px; justify-content: center; }
.emoji-opt {
  font-size: 58px; background: var(--card); border-radius: var(--radius);
  padding: 18px 22px; box-shadow: 0 4px 0 rgba(59,48,36,0.1); border: 4px solid transparent;
}
.emoji-opt.right { border-color: var(--green); background: #EAF8E4; }
.emoji-opt.wrong { border-color: #E86A5E; background: var(--red-soft); animation: shake 0.35s; }

.story {
  font-size: 26px; line-height: 1.75; font-weight: 600; letter-spacing: 0.4px;
}
.story .w { border-radius: 8px; padding: 1px 2px; }
.story .w.reach { background: #D9F2EC; }

.speaker {
  width: 96px; height: 96px; border-radius: 50%; background: var(--coral);
  box-shadow: 0 5px 0 var(--coral-dark); font-size: 44px; color: #fff;
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.speaker:active { box-shadow: 0 1px 0 var(--coral-dark); transform: translateY(4px); }
.speaker.playing { animation: wob 0.6s infinite; }
@keyframes wob { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }

.tiles { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.tile {
  background: var(--teal); color: #fff; font-size: 40px; font-weight: 900;
  border-radius: 16px; padding: 12px 16px; box-shadow: 0 4px 0 var(--teal-dark);
}

.progress-dots { display: flex; gap: 8px; justify-content: center; margin: 10px 0; }
.pdot { width: 16px; height: 16px; border-radius: 50%; background: #EAD9BF; }
.pdot.on { background: var(--coral); }
.pdot.ok { background: var(--green); }

.center { text-align: center; }
.mt { margin-top: 16px; }
.mb { margin-bottom: 16px; }

.overlay {
  position: fixed; inset: 0; background: rgba(59,48,36,0.45);
  display: flex; align-items: center; justify-content: center; z-index: 50;
  animation: pop-in 0.2s;
}
.overlay .inner {
  background: var(--card); border-radius: 28px; padding: 30px 26px;
  text-align: center; max-width: 420px; width: 88%;
}
.sticker-burst { font-size: 84px; animation: burst 0.6s ease; }
@keyframes burst { 0% { transform: scale(0.2) rotate(-20deg); } 70% { transform: scale(1.2) rotate(6deg); } 100% { transform: scale(1); } }

.confetti { position: fixed; top: -40px; font-size: 30px; z-index: 60; animation: fall linear forwards; pointer-events: none; }
@keyframes fall { to { transform: translateY(110vh) rotate(360deg); } }

.memory-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.mem-card {
  aspect-ratio: 3/3.4; border-radius: 16px; background: var(--purple);
  box-shadow: 0 4px 0 var(--purple-dark); font-size: 30px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; color: #fff;
  padding: 4px; text-align: center; word-break: break-word;
}
.mem-card.open { background: var(--card); color: var(--ink); box-shadow: 0 4px 0 rgba(59,48,36,0.12); }
.mem-card.won { background: #EAF8E4; color: var(--ink); box-shadow: 0 4px 0 var(--green); }
.mem-card .q { font-size: 40px; }
.mem-word { font-size: 17px; }

.soup-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.soup-cell {
  aspect-ratio: 1; border-radius: 14px; background: var(--card); font-size: 28px;
  font-weight: 900; box-shadow: 0 3px 0 rgba(59,48,36,0.1);
  display: flex; align-items: center; justify-content: center;
}
.soup-cell.got { background: var(--amber); }
.soup-cell.no { animation: shake 0.3s; }

.blanks { display: flex; gap: 8px; justify-content: center; }
.blank {
  min-width: 44px; height: 56px; border-bottom: 5px solid var(--ink-soft);
  font-size: 36px; font-weight: 900; text-align: center; line-height: 56px; padding: 0 4px;
}

.chips-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.word-chip {
  background: var(--card); border-radius: 999px; padding: 12px 18px; font-size: 21px;
  font-weight: 800; box-shadow: 0 3px 0 rgba(59,48,36,0.12);
}
.word-chip.used { opacity: 0.25; pointer-events: none; }
.word-chip.no { animation: shake 0.3s; background: var(--red-soft); }
.built { font-size: 24px; font-weight: 800; min-height: 40px; text-align: center; }

.timer-bar { height: 14px; background: #EAD9BF; border-radius: 7px; overflow: hidden; }
.timer-fill { height: 100%; background: var(--teal); border-radius: 7px; transition: width 1s linear; }

.stat-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.stat-table td, .stat-table th { padding: 7px 6px; border-bottom: 1px solid #F0E5D2; text-align: left; }
.stat-table th { color: var(--ink-soft); font-size: 13px; }
.stat-table td.num { text-align: right; font-weight: 800; }

.sticker-grid { display: flex; flex-wrap: wrap; gap: 8px; font-size: 40px; }

.gear { font-size: 22px; opacity: 0.5; padding: 8px; }

.world-chip { font-size: 14px; font-weight: 800; padding: 5px 12px; border-radius: 999px; display: inline-block; }
.world-dieren { background: #EAF8E4; color: var(--green-dark); }
.world-magie { background: #F1E8FD; color: var(--purple-dark); }
.world-sport { background: #FFEFD6; color: var(--amber-dark); }

.parent-note { font-size: 15px; color: var(--ink-soft); background: #FBF0DD; border-radius: 14px; padding: 10px 14px; font-weight: 600; }

@media (max-width: 430px) {
  .bigword { font-size: 46px; }
  .story { font-size: 22px; }
  .mascot-pick { font-size: 48px; }
}

/* ---- v2: profiles, levels, rewards, typed dictee ---- */
.mascot-btn { background: none; border: none; padding: 0; line-height: 1; }
.reward-row { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.reward-chip {
  background: var(--card); border-radius: 999px; padding: 7px 13px; font-size: 15px;
  font-weight: 800; box-shadow: 0 2px 0 rgba(59,48,36,0.1); border: none;
}

.prof-list, .level-list { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 420px; margin: 0 auto; }
.prof-card, .level-card {
  display: flex; align-items: center; gap: 12px; background: var(--card);
  border-radius: var(--radius); padding: 14px 16px; width: 100%; text-align: left;
  box-shadow: 0 4px 0 rgba(59,48,36,0.1); border: 3px solid transparent;
}
.prof-card:active, .level-card:active { transform: translateY(2px); box-shadow: 0 2px 0 rgba(59,48,36,0.1); }
.prof-naam { font-size: 20px; font-weight: 800; flex: 1; }
.prof-sub { font-size: 13px; color: var(--ink-soft); font-weight: 700; }
.level-card .prof-naam { flex: none; }
.level-card .prof-sub { margin-left: auto; }
.level-card.lvl1 { border-color: var(--green); }
.level-card.lvl2 { border-color: var(--amber); }
.level-card.lvl3 { border-color: var(--purple); }

.name-input, .dictee-input {
  font-family: inherit; font-size: 26px; font-weight: 800; text-align: center;
  padding: 14px 16px; border-radius: 16px; border: 3px solid var(--amber);
  background: var(--card); color: var(--ink); width: 100%; max-width: 340px; outline: none;
}
.name-input:focus, .dictee-input:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,138,92,0.2); }
.gat { color: var(--coral-dark); font-weight: 900; letter-spacing: 2px; }

.reis-path { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 3px; margin: 6px 0; }
.reis-stop { font-size: 18px; color: #C9B79A; }
.reis-stop.on { color: var(--amber-dark); }
.reis-line { width: 12px; height: 4px; background: #EAD9BF; border-radius: 2px; }
.reis-line.on { background: var(--amber); }

.medal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(88px, 1fr)); gap: 10px; }
.medal { text-align: center; background: #FBF0DD; border-radius: 14px; padding: 10px 6px; }
.medal.off { opacity: 0.45; }
.medal-n { font-size: 12px; font-weight: 700; color: var(--ink-soft); margin-top: 2px; }

/* ---- sentence dictee ---- */
.dictee-area {
  font-family: inherit; font-size: 22px; font-weight: 700; line-height: 1.5;
  padding: 12px 14px; border-radius: 16px; border: 3px solid var(--amber);
  background: var(--card); color: var(--ink); width: 100%; max-width: 460px;
  outline: none; resize: none; text-align: center;
}
.dictee-area:focus { border-color: var(--coral); box-shadow: 0 0 0 4px rgba(255,138,92,0.2); }
.dictee-check { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 6px; }
.dw {
  font-size: 22px; font-weight: 800; border-radius: 12px; padding: 8px 12px;
  display: inline-flex; flex-direction: column; align-items: center; line-height: 1.15;
}
.dw.ok { background: #EAF8E4; color: var(--green-dark); }
.dw.bad { background: var(--red-soft); color: #B44339; }
.dw-typed { font-size: 12px; font-weight: 600; color: #9A5A4E; margin-top: 2px; text-decoration: line-through; }
/* word-by-word sentence builder */
.dictee-strip { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 12px 0 2px; }
.dw.cur { background: var(--card); border: 2px dashed var(--coral); color: var(--ink); min-width: 46px; }
.dw.todo { background: #EFEAE1; color: #C9BCA8; letter-spacing: 2px; }
.dictee-strip .dw.pop { animation: wpop 0.5s ease; }

/* ---- reward bar (home) + reward page ---- */
.reward-bar {
  display: flex; align-items: center; gap: 10px; width: 100%;
  background: var(--card); border-radius: 999px; padding: 10px 16px;
  box-shadow: 0 3px 0 rgba(59,48,36,0.1); font-weight: 800; font-size: 15px;
}
.reward-bar:active { transform: translateY(2px); box-shadow: 0 1px 0 rgba(59,48,36,0.1); }
.rb-left { font-weight: 800; }
.rb-stat { margin-left: auto; }
.rb-stat + .rb-stat { margin-left: 0; }
.rb-go { margin-left: 4px; font-size: 22px; color: var(--ink-soft); }

.reis-hero { text-align: center; padding: 8px 0 4px; }
.reis-castle-goal { font-size: 20px; font-weight: 800; }
.reis-bar {
  height: 20px; background: #EFE3CC; border-radius: 999px; margin: 14px auto 8px;
  max-width: 460px; overflow: hidden; position: relative;
}
.reis-fill { height: 100%; background: var(--amber); border-radius: 999px; transition: width .4s ease; min-width: 20px; }
.reis-stat { font-size: 15px; color: var(--ink-soft); font-weight: 700; }

.medal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); gap: 12px; margin-top: 18px; }
.medal { text-align: center; background: var(--card); border-radius: 16px; padding: 14px 8px; box-shadow: 0 3px 0 rgba(59,48,36,0.08); }
.medal-e { font-size: 40px; line-height: 1; }
.medal.locked { opacity: 1; }
.medal.locked .medal-e { filter: grayscale(1); opacity: 0.28; }
.medal.locked .medal-n { color: #C3B49B; }
.medal.got { background: #FFF6E0; }
.medal-n { font-size: 12px; font-weight: 700; color: var(--ink-soft); margin-top: 6px; }

/* ---- reis: adventure map + sticker sheets ---- */
.reis-map-card { text-align: center; }
.reis-goal { font-size: 19px; font-weight: 800; color: var(--ink); }
.reis-stat { font-size: 15px; color: var(--ink-soft); font-weight: 700; margin-top: 8px; }
.reis-cur { animation: pulse-stroke 1.4s infinite; }
@keyframes pulse-stroke { 0%,100% { stroke-opacity: 1; } 50% { stroke-opacity: 0.35; } }
.sheet-title { font-size: 18px; font-weight: 800; color: var(--ink); }
.sheet-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.sticker-sheet { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.sticker-slot {
  aspect-ratio: 1; border-radius: 14px; background: #FBF3E4; border: 2px dashed #E3D3B4;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.sticker-slot.filled { background: #FFF6E0; border: 2px solid var(--amber); }
.sticker-slot .ss-ico { opacity: 0.3; filter: grayscale(1); font-size: 0.82em; }
.sticker-slot.filled .ss-e { animation: wpop 0.5s ease; }
.sheet-foot { font-size: 14px; color: var(--ink-soft); font-weight: 700; margin-top: 10px; text-align: center; }
.past-sheet { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.past-label { font-size: 13px; font-weight: 800; color: var(--ink-soft); min-width: 46px; }
.past-sheet .sticker-sheet { flex: 1; gap: 5px; }
.past-sheet .sticker-slot { border-radius: 10px; font-size: 17px; border-width: 2px; }

/* ---- reis: alle dagen grid ---- */
.daygrid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.daytile {
  aspect-ratio: 1; min-height: 48px; border-radius: 14px; font-weight: 800;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px;
  box-shadow: 0 3px 0 rgba(59,48,36,0.08);
}
.daytile .dt-num { font-size: 18px; line-height: 1; }
.daytile .dt-ic { font-size: 13px; line-height: 1; }
.daytile.done { background: #EAF8E4; color: var(--green-dark); }
.daytile.now { background: var(--card); color: var(--coral-dark); outline: 3px solid var(--coral); animation: pulse 1.4s infinite; }
.daytile.lock { background: #FBF3E4; color: #C9B79A; box-shadow: none; }
.daytile.lock .dt-ic { filter: grayscale(1); opacity: 0.6; }
.daytile:not(.lock):active { transform: translateY(2px); box-shadow: 0 1px 0 rgba(59,48,36,0.08); }

/* ---- home: replay/practice banner ---- */
.replay-banner { background: #FFF6E0; border: 2px solid var(--amber); }

/* ---- parent corner: tiles + focus bars ---- */
.stat-tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 12px; }
.stat-tile { background: #FBF0DD; border-radius: 16px; padding: 14px 8px; text-align: center; }
.stat-tile .st-e { font-size: 22px; }
.stat-tile .st-num { font-size: 24px; font-weight: 900; color: var(--ink); line-height: 1.1; margin-top: 2px; }
.stat-tile .st-lbl { font-size: 12px; font-weight: 700; color: var(--ink-soft); margin-top: 3px; }
.focus-row { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.focus-lbl { font-size: 14px; font-weight: 700; color: var(--ink); flex: 1; min-width: 0; }
.focus-track { flex: 0 0 84px; height: 10px; border-radius: 999px; background: #F0E5D2; overflow: hidden; }
.focus-bar { display: block; height: 100%; background: var(--coral); border-radius: 999px; }
.focus-n { font-size: 13px; font-weight: 800; color: var(--ink-soft); min-width: 40px; text-align: right; }
.chip-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
.chip-word { display: inline-block; background: #FBF0DD; border-radius: 999px; padding: 5px 11px; font-size: 14px; font-weight: 700; }
.section-label { font-size: 13px; font-weight: 800; color: var(--ink-soft); margin: 20px 4px 0; text-transform: uppercase; letter-spacing: 0.5px; }

/* ---- shared game head ---- */
.game-head { display: flex; justify-content: center; gap: 10px; margin-bottom: 12px; }
@keyframes wpop { 0% { transform: scale(1); } 50% { transform: scale(1.35); } 100% { transform: scale(1); } }

/* ---- woordballonnen ---- */
.balloon-field { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; padding: 6px 0 22px; }
.balloon {
  position: relative; width: 132px; min-height: 128px; padding: 10px 8px;
  border-radius: 48% 48% 48% 48% / 42% 42% 58% 58%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 25px; line-height: 1.1;
  box-shadow: inset -9px -9px 0 rgba(0,0,0,0.08), 0 6px 0 rgba(59,48,36,0.14);
}
.balloon .balloon-txt { word-break: break-word; text-align: center; padding: 0 4px; }
.balloon .balloon-knot {
  position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0; border-left: 7px solid transparent; border-right: 7px solid transparent;
  border-top: 11px solid rgba(0,0,0,0.14);
}
.balloon:active { transform: translateY(3px) scale(0.97); }
.b-coral { background: var(--coral); } .b-teal { background: var(--teal); } .b-amber { background: var(--amber); }
.b-purple { background: var(--purple); } .b-green { background: var(--green); } .b-pink { background: var(--pink); }
.balloon.pop { animation: balloon-pop 0.5s ease forwards; pointer-events: none; }
@keyframes balloon-pop { 0% { transform: scale(1); } 40% { transform: scale(1.28); } 100% { transform: scale(0.15); opacity: 0; } }
.balloon.wobble { animation: balloon-wob 0.5s ease; }
@keyframes balloon-wob { 0%,100% { transform: rotate(0); } 20% { transform: rotate(-7deg); } 40% { transform: rotate(6deg); } 60% { transform: rotate(-5deg); } 80% { transform: rotate(3deg); } }
.balloon.show { box-shadow: 0 0 0 5px var(--green), inset -9px -9px 0 rgba(0,0,0,0.08), 0 6px 0 rgba(59,48,36,0.14); }

/* ---- extra stickers shelf (reis) ---- */
.extras-shelf { display: flex; flex-wrap: wrap; gap: 10px; }
.extra-sticker { font-size: 38px; line-height: 1; }

/* ---- welcome / landing page ---- */
.welkom-hero { text-align: center; padding: 14px 8px 4px; }
.welkom-sun { font-size: 78px; line-height: 1; }
.welkom-title { font-size: 34px; font-weight: 900; margin-top: 4px; }
.welkom-tag { font-size: 18px; font-weight: 700; color: var(--ink-soft); margin-top: 8px; }
.welkom-cta { display: flex; max-width: 340px; margin: 20px auto 0; }
.welkom-tabs { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin: 24px 0 12px; }
.wtab {
  background: var(--card); border-radius: 999px; padding: 10px 15px;
  font-size: 15px; font-weight: 800; color: var(--ink-soft);
  box-shadow: 0 2px 0 rgba(59,48,36,0.1); border: 3px solid transparent;
}
.wtab.on { color: var(--ink); background: #FFF6E0; border-color: var(--coral); }
.welkom-panelwrap { min-height: 220px; }
.wpanel { display: none; }
.wpanel.show { display: block; animation: pop-in 0.2s ease; }
.welkom-p { font-size: 17px; font-weight: 600; line-height: 1.6; color: var(--ink); margin-bottom: 12px; }
.welkom-p:last-child { margin-bottom: 0; }
.welkom-p b { font-weight: 900; color: var(--coral-dark); }
.welkom-list { list-style: none; margin: 2px 0 12px; padding: 0; }
.welkom-list li { font-size: 18px; font-weight: 800; padding: 10px 4px; border-bottom: 1px solid #F0E5D2; }
.welkom-list li:last-child { border-bottom: none; }
.welkom-steps { margin: 2px 0 12px; padding-left: 26px; }
.welkom-steps li { font-size: 17px; font-weight: 700; line-height: 1.5; margin-bottom: 8px; }
