/**
 * H.W.S Agency — Radical homepage redesign
 * Desktop-first implementation of the approved asymmetric concept.
 * Mobile uses a compact branded header; tablet stacks cleanly.
 */

:root {
  --hws-blue: #3bb2f6;
  --hws-ink: #292929;
  --hws-charcoal: #292929;
  --hws-white: #ffffff;
  --hws-fog: #f0f2f5;
  --hws-line: #d9dde1;
  --hws-muted: #606060;
  --hws-soft-muted: #858585;
  --hws-rail: 84px;
  --hws-font-display: "Syne", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --hws-font-body: "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --hws-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hws-focus: 0 0 0 3px rgba(59, 178, 246, 0.45);
  --hws-header-h: 3.5rem;
  --hws-tabbar-h: 5.25rem;
  --hws-safe-top: env(safe-area-inset-top, 0px);
  --hws-safe-bottom: env(safe-area-inset-bottom, 0px);
}

html:has(body.hws-body) {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--hws-white);
}

body.hws-body,
body.hws-body *,
body.hws-body *::before,
body.hws-body *::after {
  box-sizing: border-box;
}

body.hws-body {
  margin: 0;
  background: var(--hws-fog);
  color: var(--hws-ink);
  font-family: var(--hws-font-body);
  font-size: 16px;
  line-height: 1.55;
  padding-bottom: calc(var(--hws-tabbar-h) + var(--hws-safe-bottom));
  overscroll-behavior-y: none;
}

body.hws-body.hws-page-quiz {
  background: var(--hws-white);
}

body.hws-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

body.hws-body a {
  color: inherit;
  text-decoration: none;
}

body.hws-body ul,
body.hws-body ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.hws-body h1,
body.hws-body h2,
body.hws-body h3,
body.hws-body p {
  margin: 0;
}

body.hws-body :focus-visible {
  outline: none;
  box-shadow: var(--hws-focus);
}

/* Mobile / desktop copy variants */
.hws-only-mobile {
  display: none !important;
}

@media screen and (max-width: 1023px) {
  .hws-only-desktop {
    display: none !important;
  }

  .hws-only-mobile {
    display: block !important;
  }

  div.hws-only-mobile {
    display: block !important;
  }

  p.hws-only-mobile,
  .hws-lede.hws-only-mobile,
  .hws-work-card__summary.hws-only-mobile {
    display: block !important;
  }

  span.hws-only-mobile {
    display: inline !important;
  }

  .hws-quiz__option span span.hws-only-mobile {
    display: inline !important;
  }

  /* Keep mobile scannable: titles carry the cards */
  .hws-cap-card p,
  .hws-step p,
  .hws-proof-grid li p,
  .hws-about-values__grid li p,
  .hws-division-card__note,
  .hws-work-card__tags,
  .hws-hero__index,
  .hws-stack-card__excerpt {
    display: none !important;
  }

  .hws-section__intro h2,
  .hws-closing h2 {
    max-width: 18ch;
  }

  .hws-lede,
  .hws-hero__subrow p,
  .hws-quiz__lede,
  .hws-founder__bio p,
  .hws-about-story__body p,
  .hws-closing p:not(.hws-eyebrow),
  .hws-footer__brand p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .hws-founder__quote {
    font-size: 1rem;
  }
}

@media screen and (min-width: 1024px) {
  .hws-only-mobile {
    display: none !important;
  }
}

.hws-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--hws-ink);
  color: var(--hws-white);
  font-size: 0.875rem;
}

.hws-skip:focus {
  left: 1rem;
  top: 1rem;
}

/* —— Buttons & links —— */
.hws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 0;
  border-radius: 999px;
  padding: 1rem 1.5rem;
  font-family: var(--hws-font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.35s var(--hws-ease), background-color 0.25s ease, color 0.25s ease;
}

body.hws-body a.hws-btn--primary,
.hws-btn.hws-btn--primary {
  background: var(--hws-blue);
  color: var(--hws-white);
}

body.hws-body a.hws-btn--primary:hover,
.hws-btn.hws-btn--primary:hover {
  transform: translateY(-2px);
  background: #2aa3e8;
  color: var(--hws-white);
}

.hws-textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.3rem;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.hws-textlink:hover {
  color: var(--hws-blue);
}

.hws-eyebrow {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--hws-soft-muted);
}

.hws-eyebrow--on-blue,
.hws-eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.75);
}

.hws-lede {
  max-width: 36rem;
  color: var(--hws-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* —— Mobile app chrome (default; hidden on desktop) —— */
.hws-app-hero {
  display: none;
}

.hws-mobile-header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: calc(var(--hws-header-h) + var(--hws-safe-top));
  padding: var(--hws-safe-top) 1rem 0;
  background: var(--hws-fog);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 0;
}

.hws-mobile-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  font-family: var(--hws-font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hws-mobile-header__brand img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  flex-shrink: 0;
}

.hws-mobile-header__brand-text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}

.hws-mobile-header__brand-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.hws-mobile-header__brand-text small {
  font-family: var(--hws-font-body);
  font-size: 0.4375rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hws-soft-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hws-mobile-header__toggle,
.hws-mobile-nav,
.hws-explore {
  display: none !important;
}

/* Bottom tab bar — floating pill */
.hws-tabbar {
  position: fixed;
  left: 50%;
  bottom: calc(0.75rem + var(--hws-safe-bottom));
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.15rem;
  width: min(22.5rem, calc(100% - 1.5rem));
  height: 4rem;
  padding: 0.35rem 0.4rem;
  border: 1px solid rgba(217, 221, 225, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(1.4) blur(18px);
  backdrop-filter: saturate(1.4) blur(18px);
  box-shadow: 0 10px 28px rgba(41, 41, 41, 0.12);
  transform: translateX(-50%);
}

.hws-tabbar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  padding: 0.2rem 0.15rem;
  color: var(--hws-soft-muted);
  font-family: var(--hws-font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s var(--hws-ease);
  -webkit-tap-highlight-color: transparent;
}

.hws-tabbar__item:active {
  transform: scale(0.96);
}

.hws-tabbar__icon {
  width: 1.25rem;
  height: 1.25rem;
  display: grid;
  place-items: center;
}

.hws-tabbar__icon svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hws-tabbar__item.is-active {
  color: var(--hws-blue);
}

.hws-tabbar__item--cta {
  position: relative;
  z-index: 1;
  flex: 1.15 1 0;
  color: var(--hws-blue);
  font-weight: 700;
}

.hws-tabbar__item--cta .hws-tabbar__icon {
  width: 2.55rem;
  height: 2.55rem;
  margin-top: -1.15rem;
  border-radius: 999px;
  background: var(--hws-blue);
  color: var(--hws-white);
  box-shadow: 0 8px 18px rgba(59, 178, 246, 0.35);
}

.hws-tabbar__item--cta .hws-tabbar__icon svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2.25;
}

.hws-tabbar__item--cta.is-active {
  color: var(--hws-blue);
}

.hws-tabbar__item--cta.is-active .hws-tabbar__icon {
  box-shadow:
    0 0 0 3px rgba(59, 178, 246, 0.2),
    0 8px 18px rgba(59, 178, 246, 0.35);
}

/* —— Mobile app homepage modules (≤1023px) —— */
@media screen and (max-width: 1023px) {
  .hws-hero--desktop {
    display: none !important;
  }

  .hws-app-hero {
    display: block;
    margin: 0.7rem 0.7rem 0;
  }

  .hws-app-hero__card {
    position: relative;
    overflow: hidden;
    min-height: min(72vh, 36rem);
    display: flex;
    flex-direction: column;
    padding: 1.35rem 1.2rem 1.25rem;
    border-radius: 1.65rem;
    background: var(--hws-blue);
    color: var(--hws-white);
    box-shadow: 0 16px 35px rgba(59, 178, 246, 0.24);
  }

  .hws-app-hero__card::before,
  .hws-app-hero__card::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.28);
    transform: rotate(45deg);
    pointer-events: none;
  }

  .hws-app-hero__card::before {
    width: 18rem;
    height: 18rem;
    right: -9rem;
    bottom: -7rem;
  }

  .hws-app-hero__card::after {
    width: 10.5rem;
    height: 10.5rem;
    right: -4.5rem;
    bottom: -3.25rem;
    border-color: rgba(255, 255, 255, 0.34);
  }

  .hws-app-hero__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .hws-app-hero__label {
    margin: 0;
    font-size: 0.4375rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #e6f6ff;
  }

  .hws-app-hero__avail {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin: 0;
    padding: 0.45rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-size: 0.4375rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hws-white);
    white-space: nowrap;
  }

  .hws-app-hero__dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: #8cff9a;
    flex-shrink: 0;
  }

  .hws-app-hero__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: center;
    min-height: 0;
    padding: 1.5rem 0 0.75rem;
    gap: 0.15rem;
  }

  .hws-app-hero__index {
    margin: 0;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #d8f2ff;
  }

  .hws-app-hero__title {
    margin: 0.9rem 0 1.1rem;
    font-family: var(--hws-font-display);
    font-size: clamp(2.75rem, 12.5vw, 3.6rem);
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.05em;
    max-width: 11ch;
    color: var(--hws-white);
  }

  .hws-app-hero__title span {
    display: block;
    color: #15292f;
  }

  .hws-app-hero__lead {
    margin: 0;
    max-width: 28ch;
    font-size: clamp(1rem, 4.2vw, 1.15rem);
    line-height: 1.45;
    color: #e9f8ff;
  }

  .hws-app-hero__actions {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-top: 1.35rem;
    flex-shrink: 0;
  }

  .hws-app-hero__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.4rem;
    min-width: 0;
    min-height: 3.1rem;
    padding: 0 0.75rem;
    border-radius: 0.95rem;
    font-size: 0.5625rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .hws-app-hero__btn span:first-child {
    flex: 1 1 auto;
    min-width: 0;
  }

  .hws-app-hero__btn span:last-child {
    flex: 0 0 auto;
  }

  .hws-app-hero__btn:active {
    transform: scale(0.98);
  }

  .hws-app-hero__btn:focus-visible {
    outline: 2px solid var(--hws-white);
    outline-offset: 3px;
  }

  body.hws-body a.hws-app-hero__btn--primary,
  .hws-app-hero__btn--primary {
    background: var(--hws-white);
    color: #1e2224;
  }

  body.hws-body a.hws-app-hero__btn--primary span:first-child,
  .hws-app-hero__btn--primary span:first-child {
    color: #1e2224;
  }

  .hws-app-hero__btn--primary span:last-child {
    color: var(--hws-blue);
    font-size: 1rem;
  }

  body.hws-body a.hws-app-hero__btn--secondary,
  .hws-app-hero__btn--secondary {
    background: #1f2b2f;
    color: var(--hws-white);
  }

  body.hws-body a.hws-app-hero__btn--secondary span:first-child,
  .hws-app-hero__btn--secondary span:first-child {
    color: var(--hws-white);
  }

  .hws-app-hero__btn--secondary span:last-child {
    color: #79cbfa;
    font-size: 1rem;
  }

  .hws-app-hero__signal {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    flex-shrink: 0;
  }

  .hws-app-hero__signal span {
    font-size: 0.4375rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #def4ff;
  }

  .hws-app-hero__signal strong {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--hws-white);
    text-align: right;
  }

  #work,
  #capabilities,
  #divisions,
  #approach,
  #proof {
    scroll-margin-top: calc(var(--hws-header-h) + var(--hws-safe-top) + 0.85rem);
  }

  .hws-division-card > p.hws-only-mobile {
    display: block !important;
  }
}

.hws-main {
  min-width: 0;
}

/* —— Mobile app surface rhythm —— */
.hws-hero {
  display: grid;
  background: var(--hws-white);
  border-radius: 0 0 1.35rem 1.35rem;
  overflow: hidden;
}

.hws-section,
.hws-page-hero,
.hws-article,
.hws-quiz,
.hws-about-story,
.hws-blog-list {
  margin: 0.7rem 0.7rem 0;
  padding-left: 1.15rem;
  padding-right: 1.15rem;
  border-radius: 1.25rem;
  background: var(--hws-white);
}

.hws-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.hws-closing {
  margin: 0.7rem 0.7rem 0;
  border-radius: 1.25rem;
  overflow: hidden;
}

.hws-footer {
  margin: 0.7rem 0.7rem 1rem;
  border-radius: 1.25rem;
  border: 0;
  overflow: hidden;
}

.hws-footer__top {
  gap: 1.75rem;
  padding: 1.75rem 1.15rem;
}

.hws-footer__bottom {
  padding: 1rem 1.15rem 1.25rem;
  font-size: 0.75rem;
}

.hws-btn {
  min-height: 3rem;
  border-radius: 1rem;
  padding: 0.95rem 1.35rem;
}

.hws-hero__actions .hws-btn,
.hws-closing .hws-btn {
  width: 100%;
}

.hws-quiz {
  margin-top: 0.7rem;
}

/* —— Site shell —— */
.hws-rail {
  display: none;
}

.hws-nav {
  display: none;
}

/* —— Hero (stacked below desktop) —— */

.hws-hero__copy {
  padding: 2.5rem 1.25rem 2rem;
}

.hws-hero__index {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.5625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hws-soft-muted);
  border-top: 1px solid var(--hws-ink);
  padding-top: 0.65rem;
}

.hws-hero__title {
  margin: 2rem 0 1.5rem;
  font-family: var(--hws-font-display);
  font-size: clamp(2.75rem, 10vw, 4.5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.055em;
  max-width: 14ch;
}

.hws-hero__line1,
.hws-hero__line3 {
  display: block;
}

.hws-hero__accent {
  display: block;
  color: var(--hws-blue);
  margin-left: 0;
}

.hws-hero__subrow {
  display: grid;
  gap: 1rem;
  max-width: 38rem;
}

.hws-hero__line {
  width: 88px;
  height: 2px;
  background: var(--hws-blue);
}

.hws-hero__subrow p {
  color: var(--hws-muted);
  font-size: 1rem;
  line-height: 1.55;
}

.hws-hero__actions {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hws-hero__actions .hws-textlink {
  text-align: center;
  padding: 0.35rem 0;
}

.hws-hero__panel {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  padding: 1.75rem;
  background: var(--hws-blue);
  color: var(--hws-white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hws-hero__panel::before {
  content: "HWS";
  position: absolute;
  right: -2.5rem;
  top: 3.5rem;
  font-family: var(--hws-font-display);
  font-size: clamp(7rem, 22vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  color: rgba(255, 255, 255, 0.14);
  transform: rotate(90deg);
  pointer-events: none;
  line-height: 1;
}

.hws-hero__panel-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.5625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hws-hero__mark {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  margin: 1.5rem auto;
  border: 2px solid var(--hws-white);
  transform: rotate(45deg);
}

.hws-hero__mark::before,
.hws-hero__mark::after {
  content: "";
  position: absolute;
  border: 2px solid var(--hws-white);
}

.hws-hero__mark::before {
  inset: 18px;
}

.hws-hero__mark::after {
  inset: 36px;
  background: var(--hws-white);
}

.hws-hero__panel-bottom {
  position: relative;
  z-index: 1;
}

.hws-hero__panel-bottom h2 {
  margin-top: 0.75rem;
  font-family: var(--hws-font-display);
  font-size: clamp(1.65rem, 4.5vw, 2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 18ch;
}

/* —— Sections —— */
.hws-section {
  padding: 2rem 1.15rem;
  border-top: 0;
}

.hws-section__intro {
  margin-bottom: 2.5rem;
}

.hws-section__intro h2,
.hws-closing h2 {
  margin: 0.85rem 0 1rem;
  font-family: var(--hws-font-display);
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.04em;
  max-width: 16ch;
}

.hws-section__intro--row {
  display: grid;
  gap: 1.25rem;
}

/* Capabilities */
.hws-cap-grid {
  display: grid;
  gap: 1px;
  background: var(--hws-line);
  border: 1px solid var(--hws-line);
}

.hws-cap-card {
  background: var(--hws-white);
  padding: 1.75rem 1.35rem;
  position: relative;
  transition: background-color 0.3s ease;
}

.hws-cap-card:hover {
  background: var(--hws-fog);
}

.hws-cap-card__num {
  display: block;
  margin-bottom: 2rem;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  color: var(--hws-soft-muted);
}

.hws-cap-card h3 {
  font-family: var(--hws-font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.65rem;
}

.hws-cap-card p {
  color: var(--hws-muted);
  font-size: 0.9375rem;
  max-width: 28ch;
}

/* Work */
.hws-work-list,
[data-hws-work-list] {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1.15rem;
  padding: 0.15rem 1.15rem 0.35rem;
  margin: 0 -1.15rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.hws-work-list::-webkit-scrollbar,
[data-hws-work-list]::-webkit-scrollbar {
  display: none;
}

.hws-work-card {
  flex: 0 0 min(82vw, 20.5rem);
  scroll-snap-align: start;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 1.15rem;
  border: 1px solid var(--hws-line);
  border-radius: 1.1rem;
  background: var(--hws-white);
  text-decoration: none;
  color: inherit;
}

.hws-work-card--featured,
.hws-work-card--browser {
  grid-template-columns: 1fr;
}

.hws-work-card__media {
  max-width: none;
  width: 100%;
}

body.hws-body .hws-work-card__shot img,
.hws-work-card__shot img {
  max-height: 11.5rem;
  width: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
}

.hws-browser {
  border-radius: 0.75rem;
  overflow: hidden;
}

.hws-browser__body {
  height: 10.5rem;
}

.hws-work-card--featured {
  gap: 1.5rem;
}

.hws-work-card__content {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.hws-work-card__content::before {
  content: "";
  width: 2.25rem;
  height: 2px;
  background: var(--hws-blue);
}

.hws-work-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hws-soft-muted);
}

.hws-work-card__title {
  font-family: var(--hws-font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: none;
  transition: color 0.3s ease;
}

.hws-work-card:hover .hws-work-card__title {
  color: var(--hws-blue);
}

.hws-work-card__summary {
  color: var(--hws-muted);
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.55;
}

.hws-work-card__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin-top: 0.15rem;
  font-size: 0.625rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hws-soft-muted);
}

.hws-work-card__tags span {
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--hws-soft-muted);
}

.hws-work-card__tag-sep {
  color: var(--hws-line);
}

.hws-work-card__cta {
  justify-self: start;
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hws-blue);
  transition: gap 0.3s var(--hws-ease);
}

.hws-work-card:hover .hws-work-card__cta {
  gap: 0.65rem;
}

.hws-work-card__media {
  position: relative;
  width: 100%;
  max-width: 28rem;
  justify-self: start;
}

.hws-work-card__shot {
  margin: 0;
  position: relative;
  overflow: visible;
  background: transparent;
  border: 0;
  display: block;
  padding: 0;
}

body.hws-body .hws-work-card__shot img,
.hws-work-card__shot img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 11.5rem;
  object-fit: cover;
  object-position: center;
  display: block;
  background: transparent;
  border-radius: 0.75rem;
  transition: transform 0.7s var(--hws-ease);
}

.hws-work-card:hover .hws-work-card__shot img {
  transform: scale(1.02);
}

/* Browser demo preview — matches flooring branch treatment, sized like work photos */
.hws-work-card__media--browser {
  max-width: 22rem;
  width: 100%;
  justify-self: center;
}

.hws-browser {
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: #1a1f22;
  color: var(--hws-white);
  box-shadow: 0 14px 32px rgba(41, 41, 41, 0.14);
  transition: transform 0.35s var(--hws-ease), box-shadow 0.35s ease;
}

.hws-work-card:hover .hws-browser {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(41, 41, 41, 0.18);
}

.hws-browser__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.55rem;
  background: #14191c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hws-browser__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.hws-browser__dot:nth-child(1) {
  background: #ff5f57;
}

.hws-browser__dot:nth-child(2) {
  background: #febc2e;
}

.hws-browser__dot:nth-child(3) {
  background: #28c840;
}

.hws-browser__url {
  margin-left: 0.3rem;
  flex: 1;
  min-width: 0;
  padding: 0.2rem 0.45rem;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.5rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hws-browser__live {
  flex-shrink: 0;
  padding: 0.18rem 0.4rem;
  border: 1px solid rgba(59, 178, 246, 0.55);
  background: rgba(59, 178, 246, 0.16);
  color: #c8ebff;
  font-size: 0.4375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hws-browser__body {
  position: relative;
  aspect-ratio: auto;
  height: 11.5rem;
  overflow: hidden;
  background: #0c1214;
}

body.hws-body .hws-browser__body img,
.hws-browser__body img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s var(--hws-ease);
}

.hws-work-card:hover .hws-browser__body img {
  transform: scale(1.03);
}

.hws-browser__caption {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 0.75rem;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(180deg, transparent, rgba(10, 18, 20, 0.92));
}

.hws-browser__caption strong {
  font-family: var(--hws-font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--hws-white);
}

.hws-browser__caption span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 500;
}

/* Approach */
.hws-steps {
  display: grid;
  gap: 1px;
  background: var(--hws-line);
  border: 1px solid var(--hws-line);
}

.hws-step {
  background: var(--hws-white);
  padding: 1.5rem 1.25rem;
}

.hws-step__num {
  display: block;
  margin-bottom: 1.25rem;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  color: var(--hws-blue);
  font-weight: 700;
}

.hws-step h3 {
  font-family: var(--hws-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.hws-step p {
  color: var(--hws-muted);
  font-size: 0.9rem;
  max-width: 26ch;
}

/* Divisions */
.hws-divisions {
  background: var(--hws-fog);
}

.hws-divisions__layout {
  display: grid;
  gap: 2rem;
}

.hws-division-card {
  background: var(--hws-white);
  border: 1px solid var(--hws-line);
  padding: 2rem 1.5rem;
}

.hws-division-card--flooring {
  --hws-division-accent: #f25a2a;
}

.hws-division-card__status {
  font-size: 0.5625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hws-blue);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hws-division-card--flooring .hws-division-card__status {
  color: var(--hws-division-accent);
}

.hws-division-card h3 {
  font-family: var(--hws-font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.035em;
  margin-bottom: 0.85rem;
}

.hws-division-card--flooring h3 {
  color: var(--hws-division-accent);
}

.hws-division-card > p {
  color: var(--hws-muted);
  margin-bottom: 1.5rem;
  max-width: 42rem;
}

.hws-division-card__note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--hws-soft-muted);
}

.hws-division-card--flooring .hws-textlink {
  color: var(--hws-division-accent);
}

.hws-division-card--flooring .hws-textlink:hover {
  color: #d94c20;
}

@media screen and (max-width: 1023px) {
  .hws-division-card {
    border-radius: 1.15rem;
  }
}

.hws-division-card a[aria-disabled="true"] {
  opacity: 0.7;
  pointer-events: none;
  cursor: default;
}

/* Proof */
.hws-proof-grid {
  display: grid;
  gap: 1px;
  background: var(--hws-line);
  border: 1px solid var(--hws-line);
}

.hws-proof-grid li {
  background: var(--hws-white);
  padding: 1.75rem 1.35rem;
}

.hws-proof-grid h3 {
  font-family: var(--hws-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.hws-proof-grid p {
  color: var(--hws-muted);
  font-size: 0.9rem;
  max-width: 28ch;
}

/* Closing */
.hws-closing {
  padding: 4.5rem 1.25rem;
  background: var(--hws-ink);
  color: var(--hws-white);
  border-top: 1px solid var(--hws-ink);
}

.hws-closing p:not(.hws-eyebrow) {
  max-width: 34rem;
  color: #bbb;
  margin-bottom: 2rem;
}

body.hws-body .hws-closing a.hws-btn--primary:hover,
.hws-closing .hws-btn--primary:hover {
  background: #54bff8;
  color: var(--hws-white);
}

/* Footer */
.hws-footer {
  border-top: 1px solid var(--hws-line);
  background: var(--hws-white);
}

.hws-footer__top {
  display: grid;
  gap: 2.5rem;
  padding: 3rem 1.25rem;
}

.hws-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--hws-font-display);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hws-footer__logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hws-footer__brand p {
  color: var(--hws-muted);
  font-size: 0.9rem;
  max-width: 28rem;
}

.hws-footer__label {
  font-size: 0.5625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hws-soft-muted);
  margin-bottom: 1rem;
}

.hws-footer__nav ul,
.hws-footer__legal-col ul {
  display: grid;
  gap: 0.65rem;
}

.hws-footer__nav a,
.hws-footer__legal-col a,
.hws-footer__contact a {
  font-size: 0.9rem;
  transition: color 0.25s ease;
}

.hws-footer__nav a:hover,
.hws-footer__legal-col a:hover,
.hws-footer__contact a:hover {
  color: var(--hws-blue);
}

.hws-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.hws-footer__social a {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--hws-line);
  padding-bottom: 0.2rem;
}

.hws-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.25rem;
  border-top: 1px solid var(--hws-line);
  font-size: 0.75rem;
  color: var(--hws-soft-muted);
}

/* —— Reveal motion —— */
[data-hws-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--hws-ease), transform 0.8s var(--hws-ease);
}

[data-hws-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.hws-hero.is-visible .hws-hero__panel {
  animation: hws-panel-in 1s var(--hws-ease) both;
}

@keyframes hws-panel-in {
  from {
    transform: translateX(24px);
    opacity: 0.65;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:has(body.hws-body) {
    scroll-behavior: auto;
  }

  body.hws-body *,
  body.hws-body *::before,
  body.hws-body *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  body.hws-body [data-hws-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   TABLET
   ========================================================= */
@media screen and (min-width: 768px) {
  .hws-hero__copy {
    padding: 3.25rem 2.5rem 2.5rem;
  }

  .hws-hero__accent {
    margin-left: 3.5rem;
  }

  .hws-hero__subrow {
    grid-template-columns: 88px 1fr;
    align-items: start;
    gap: 1.25rem;
  }

  .hws-hero__line {
    width: auto;
    margin-top: 0.65rem;
  }

  .hws-hero__actions {
    margin-left: 0;
  }

  .hws-hero__panel {
    min-height: 28rem;
    padding: 2.25rem;
  }

  .hws-section,
  .hws-closing {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .hws-footer__top,
  .hws-footer__bottom {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .hws-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hws-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .hws-step:nth-child(4),
  .hws-step:nth-child(5) {
    grid-column: span 1;
  }

  .hws-proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hws-proof-grid li:nth-child(4),
  .hws-proof-grid li:nth-child(5) {
    grid-column: span 1;
  }

  .hws-section__intro--row {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }

  .hws-divisions__layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .hws-footer__top {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

/* =========================================================
   DESKTOP — approved radical concept
   ========================================================= */
@media screen and (min-width: 1024px) {
  .hws-mobile-header,
  .hws-mobile-nav,
  .hws-tabbar,
  .hws-app-hero {
    display: none !important;
  }

  body.hws-body {
    overflow-x: hidden;
    background: var(--hws-white);
    padding-bottom: 0;
  }

  .hws-hero {
    border-radius: 0;
  }

  .hws-section,
  .hws-page-hero,
  .hws-article,
  .hws-quiz,
  .hws-about-story,
  .hws-blog-list,
  .hws-closing,
  .hws-footer {
    margin: 0;
    border-radius: 0;
  }

  .hws-section {
    padding: 4.5rem 1.25rem;
    border-top: 1px solid var(--hws-line);
  }

  .hws-footer {
    border-top: 1px solid var(--hws-line);
  }

  .hws-footer__top {
    gap: 2.5rem;
    padding: 3rem 1.25rem;
  }

  .hws-footer__bottom {
    padding: 1.25rem;
    font-size: inherit;
  }

  .hws-btn {
    min-height: 0;
    border-radius: 999px;
    padding: 1rem 1.5rem;
  }

  .hws-hero__actions {
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
  }

  .hws-hero__actions .hws-btn,
  .hws-closing .hws-btn {
    width: auto;
  }

  .hws-hero__actions .hws-textlink {
    text-align: left;
    padding: 0;
  }

  .hws-work-list,
  [data-hws-work-list] {
    display: grid;
    gap: 0;
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    margin: 0;
  }

  .hws-work-card {
    flex: none;
    scroll-snap-align: none;
    gap: 1.35rem;
    padding: 2rem 0;
    border: 0;
    border-top: 1px solid var(--hws-line);
    border-radius: 0;
    background: transparent;
  }

  .hws-work-card:first-child {
    border-top: 1px solid var(--hws-line);
    padding-top: 2rem;
  }

  .hws-work-card:not(.hws-work-card--featured) .hws-work-card__content {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) auto;
    grid-template-areas:
      "meta meta meta"
      "title summary cta"
      "tags tags cta";
    column-gap: 2.5rem;
    row-gap: 0.85rem;
    align-items: start;
  }

  .hws-work-card--featured {
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.25fr);
    gap: 2rem 2.75rem;
    align-items: center;
  }

  .hws-work-card--browser {
    grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.25fr);
  }

  .hws-work-card__media {
    max-width: 30rem;
    width: auto;
    justify-self: stretch;
  }

  .hws-work-card--browser .hws-work-card__media {
    max-width: 24rem;
    width: 24rem;
    justify-self: center;
  }

  .hws-work-card--featured .hws-work-card__content {
    display: grid;
    gap: 0.8rem;
    min-width: 0;
  }

  body.hws-body .hws-work-card__shot img,
  .hws-work-card__shot img {
    max-height: none;
    border-radius: 0;
    object-fit: contain;
  }

  .hws-browser {
    border-radius: 12px;
  }

  .hws-browser__body {
    height: 12.75rem;
  }

  .hws-site {
    display: grid;
    grid-template-columns: var(--hws-rail) minmax(0, 1fr);
    min-height: 100vh;
  }

  .hws-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 1.5rem 0;
    border-right: 1px solid var(--hws-line);
    background: var(--hws-white);
    z-index: 50;
  }

  .hws-rail__logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
  }

  .hws-rail__label {
    font-size: 0.5625rem;
    letter-spacing: 0.22em;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    color: var(--hws-soft-muted);
    text-transform: uppercase;
  }

  .hws-rail__num {
    width: 34px;
    height: 34px;
    border: 1px solid var(--hws-ink);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.625rem;
    font-weight: 600;
  }

  .hws-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 76px;
    padding: 0 2.625rem;
    border-bottom: 1px solid var(--hws-line);
    background: var(--hws-white);
    position: sticky;
    top: 0;
    z-index: 40;
  }

  .hws-nav__wordmark {
    font-family: var(--hws-font-display);
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
  }

  .hws-nav__links {
    display: flex;
    gap: 1.75rem;
    text-transform: uppercase;
    font-size: 0.5625rem;
    letter-spacing: 0.15em;
    font-weight: 600;
  }

  .hws-nav__links a {
    transition: color 0.25s ease;
  }

  .hws-nav__links a:hover {
    color: var(--hws-blue);
  }

  body.hws-body a.hws-nav__cta,
  .hws-nav__cta {
    justify-self: end;
    background: var(--hws-ink);
    color: var(--hws-white);
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: background-color 0.25s ease, transform 0.35s var(--hws-ease);
  }

  body.hws-body a.hws-nav__cta:hover,
  .hws-nav__cta:hover {
    background: var(--hws-blue);
    color: var(--hws-white);
    transform: translateY(-1px);
  }

  .hws-hero {
    grid-template-columns: minmax(0, 1.18fr) minmax(350px, 0.82fr);
    min-height: calc(100vh - 76px);
  }

  .hws-hero__copy {
    padding: 3.75rem 2.875rem 2.375rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  .hws-hero__title {
    margin: 3.625rem 0 1.75rem;
    font-size: clamp(3.75rem, 6.2vw, 4.875rem);
    max-width: 11.5ch;
  }

  .hws-hero__accent {
    margin-left: 5.5rem;
  }

  .hws-hero__actions {
    margin-left: 88px;
  }

  .hws-hero__panel {
    min-height: 100%;
    padding: 2.25rem;
  }

  .hws-hero__mark {
    width: 110px;
    height: 110px;
    margin: 1.35rem auto 0;
  }

  .hws-hero__mark::before {
    inset: 20px;
  }

  .hws-hero__mark::after {
    inset: 40px;
  }

  .hws-hero__panel-bottom h2 {
    font-size: 1.9375rem;
    max-width: 360px;
  }

  .hws-section {
    padding: 6rem 3.5rem;
  }

  .hws-cap-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hws-cap-card {
    padding: 2rem 1.6rem 2.25rem;
    min-height: 17rem;
  }

  .hws-steps {
    grid-template-columns: repeat(5, 1fr);
  }

  .hws-step {
    padding: 1.75rem 1.35rem 2rem;
    min-height: 14rem;
  }

  .hws-proof-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .hws-proof-grid li {
    min-height: 13rem;
  }

  .hws-work-card {
    padding: 3rem 0;
  }

  .hws-work-card:first-child {
    padding-top: 2.75rem;
  }

  .hws-work-card--featured {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.35fr);
    gap: 2.25rem 3.25rem;
  }

  .hws-work-card--browser {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.35fr);
  }

  .hws-work-card__media {
    max-width: 32rem;
    width: auto;
  }

  .hws-work-card--browser .hws-work-card__media {
    max-width: 26rem;
    width: 26rem;
    justify-self: center;
  }

  .hws-browser__body {
    height: 13.75rem;
  }

  body.hws-body .hws-work-card__shot img,
  .hws-work-card__shot img {
    max-height: 15.5rem;
  }

  .hws-work-card--featured .hws-work-card__title {
    max-width: 24ch;
  }

  .hws-work-card--featured .hws-work-card__summary {
    max-width: 46rem;
  }

  .hws-closing {
    padding: 7rem 3.5rem;
  }

  .hws-closing h2 {
    font-size: 3.5rem;
    max-width: 14ch;
  }

  .hws-footer__top {
    padding: 4rem 3.5rem;
  }

  .hws-footer__bottom {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

@media screen and (min-width: 1280px) {
  .hws-hero__title {
    font-size: 4.875rem;
    letter-spacing: -0.07em;
  }

  .hws-nav,
  .hws-hero__copy {
    padding-left: 2.875rem;
    padding-right: 2.875rem;
  }

  .hws-section,
  .hws-closing {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .hws-footer__top,
  .hws-footer__bottom {
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .hws-page-hero,
  .hws-page-about .hws-section,
  .hws-page-about .hws-closing {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* —— Shared page hero (About + future inner pages) —— */
.hws-page-hero {
  display: grid;
  gap: 0;
  border-bottom: 1px solid var(--hws-line);
}

.hws-page-hero__copy {
  padding: 2.5rem 1.25rem 2.5rem;
}

.hws-page-hero__title {
  margin: 2rem 0 1.5rem;
  font-family: var(--hws-font-display);
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.05em;
  max-width: 14ch;
}

.hws-page-hero__title .hws-hero__accent {
  margin-left: 0;
  margin-top: 0.15em;
}

.hws-page-hero__panel {
  background: var(--hws-blue);
  color: var(--hws-white);
  padding: 2rem 1.5rem;
  min-height: 14rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hws-page-hero__panel h2 {
  margin-top: 0.85rem;
  font-family: var(--hws-font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 16ch;
}

.hws-nav__links a[aria-current="page"] {
  color: var(--hws-blue);
}

/* About story */
.hws-about-story__layout {
  display: grid;
  gap: 1.75rem;
}

.hws-about-story__body {
  display: grid;
  gap: 1.15rem;
  max-width: 42rem;
}

.hws-about-story__body p {
  color: var(--hws-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Founder — text only, no portrait */
.hws-founder {
  background: var(--hws-fog);
}

.hws-founder__layout {
  display: grid;
  gap: 2.5rem;
}

.hws-founder__role {
  margin: 1.25rem 0 0.35rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hws-blue);
}

.hws-founder__meta h2 {
  font-family: var(--hws-font-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hws-founder__quote {
  margin: 0 0 1.75rem;
  padding: 0;
  border: 0;
  font-family: var(--hws-font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  max-width: 22ch;
  color: var(--hws-ink);
}

.hws-founder__bio {
  display: grid;
  gap: 1.1rem;
  max-width: 40rem;
  padding-top: 0.25rem;
}

.hws-founder__bio p {
  color: var(--hws-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.hws-about-values__grid {
  grid-template-columns: 1fr;
}

@media screen and (min-width: 768px) {
  .hws-page-hero__copy {
    padding: 3.25rem 2.5rem 3rem;
  }

  .hws-page-hero__panel {
    padding: 2.5rem;
    min-height: 16rem;
  }

  .hws-about-story__layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }

  .hws-about-story .hws-section__intro {
    margin-bottom: 0;
  }

  .hws-founder__layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
  }

  .hws-about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .hws-page-hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    min-height: calc(100vh - 76px);
  }

  .hws-page-hero__copy {
    padding: 4rem 2.875rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hws-page-hero__title {
    font-size: clamp(3.25rem, 5vw, 4.25rem);
    max-width: 13ch;
  }

  .hws-page-hero__panel {
    min-height: 100%;
    padding: 2.75rem;
  }

  .hws-page-about .hws-section,
  .hws-page-about .hws-closing {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .hws-about-values__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* —— Blog index & articles —— */
.hws-blog-index {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.hws-blog-index__header {
  max-width: 56rem;
  margin: 0 auto 1.75rem;
}

.hws-blog-index__header h1 {
  margin: 0.55rem 0 0;
  font-family: var(--hws-font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hws-blog-search {
  max-width: 56rem;
  margin: 0 auto 1.75rem;
}

.hws-blog-search__label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hws-soft-muted);
}

.hws-blog-search__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0.75rem 1rem;
  border-bottom: 1px solid var(--hws-line);
  transition: border-color 0.25s ease;
}

.hws-blog-search__row:focus-within {
  border-bottom-color: var(--hws-charcoal);
}

.hws-blog-search__input {
  width: 100%;
  min-width: 0;
  padding: 0.55rem 0 0.85rem;
  border: 0;
  background: transparent;
  color: var(--hws-charcoal);
  font-family: var(--hws-font-display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.hws-blog-search__input::placeholder {
  color: var(--hws-soft-muted);
  font-weight: 500;
}

.hws-blog-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.hws-blog-search__clear {
  margin: 0 0 0.75rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--hws-soft-muted);
  font-family: var(--hws-font-body);
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}

.hws-blog-search__clear:hover {
  color: var(--hws-blue);
}

.hws-blog-search__status {
  min-height: 1.25rem;
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: var(--hws-soft-muted);
}

.hws-blog-empty {
  max-width: 56rem;
  margin: 0 auto 1.5rem;
  color: var(--hws-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hws-stack-card[hidden] {
  display: none !important;
}

/* Sticky stacking entries (no card chrome) */
.hws-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 56rem;
  margin: 0 auto;
  padding-bottom: 2rem;
  gap: 0;
}

.hws-stack-card {
  --stack-i: 0;
  position: sticky;
  top: calc(5.5rem + (var(--stack-i) * 0.7rem));
  z-index: calc(10 + var(--stack-i));
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin-bottom: 0;
  padding: 1.75rem 0;
  background: var(--hws-white);
  border: 0;
  border-bottom: 1px solid var(--hws-line);
  overflow: hidden;
  text-decoration: none;
  box-shadow: none;
  transition: none;
}

.hws-stack-card--last {
  border-bottom: 0;
  padding-bottom: 0.5rem;
}

.hws-stack-card:hover {
  border-color: var(--hws-line);
  box-shadow: none;
}

.hws-stack-card__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--hws-fog);
}

body.hws-body .hws-stack-card__media img,
.hws-stack-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s var(--hws-ease);
}

.hws-stack-card:hover .hws-stack-card__media img {
  transform: scale(1.03);
}

.hws-stack-card__body {
  display: grid;
  gap: 0.65rem;
  align-content: center;
  padding: 1.15rem 0 0;
  background: transparent;
  border: 0;
}

.hws-stack-card__body::before {
  content: "";
  width: 2.25rem;
  height: 2px;
  background: var(--hws-blue);
}

.hws-stack-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hws-soft-muted);
}

.hws-stack-card__title {
  font-family: var(--hws-font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  max-width: 20ch;
  transition: color 0.3s ease;
}

.hws-stack-card:hover .hws-stack-card__title {
  color: var(--hws-blue);
}

.hws-stack-card__excerpt {
  color: var(--hws-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 36rem;
}

.hws-stack-card .hws-textlink {
  justify-self: start;
  margin-top: 0.35rem;
}

/* Related posts on article pages */
.hws-blog-more__grid {
  display: grid;
  gap: 1px;
  background: var(--hws-line);
  border: 1px solid var(--hws-line);
}

.hws-blog-card--compact {
  display: grid;
  background: var(--hws-white);
  text-decoration: none;
  padding: 1.35rem 1.25rem 1.5rem;
}

.hws-blog-card--compact .hws-blog-card__title,
.hws-blog-card--compact .hws-stack-card__title {
  font-family: var(--hws-font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 16ch;
  margin: 0.5rem 0;
}

.hws-blog-card--compact .hws-blog-card__meta {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hws-soft-muted);
}

.hws-article {
  padding: 2.5rem 1.25rem 3rem;
  border-bottom: 1px solid var(--hws-line);
}

.hws-article__header {
  max-width: 46rem;
  margin-bottom: 2.5rem;
}

.hws-article__header .hws-eyebrow a {
  color: inherit;
  text-decoration: none;
}

.hws-article__header .hws-eyebrow a:hover {
  color: var(--hws-blue);
}

.hws-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin: 1.25rem 0 1rem;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hws-soft-muted);
}

.hws-article__header h1 {
  font-family: var(--hws-font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin-bottom: 1.15rem;
}

.hws-article__dek {
  color: var(--hws-muted);
  font-size: 1.1rem;
  line-height: 1.55;
  max-width: 38rem;
}

.hws-article__body {
  max-width: 42rem;
  display: grid;
  gap: 1.25rem;
}

.hws-article__body p {
  color: var(--hws-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hws-article__body h2 {
  margin-top: 0.75rem;
  font-family: var(--hws-font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--hws-charcoal);
}

.hws-article__body a {
  color: var(--hws-blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.hws-article__body a:hover {
  color: var(--hws-charcoal);
}

.hws-legal .hws-article__body {
  max-width: 46rem;
}

.hws-article__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--hws-line);
  max-width: 42rem;
}

@media screen and (min-width: 768px) {
  .hws-blog-index__header,
  .hws-blog-search,
  .hws-blog-empty {
    max-width: 52rem;
  }

  .hws-stack {
    max-width: 52rem;
  }

  .hws-stack-card {
    grid-template-columns: minmax(220px, 38%) minmax(0, 1fr);
    column-gap: 1.75rem;
    min-height: 13.5rem;
    top: calc(6.1rem + (var(--stack-i) * 0.75rem));
    padding: 2rem 0;
    align-items: stretch;
  }

  .hws-stack-card__media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 13.5rem;
    align-self: stretch;
  }

  .hws-stack-card__body {
    padding: 0.25rem 0 0.25rem 0.25rem;
    gap: 0.55rem;
    border: 0;
    min-height: 13.5rem;
  }

  .hws-stack-card__title {
    font-size: clamp(1.35rem, 2vw, 1.7rem);
    max-width: 22ch;
  }

  .hws-blog-more__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hws-article {
    padding: 3.25rem 2.5rem 4rem;
  }
}

@media screen and (min-width: 1024px) {
  .hws-page-blog .hws-section,
  .hws-page-blog .hws-closing,
  .hws-page-article .hws-section,
  .hws-page-article .hws-closing,
  .hws-page-legal .hws-section,
  .hws-page-legal .hws-closing {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }

  .hws-article {
    padding: 4rem 3.5rem 5rem;
  }

  .hws-nav__links {
    gap: 1.35rem;
  }

  .hws-blog-index {
    padding-top: 2.5rem;
  }

  .hws-blog-index__header {
    max-width: 58rem;
  }

  .hws-blog-index__header,
  .hws-blog-search,
  .hws-blog-empty {
    max-width: 58rem;
  }

  .hws-stack {
    max-width: 58rem;
  }

  .hws-stack-card {
    top: calc(6.5rem + (var(--stack-i) * 0.8rem));
    grid-template-columns: minmax(260px, 36%) minmax(0, 1fr);
    column-gap: 2.25rem;
    min-height: 14.25rem;
    padding: 2.25rem 0;
  }

  .hws-stack-card__media,
  .hws-stack-card__body {
    min-height: 14.25rem;
  }

  .hws-stack-card__body {
    padding: 0.35rem 0;
    gap: 0.6rem;
  }

  .hws-stack-card__title {
    font-size: 1.75rem;
  }
}

@media screen and (min-width: 1280px) {
  .hws-page-blog .hws-section,
  .hws-page-blog .hws-closing,
  .hws-page-article .hws-section,
  .hws-page-article .hws-closing,
  .hws-page-legal .hws-section,
  .hws-page-legal .hws-closing,
  .hws-article {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

/* —— Project quiz —— */
.hws-quiz {
  width: 100%;
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
  padding: 2.25rem 1.25rem 4.5rem;
}

.hws-quiz__intro {
  margin-bottom: 1.5rem;
}

.hws-quiz__intro h1 {
  margin: 0.55rem 0 0.85rem;
  font-family: var(--hws-font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  max-width: 18ch;
}

.hws-quiz__lede {
  color: var(--hws-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 36rem;
}

.hws-quiz__progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.65rem;
}

.hws-quiz__progress-track {
  flex: 1;
  height: 3px;
  background: var(--hws-line);
  overflow: hidden;
  border-radius: 999px;
}

.hws-quiz__progress-fill {
  height: 100%;
  width: 25%;
  background: var(--hws-blue);
  border-radius: inherit;
  transition: width 0.45s var(--hws-ease);
}

.hws-quiz__step-label {
  flex-shrink: 0;
  margin: 0;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hws-soft-muted);
}

.hws-quiz__nudge {
  margin: 0 0 1.75rem;
  color: var(--hws-blue);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  min-height: 1.25em;
  transition: opacity 0.25s ease;
}

.hws-quiz__panel {
  min-height: 14rem;
}

.hws-quiz__panel.is-entering {
  animation: hws-quiz-enter 0.4s var(--hws-ease) both;
}

@keyframes hws-quiz-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hws-quiz__kicker {
  margin: 0 0 0.85rem;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hws-soft-muted);
}

.hws-quiz__question {
  margin: 0 0 1.5rem;
  font-family: var(--hws-font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.15;
  max-width: 22ch;
  outline: none;
}

.hws-quiz__question:focus,
.hws-quiz__question:focus-visible {
  outline: none;
  box-shadow: none;
}

.hws-quiz__thanks,
.hws-quiz__legal {
  color: var(--hws-muted);
  font-size: 0.975rem;
  line-height: 1.55;
  max-width: 38rem;
}

.hws-quiz__thanks {
  margin: 0 0 0.85rem;
}

.hws-quiz__legal {
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
}

.hws-quiz__legal a {
  color: var(--hws-blue);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.hws-quiz__options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.hws-quiz__options--stack {
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--hws-line);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--hws-white);
}

.hws-quiz__panel.is-entering .hws-quiz__option {
  animation: hws-quiz-option-in 0.45s var(--hws-ease) both;
}

.hws-quiz__panel.is-entering .hws-quiz__option:nth-child(1) { animation-delay: 0.04s; }
.hws-quiz__panel.is-entering .hws-quiz__option:nth-child(2) { animation-delay: 0.08s; }
.hws-quiz__panel.is-entering .hws-quiz__option:nth-child(3) { animation-delay: 0.12s; }
.hws-quiz__panel.is-entering .hws-quiz__option:nth-child(4) { animation-delay: 0.16s; }
.hws-quiz__panel.is-entering .hws-quiz__option:nth-child(5) { animation-delay: 0.2s; }

@keyframes hws-quiz-option-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hws-quiz__option {
  position: relative;
  display: block;
  cursor: pointer;
}

.hws-quiz__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hws-quiz__option span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
  min-height: 3.35rem;
  padding: 0.9rem 1.1rem;
  border: 0;
  border-bottom: 1px solid var(--hws-line);
  border-radius: 0;
  background: transparent;
  font-family: var(--hws-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: left;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hws-quiz__options--stack .hws-quiz__option:last-child span {
  border-bottom: 0;
}

.hws-quiz__option span::before {
  content: "";
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  border: 1.5px solid #c5ccd3;
  background: var(--hws-white);
  flex-shrink: 0;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hws-quiz__option span::after {
  display: none;
}

.hws-quiz__option:hover span {
  background: var(--hws-fog);
  transform: none;
}

.hws-quiz__option input:focus-visible + span {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--hws-blue);
}

.hws-quiz__option input:checked + span {
  border-color: var(--hws-line);
  background: rgba(59, 178, 246, 0.08);
  color: var(--hws-charcoal);
  box-shadow: none;
}

.hws-quiz__option input:checked + span::before {
  border-color: var(--hws-blue);
  background: var(--hws-blue);
  box-shadow: inset 0 0 0 3px var(--hws-white);
}

.hws-quiz__option.is-picked span {
  transform: none;
}

.hws-quiz__error {
  margin: 1rem 0 0;
  color: #b42318;
  font-size: 0.875rem;
}

.hws-quiz__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--hws-line);
}

.hws-quiz__hint {
  margin: 0;
  margin-left: auto;
  color: var(--hws-soft-muted);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.hws-quiz__back {
  padding: 0;
  border: 0;
  background: none;
  color: var(--hws-soft-muted);
  font-family: var(--hws-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.hws-quiz__back:hover {
  color: var(--hws-blue);
}

.hws-quiz.is-final .hws-quiz__nudge {
  color: var(--hws-charcoal);
}

.hws-quiz__calendly {
  margin-top: 0.5rem;
  border: 1px solid var(--hws-line);
  background: var(--hws-white);
  overflow: hidden;
}

.hws-quiz__calendly .calendly-inline-widget {
  min-width: 0 !important;
}

@media screen and (min-width: 768px) {
  .hws-quiz {
    padding: 2.75rem 2.5rem 5rem;
  }

  .hws-quiz__options--stack {
    grid-template-columns: 1fr;
  }
}

/* Quiz — decluttered mobile flow */
@media screen and (max-width: 1023px) {
  body.hws-page-quiz,
  .hws-page-quiz,
  .hws-page-quiz .hws-site,
  .hws-page-quiz .hws-main,
  .hws-page-quiz #main {
    background: var(--hws-white);
  }

  .hws-page-quiz .hws-footer {
    display: none !important;
  }

  .hws-page-quiz .hws-quiz {
    margin: 0;
    max-width: none;
    border-radius: 0;
    padding: 1rem 1.15rem calc(1.25rem + var(--hws-tabbar-h) + var(--hws-safe-bottom));
    background: var(--hws-white);
  }

  .hws-page-quiz .hws-quiz__intro {
    margin-bottom: 0.85rem;
  }

  .hws-page-quiz .hws-quiz__intro h1 {
    margin: 0;
    font-size: 1.35rem;
    max-width: none;
    letter-spacing: -0.03em;
  }

  .hws-page-quiz .hws-quiz__progress {
    margin-bottom: 1.15rem;
  }

  .hws-page-quiz .hws-quiz__progress-track {
    height: 2px;
    background: #e8ecf0;
  }

  .hws-page-quiz .hws-quiz__panel {
    min-height: 0;
  }

  .hws-page-quiz .hws-quiz__question {
    margin: 0 0 1rem;
    font-size: 1.2rem;
    max-width: none;
  }

  .hws-page-quiz .hws-quiz__options {
    gap: 0;
  }

  .hws-page-quiz .hws-quiz__options--stack {
    background: var(--hws-white);
  }

  .hws-page-quiz .hws-quiz__option span {
    min-height: 3.1rem;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    border-radius: 0;
    background: var(--hws-white);
  }

  .hws-page-quiz .hws-quiz__option:hover span {
    background: #f7f8fa;
  }

  .hws-page-quiz .hws-quiz__option span::before {
    width: 1.05rem;
    height: 1.05rem;
  }

  .hws-page-quiz .hws-quiz__option span::after {
    display: none;
  }

  .hws-page-quiz .hws-quiz__nav {
    margin-top: 1.15rem;
    padding-top: 0.85rem;
    border-top: 0;
  }

  .hws-page-quiz .hws-quiz__legal {
    margin: 0 0 1rem;
    font-size: 0.75rem;
  }

  .hws-page-quiz .hws-quiz__calendly {
    border: 0;
    background: var(--hws-white);
    margin-top: 0;
  }

  .hws-page-quiz .hws-quiz__calendly .calendly-inline-widget {
    height: 62vh !important;
    min-height: 420px;
  }

  .hws-page-quiz .hws-quiz__panel.is-entering,
  .hws-page-quiz .hws-quiz__panel.is-entering .hws-quiz__option {
    animation: none;
  }
}

@media screen and (min-width: 1024px) {
  .hws-page-quiz .hws-quiz {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
  }
}

@media screen and (min-width: 1280px) {
  .hws-page-quiz .hws-quiz {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hws-stack-card {
    position: relative;
    top: auto !important;
  }

  .hws-stack-card:hover .hws-stack-card__media img,
  .hws-work-card:hover .hws-work-card__shot img,
  .hws-work-card:hover .hws-browser__body img {
    transform: none;
  }

  .hws-work-card:hover .hws-work-card__cta {
    gap: 0.4rem;
  }

  .hws-work-card:hover .hws-browser {
    transform: none;
  }

  .hws-quiz__progress-fill {
    transition: none;
  }

  .hws-quiz__panel.is-entering,
  .hws-quiz__panel.is-entering .hws-quiz__option {
    animation: none;
  }

  .hws-quiz__option:hover span,
  .hws-quiz__option.is-picked span {
    transform: none;
  }

  .hws-mobile-nav__sheet {
    animation: none;
  }
}
