/* Custom Styles */

/* ==========================================================================
   Skillademia :: Library
   Tokens below are measured from the live brand at skillademia.com, so the
   members area at app.skillademia.com reads as the same product.
   Class names are emitted by sections/products.liquid + snippets/library_card.liquid.
   ========================================================================== */

/* --- Brand tokens ------------------------------------------------------- */
:root {
  /* Surfaces */
  --sk-cream:     #faf7f1;   /* page background */
  --sk-cream-2:   #f1ece1;   /* alternate band */
  --sk-white:     #ffffff;   /* cards, header */

  /* Brand greens */
  --sk-teal:      #083a3e;   /* primary, headings, filled pills */
  --sk-teal-deep: #06302f;   /* dark sections */
  --sk-teal-ink:  #052423;   /* the brand hero's bottom stop */
  --sk-teal-mid:  #157179;   /* eyebrows, small accents */
  --sk-lime:      #afdb8d;   /* accent, primary CTA on dark */
  --sk-lime-dim:  #9ccd77;   /* lime hover */

  /* Text */
  --sk-ink:       #232323;   /* body copy, card titles */
  --sk-muted:     #6a655b;   /* meta, secondary copy (warm, not grey-blue) */
  --sk-line:      #e7e1d5;   /* hairlines */

  /* Status */
  --sk-coral:     #e56666;   /* the brand's badge red */
  --sk-done:      #2f7d5f;

  /* Shape: the brand is fully rounded. 24px cards, pill everything else. */
  --sk-r:         24px;
  --sk-r-sm:      14px;
  --sk-r-pill:    9999px;

  --sk-shadow:    0 1px 2px rgba(8,58,62,.04), 0 6px 20px rgba(8,58,62,.06);
  --sk-shadow-lg: 0 2px 4px rgba(8,58,62,.05), 0 18px 44px rgba(8,58,62,.12);

  --sk-gap: 24px;
  --sk-max: 1260px;
}

/* --- Guard against the theme's sticky-header script ---------------------- */
/* scripts.js runs $("header").addClass("header--fixed") on every scroll, and
   .header--fixed is position:fixed;z-index:9999;top:0. The Library markup uses
   a section element so this never matches, but if the markup is ever changed
   back to a header element this keeps the page from pinning. */
.sk-library .header--fixed,
.sk-dash.header--fixed {
  position: relative !important;   /* relative, not static: .sk-dash needs a
                                      containing block for its glow layers */
  top: auto !important;
  z-index: auto !important;
  box-shadow: none !important;
}

/* --- Page shell --------------------------------------------------------- */
.sk-library {
  background: var(--sk-cream);
  color: var(--sk-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 96px;
}
.sk-library *, .sk-library *::before, .sk-library *::after { box-sizing: border-box; }
.sk-wrap { max-width: var(--sk-max); margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .sk-wrap { padding: 0 40px; } }

/* --- Dashboard header --------------------------------------------------- */
/* The brand gets its depth from a tonal gradient plus two large blurred
   colour glows (teal 25% / blur 120px, lime 10% / blur 110px), painted on the
   live site with absolutely positioned divs. Same result, built as layered
   radial-gradients so no extra DOM and no pseudo-elements are needed. */
.sk-dash {
  position: relative;
  overflow: hidden;
  background-color: var(--sk-teal-deep);
  background-image:
    radial-gradient(58% 52% at 50% -12%, rgba(21,113,121,.42), transparent 68%),
    radial-gradient(30% 46% at -4% 34%, rgba(175,219,141,.13), transparent 70%),
    linear-gradient(to bottom, var(--sk-teal-deep) 0%, var(--sk-teal-deep) 46%, #052423 100%);
  background-repeat: no-repeat;
  color: #fff;
  padding: 56px 0 0;
}
.sk-dash__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 34px;
}
@media (min-width: 900px) {
  .sk-dash__top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 42px;
  }
}
.sk-dash__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sk-lime);
  margin: 0 0 12px;
}
.sk-dash__title {
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -.028em;
  margin: 0 0 14px;
  color: #fff;
}
.sk-dash__sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin: 0;
  max-width: 52ch;
}

/* Stats */
.sk-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  flex-shrink: 0;
  justify-content: start;
}
@media (min-width: 900px) { .sk-stats { gap: 40px; } }
.sk-stat__n {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--sk-lime);
}
.sk-stat__l {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 5px;
}

/* --- Continue learning -------------------------------------------------- */
.sk-resume {
  display: grid;
  gap: 20px;
  padding-bottom: 44px;
}
@media (min-width: 900px) { .sk-resume { grid-template-columns: 1.55fr 1fr; gap: 24px; align-items: stretch; } }

.sk-resume__card {
  display: flex;
  flex-direction: column;
  background: var(--sk-white);
  border-radius: var(--sk-r);
  overflow: hidden;
  box-shadow: var(--sk-shadow-lg);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease;
}
.sk-resume__card:hover { transform: translateY(-2px); }
@media (min-width: 560px) { .sk-resume__card { flex-direction: row; align-items: stretch; } }

.sk-resume__media {
  position: relative;
  flex-shrink: 0;
  background: var(--sk-cream-2);
  aspect-ratio: 16 / 9;
}
@media (min-width: 560px) { .sk-resume__media { width: 236px; aspect-ratio: auto; } }
.sk-resume__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sk-resume__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--sk-lime);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 18px rgba(6,48,47,.32);
}
.sk-resume__play svg { width: 18px; height: 18px; fill: var(--sk-teal); margin-left: 3px; }

.sk-resume__body {
  flex: 1;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.sk-resume__status {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sk-teal-mid);
  margin: 0 0 9px;
}
.sk-resume__course { font-size: 13px; font-weight: 400; color: var(--sk-muted); margin: 0 0 5px; }
.sk-resume__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -.01em;
  color: var(--sk-ink);
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sk-resume__meter { display: flex; align-items: center; gap: 12px; }
.sk-resume__meter .sk-bar { flex: 1; }
.sk-resume__pct { font-size: 13px; font-weight: 600; color: var(--sk-teal); flex-shrink: 0; }

/* --- Quick actions ------------------------------------------------------ */
.sk-actions { display: grid; gap: 12px; align-content: stretch; }
.sk-action {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--sk-r-sm);
  text-decoration: none;
  color: #fff;
  transition: background .16s ease, border-color .16s ease;
  flex: 1;
}
.sk-action:hover { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.38); color: #fff; }
/* The brand's primary CTA on dark is lime with teal text. */
.sk-action--primary { background: var(--sk-lime); border-color: var(--sk-lime); color: var(--sk-teal); }
.sk-action--primary:hover { background: var(--sk-lime-dim); border-color: var(--sk-lime-dim); color: var(--sk-teal); }
.sk-action__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.13);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.sk-action--primary .sk-action__icon { background: rgba(8,58,62,.12); }
.sk-action__icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.sk-action__t { display: block; font-size: 15px; font-weight: 600; line-height: 1.3; }
.sk-action__d { display: block; font-size: 13px; line-height: 1.4; opacity: .72; margin-top: 3px; }

/* --- Progress bar ------------------------------------------------------- */
.sk-bar { height: 6px; border-radius: var(--sk-r-pill); background: var(--sk-line); overflow: hidden; }
.sk-bar__fill {
  height: 100%;
  border-radius: var(--sk-r-pill);
  background: var(--sk-teal);
  transition: width .4s ease;
}
.sk-bar__fill--done { background: var(--sk-done); }

/* --- First-login orientation -------------------------------------------- */
.sk-orient {
  background: var(--sk-cream-2);
  border-radius: var(--sk-r);
  padding: 28px 24px;
  margin: 44px 0 0;
}
@media (min-width: 900px) { .sk-orient { padding: 34px 36px; } }
.sk-orient__head { margin-bottom: 24px; }
.sk-orient__title {
  font-size: 22px; font-weight: 600; letter-spacing: -.02em;
  margin: 0 0 6px; color: var(--sk-teal);
}
.sk-orient__sub { font-size: 15px; color: var(--sk-muted); margin: 0; }
.sk-orient__steps {
  display: grid; gap: 14px;
  counter-reset: sk-step;
  list-style: none; padding: 0; margin: 0;
}
@media (min-width: 760px) { .sk-orient__steps { grid-template-columns: repeat(5, 1fr); gap: 18px; } }
.sk-orient__step {
  counter-increment: sk-step;
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; line-height: 1.45; color: var(--sk-ink);
}
@media (min-width: 760px) { .sk-orient__step { flex-direction: column; gap: 11px; } }
.sk-orient__num {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--sk-teal);
  color: var(--sk-lime);
  font-size: 13px; font-weight: 700;
  display: grid; place-items: center;
}
.sk-orient__num::before { content: counter(sk-step); }
.sk-orient__close {
  background: none; border: 0; cursor: pointer;
  font: inherit; font-size: 14px; font-weight: 600;
  color: var(--sk-muted); padding: 0; margin-top: 22px;
}
.sk-orient__close:hover { color: var(--sk-teal); }

/* --- Toolbar: search + path pills ---------------------------------------- */
.sk-toolbar { padding: 52px 0 0; }
.sk-toolbar__row {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px;
}
@media (min-width: 900px) {
  .sk-toolbar__row { flex-direction: row; align-items: center; justify-content: space-between; gap: 24px; }
}
.sk-toolbar__title {
  font-size: 30px; font-weight: 600; letter-spacing: -.02em;
  margin: 0; color: var(--sk-teal);
}
.sk-toolbar__count { font-size: 15px; font-weight: 400; color: var(--sk-muted); margin-left: 12px; }

.sk-search { position: relative; flex-shrink: 0; width: 100%; }
@media (min-width: 900px) { .sk-search { width: 320px; } }
.sk-search__input {
  width: 100%; height: 48px;
  padding: 0 40px 0 44px;
  font: inherit; font-size: 15px;
  color: var(--sk-ink);
  background: var(--sk-white);
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-r-pill);
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.sk-search__input::placeholder { color: var(--sk-muted); }
/* Suppress the native search clear control: the theme ships its own. */
.sk-search__input::-webkit-search-cancel-button,
.sk-search__input::-webkit-search-decoration { -webkit-appearance: none; appearance: none; }
.sk-search__input:focus { border-color: var(--sk-teal-mid); box-shadow: 0 0 0 4px rgba(21,113,121,.12); }
.sk-search__icon {
  position: absolute; left: 17px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px;
  fill: none; stroke: var(--sk-muted); stroke-width: 2;
  pointer-events: none;
}
.sk-search__clear {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border: 0; border-radius: 50%;
  background: var(--sk-cream-2); color: var(--sk-muted);
  cursor: pointer; display: none; place-items: center;
  font-size: 16px; line-height: 1;
}
.sk-search.is-filled .sk-search__clear { display: grid; }

/* Pills match the brand's course tabs exactly: filled teal when active,
   white with the card shadow when not. */
.sk-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sk-chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 20px;
  font: inherit; font-size: 14px; font-weight: 600;
  color: var(--sk-ink);
  background: var(--sk-white);
  border: 0;
  border-radius: var(--sk-r-pill);
  box-shadow: var(--sk-shadow);
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.sk-chip:hover { transform: translateY(-1px); }
.sk-chip__n {
  font-size: 12px; font-weight: 700;
  color: var(--sk-muted);
  background: var(--sk-cream-2);
  border-radius: var(--sk-r-pill);
  padding: 1px 8px;
}
.sk-chip[aria-pressed="true"] { background: var(--sk-teal); color: #fff; }
.sk-chip[aria-pressed="true"] .sk-chip__n { background: rgba(255,255,255,.18); color: #fff; }

/* --- Path groups --------------------------------------------------------- */
.sk-group { padding-top: 48px; }
.sk-group__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 20px; }
.sk-group__title {
  font-size: 21px; font-weight: 600; letter-spacing: -.02em;
  margin: 0; color: var(--sk-teal);
}
.sk-group__n { font-size: 14px; font-weight: 400; color: var(--sk-muted); }

.sk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--sk-gap);
}

/* --- Course card --------------------------------------------------------- */
.sk-card {
  display: flex;
  flex-direction: column;
  background: var(--sk-white);
  border: 0;
  border-radius: var(--sk-r);
  overflow: hidden;
  box-shadow: var(--sk-shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  height: 100%;
}
.sk-card:hover { transform: translateY(-3px); box-shadow: var(--sk-shadow-lg); }
.sk-card { transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s cubic-bezier(.4,0,.2,1); }
.sk-card__media { text-decoration: none; }
.sk-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--sk-cream-2);
  overflow: hidden;
}
.sk-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.sk-card:hover .sk-card__media img { transform: scale(1.04); }
.sk-card__tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--sk-teal);
  background: rgba(255,255,255,.95);
  border-radius: var(--sk-r-pill);
  padding: 6px 12px;
}
.sk-card__done {
  position: absolute; top: 12px; right: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sk-done);
  display: grid; place-items: center;
}
.sk-card__done svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 2.6; fill: none; }

.sk-card__body { flex: 1; display: flex; flex-direction: column; padding: 20px; }
.sk-card__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.375;
  letter-spacing: -.01em;
  color: var(--sk-ink);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sk-card__title a { color: inherit; text-decoration: none; }
.sk-card__title a:hover { color: var(--sk-teal-mid); text-decoration: none; }
.sk-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--sk-muted);
  margin: 0 0 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sk-card__foot { margin-top: auto; }
.sk-card__meter {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--sk-line);
}
.sk-card__meter .sk-bar { flex: 1; }
.sk-card__pct {
  font-size: 12px; font-weight: 700; color: var(--sk-teal);
  flex-shrink: 0; min-width: 30px; text-align: right;
}
.sk-card__btn {
  display: block; width: 100%;
  height: 44px; line-height: 44px;
  text-align: center;
  font-size: 14px; font-weight: 600;
  color: #fff;
  background: var(--sk-teal);
  border-radius: var(--sk-r-pill);
  text-decoration: none;
  transition: background .16s ease, color .16s ease;
}
.sk-card__btn:hover { background: var(--sk-lime); color: var(--sk-teal); }
/* Lime is the brand's single hero CTA. A grid of 89 lime buttons drowns it,
   so every card button is teal and lime is the hover reward. */
.sk-card--notstarted .sk-card__btn { background: var(--sk-teal); color: #fff; }
.sk-card--notstarted .sk-card__btn:hover { background: var(--sk-lime); color: var(--sk-teal); }

/* --- Empty state --------------------------------------------------------- */
.sk-empty {
  display: none;
  text-align: center;
  padding: 72px 20px;
  background: var(--sk-white);
  border-radius: var(--sk-r);
  box-shadow: var(--sk-shadow);
  margin-top: 36px;
}
.sk-empty.is-shown { display: block; }
.sk-empty__t { font-size: 20px; font-weight: 600; letter-spacing: -.01em; margin: 0 0 8px; color: var(--sk-teal); }
.sk-empty__d { font-size: 15px; color: var(--sk-muted); margin: 0 0 22px; }
.sk-empty__btn {
  display: inline-block; height: 46px; line-height: 46px; padding: 0 26px;
  font: inherit; font-size: 15px; font-weight: 600;
  color: var(--sk-teal); background: var(--sk-lime);
  border: 0; border-radius: var(--sk-r-pill); cursor: pointer; text-decoration: none;
}
.sk-empty__btn:hover { background: var(--sk-lime-dim); }

.sk-is-hidden { display: none !important; }

/* --- Visually hidden ----------------------------------------------------- */
.sk-sr {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --- Staging wrapper ------------------------------------------------------ */
/* Cards render flat into #sk-source, then library_js moves them into path
   groups. Without JS the flat list is still a usable grid. */
#sk-source {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--sk-gap);
  padding-top: 32px;
}
#sk-source:not(:has(.sk-card)) { display: block; padding-top: 0; }

/* ==========================================================================
   Skillademia :: Log in
   Two panels: brand on the left, form on the right. Collapses to the form
   alone on mobile with a compact brand strip above it.
   ========================================================================== */

.sk-auth {
  background: var(--sk-cream);
  color: var(--sk-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
}
.sk-auth *, .sk-auth *::before, .sk-auth *::after { box-sizing: border-box; }

.sk-auth__grid { display: grid; grid-template-columns: 1fr; min-height: 78vh; }
@media (min-width: 900px) {
  .sk-auth__grid { grid-template-columns: 1.05fr 1fr; min-height: calc(100vh - 80px); }
  .sk-auth__grid--solo { grid-template-columns: 1fr; }
}

/* --- Brand panel --------------------------------------------------------- */
.sk-auth__brand {
  background: var(--sk-teal-deep);
  color: #fff;
  display: flex;
  padding: 36px 24px;
}
@media (min-width: 900px) { .sk-auth__brand { padding: 64px 56px; } }
.sk-auth__brandinner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: space-between;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
@media (min-width: 900px) { .sk-auth__brandinner { gap: 48px; } }
.sk-auth__brandlogo { width: 190px; height: auto; display: block; }
.sk-auth__brandtitle {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 14px;
}
@media (min-width: 900px) { .sk-auth__brandtitle { font-size: 38px; } }
.sk-auth__brandbody {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,.76);
  margin: 0;
  max-width: 46ch;
}
.sk-auth__points { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 13px; }
.sk-auth__points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255,255,255,.9);
}
.sk-auth__points svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: 1px;
  padding: 4px;
  border-radius: 50%;
  background: var(--sk-lime);
  stroke: var(--sk-teal);
  stroke-width: 3.2;
  fill: none;
}
.sk-auth__footnote { font-size: 13px; color: rgba(255,255,255,.55); margin: 0; }

/* --- Form panel ---------------------------------------------------------- */
.sk-auth__panel { display: flex; align-items: center; justify-content: center; padding: 44px 20px 64px; }
@media (min-width: 900px) { .sk-auth__panel { padding: 64px 48px; } }
.sk-auth__form { width: 100%; max-width: 420px; }
.sk-auth__logo { margin-bottom: 26px; }
.sk-auth__logo img { max-width: 100%; height: auto; display: block; }
.sk-auth__eyebrow {
  font-size: 13px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--sk-teal-mid);
  margin: 0 0 10px;
}
.sk-auth__title {
  font-size: 34px; font-weight: 600;
  line-height: 1.1; letter-spacing: -.02em;
  color: var(--sk-teal);
  margin: 0 0 10px;
}
.sk-auth__sub { font-size: 16px; line-height: 1.55; color: var(--sk-muted); margin: 0 0 30px; }

.sk-auth__alert {
  background: #fdeaea;
  color: #8e2b2b;
  border-radius: var(--sk-r-sm);
  padding: 13px 16px;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 20px;
}

.sk-field { margin-bottom: 18px; }
.sk-field__label {
  display: block;
  font-size: 14px; font-weight: 600;
  color: var(--sk-ink);
  margin-bottom: 7px;
}
.sk-field__input {
  width: 100%;
  height: 52px;
  padding: 0 18px;
  font: inherit;
  font-size: 16px;
  color: var(--sk-ink);
  background: #fff;
  border: 1px solid var(--sk-line);
  border-radius: var(--sk-r-sm);
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.sk-field__input::placeholder { color: #a9a294; }
.sk-field__input:focus { border-color: var(--sk-teal-mid); box-shadow: 0 0 0 4px rgba(21,113,121,.12); }

.sk-auth__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 4px 0 26px;
}
.sk-check { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; }
.sk-check__box {
  width: 18px; height: 18px;
  margin: 0;
  accent-color: var(--sk-teal);
  cursor: pointer;
  flex-shrink: 0;
}
.sk-check__label { font-size: 14px; color: var(--sk-ink); }
.sk-auth__link { font-size: 14px; font-weight: 600; color: var(--sk-teal-mid); text-decoration: none; }
.sk-auth__link:hover { color: var(--sk-teal); text-decoration: underline; }

.sk-auth__btn {
  display: block;
  width: 100%;
  height: 52px;
  font: inherit;
  font-size: 16px; font-weight: 600;
  color: #fff;
  background: var(--sk-teal);
  border: 0;
  border-radius: var(--sk-r-pill);
  cursor: pointer;
  transition: background .16s ease, color .16s ease;
}
.sk-auth__btn:hover { background: var(--sk-lime); color: var(--sk-teal); }

.sk-auth__help { font-size: 14px; color: var(--sk-muted); margin: 24px 0 0; text-align: center; }
.sk-auth__help a { color: var(--sk-teal-mid); font-weight: 600; text-decoration: none; }
.sk-auth__help a:hover { text-decoration: underline; }

/* --- Premium detail ------------------------------------------------------ */
.sk-library ::selection { background: var(--sk-lime); color: var(--sk-teal); }
.sk-library :focus-visible {
  outline: 2px solid var(--sk-teal-mid);
  outline-offset: 3px;
  border-radius: 6px;
}
.sk-library { font-feature-settings: 'cv11', 'ss01'; -moz-osx-font-smoothing: grayscale; }
@media (prefers-reduced-motion: reduce) {
  .sk-library *, .sk-auth * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
