:root {
  --a: #2F684D;
  --bg: #F5F1E8;
  --card: #FFFDF8;
  --ink: #26362F;
  --muted: #708078;
  --line: #dfe3d9;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Noto Sans TC", system-ui, -apple-system, sans-serif;
  line-height: 1.5;
  min-height: 100dvh;
}
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; touch-action: manipulation; }
img { max-width: 100%; display: block; }

.hh {
  width: 100%;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  padding: 20px 22px calc(80px + var(--safe-bottom));
}
.shell { max-width: 1160px; margin: auto; }

/* Top bar */
.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 2px 24px;
  gap: 12px;
}
.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  font-weight: 900;
  min-width: 0;
}
.brand img {
  width: 44px; height: 44px;
  object-fit: cover;
  border-radius: 14px;
  background: #111027;
  box-shadow: 0 5px 16px #4f46e533;
  flex: none;
}
.brand small {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.actions {
  display: flex;
  gap: 9px;
  align-items: center;
  flex: none;
}
.lang {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: 9px 12px;
  min-height: 44px;
  color: var(--ink);
  font-weight: 800;
}
.privacy { font-size: 11px; color: var(--muted); }
.icon-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
  flex: none;
}

/* Hero */
.hero {
  min-height: 245px;
  border-radius: 30px;
  padding: 42px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: linear-gradient(120deg, #dfe9da, #edf0dc 56%, #f1ddc5);
  overflow: hidden;
}
.kicker {
  margin: 0 0 6px;
  color: var(--a);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(34px, 5vw, 57px);
  line-height: 1.14;
  letter-spacing: -.04em;
  margin: 0;
  max-width: 700px;
}
.hero p { max-width: 620px; color: #56665d; margin: 10px 0 0; }
.score {
  flex: 0 0 148px;
  height: 148px;
  border-radius: 50%;
  background: #fffdf8c7;
  border: 1px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score b { font-size: 38px; line-height: 1; }
.score span { font-size: 11px; color: var(--muted); }

/* Metrics */
.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0 52px;
}
.metric {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 17px;
  min-height: 72px;
}
.metric i { font-style: normal; font-size: 24px; flex: none; }
.metric small { display: block; color: var(--muted); }
.plus {
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--a);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  flex: none;
}

/* Headings & cards */
.heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 0 0 16px;
  gap: 12px;
}
.heading h2, .dozen h2 { font-size: 28px; margin: 0; }
.heading span { font-size: 12px; color: var(--muted); white-space: nowrap; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 44px #31433812;
}

/* Form */
.form { padding: 28px; }
.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  background: #ecebe3;
  padding: 5px;
  border-radius: 14px;
  margin-bottom: 24px;
}
.tabs button, .chip, .feel, .counter button, .pill, .preset-chip {
  border: 1px solid var(--line);
  background: #faf9f4;
  color: var(--ink);
  border-radius: 10px;
  padding: 10px;
  min-height: 44px;
}
.tabs button.on, .chip.on, .feel.on, .pill.on {
  background: #e2ece3;
  color: var(--a);
  font-weight: 800;
}
.label { font-size: 13px; font-weight: 800; display: block; }
.input {
  width: 100%;
  margin: 8px 0 22px;
  padding: 14px;
  border-radius: 13px;
  border: 1px solid var(--line);
  background: #faf9f4;
  font: inherit;
  min-height: 48px;
}
.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 9px 0 22px;
}
.chip { border-radius: 999px; }
.feelings {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
  margin: 9px 0 16px;
}
.feel span { display: block; font-size: 23px; }
.feel { font-size: 11px; }
.sensations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.pill {
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
}
.pill.pos.on { background: #e2ece3; color: var(--a); }
.pill.obs.on { background: #f3ebe0; color: #8a5a2b; }
.save {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: var(--a);
  color: #fff;
  padding: 14px 18px;
  font-weight: 800;
  min-height: 48px;
}

/* Insight */
.insight {
  display: flex;
  gap: 18px;
  padding: 24px 28px;
  margin: 22px 0 52px;
}
.spark {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--a);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 23px;
  flex: none;
}
.insight h3 { margin: 0; }
.insight p { margin: 3px 0; color: var(--muted); }

/* Dozen / Daily 12 */
.dozen { margin-bottom: 52px; }
.dozenHead {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 17px;
}
.dozenCopy { max-width: 730px; }
.dozenCopy > p:last-child { color: var(--muted); font-size: 12px; }
.progress {
  flex: 0 0 106px;
  height: 106px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--a) calc(var(--p) * 1%), #dfe5dc 0);
  position: relative;
}
.progress::after {
  content: "";
  position: absolute;
  inset: 8px;
  background: var(--bg);
  border-radius: 50%;
}
.progress div { z-index: 1; text-align: center; }
.progress small { display: block; font-size: 9px; }

/* Presets bar */
.presets-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  padding: 12px 14px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.presets-bar .label-inline {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  margin-right: 4px;
}
.preset-chip {
  border-radius: 999px;
  padding: 8px 14px;
  background: #e8f0ea;
  border-color: #c5d9cb;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
}
.preset-chip .x {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 4px;
  min-height: auto;
  font-size: 14px;
  line-height: 1;
}
.btn-ghost {
  border: 1px dashed var(--line);
  background: transparent;
  border-radius: 999px;
  padding: 8px 14px;
  min-height: 44px;
  font-size: 13px;
  font-weight: 700;
  color: var(--a);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}
.health {
  background: var(--card);
  border: 2px solid var(--item);
  border-radius: 19px;
  padding: 15px;
  position: relative;
}
.health.done { background: color-mix(in srgb, var(--item) 9%, var(--card)); }
.healthTop { display: flex; justify-content: space-between; align-items: flex-start; }
.healthIcon { font-size: 28px; }
.check {
  width: 24px; height: 24px;
  border: 2px solid var(--item);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12px;
}
.done .check { background: var(--item); }
.health h3 {
  font-size: 17px;
  margin: 7px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-btn {
  width: 28px; height: 28px;
  min-width: 28px;
  border: 1px solid var(--line);
  background: #faf9f4;
  border-radius: 50%;
  font-size: 12px;
  color: var(--muted);
  padding: 0;
  display: inline-grid;
  place-items: center;
  flex: none;
}
.example {
  min-height: 34px;
  font-size: 10px;
  color: var(--muted);
  margin: 4px 0 10px;
}
.counter {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  text-align: center;
  gap: 5px;
}
.counter button {
  height: 44px;
  width: 44px;
  padding: 0;
  font-size: 18px;
}

/* Charts */
.charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.chart { padding: 22px; }
.chart h3 { margin: 0; }
.chart > p { font-size: 11px; color: var(--muted); }
.bars {
  height: 165px;
  display: flex;
  gap: 8px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}
.barwrap {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 7px;
}
.bar {
  width: min(26px, 65%);
  min-height: 3px;
  background: var(--a);
  border-radius: 8px 8px 2px 2px;
}
.bar.feelbar { background: #d29070; }
.day { font-size: 10px; color: var(--muted); }

.week-insight {
  margin: 14px 0 0;
  padding: 16px 18px;
  background: linear-gradient(120deg, #e8f0ea, #f5efe4);
  border-radius: 16px;
  border: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink);
}
.week-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 0;
}
.btn-secondary {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 14px;
  padding: 12px 16px;
  min-height: 44px;
  font-weight: 700;
  color: var(--a);
}

/* History */
.history { margin-top: 46px; }
.list { display: grid; gap: 9px; }
.entry {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 15px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 15px;
}
.entry h4 { margin: 0; }
.entry p, .entry small { margin: 2px 0; color: var(--muted); font-size: 11px; }
.entry .sens-tags { margin-top: 4px; }
.entry .sens-tag {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e8f0ea;
  color: var(--a);
  margin-right: 4px;
}
.empty, .note { text-align: center; color: var(--muted); }
.empty {
  padding: 32px;
  border: 1px dashed #c9cbbf;
  border-radius: 17px;
}
.note { margin-top: 30px; font-size: 11px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-links button {
  border: 0;
  background: transparent;
  color: var(--a);
  font-weight: 700;
  font-size: 13px;
  text-decoration: underline;
  min-height: 44px;
  padding: 8px 12px;
}

.toast {
  position: fixed;
  bottom: calc(18px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 32px);
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  padding: 10px 17px;
  z-index: 100;
  box-shadow: 0 8px 24px #0003;
  animation: fadein .2s ease;
}
@keyframes fadein { from { opacity: 0; transform: translateX(-50%) translateY(8px); } to { opacity: 1; transform: translateX(-50%); } }

/* A2HS banner */
.a2hs {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--a);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  margin-bottom: 16px;
  font-size: 13px;
}
.a2hs button {
  border: 0;
  background: #fff2;
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  min-height: 36px;
  margin-left: auto;
}

/* Modals / sheets */
.overlay {
  position: fixed;
  inset: 0;
  background: #26362f66;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  animation: fadein-bg .2s ease;
}
@keyframes fadein-bg { from { opacity: 0; } to { opacity: 1; } }
.overlay.center { align-items: center; }
.sheet, .modal {
  background: var(--card);
  border-radius: 24px 24px 20px 20px;
  width: 100%;
  max-width: 480px;
  max-height: min(85dvh, 640px);
  overflow: auto;
  padding: 24px 22px calc(24px + var(--safe-bottom));
  box-shadow: 0 24px 60px #0003;
  animation: slideup .25s ease;
}
@keyframes slideup { from { transform: translateY(24px); opacity: 0; } to { transform: none; opacity: 1; } }
.overlay.center .modal { border-radius: 24px; animation: pop .2s ease; }
@keyframes pop { from { transform: scale(.96); opacity: 0; } to { transform: none; opacity: 1; } }
.sheet h3, .modal h3 { margin: 0 0 8px; font-size: 20px; }
.sheet .cheat-list { margin: 12px 0 0; padding: 0; list-style: none; }
.sheet .cheat-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  display: flex;
  gap: 10px;
}
.sheet .cheat-list li:last-child { border-bottom: 0; }
.sheet .cheat-list .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--item, var(--a));
  margin-top: 7px;
  flex: none;
}
.sheet-close, .modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 40px; height: 40px;
  border: 0;
  background: #f0eee6;
  border-radius: 50%;
  font-size: 18px;
}
.sheet, .modal { position: relative; }
.modal .row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.modal .row button, .modal .danger {
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #faf9f4;
  font-weight: 700;
  padding: 12px 16px;
}
.modal .row .primary {
  background: var(--a);
  color: #fff;
  border: 0;
}
.modal .danger { color: #a33; border-color: #e8c8c8; background: #fdf6f6; }
.modal p.hint { font-size: 12px; color: var(--muted); margin: 8px 0 0; }
.modal input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #faf9f4;
  min-height: 48px;
  margin-top: 8px;
}
.replace-list { display: grid; gap: 8px; margin-top: 12px; }
.replace-list button {
  text-align: left;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #faf9f4;
  min-height: 48px;
}

@media (max-width: 700px) {
  .hh { padding: 14px 12px calc(56px + var(--safe-bottom)); }
  .privacy { display: none; }
  .hero { padding: 28px 22px; }
  .hero h1 { font-size: 35px; }
  .score { width: 112px; height: 112px; flex-basis: 112px; }
  .score b { font-size: 30px; }
  .metrics, .charts { grid-template-columns: 1fr; }
  .metrics { margin-bottom: 40px; }
  .form { padding: 17px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .health { padding: 12px; }
  .dozenHead { align-items: center; }
  .progress { width: 82px; height: 82px; flex-basis: 82px; }
  .heading h2, .dozen h2 { font-size: 22px; }
  .feel { font-size: 10px; padding: 8px 4px; }
  .entry { grid-template-columns: 70px 1fr auto; gap: 10px; padding: 12px; }
}

/* ===== Mobile-first card hub ===== */
.hub-hero {
  margin: 0 0 18px;
  padding: 8px 4px 4px;
}
.hub-hero h1 {
  font-size: clamp(26px, 6.5vw, 34px);
  line-height: 1.2;
  letter-spacing: -.03em;
  margin: 0;
  max-width: 18em;
}
.hub-hero-sub {
  color: var(--muted);
  margin: 8px 0 0;
  font-size: 14px;
  max-width: 34em;
}

.hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hub-card {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px 14px;
  width: 100%;
  text-align: left;
  border: 1px solid #ffffffaa;
  border-radius: 22px;
  padding: 18px 16px;
  min-height: 88px;
  box-shadow: 0 12px 32px #31433814;
  transition: transform .15s ease, box-shadow .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.hub-card:active { transform: scale(.985); }
.hub-emoji {
  font-size: 28px;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: #fffdf8cc;
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: 0 2px 8px #0001;
}
.hub-body { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.hub-title {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -.02em;
  color: var(--ink);
}
.hub-sub {
  font-size: 12px;
  color: #56665d;
  line-height: 1.35;
}
.hub-chip {
  font-size: 11px;
  font-weight: 800;
  color: var(--a);
  background: #fffdf8e6;
  border: 1px solid #ffffffcc;
  border-radius: 999px;
  padding: 6px 10px;
  white-space: nowrap;
  max-width: 9.5em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hub-arrow {
  font-size: 22px;
  color: #56705f;
  opacity: .55;
  font-weight: 300;
  line-height: 1;
}

/* Soft unique gradients (晚安十點 vibe) */
.g-sage, .hub-card.g-sage { background: linear-gradient(135deg, #e4efdf 0%, #edf3e6 55%, #f3e9d8 100%); }
.g-peach, .hub-card.g-peach { background: linear-gradient(135deg, #f5e6d8 0%, #f3ebe0 50%, #efe4d4 100%); }
.g-mint, .hub-card.g-mint { background: linear-gradient(135deg, #dceee6 0%, #e6f1ea 50%, #eef4e4 100%); }
.g-sky, .hub-card.g-sky { background: linear-gradient(135deg, #dde8ef 0%, #e8eef2 50%, #ebe6df 100%); }
.g-lilac, .hub-card.g-lilac { background: linear-gradient(135deg, #e8e4ef 0%, #efeaf2 50%, #f2ebe4 100%); }

.panel-tint {
  border-radius: 24px;
  padding: 16px 14px 20px;
  margin-bottom: 12px;
}
.panel-tint.g-sage { background: linear-gradient(160deg, #e8f0e6aa, #f5f1e866); }
.panel-tint.g-peach { background: linear-gradient(160deg, #f5ebe2aa, #fffdf8); border: 1px solid var(--line); }
.panel-tint.g-mint { background: linear-gradient(160deg, #e4f0eaaa, #f5f1e844); padding-top: 18px; }
.panel-tint.g-sky { background: linear-gradient(160deg, #e4ebf0aa, #f5f1e866); padding: 16px; }
.panel-tint.g-lilac { background: linear-gradient(160deg, #ece8f0aa, #f5f1e866); padding: 16px; margin-top: 0; }
.panel-tint.form { margin-bottom: 0; }

/* Panel header with back */
.panel-top {
  align-items: center;
  padding-bottom: 16px;
  gap: 8px;
}
.back-btn {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: 10px 14px;
  min-height: 44px;
  font-weight: 800;
  color: var(--a);
  flex: none;
  white-space: nowrap;
}
.panel-title {
  flex: 1;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: -.02em;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero.compact {
  min-height: 0;
  padding: 28px 22px;
  margin-bottom: 14px;
  border-radius: 24px;
}
.hero.compact h1 { font-size: clamp(24px, 5.5vw, 36px); }
.panel-tint .metrics { margin: 0 0 16px; }
.panel-tint .insight { margin: 0; }
.panel-tint.dozen { margin-bottom: 0; }
.is-panel .history { margin-top: 0; }

@media (min-width: 900px) {
  .hub-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .hub-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
  .hub-hero h1 { font-size: 36px; }
  .hub-card { min-height: 100px; padding: 22px 20px; }
  .hub-title { font-size: 20px; }
}

@media (max-width: 700px) {
  .hub-card { padding: 16px 14px; gap: 10px 12px; }
  .hub-emoji { width: 48px; height: 48px; font-size: 24px; border-radius: 14px; }
  .hub-chip { font-size: 10px; padding: 5px 8px; max-width: 8.5em; }
  .panel-title { font-size: 15px; }
}

/* ===== Sales landing + trial banner (trial1) ===== */
.hh.is-landing { padding: 0; background: var(--bg); }
.landing {
  max-width: 560px;
  margin: 0 auto;
  padding: 20px 22px calc(40px + var(--safe-bottom));
}
.landing-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.landing-hero {
  background: linear-gradient(145deg, #dfe9da 0%, #edf0dc 55%, #f1ddc5 100%);
  border-radius: 28px;
  padding: 32px 24px;
  box-shadow: 0 16px 40px #31433814;
}
.landing-eyebrow {
  margin: 0 0 8px;
  color: var(--a);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .08em;
}
.landing-hero h1 {
  margin: 0;
  font-size: clamp(28px, 7vw, 36px);
  line-height: 1.2;
  letter-spacing: -.03em;
}
.landing-lead {
  margin: 12px 0 0;
  color: #56665d;
  font-size: 15px;
  line-height: 1.55;
}
.landing-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.landing-cta .btn-primary,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--a);
  color: #fff;
  font-weight: 800;
  padding: 12px 22px;
  text-decoration: none;
  min-height: 48px;
}
.landing-cta .btn-secondary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--a);
  border-radius: 999px;
  background: transparent;
  color: var(--a);
  font-weight: 800;
  padding: 12px 22px;
  text-decoration: none;
  min-height: 48px;
}
.landing-trust {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.landing-trust li {
  background: #fffdf8cc;
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #3d5248;
}
.landing-feats {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}
.landing-feat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 16px;
}
.landing-feat h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--a);
}
.landing-feat p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.landing-foot {
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  margin: 8px 0 0;
}

.trial-banner {
  width: 100%;
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 18px;
  background: linear-gradient(90deg, #c4785a 0%, #d4926a 45%, #b86b8a 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.trial-banner-copy {
  display: grid;
  gap: 2px;
  text-align: center;
  flex: 1 1 200px;
  min-width: 0;
}
.trial-banner-title {
  margin: 0;
  color: #fffaf2;
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.35;
}
.trial-banner p {
  margin: 0;
  color: rgba(255,250,242,.88);
  font-size: 11px;
  line-height: 1.45;
}
.trial-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fffaf2;
  color: #b45a42;
  font-weight: 800;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.trial-upgrade-modal .btn-primary {
  text-decoration: none;
}
