/* === Star Kids redesign — design tokens === */
:root {
  /* Light theme — warm, calm, premium */
  --bg: #FBF7F4;
  --bg-elev: #FFFFFF;
  --bg-soft: #F4EEE8;
  --ink: #1A1614;
  --ink-2: #3A322E;
  --ink-3: #6B6259;
  --ink-4: #A89F95;
  --line: rgba(26, 22, 20, 0.08);
  --line-strong: rgba(26, 22, 20, 0.14);

  /* Accents — single coral, used sparingly */
  --accent: #FF5A5F;        /* coral, warm not magenta */
  --accent-2: #2B1F1A;      /* near-black for primary CTA */
  --accent-soft: #FFE7E5;
  --sun: #FFC857;           /* one warm yellow for badges */
  --mint: #B6E3C8;
  --sky:  #C7DDEF;
  --plum: #E5D4F2;

  --shadow-sm: 0 1px 2px rgba(26, 22, 20, .04), 0 1px 1px rgba(26, 22, 20, .03);
  --shadow-md: 0 6px 18px rgba(26, 22, 20, .06), 0 2px 4px rgba(26, 22, 20, .04);
  --shadow-lg: 0 24px 48px rgba(26, 22, 20, .10), 0 4px 12px rgba(26, 22, 20, .06);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-text: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

[data-theme="dark"] {
  --bg: #0F0D0C;
  --bg-elev: #1A1715;
  --bg-soft: #211D1A;
  --ink: #F4EFEA;
  --ink-2: #DCD4CC;
  --ink-3: #8E8278;
  --ink-4: #5C544D;
  --line: rgba(244, 239, 234, 0.08);
  --line-strong: rgba(244, 239, 234, 0.14);
  --accent-2: #F4EFEA;
  --accent-soft: #2A1F1E;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
  --shadow-md: 0 6px 18px rgba(0,0,0,.4);
  --shadow-lg: 0 24px 48px rgba(0,0,0,.5);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--bg);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* === App shell (inside iOS frame) === */
.sk-app {
  width: 100%;
  height: 100%;
  background: var(--bg);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.sk-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 110px;
}
.sk-scroll::-webkit-scrollbar { display: none; }

/* === Typography === */
.sk-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.sk-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.sk-h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0;
}
.sk-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  font-weight: 500;
}
.sk-body {
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink-2);
}
.sk-meta {
  font-size: 13px;
  line-height: 1.4;
  color: var(--ink-3);
}

/* === Buttons === */
.sk-btn {
  appearance: none;
  border: 0;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  border-radius: var(--radius-pill);
  padding: 16px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), background .2s, color .2s, box-shadow .2s;
  will-change: transform;
  user-select: none;
}
.sk-btn:active { transform: scale(0.965); }
.sk-btn--primary {
  background: var(--accent-2);
  color: var(--bg);
}
[data-theme="dark"] .sk-btn--primary { color: var(--accent-2); background: var(--ink); }
.sk-btn--accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(255,90,95,.28);
}
.sk-btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.sk-btn--soft {
  background: var(--bg-soft);
  color: var(--ink);
}
.sk-btn--block { width: 100%; }

/* Ripple effect */
.sk-ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255,255,255,.35);
  transform: scale(0);
  animation: ripple .55s ease-out forwards;
}
[data-theme="dark"] .sk-ripple { background: rgba(0,0,0,.18); }
@keyframes ripple {
  to { transform: scale(3); opacity: 0; }
}

/* === Cards === */
.sk-card {
  background: var(--bg-elev);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s;
}
.sk-card--press:active {
  transform: scale(0.98);
}

/* Tap target press */
.sk-tap { transition: transform .14s cubic-bezier(.2,.8,.2,1); cursor: pointer; }
.sk-tap:active { transform: scale(0.96); }

/* === Inputs === */
.sk-field {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.sk-field:focus-within {
  border-color: var(--ink-2);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.sk-input {
  border: 0;
  outline: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  flex: 1;
  width: 100%;
}
.sk-input::placeholder { color: var(--ink-4); }
.sk-label {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: -0.005em;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

/* === Segment control with sliding pill === */
.sk-seg {
  display: flex;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  padding: 4px;
  position: relative;
  font-size: 14px;
  font-weight: 500;
}
.sk-seg__pill {
  position: absolute;
  top: 4px;
  bottom: 4px;
  background: var(--bg-elev);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  transition: left .35s cubic-bezier(.2,.8,.2,1), width .35s cubic-bezier(.2,.8,.2,1);
  z-index: 0;
}
.sk-seg__btn {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-weight: 500;
  color: var(--ink-3);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: color .25s;
}
.sk-seg__btn--active { color: var(--ink); font-weight: 600; }

/* === Bottom tab bar === */
.sk-tabbar {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  display: flex;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  z-index: 50;
}
.sk-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 10px;
  color: var(--ink-3);
  cursor: pointer;
  border-radius: var(--radius-pill);
  position: relative;
  transition: color .2s;
}
.sk-tab svg { width: 22px; height: 22px; transition: transform .25s cubic-bezier(.2,.8,.2,1); }
.sk-tab--active { color: var(--ink); }
.sk-tab--active svg { transform: translateY(-2px); }
.sk-tab__dot {
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%) scale(0);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.sk-tab--active .sk-tab__dot { transform: translateX(-50%) scale(1); }

/* === Top bar === */
.sk-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 10px;
  position: sticky;
  top: 0;
  background: linear-gradient(var(--bg) 80%, transparent);
  z-index: 10;
}
.sk-locator {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}
.sk-iconbtn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.8,.2,1);
}
.sk-iconbtn:active { transform: scale(0.92); }
.sk-iconbtn__dot {
  position: absolute;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--bg-elev);
  transform: translate(10px, -10px);
}

/* === Hero === */
.sk-hero {
  margin: 4px 16px 20px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-soft);
  isolation: isolate;
}
.sk-hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.sk-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 50%, transparent 80%);
  z-index: 1;
}
.sk-hero__body {
  position: absolute;
  inset: auto 22px 22px;
  z-index: 2;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sk-hero__chip {
  align-self: flex-start;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sk-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
}
.sk-hero h1 em {
  font-style: italic;
  font-weight: 400;
}
.sk-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
}

/* === Section header === */
.sk-section {
  padding: 22px 20px 0;
}
.sk-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.sk-section__head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0;
}
.sk-section__head a {
  font-size: 13px;
  color: var(--ink-3);
  text-decoration: none;
  font-weight: 500;
}

/* === Stories rail === */
.sk-rail {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 20px 4px;
  margin: 0 -20px;
}
.sk-rail::-webkit-scrollbar { display: none; }
.sk-rail > * { scroll-snap-align: start; flex: 0 0 auto; }

/* === Quick action tile === */
.sk-tile {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 16px;
  border-radius: var(--radius-lg);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  min-height: 116px;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s;
}
.sk-tile:active { transform: scale(0.97); }
.sk-tile__icon {
  width: 36px; height: 36px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--bg-soft);
  color: var(--ink);
}
.sk-tile__title {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.sk-tile__sub {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 2px;
}
.sk-tile__arrow {
  position: absolute;
  top: 16px; right: 16px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid; place-items: center;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .2s, transform .2s;
}
.sk-tile:hover .sk-tile__arrow,
.sk-tile:focus-visible .sk-tile__arrow { opacity: 1; transform: translateX(0); }

/* === Package card === */
.sk-pkg {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.sk-pkg__media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #FFD7B5, #FFB59E 60%, #FF9C8E);
  position: relative;
  overflow: hidden;
}
.sk-pkg__media--alt {
  background: linear-gradient(135deg, #C7DDEF, #B6E3C8);
}
.sk-pkg__media--alt2 {
  background: linear-gradient(135deg, #E5D4F2, #FFC8DD);
}
.sk-pkg__media-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.5) 0, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.35) 0, transparent 30%);
}
.sk-pkg__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sk-pkg__price {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.02em;
}
.sk-pkg__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.sk-pkg__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
}

/* === Badges === */
.sk-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: var(--bg-soft);
  color: var(--ink-2);
}
.sk-badge--accent { background: var(--accent-soft); color: var(--accent); }
.sk-badge--sun { background: var(--sun); color: #4A3300; }

/* === Stat row === */
.sk-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 24px 20px 0;
}
.sk-stat {
  padding: 18px 12px;
  text-align: left;
  border-right: 1px solid var(--line);
}
.sk-stat:last-child { border-right: 0; }
.sk-stat__num {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.sk-stat__lbl {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

/* === Login screen === */
.sk-login {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px 24px 24px;
  gap: 24px;
  position: relative;
  background:
    radial-gradient(70% 50% at 80% 0%, var(--accent-soft) 0%, transparent 70%),
    radial-gradient(50% 40% at 0% 100%, var(--plum) 0%, transparent 70%),
    var(--bg);
}
.sk-login__brand {
  display: flex; align-items: center; gap: 10px;
  margin-top: 12px;
}
.sk-login__logo {
  width: 36px; height: 36px;
  border-radius: 12px;
  background: var(--accent-2);
  color: var(--bg);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}
[data-theme="dark"] .sk-login__logo { background: var(--ink); color: var(--accent-2); }
.sk-login__title {
  margin-top: auto;
}
.sk-login__title h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0;
}
.sk-login__title h1 em { font-style: italic; }
.sk-login__title p {
  margin: 12px 0 0;
  color: var(--ink-3);
  font-size: 15px;
  max-width: 30ch;
}
.sk-login__form { display: flex; flex-direction: column; gap: 12px; }
.sk-login__legal { font-size: 11px; color: var(--ink-4); text-align: center; line-height: 1.5; }
.sk-login__legal a { color: var(--ink-3); text-decoration: underline; text-underline-offset: 2px; }

/* === Profile === */
.sk-profile-head {
  padding: 32px 20px 16px;
  text-align: center;
}
.sk-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, #FFB59E, #FF7676);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 400;
  position: relative;
}
.sk-avatar__edit {
  position: absolute;
  bottom: 0; right: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  cursor: pointer;
}

.sk-kid {
  display: flex; align-items: center; gap: 14px;
  padding: 14px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  margin-bottom: 8px;
  cursor: pointer;
  transition: transform .15s;
}
.sk-kid:active { transform: scale(0.98); }
.sk-kid__avatar {
  width: 44px; height: 44px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 22px;
  flex: 0 0 44px;
}

/* === Form (Birthday request) === */
.sk-form-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px 16px;
  margin: 0 16px;
}
.sk-form-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sk-form-row:last-child { border-bottom: 0; }
.sk-form-row__lbl { font-size: 11px; color: var(--ink-3); letter-spacing: 0.02em; text-transform: uppercase; }
.sk-form-row__val { font-size: 16px; font-weight: 500; color: var(--ink); }
.sk-form-row--input input {
  border: 0; outline: 0; padding: 0; background: transparent;
  font-family: inherit; font-size: 16px; color: var(--ink);
  width: 100%;
}
.sk-form-row--input input::placeholder { color: var(--ink-4); }

/* Stepper for guests */
.sk-stepper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-soft);
  border-radius: var(--radius-pill);
  padding: 4px;
}
.sk-stepper button {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: transform .15s;
}
.sk-stepper button:active { transform: scale(.9); }
.sk-stepper button:disabled { opacity: .35; cursor: default; }
.sk-stepper__val {
  min-width: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

/* Date pills */
.sk-datepills {
  display: flex; gap: 8px; overflow-x: auto;
  padding-bottom: 4px; margin: 0 -16px; padding: 0 16px 4px;
}
.sk-datepills::-webkit-scrollbar { display: none; }
.sk-datepill {
  flex: 0 0 auto;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  text-align: center;
  cursor: pointer;
  min-width: 64px;
  transition: all .2s;
}
.sk-datepill__day { font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; }
.sk-datepill__num { font-family: var(--font-display); font-size: 22px; line-height: 1.1; margin-top: 2px; letter-spacing: -0.02em; }
.sk-datepill--active {
  background: var(--accent-2);
  color: var(--bg);
  border-color: var(--accent-2);
}
[data-theme="dark"] .sk-datepill--active { background: var(--ink); color: var(--accent-2); }
.sk-datepill--active .sk-datepill__day { color: rgba(255,255,255,.7); }
[data-theme="dark"] .sk-datepill--active .sk-datepill__day { color: var(--ink-3); }

/* === Animated entry === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.sk-fade { animation: fadeUp .55s cubic-bezier(.2,.8,.2,1) both; }
.sk-fade--1 { animation-delay: .04s; }
.sk-fade--2 { animation-delay: .12s; }
.sk-fade--3 { animation-delay: .20s; }
.sk-fade--4 { animation-delay: .28s; }
.sk-fade--5 { animation-delay: .36s; }
.sk-fade--6 { animation-delay: .44s; }

/* Page transition */
.sk-page {
  animation: pageIn .4s cubic-bezier(.2,.8,.2,1);
}
@keyframes pageIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: none; }
}

/* === Confetti success === */
.sk-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.sk-confetti span {
  position: absolute;
  top: -10px;
  width: 8px; height: 12px;
  border-radius: 2px;
  animation: confettiFall 1.4s ease-in forwards;
}
@keyframes confettiFall {
  to { transform: translateY(120vh) rotate(720deg); opacity: 0; }
}

/* === Image placeholder (replaces empty img boxes) === */
.sk-imgph {
  background:
    repeating-linear-gradient(
      -45deg,
      rgba(0,0,0,.03) 0 12px,
      rgba(0,0,0,.06) 12px 13px
    ),
    var(--bg-soft);
  position: relative;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sk-imgph::after {
  content: attr(data-label);
  position: absolute;
  left: 14px; top: 14px;
  opacity: .35;
}
/* When ImgPh is used as a hero background, hide the label entirely so it doesn't fight foreground content */
.sk-hero .sk-imgph::after { display: none; }

/* utility */
.sk-row { display: flex; gap: 8px; align-items: center; }
.sk-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 0 20px; }
.sk-stack { display: flex; flex-direction: column; gap: 12px; }
.sk-px { padding-left: 20px; padding-right: 20px; }
.sk-divider { height: 1px; background: var(--line); margin: 24px 20px; }
