:root {
  --cream: #F4F1EA;
  --ink: #2F2A36;
  --muted: #6B6370;
  --paper: rgba(255,255,255,.72);
  --paper-solid: #fffdf8;
  --line: rgba(47,42,54,.14);
  --blue-green: #4AAFBF;
  --blue-green-light: #E6F4F5;
  --yellow-orange: #F2C057;
  --yellow-orange-light: #FFF3DA;
  --red-violet: #B07AA8;
  --red-violet-light: #F3E6F0;
  --shadow: 0 20px 55px rgba(47,42,54,.10);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(242,192,87,.34), transparent 28%),
    radial-gradient(circle at 88% 4%, rgba(74,175,191,.24), transparent 31%),
    linear-gradient(180deg, var(--cream), #fffaf0 100%);
}
a { color: inherit; }
.site-shell { max-width: 1120px; margin: 0 auto; padding: 28px 20px 48px; }
.header {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  margin-bottom: 42px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 850; letter-spacing: .01em; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 16px;
  background:
    linear-gradient(135deg, var(--blue-green), var(--red-violet) 58%, var(--yellow-orange));
  box-shadow: var(--shadow);
  position: relative;
}
.brand-mark:after { content:""; position:absolute; inset:11px; border-radius:10px; background:rgba(255,255,255,.36); }
.nav { display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: 14px; font-weight: 700; }
.nav a { text-decoration: none; }
.nav a:hover { color: var(--red-violet); }
.hero { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(280px, .78fr); gap: 28px; align-items: stretch; margin-bottom: 34px; }
.card, .hero-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-panel { padding: clamp(28px, 5vw, 44px); position: relative; overflow:hidden; }
.hero-panel:before {
  content:""; position:absolute; right:-50px; top:-55px; width:180px; height:180px; border-radius:999px;
  background: var(--yellow-orange-light); border: 18px solid var(--blue-green-light); z-index:-1;
}
.kicker { color: var(--red-violet); font-weight: 900; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; }
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; color: var(--ink); }
h1 { font-size: clamp(38px, 6vw, 68px); line-height: .95; margin: 12px 0 18px; letter-spacing: -.035em; }
h2 { margin-top: 0; }
p { color: var(--muted); line-height: 1.65; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 18px;
  border-radius: 999px; border: 1px solid var(--line); text-decoration: none; font-weight: 900;
  background: var(--paper-solid); transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(47,42,54,.10); }
.btn.primary { background: var(--blue-green); color: white; border-color: var(--blue-green); }
.btn.warm { background: var(--yellow-orange); border-color: var(--yellow-orange); color: var(--ink); }
.status { padding: 24px; background: linear-gradient(160deg, var(--blue-green-light), var(--paper-solid)); }
.status strong { display: block; margin-bottom: 4px; font-weight: 900; }
.note-box { background: var(--red-violet-light); border: 1px solid rgba(176,122,168,.25); border-radius: 20px; padding: 16px; }
.tip-box { background: var(--yellow-orange-light); border: 1px solid rgba(242,192,87,.38); border-radius: 20px; padding: 16px; }
.info-box { background: var(--blue-green-light); border: 1px solid rgba(74,175,191,.28); border-radius: 20px; padding: 16px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.tool-card { padding: 24px; min-height: 198px; display: flex; flex-direction: column; justify-content: space-between; }
.tool-card h2 { margin: 0 0 8px; font-size: 28px; }
.tool-card p { margin: 0; }
.badge { display: inline-flex; align-self: flex-start; margin-top: 18px; padding: 7px 11px; border-radius: 999px; background: var(--red-violet-light); color: var(--red-violet); font-size: 12px; font-weight: 900; text-decoration:none; }
.badge.open { background: var(--blue-green-light); color: #267d88; }
.tool-page { max-width: 920px; margin: 0 auto; }
.tool-box { padding: clamp(24px, 4vw, 34px); }
label { font-weight: 850; display: inline-flex; gap: 12px; align-items: center; }
input[type="color"] { width: 58px; height: 42px; border: 0; background: transparent; padding: 0; }
.swatch-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.swatch { width: 58px; height: 58px; border-radius: 20px; border: 1px solid rgba(47,42,54,.12); box-shadow: inset 0 0 0 3px rgba(255,255,255,.25); }
.footer { margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); display:flex; justify-content:space-between; gap:22px; align-items:center; color: var(--muted); font-size: 14px; }
.footer-links, .socials { display:flex; gap:14px; align-items:center; flex-wrap:wrap; }
.footer a { text-decoration:none; font-weight:800; }
.social-icon { width:40px; height:40px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; background: var(--paper-solid); border:1px solid var(--line); }
.social-icon svg { width:19px; height:19px; fill: currentColor; }
.social-icon:hover { color: var(--blue-green); }
.embed-mode { background: transparent; }
.embed-mode .site-shell { padding: 0; max-width: none; }
.embed-mode .header, .embed-mode .full-only, .embed-mode .footer { display: none; }
.embed-mode .card, .embed-mode .hero-panel { box-shadow: none; border-radius: 22px; }
@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .footer { align-items:flex-start; flex-direction:column; }
}
