/* Hoostle, warm, light, rounded.
 *
 * The palette is deliberately the opposite of every "hustle" product on the
 * internet. That whole category is black backgrounds, neon green, lightning
 * bolts and shouting, which is exactly the visual language of the people who
 * have already burned this audience. Cream, honey and a soft teal reads as
 * calm and honest, and being the one thing that doesn't look like a scam is
 * most of the positioning.
 */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
  --cream:      #FFFCF5;
  --cream-2:    #FDF6E9;
  --card:       #FFFFFF;
  --ink:        #33291D;
  --ink-2:      #6B5B49;
  --ink-3:      #A08D77;
  --line:       #F0E4D0;
  --line-2:     #E6D6BC;

  --honey:      #F5A623;
  --honey-dk:   #DE8C0B;
  --honey-lt:   #FFEFD2;
  --teal:       #3FB6C4;
  --teal-lt:    #E2F7F9;
  --leaf:       #58C08A;
  --leaf-lt:    #E4F7EC;
  --berry:      #F2765E;
  --berry-lt:   #FFEDE8;
  --plum:       #9B7BD4;
  --plum-lt:    #F1EBFC;

  --r-sm: 12px; --r: 18px; --r-lg: 26px; --r-xl: 34px;
  --sh-sm: 0 2px 8px rgba(180,140,80,.08);
  --sh:    0 6px 20px rgba(180,140,80,.11);
  --sh-lg: 0 16px 44px rgba(180,140,80,.16);

  --display: 'Fredoka', 'Baloo 2', 'SF Pro Rounded', 'Segoe UI Variable Display', system-ui, sans-serif;
  --body: 'Nunito', 'SF Pro Text', 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* Soft ambient warmth, so a large empty page never feels like a blank document */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(900px 520px at 12% -8%, #FFF0D2 0%, transparent 62%),
    radial-gradient(760px 460px at 92% 4%, #E4F8FA 0%, transparent 60%),
    radial-gradient(700px 500px at 60% 104%, #FDF0E2 0%, transparent 62%);
}

h1, h2, h3, h4, .display { font-family: var(--display); font-weight: 600; letter-spacing: -.015em; margin: 0; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.9rem); line-height: 1.06; }
h2 { font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.14; }
h3 { font-size: 1.22rem; line-height: 1.25; }
p { margin: 0; line-height: 1.62; }
a { color: inherit; }

.muted { color: var(--ink-2); }
.dim { color: var(--ink-3); }
.center { text-align: center; }
.wrap { width: min(1120px, 92vw); margin: 0 auto; }
.narrow { width: min(760px, 92vw); margin: 0 auto; }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--display); font-size: 1rem; font-weight: 600;
  border: none; cursor: pointer; border-radius: 999px;
  padding: 14px 28px; background: var(--honey); color: #fff;
  box-shadow: 0 5px 0 var(--honey-dk), var(--sh);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
  display: inline-flex; align-items: center; gap: 9px; justify-content: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 7px 0 var(--honey-dk), var(--sh-lg); }
.btn:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--honey-dk); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: 0 5px 0 var(--honey-dk); }
.btn.lg { font-size: 1.16rem; padding: 18px 40px; }
.btn.teal { background: var(--teal); box-shadow: 0 5px 0 #2F98A5, var(--sh); }
.btn.teal:hover { box-shadow: 0 7px 0 #2F98A5, var(--sh-lg); }
.btn.teal:active { box-shadow: 0 2px 0 #2F98A5; }
.btn.ghost {
  background: #fff; color: var(--ink); box-shadow: 0 3px 0 var(--line-2), var(--sh-sm);
  border: 2px solid var(--line);
}
.btn.ghost:hover { box-shadow: 0 5px 0 var(--line-2), var(--sh); }
.btn.ghost:active { box-shadow: 0 1px 0 var(--line-2); }
.btn.quiet { background: transparent; color: var(--ink-2); box-shadow: none; padding: 10px 16px; }
.btn.quiet:hover { background: var(--cream-2); transform: none; box-shadow: none; }

/* ---------- owl ---------- */
.owl { position: relative; display: block; }
.owl svg { overflow: visible; display: block; }
.owl .owl-all { transform-origin: 70px 90px; transition: transform .4s cubic-bezier(.4,1.3,.5,1); }
.owl .owl-body { animation: breathe 3.6s ease-in-out infinite; transform-origin: 70px 120px; }
@keyframes breathe { 0%,100% { transform: scale(1,1); } 50% { transform: scale(1.018,.985); } }
.owl .owl-shadow { animation: shadowPulse 3.6s ease-in-out infinite; }
@keyframes shadowPulse { 0%,100% { opacity:.35; } 50% { opacity:.26; } }
.owl.owl-scanning .owl-body { animation: breathe 1.5s ease-in-out infinite, sway 2.4s ease-in-out infinite; }
@keyframes sway { 0%,100% { translate: -4px 0; } 50% { translate: 4px 0; } }
.owl-scarf { animation: scarf 4.2s ease-in-out infinite; transform-origin: 70px 108px; }
@keyframes scarf { 0%,100% { transform: skewX(0deg); } 50% { transform: skewX(-3deg); } }

.owl-stage { position: relative; display: inline-flex; flex-direction: column; align-items: center; }
.owl-bubble {
  position: relative; margin-top: 14px; max-width: 400px;
  background: #fff; border: 2px solid var(--line); border-radius: var(--r-lg);
  padding: 14px 20px; font-size: 1rem; line-height: 1.5; color: var(--ink);
  box-shadow: var(--sh); opacity: 0; transform: translateY(-6px) scale(.96);
  transition: opacity .25s ease, transform .25s cubic-bezier(.3,1.4,.5,1);
}
.owl-bubble::before {
  content: ''; position: absolute; top: -10px; left: 50%; translate: -50% 0;
  width: 18px; height: 18px; background: #fff;
  border-left: 2px solid var(--line); border-top: 2px solid var(--line);
  rotate: 45deg; border-radius: 4px 0 0 0;
}
.owl-bubble.pop { opacity: 1; transform: translateY(0) scale(1); }

/* ---------- shell ---------- */
.topbar {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px); background: rgba(255,252,245,.82);
  border-bottom: 1px solid var(--line);
}
.topbar-in { display: flex; align-items: center; gap: 16px; padding: 13px 0; }
.brand { display: flex; align-items: center; gap: 10px; cursor: pointer; user-select: none; }
.brand .mark { width: 38px; height: 38px; }
.brand .name { font-family: var(--display); font-weight: 700; font-size: 1.42rem; letter-spacing: -.02em; }
.brand .name span { color: var(--honey); }
.spacer { flex: 1; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; border: 2px solid var(--line); border-radius: 999px;
  padding: 7px 15px; font-size: .87rem; font-weight: 700; color: var(--ink-2);
  box-shadow: var(--sh-sm);
}
.pill.honey { background: var(--honey-lt); border-color: #F7DFB0; color: #8A5B08; }
.pill.teal { background: var(--teal-lt); border-color: #C4EDF2; color: #1E7C88; }
.pill.leaf { background: var(--leaf-lt); border-color: #C6EDD8; color: #2C7A52; }
.pill.berry { background: var(--berry-lt); border-color: #FFD6CB; color: #B84A33; }
.pill.plum { background: var(--plum-lt); border-color: #DFD2F5; color: #6B4CAB; }

.card {
  background: var(--card); border: 2px solid var(--line);
  border-radius: var(--r-lg); padding: 24px; box-shadow: var(--sh);
}
.card.flat { box-shadow: var(--sh-sm); }

/* ---------- landing ---------- */
.hero { padding: 58px 0 34px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px;
  background: #fff; border: 2px solid var(--line); border-radius: 999px;
  padding: 8px 17px; font-weight: 700; font-size: .88rem; color: var(--ink-2); box-shadow: var(--sh-sm);
}
.hero .eyebrow b { color: var(--honey-dk); }
.hero h1 em { font-style: normal; color: var(--honey); }
.hero .sub { font-size: 1.16rem; color: var(--ink-2); margin: 20px 0 30px; max-width: 44ch; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: .88rem; color: var(--ink-3); margin-top: 16px; }

.statgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 26px 0 46px; }
.statgrid .card { padding: 20px 18px; text-align: center; }
.statgrid .n { font-family: var(--display); font-size: 2rem; font-weight: 700; color: var(--honey-dk); line-height: 1; }
.statgrid .l { font-size: .84rem; color: var(--ink-2); margin-top: 7px; font-weight: 600; }

.section { padding: 46px 0; }
.section-head { text-align: center; margin-bottom: 34px; }
.section-head p { color: var(--ink-2); margin-top: 12px; font-size: 1.06rem; }

.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feat .ic {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 14px; background: var(--honey-lt);
}
.feat h3 { margin-bottom: 8px; }
.feat p { color: var(--ink-2); font-size: .97rem; }

/* the objection block, first thing after the hero, on purpose */
.objection { background: var(--card); border: 2px solid var(--line-2); border-radius: var(--r-xl); padding: 34px; box-shadow: var(--sh); }
.objection .q { font-family: var(--display); font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; }
.objection .a { font-size: 1.04rem; color: var(--ink-2); }
.objection .a b { color: var(--ink); }
.vs { display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: stretch; margin-top: 26px; }
.vs .col { border-radius: var(--r); padding: 20px; border: 2px dashed var(--line-2); }
.vs .col.win { border-style: solid; border-color: #C6EDD8; background: var(--leaf-lt); }
.vs .col h4 { font-family: var(--display); font-size: 1rem; margin-bottom: 12px; }
.vs .col li { font-size: .93rem; margin-bottom: 8px; color: var(--ink-2); list-style: none; }
.vs .col li::before { content: '·'; color: var(--ink-3); margin-right: 8px; font-weight: 800; }
.vs .col.win li::before { content: '✓'; color: var(--leaf); font-size: .8rem; }
.vs .mid { display: grid; place-items: center; font-family: var(--display); color: var(--ink-3); font-size: 1.1rem; }

/* ---------- pricing ---------- */
.prices { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.price { display: flex; flex-direction: column; position: relative; }
.price.pop { border-color: var(--honey); box-shadow: 0 0 0 4px var(--honey-lt), var(--sh-lg); }
.price .tag {
  position: absolute; top: -13px; left: 50%; translate: -50% 0;
  background: var(--honey); color: #fff; font-family: var(--display); font-weight: 600;
  font-size: .78rem; padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.price .nm { font-family: var(--display); font-size: 1.24rem; font-weight: 600; }
.price .amt { font-family: var(--display); font-size: 2.3rem; font-weight: 700; margin: 8px 0 2px; }
.price .amt small { font-size: .95rem; color: var(--ink-3); font-weight: 500; }
.price .blurb { color: var(--ink-2); font-size: .94rem; margin-bottom: 16px; }
.price ul { list-style: none; padding: 0; margin: 0 0 20px; }
.price li { font-size: .93rem; color: var(--ink-2); margin-bottom: 9px; display: flex; gap: 9px; }
.price li::before { content: '✓'; color: var(--leaf); font-weight: 800; }
.price .btn { width: 100%; margin-top: auto; }

/* ---------- onboarding ---------- */
.ob { min-height: 100dvh; display: grid; place-items: center; padding: 30px 0 60px; }
.ob-card { width: min(680px, 92vw); text-align: center; }
.ob-progress { display: flex; gap: 5px; justify-content: center; margin-bottom: 26px; }
.ob-progress i {
  height: 6px; width: 26px; border-radius: 99px; background: var(--line);
  transition: background .3s ease, width .3s ease;
}
.ob-progress i.on { background: var(--honey); }
.ob-progress i.now { background: var(--honey); width: 42px; }
.ob-q { font-family: var(--display); font-size: clamp(1.5rem, 3.6vw, 2.1rem); font-weight: 600; line-height: 1.18; margin: 22px 0 12px; }
.ob-sub { color: var(--ink-2); font-size: 1.02rem; max-width: 50ch; margin: 0 auto 30px; }
.ob-body { animation: obIn .38s cubic-bezier(.3,1.2,.5,1); }
@keyframes obIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

.ob-input {
  width: min(430px, 90%); font-family: var(--body); font-size: 1.16rem; font-weight: 600;
  padding: 17px 24px; border-radius: 999px; border: 2px solid var(--line-2);
  background: #fff; color: var(--ink); text-align: center; outline: none; box-shadow: var(--sh-sm);
  transition: border-color .2s, box-shadow .2s;
}
.ob-input:focus { border-color: var(--honey); box-shadow: 0 0 0 4px var(--honey-lt); }
.ob-input::placeholder { color: var(--ink-3); font-weight: 500; }

.chips { display: flex; flex-wrap: wrap; gap: 11px; justify-content: center; max-width: 620px; margin: 0 auto; }
.chip {
  font-family: var(--body); font-size: 1rem; font-weight: 700; cursor: pointer;
  background: #fff; border: 2px solid var(--line-2); border-radius: 999px;
  padding: 13px 22px; color: var(--ink); box-shadow: var(--sh-sm);
  display: inline-flex; align-items: center; gap: 9px;
  transition: transform .14s cubic-bezier(.3,1.4,.5,1), border-color .14s, background .14s, box-shadow .14s;
}
.chip:hover { transform: translateY(-3px); border-color: var(--honey); box-shadow: var(--sh); }
.chip.sel { background: var(--honey-lt); border-color: var(--honey); color: #7A4E05; }
.chip.sel::after { content: '✓'; font-size: .8rem; color: var(--honey-dk); }
.chip .e { font-size: 1.15rem; }

.ob-actions { margin-top: 32px; display: flex; gap: 12px; justify-content: center; align-items: center; }
.ob-back { background: none; border: none; color: var(--ink-3); font-family: var(--body); font-weight: 700; cursor: pointer; padding: 10px 14px; border-radius: 999px; }
.ob-back:hover { background: var(--cream-2); color: var(--ink-2); }

/* ---------- hunt ---------- */
.hunt-head { display: flex; align-items: center; gap: 20px; padding: 28px 0 20px; flex-wrap: wrap; }
.hunt-head .owl-stage { flex: none; }
.hunt-head h2 { margin-bottom: 6px; }

.usage-bar { height: 9px; background: var(--line); border-radius: 99px; overflow: hidden; width: 190px; }
.usage-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--honey), #FFC768); border-radius: 99px; transition: width .5s cubic-bezier(.3,1.2,.5,1); }

.opps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.opp {
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform .18s cubic-bezier(.3,1.3,.5,1), box-shadow .18s, border-color .18s;
}
.opp:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--sh-lg); }
.opp .top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.opp .fit {
  flex: none; width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.15rem; background: var(--honey-lt); color: #8A5B08;
}
.opp h3 { margin-bottom: 5px; }
.opp .one { color: var(--ink-2); font-size: .97rem; }
.opp .meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 15px; }
.opp .why {
  margin-top: 14px; padding: 13px 16px; background: var(--cream-2);
  border-radius: var(--r); font-size: .93rem; color: var(--ink-2); border-left: 3px solid var(--honey);
}
.opp .receipt {
  margin-top: 12px; font-size: .85rem; color: var(--teal); font-weight: 700;
  display: flex; align-items: center; gap: 7px;
}

.dots { display: inline-flex; gap: 3px; }
.dots i { width: 7px; height: 7px; border-radius: 99px; background: var(--line-2); }
.dots i.on { background: var(--berry); }

/* ---------- detail sheet ---------- */
.scrim { position: fixed; inset: 0; background: rgba(60,44,26,.34); backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .3s; z-index: 60; }
.scrim.open { opacity: 1; pointer-events: auto; }
.sheet {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(680px, 100vw);
  background: var(--cream); z-index: 61; overflow-y: auto;
  transform: translateX(102%); transition: transform .38s cubic-bezier(.3,1,.4,1);
  box-shadow: -20px 0 60px rgba(150,110,60,.18);
}
.sheet.open { transform: none; }
.sheet-in { padding: 26px 30px 70px; }
.sheet-x {
  position: sticky; top: 14px; float: right; z-index: 2;
  width: 42px; height: 42px; border-radius: 999px; border: 2px solid var(--line);
  background: #fff; cursor: pointer; font-size: 1.1rem; color: var(--ink-2); box-shadow: var(--sh-sm);
}
.step {
  display: flex; gap: 14px; align-items: flex-start; padding: 15px 0;
  border-bottom: 1px dashed var(--line);
}
.step:last-child { border-bottom: none; }
.step .n {
  flex: none; width: 30px; height: 30px; border-radius: 999px; background: var(--honey);
  color: #fff; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: .95rem;
}
.script {
  background: #fff; border: 2px dashed var(--line-2); border-radius: var(--r);
  padding: 20px; font-size: .97rem; line-height: 1.65; white-space: pre-wrap; color: var(--ink);
}
.sec-label {
  font-family: var(--display); font-size: .82rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .09em; color: var(--ink-3); margin: 28px 0 12px;
}

/* ---------- account ---------- */
.danger-zone {
  border: 2px solid #FFD6CB; background: var(--berry-lt);
  border-radius: var(--r-lg); padding: 26px; margin-top: 26px;
}
.btn-cancel {
  width: 100%; font-family: var(--display); font-size: 1.24rem; font-weight: 600;
  padding: 22px; border-radius: var(--r-lg); border: none; cursor: pointer;
  background: var(--berry); color: #fff; box-shadow: 0 5px 0 #D25743, var(--sh);
  transition: transform .12s, box-shadow .12s;
}
.btn-cancel:hover { transform: translateY(-2px); box-shadow: 0 7px 0 #D25743, var(--sh-lg); }
.btn-cancel:active { transform: translateY(3px); box-shadow: 0 2px 0 #D25743; }

/* ---------- misc ---------- */
.spin {
  width: 17px; height: 17px; border-radius: 999px; display: inline-block;
  border: 3px solid rgba(255,255,255,.42); border-top-color: #fff; animation: sp .7s linear infinite;
}
.btn.ghost .spin { border-color: var(--line-2); border-top-color: var(--honey); }
@keyframes sp { to { transform: rotate(360deg); } }

.toasts { position: fixed; bottom: 24px; left: 50%; translate: -50% 0; z-index: 90; display: flex; flex-direction: column; gap: 9px; align-items: center; }
.toast {
  background: var(--ink); color: #FFF8EA; padding: 13px 22px; border-radius: 999px;
  font-weight: 700; font-size: .94rem; box-shadow: var(--sh-lg);
  animation: tIn .3s cubic-bezier(.3,1.4,.5,1);
}
@keyframes tIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.empty { text-align: center; padding: 56px 20px; }
.empty .owl-stage { margin-bottom: 8px; }

.footer { padding: 46px 0 34px; border-top: 1px solid var(--line); margin-top: 60px; color: var(--ink-3); font-size: .9rem; }
.footer .disc { max-width: 70ch; margin: 14px auto 0; line-height: 1.6; }

.hide { display: none !important; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero .sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero .owl-stage { order: 1; }
  .statgrid { grid-template-columns: repeat(2, 1fr); }
  .grid3, .grid2, .opps, .prices { grid-template-columns: 1fr; }
  .vs { grid-template-columns: 1fr; }
  .vs .mid { display: none; }
}

/* ---------- legal + explainer pages ---------- */
.legal h2 { margin-bottom: 6px; }
.legal h3 {
  font-family: var(--display); font-size: 1.1rem; font-weight: 600;
  margin: 26px 0 9px; color: var(--ink);
}
.legal p { color: var(--ink-2); font-size: .98rem; margin-bottom: 12px; }
.legal p b { color: var(--ink); }
.legal ul { padding-left: 20px; margin: 0 0 14px; }
.legal li { color: var(--ink-2); font-size: .98rem; margin-bottom: 8px; }
.legal a { color: var(--teal); font-weight: 700; text-decoration: none; }
.legal a:hover { text-decoration: underline; }
.footer a { color: var(--ink-2); text-decoration: none; font-weight: 700; }
.footer a:hover { color: var(--honey-dk); }

/* ---------- nest status banner ---------- */
.nest-banner {
  display: flex; align-items: center; gap: 14px;
  background: var(--honey-lt); border: 2px solid #F7DFB0;
  border-radius: var(--r-lg); padding: 16px 20px; margin-bottom: 20px;
}
.nest-banner.good { background: var(--leaf-lt); border-color: #C6EDD8; }
.nest-banner .txt { flex: 1; font-size: .96rem; color: var(--ink); font-weight: 600; }
.nest-banner .sub { font-weight: 400; color: var(--ink-2); font-size: .89rem; margin-top: 3px; }
.nest-dot {
  width: 11px; height: 11px; border-radius: 99px; background: var(--leaf); flex: none;
  box-shadow: 0 0 0 4px rgba(88,192,138,.22); animation: pulseDot 2.4s ease-in-out infinite;
}
.nest-dot.warm { background: var(--honey); box-shadow: 0 0 0 4px rgba(245,166,35,.22); }
@keyframes pulseDot { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(.82); opacity: .65; } }

/* ---------- skeleton loading ---------- */
.skel { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.skel .card { pointer-events: none; }
.skel .bar {
  height: 13px; border-radius: 99px; margin-bottom: 11px;
  background: linear-gradient(90deg, var(--line) 25%, #FAF0DE 50%, var(--line) 75%);
  background-size: 300% 100%; animation: shimmer 1.5s linear infinite;
}
@keyframes shimmer { to { background-position: 300% 0; } }
@media (max-width: 900px) { .skel { grid-template-columns: 1fr; } }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ---------- focus visibility ---------- */
:focus-visible { outline: 3px solid var(--honey); outline-offset: 3px; border-radius: 8px; }
