:root {
  --purple: #5a2b86;
  --purple-deep: #32164f;
  --orange: #f08519;
  --ink: #28232d;
  --muted: #746c78;
  --line: #e8e1eb;
  --canvas: #f8f5f1;
}

* { box-sizing: border-box; }
html { min-width: 320px; background: var(--canvas); }
body { margin: 0; color: var(--ink); background: radial-gradient(circle at 10% 0, #fff2df 0, transparent 28rem), var(--canvas); font-family: "DM Sans", sans-serif; }
a { color: inherit; }
.home-shell { width: min(1160px, calc(100% - 48px)); margin: 0 auto; padding: 28px 0 34px; }
.home-topbar { display: flex; align-items: center; justify-content: space-between; }
.brand-logo { display: block; width: 180px; height: auto; }
.home-kicker { margin: 76px 0 12px; color: var(--orange); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, p { margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 18px; color: var(--purple-deep); font-family: "Space Grotesk", sans-serif; font-size: clamp(42px, 7vw, 78px); letter-spacing: -3px; line-height: .96; }
.home-intro { max-width: 550px; margin-bottom: 48px; color: var(--muted); font-size: 16px; line-height: 1.65; }
.tool-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.tool-card { position: relative; display: flex; min-height: 285px; flex-direction: column; justify-content: space-between; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; padding: 28px; background: #fff; text-decoration: none; box-shadow: 0 14px 34px rgba(61, 28, 98, .06); transition: transform .2s, box-shadow .2s, border-color .2s; }
.tool-card:hover { border-color: rgba(240, 133, 25, .65); box-shadow: 0 20px 42px rgba(61, 28, 98, .12); transform: translateY(-4px); }
.tool-card:focus-visible { outline: 3px solid rgba(240, 133, 25, .35); outline-offset: 4px; }
.tool-number { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 9px; background: #fff0df; color: var(--orange); font-size: 12px; font-weight: 700; }
.tool-card h2 { margin: 38px 0 10px; color: var(--purple-deep); font-family: "Space Grotesk", sans-serif; font-size: 27px; letter-spacing: -.8px; }
.tool-card p { max-width: 390px; margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.tool-link { display: flex; align-items: center; justify-content: space-between; margin-top: 34px; color: var(--purple); font-size: 12px; font-weight: 700; }
.tool-link b { color: var(--orange); font-size: 20px; font-weight: 400; }
.tool-card-background { background: linear-gradient(140deg, #fff 0%, #fff 58%, #f3eee6 100%); }
.tool-card-background:after { position: absolute; right: -42px; bottom: -58px; width: 190px; height: 190px; border: 1px solid rgba(90, 43, 134, .12); border-radius: 50%; box-shadow: 0 0 0 18px rgba(240, 133, 25, .05), 0 0 0 38px rgba(90, 43, 134, .04); content: ""; }
.home-footer { margin-top: 52px; border-top: 1px solid var(--line); padding-top: 16px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.home-footer strong { color: var(--purple); }
@media (max-width: 680px) { .home-shell { width: min(100% - 28px, 520px); padding-top: 20px; } .home-kicker { margin-top: 58px; } h1 { font-size: 48px; letter-spacing: -2px; } .home-intro { margin-bottom: 32px; } .tool-grid { grid-template-columns: 1fr; } .tool-card { min-height: 245px; padding: 22px; } .tool-card h2 { margin-top: 30px; } }