/* Component layer (DESIGN_SPEC.md §Core components). Semantic classes only; every value
   comes from tokens.css. Overrides carry a why-comment. Loads after base.css. */

/* ---- Layout primitives -------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

/* Keyboard skip link: visible only when focused, jumps past the header. */
.skip-link {
  position: absolute;
  left: var(--sp-2);
  top: -3rem;
  z-index: 100;
  background: var(--accent);
  color: var(--on-accent);
  border: var(--border);
  border-radius: var(--radius-pill);
  padding: var(--sp-2) var(--sp-3);
  font-weight: 700;
}

.skip-link:focus {
  top: var(--sp-2);
}

.icon {
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

/* ---- Header ------------------------------------------------------------- */
.site-header {
  background: var(--ink);
  color: var(--paper);
}

.site-header a {
  color: var(--paper);
  text-decoration: none;
}

/* Keyboard focus on the ink header/footer: the base 3px ink outline is invisible on an ink
   background. Switch to accent (12.4:1 on ink) so focus is always visible on these surfaces. */
.site-header :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--accent);
}

.header-bar {
  display: flex;
  /* Wrap lets the mobile nav sheet drop onto its own full-width row below the bar. */
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: 56px;
}

/* Logo lockup: the hand-coins mark in an accent tile + the mono wordmark. Mono ties the
   logo to the tabular-digit system (every number on the site renders mono) — the wordmark reads
   as a precision instrument, not a content brand. */
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}

/* "Paycheck" carries the weight (600 = the system's mono bold); ".tools" recedes to regular in a
   mid grey, reading as the TLD. Content is Title Case, so no text-transform. */
.brand-word {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-name {
  font-weight: 600;
}

.brand-tld {
  font-weight: 400;
  color: var(--gray-500);
}

/* Accent tile holding the ink mark — same object as the favicon, so header and tab match.
   Rounded like an app icon (~1/3 of its size), matching the sanded-corner language. */
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7em;
  height: 1.7em;
  flex: none;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: .55em;
}

.brand-mark .icon {
  width: 1.15em;
  height: 1.15em;
}

/* Hidden checkbox drives the mobile sheet with no JS. */
.nav-toggle-cb {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap-min);
  height: var(--tap-min);
  color: var(--paper);
  cursor: pointer;
}

.nav-toggle .icon {
  width: 1.75rem;
  height: 1.75rem;
}

/* Swap hamburger/close glyphs based on the checkbox state. */
.nav-toggle .icon-close {
  display: none;
}

.nav-toggle-cb:checked ~ .nav-toggle .icon-open {
  display: none;
}

.nav-toggle-cb:checked ~ .nav-toggle .icon-close {
  display: block;
}

/* The real focus target is the visually-hidden checkbox; mirror its keyboard focus ring onto the
   visible hamburger label so the control shows focus. Inset so the ring hugs the 44px label. */
.nav-toggle-cb:focus-visible ~ .nav-toggle {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.primary-nav {
  display: none;
}

/* Mobile: checked toggle drops a full-width sheet below the bar. */
.nav-toggle-cb:checked ~ .primary-nav {
  display: block;
  flex-basis: 100%;
  border-top: 2px solid var(--gray-600);
  padding-block: var(--sp-2);
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list > li > a,
.mega > summary {
  /* Flex-centered (not block) so plain links and the mega <summary> share one vertical baseline —
     a block link's text sits high in its min-height box, which Firefox renders visibly offset from
     the flex-centered summary. */
  display: flex;
  align-items: center;
  padding: var(--sp-3) 0;
  min-height: var(--tap-min);
  font-weight: 600;
  cursor: pointer;
}

/* Mega-menu is a <details>: click/keyboard, no JS. Adds the caret gap to the shared rule above. */
.mega > summary {
  list-style: none;
  gap: var(--sp-2);
}

.mega > summary::-webkit-details-marker {
  display: none;
}

.mega[open] > summary .icon {
  transform: rotate(180deg);
}

.mega-panel {
  padding-bottom: var(--sp-2);
}

.mega-group {
  padding-block: var(--sp-2);
}

.mega-group h3 {
  color: var(--gray-300);
  font-size: var(--text-xs);
  /* Micro-label, not a heading: group tags keep the uppercase label voice even though headings
     are sentence case site-wide. */
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: var(--sp-1);
}

.mega-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-group a {
  display: block;
  padding: var(--sp-2) 0;
  text-transform: none;
  font-weight: 500;
}

.mega-group a:hover {
  text-decoration: underline;
}

/* Desktop header: inline nav, hidden hamburger, absolute mega-menu panel. */
@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    display: block;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: var(--sp-6);
  }

  .nav-list > li > a,
  .mega > summary {
    padding: var(--sp-2) 0;
  }

  .mega {
    position: relative;
  }

  .mega-panel {
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 50;
    min-width: 39rem;
    display: flex;
    gap: var(--sp-8);
    background: var(--ink);
    border: 2px solid var(--gray-600);
    /* Card radius, but square at the top-right where the panel hangs off the summary — the
       dropdown reads as attached to its trigger, not floating free. */
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    padding: var(--sp-4);
  }

  .mega-group {
    padding: 0;
  }

  /* Columns size to their longest label — wrapped link text made the panel cramped and ragged. */
  .mega-group h3,
  .mega-group a {
    white-space: nowrap;
  }

  /* Ghost pill (header "Sign in"): a quiet outlined capsule on the ink bar. Deliberately not
     .btn — no fill, no shadow — so the header never competes with the page's one loud accent.
     Desktop-only: on the mobile sheet it stays a plain full-width row, keeping the 44px tap
     target (a slim capsule there would shrink the hit area — margins are not clickable). */
  .nav-list > li > a.nav-ghost {
    /* Translucent paper, not a hardcoded white: keeps the token contract if the header bg or a
       future theme changes. */
    border: 1.5px solid color-mix(in srgb, var(--paper) 45%, transparent);
    border-radius: var(--radius-pill);
    padding: var(--sp-1) var(--sp-4);
    min-height: 0;
  }

  .nav-list > li > a.nav-ghost:hover {
    border-color: var(--paper);
  }
}

/* ---- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: var(--tap-min);
  /* Pills need more horizontal air than square buttons or the label crowds the curve. */
  padding: var(--sp-2) var(--sp-6);
  border: var(--border);
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-hard);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: var(--text-base);
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  /* --on-accent, not inherited --ink: the accent stays yellow in the dark theme, where --ink
     flips light and would fail contrast on it. Same on every accent fill below. */
  color: var(--on-accent);
}

.btn-block {
  width: 100%;
}

.btn:disabled,
.btn[aria-disabled="true"] {
  background: var(--gray-100);
  color: var(--gray-600);
  box-shadow: none;
  cursor: not-allowed;
}

/* ---- Inputs ------------------------------------------------------------- */
.field {
  display: block;
  margin-bottom: var(--sp-4);
}

.field-label {
  display: block;
  margin-bottom: var(--sp-1);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* Inline field hint (e.g. SUTA "(varies by employer)") — a lighter, non-shouting aside on the label. */
.field-hint {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray-600);
}

.field-input {
  width: 100%;
  min-height: var(--tap-min);
  padding: var(--sp-2) var(--sp-3);
  border: var(--border);
  border-radius: var(--radius-ctl);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: var(--text-base);
}

/* Numeric inputs render mono/tabular like every other number in the system. */
.field-input.num {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.field.is-error .field-input {
  border-color: var(--error);
}

.field-error {
  margin-top: var(--sp-1);
  color: var(--error);
  font-size: var(--text-sm);
}

/* Validation summary at the top of a re-rendered field block (role=alert, announced on swap). */
.form-errors {
  margin-bottom: var(--sp-4);
  padding: var(--sp-2) var(--sp-3);
  border: var(--border-thin);
  border-color: var(--error);
  border-radius: var(--radius-ctl);
  color: var(--error);
  font-size: var(--text-sm);
}

.form-errors-item {
  margin: var(--sp-1) 0 0;
}

/* Any control flagged invalid gets the error border — selects too, not only text inputs. */
.field-input[aria-invalid="true"] {
  border-color: var(--error);
}

/* ---- Result panel (the brand moment) ------------------------------------ */
.result-panel {
  border: var(--border-thick);
  border-radius: var(--radius-card);
  background: var(--paper);
  padding: var(--sp-4);
  box-shadow: var(--shadow-hard);
}

.result-title {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray-600);
  margin-bottom: var(--sp-3);
}

.result-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--gray-300);
}

.result-row .result-key {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.result-row .result-val {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* Net row: full-bleed accent band inside the box. This is the screenshot. */
.net-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  /* Negative inset bleeds the band to the box's inner edges (padding = --sp-4). */
  margin: var(--sp-3) calc(-1 * var(--sp-4)) 0;
  padding: var(--sp-3) var(--sp-4);
  background: var(--accent);
  color: var(--on-accent);
}

.net-row .net-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.net-row .net-amount {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: var(--text-2xl);
  font-variant-numeric: tabular-nums;
}

.result-foot {
  margin-top: var(--sp-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray-600);
}

/* Employer cost tree (F-004): components hang off the total with mono ├/└ connectors. The tree
   sits directly under the total band, so its first row has no top gap. */
.cost-tree {
  margin-top: var(--sp-3);
}

.cost-tree-row .result-key {
  /* Keep the connector glyph and label on one baseline; the glyph is a fixed mono column. */
  display: inline-flex;
  align-items: baseline;
  text-transform: none;
  letter-spacing: 0;
}

.cost-tree-row .tree-glyph {
  font-family: var(--font-mono);
  color: var(--gray-600);
  /* Fixed column so ├ and └ align regardless of label length. */
  flex: none;
}

/* Sticky net bar: pinned bottom on mobile while scrolling the FAQ; hidden on desktop. */
.sticky-net {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  background: var(--ink);
  color: var(--paper);
  padding: var(--sp-3) var(--sp-4);
  border-top: var(--border-thick);
}

.sticky-net .net-amount {
  font-family: var(--font-mono);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 1024px) {
  .sticky-net {
    display: none;
  }
}

/* ---- Affiliate card (F-008/F-010) --------------------------------------- */
.aff {
  /* Sits between the result panel and the product-action row (DESIGN_SPEC page anatomy). */
  margin-top: var(--sp-4);
  background: var(--gray-100);
  /* 6px accent left rule marks it as a labeled sidebar, never a button lookalike. */
  border-left: 6px solid var(--accent);
  border-radius: var(--radius-ctl);
  padding: var(--sp-4);
}

.aff-tag {
  display: block;
  margin-bottom: var(--sp-1);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--gray-600);
}

/* The recommendation link — a plain labeled link with a trailing arrow, deliberately NOT styled as
   a button so it never competes with the primary product actions below it. */
.aff-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.aff-cta:hover {
  text-decoration: underline;
}

/* ---- Banners ------------------------------------------------------------ */
.banner {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  background: var(--warn-bg);
  border: var(--border);
  border-radius: var(--radius-ctl);
  padding: var(--sp-3) var(--sp-4);
}

.banner .icon {
  flex: none;
  width: 1.5rem;
  height: 1.5rem;
}

.banner-error {
  background: var(--paper);
  border-color: var(--error);
  color: var(--error);
}

/* ---- Badges / chips ----------------------------------------------------- */
.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* Chips are pills in the reader's own case — the uppercase micro-label voice is reserved for
   field labels and tags, so tool chips and state chips share one style. */
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Project 44px tap-target standard: a chip is a real tap link, so it meets the min touch
     target. Grid density is preserved by the existing chip-grid gaps, not by shrinking chips. */
  min-height: var(--tap-min);
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border: var(--border);
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--ink);
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
}

.chip:hover {
  background: var(--accent);
  color: var(--on-accent);
}

/* ---- Tables ------------------------------------------------------------- */
/* Wide tables (the 4-column time-card entry grid, whose native time inputs can't shrink below the
   360px viewport) scroll inside their own container so the page body never scrolls sideways
   (epic-012 task-059). Wrap the table in this; the table keeps its natural min-content width. */
.table-scroll {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border: var(--border-thick);
  /* separate+0, not collapse: border-radius silently drops on border-collapse:collapse tables.
     Cell rules below are border-bottoms, which render identically under either model. */
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-ctl);
  overflow: hidden;
}

.data-table th,
.data-table td {
  padding: var(--sp-2) var(--sp-3);
  border-bottom: 1px solid var(--gray-300);
  text-align: left;
}

.data-table td.num,
.data-table th.num {
  text-align: right;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.data-table tbody tr:nth-child(even) {
  background: var(--gray-100);
}

.data-table tr.total-row td {
  border-top: 2px solid var(--ink);
  font-weight: 700;
}

/* ---- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--gray-300);
  margin-top: var(--sp-12);
  padding-block: var(--sp-8);
}

/* Footer's plain text links (Tools, legal). Excludes .chip so the shared state-chip component
   keeps its own paper/ink look on the ink footer instead of inheriting the grey link style. */
.site-footer a:not(.chip) {
  color: var(--gray-300);
  text-decoration: none;
}

.site-footer a:not(.chip):hover {
  color: var(--paper);
  text-decoration: underline;
}

.footer-block {
  margin-bottom: var(--sp-6);
}

.footer-block h2 {
  color: var(--paper);
  font-size: var(--text-xs);
  letter-spacing: .07em;
  margin-bottom: var(--sp-2);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-3);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding: 0;
  margin: 0 0 var(--sp-3);
  list-style: none;
}

.footer-note {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  /* gray-600 on ink is ~3.6:1 and fails AA for this legally load-bearing disclaimer; gray-300
     on ink clears AA for the small print. */
  color: var(--gray-300);
}

/* ---- Modals ------------------------------------------------------------- */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  /* Ink at 60%, derived from the token so a future ink change carries through. */
  background: color-mix(in srgb, var(--ink) 60%, transparent);
}

.modal {
  width: 100%;
  max-width: 32rem;
  background: var(--paper);
  border: var(--border-thick);
  border-radius: var(--radius-card);
  box-shadow: 8px 8px 0 var(--ink);
  padding: var(--sp-6);
}

.modal h2 {
  margin-bottom: var(--sp-3);
}

/* ---- Calculator form (F-003) -------------------------------------------- */
.calc-form-fields {
  display: block;
}

/* Salary vs hourly: the mode-is-* class (server-rendered) shows exactly one group. No :has()
   dependency, so it is correct on first paint and after an HTMX mode-switch re-render. */
.mode-is-salary .mode-hourly,
.mode-is-hourly .mode-salary {
  display: none;
}

/* Pay-type toggle: a fieldset with no chrome; each radio is visually replaced by its label pill. */
.mode-toggle {
  border: 0;
  padding: 0;
  margin: 0 0 var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2);
}

.mode-toggle legend {
  float: left;
  width: 100%;
}

.radio-pill {
  cursor: pointer;
}

/* The real radio stays in the DOM (keyboard + no-JS submit) but is visually replaced by its span. */
.radio-pill input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.radio-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap-min);
  padding: var(--sp-2) var(--sp-4);
  border: var(--border);
  border-radius: var(--radius-pill);
  background: var(--paper);
  font-weight: 700;
}

/* Selected mode gets the accent fill (scarce accent, matches the primary action). */
.radio-pill input:checked + span {
  background: var(--accent);
  color: var(--on-accent);
}

/* Mirror the hidden radio's keyboard focus onto the visible pill. */
.radio-pill input:focus-visible + span {
  outline: 3px solid var(--ink);
  outline-offset: 2px;
}

/* Two fields on one row (overtime hrs + rate, other income + deductions, 401k + health). */
.field-inline {
  display: flex;
  gap: var(--sp-3);
}

.field-inline > .field {
  flex: 1;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: var(--tap-min);
  margin-bottom: var(--sp-4);
  cursor: pointer;
}

.checkbox-row input {
  width: 1.25rem;
  height: 1.25rem;
}

/* REFINE (W-4 & pre-tax) collapsible: keeps the visible form to five fields on first load. */
.refine {
  margin-bottom: var(--sp-4);
  border-top: 2px solid var(--gray-300);
  padding-top: var(--sp-3);
}

.refine > summary {
  cursor: pointer;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  min-height: var(--tap-min);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  /* Suppress the native disclosure triangle — the Phosphor caret below is the marker. */
  list-style: none;
}

.refine > summary::-webkit-details-marker {
  display: none;
}

/* Closed: caret points right (▸); rotate to down (▾) on open (instant, matching the mega-menu). */
.refine > summary .refine-marker {
  transform: rotate(-90deg);
}

.refine[open] > summary .refine-marker {
  transform: rotate(0deg);
}

.refine[open] > summary {
  margin-bottom: var(--sp-3);
}

.field-year {
  max-width: 12rem;
}

/* ---- Result region trims ------------------------------------------------ */
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.result-disclaimer {
  margin-top: var(--sp-3);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray-600);
}

.feedback-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  margin-top: var(--sp-2);
  font-weight: 700;
  color: var(--ink);
}

/* Save action in the result row: an inline label + input + button that wraps with the other
   result actions. The label sits above its input; the whole form aligns to the action row baseline. */
.save-form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: var(--sp-2);
}

.save-label {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.save-label .field-input {
  width: 12rem;
  max-width: 100%;
}

/* Post-save confirmation / cap / verify card, swapped into the result region. */
.save-result {
  margin-top: 0;
}

/* ---- Calculator prose (intro / how-it-works / FAQ) ---------------------- */
.prose {
  max-width: var(--measure);
}

.prose p {
  margin-bottom: var(--sp-3);
}

.method-note {
  color: var(--gray-600);
  font-size: var(--text-sm);
}

.faq-item {
  margin-bottom: var(--sp-4);
}

.faq-item h3 {
  margin-bottom: var(--sp-1);
}

.source-line {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--gray-600);
}

/* ---- Motion (DESIGN_SPEC.md §Motion) ------------------------------------
   Exactly two moves, both gated on prefers-reduced-motion. Nothing animates on load. */
@media (prefers-reduced-motion: no-preference) {
  .btn {
    transition: transform .05s ease-out, box-shadow .05s ease-out;
  }

  /* Button press: shove down-right, shadow collapses. */
  .btn:not(:disabled):active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
  }

  .mega > summary .icon {
    transition: transform .12s ease-out;
  }

  /* HTMX result swap: fade-slide-up on the freshly added panel. */
  .result-panel.htmx-added {
    opacity: 0;
    transform: translateY(8px);
  }

  .result-panel.htmx-settling {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .15s ease-out, transform .15s ease-out;
  }
}
