/* ==========================================================================
   OneCartl — Coming Soon Landing Page
   Pixel-perfect implementation from Figma (1440px artboard)
   Font: Urbanist (per project spec; Figma source uses Product Sans)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --color-ink: #111111;
  --color-white: #ffffff;
  --color-soft-gray: #666666;
  --color-semantic-dark: #4a4949;
  --color-brand-black: #070707;
  --color-purple: #794ade;
  --color-accent: #794ade;
  --color-border-light: #e3e3e3;
  --color-placeholder: #b1abab;
  --color-section-bg: #f8f8f8;
  --color-border: #666666;

  /* Typography */
  --font-family: "Urbanist", system-ui, -apple-system, sans-serif;

  /* Spacing */
  --container-max: 1440px;
  --container-padding: 80px;
  --content-max: 1280px;
  --section-gap-hero-promise: 72px;
  --section-gap-promise-signup: 72px; /* promise y=965 h=500 → signup y=1537 */
  --section-gap-signup-social: 72px; /* signup ends 2177 → banner y=2249 */

  /* Radii */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Motion */
  --transition-base: 0.3s ease;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-ink);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
}

fieldset {
  border: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 8px 16px;
  background: var(--color-ink);
  color: var(--color-white);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 16px;
}

/* --------------------------------------------------------------------------
   Layout utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* --------------------------------------------------------------------------
   Shared typography
   -------------------------------------------------------------------------- */
.eyebrow {
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
  color: #794ADE;
}

.eyebrow--center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.15px;
  line-height: normal;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  transition:
    background-color var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    opacity var(--transition-base),
    transform var(--transition-base);
}

.btn--primary {
  background-color: var(--color-ink);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: #2a2a2a;
}

.btn--primary:active {
  transform: scale(0.98);
}

.btn--outline {
  background-color: var(--color-white);
  color: var(--color-ink);
  border-color: var(--color-ink);
}

.btn--outline:hover {
  background-color: var(--color-section-bg);
}

.btn--outline:active {
  transform: scale(0.98);
}

.btn--submit {
  padding-inline: 40px;
  margin-top: 0;
  align-self: flex-start;
}

.btn__icon {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Header / Navbar
   -------------------------------------------------------------------------- */
.site-header {
  padding-top: 40px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
}

/* Brand logo — header & footer (from manual Logo.svg / logo-white.svg) */
.brand-logo {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo--header {
  width: 199px;
}

.brand-logo--footer {
  width: 271px;
  max-width: 100%;
}

.logo img {
  width: 199px;
  height: auto;
}

.logo--footer img {
  width: 271px;
  max-width: 100%;
  height: auto;
}

/* Brand sunburst mark — signup, social, hero badge center */
.brand-mark {
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-mark--signup {
  width: 90px;
  height: 90px;
}

/* Role switcher — equal columns, labels stay on one line */
.role-switcher {
  display: flex;
  align-items: stretch;
  width: 288px;
  flex-shrink: 0;
}

.role-switcher__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  padding: 12px 12px;
  font-size: 15px;
  font-weight: 600;
  line-height: normal;
  white-space: nowrap;
  background: var(--color-white);
  color: var(--color-ink);
  border: 1px solid var(--color-ink);
  cursor: pointer;
  transition:
    background-color var(--transition-base),
    color var(--transition-base);
}

.role-switcher__btn:first-child {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  border-right: none;
}

.role-switcher__btn:last-child {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.role-switcher__btn--active {
  background-color: var(--color-ink);
  color: var(--color-white);
  border-color: var(--color-ink);
}

.role-switcher__btn:not(.role-switcher__btn--active):hover {
  background-color: var(--color-section-bg);
}

/* --------------------------------------------------------------------------
   Hero section
   -------------------------------------------------------------------------- */
.hero {
  padding-top: 56px; /* 138px from artboard top − header (40+42) */
  padding-bottom: var(--section-gap-hero-promise);
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 135px;
}

.hero__content {
  flex: 0 1 551px;
  max-width: 551px;
}

.hero__title-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.hero__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 63px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0;
}

.hero__heading-line--accent {
  color: var(--color-purple);
  white-space: nowrap;
}

.hero__body-block {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 522px;
}

.hero__subheading {
  font-size: 24px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.24px;
  color: var(--color-soft-gray);
}

.hero__description {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.4px;
  color: var(--color-ink);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  width: fit-content;
  max-width: 100%;
}

.hero__actions .btn {
  flex: 0 0 auto;
}

/* Marketplace image grid */
.hero__grid {
  position: relative;
  flex: 0 0 594px;
  display: grid;
  grid-template-columns: repeat(2, 287px);
  grid-template-rows: repeat(3, 241px);
  column-gap: 20px;
  row-gap: 16px;
  width: 594px;
  height: 755px;
}

.hero__grid-cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  transition: transform var(--transition-base);
}

.hero__grid-cell:hover {
  transform: scale(1.02);
}

.hero__grid-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Figma image crop offsets for hero-1 and hero-3 */
.hero__grid-cell--1 img {
  width: 168.74%;
  height: 134.2%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  left: -56.18%;
  top: -25.01%;
}

.hero__grid-cell--3 img {
  width: 165.54%;
  height: 123.58%;
  max-width: none;
  object-fit: cover;
  position: absolute;
  left: 0.06%;
  top: -23.62%;
}

.hero__badge {
  position: absolute;
  left: 216px;
  top: 163px;
  width: 170px;
  height: 170px;
  z-index: 2;
  pointer-events: none;
}

.hero__badge-ring {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Hide legacy icon baked into hero-badge.png; show new mark on top */
.hero__badge-cover {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--color-white);
}

.hero__badge-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   Our Promise section
   -------------------------------------------------------------------------- */
.promise {
  background-color: var(--color-section-bg);
  padding-block: 80px;
}

.promise__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.promise__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  width: 100%;
  text-align: center;
}

.promise__title {
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-ink);
  white-space: nowrap;
}

.promise__cards {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: var(--content-max);
}

.promise-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  flex: 1 1 0;
  min-width: 0;
  max-width: 400px;
  min-height: 198px;
  padding: 0;
  transition: transform var(--transition-base);
}

.promise-card:hover {
  transform: translateY(-4px);
}

.promise-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.promise-card__icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.promise-card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  width: 100%;
}

.promise-card__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0.4px;
  color: var(--color-ink);
}

.promise-card__desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0.34px;
  color: var(--color-soft-gray);
}

.promise__divider {
  flex-shrink: 0;
  width: 1px;
  height: 196px;
  background-color: #d9d9d9;
  align-self: center;
}

/* --------------------------------------------------------------------------
   Brand signup form — Figma 102:835 (y=1537, gap 72px below promise)
   -------------------------------------------------------------------------- */
.signup {
  margin-top: var(--section-gap-promise-signup);
  padding-bottom: var(--section-gap-signup-social);
}

.signup__inner {
  display: flex;
  align-items: flex-start;
  gap: 33px;
  max-width: 1281px;
}

.signup__intro {
  position: relative;
  flex: 0 0 400px;
  max-width: 400px;
  min-height: 640px;
}

/* Sunburst: parent y=89; copy block: parent y=196 */
.brand-mark--signup {
  position: absolute;
  left: 0;
  top: 89px;
}

.signup__copy {
  margin-top: 196px;
  max-width: 325px;
}

.signup__title {
  font-size: 36px;
  font-weight: 500;
  line-height: 52px;
  color: var(--color-ink);
  margin-bottom: 16px;
}

.signup__description {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.4px;
  color: var(--color-ink);
  max-width: 305px;
}

.signup-form {
  flex: 1 1 848px;
  max-width: 848px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.signup-form__row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.signup-form__row--2 .field {
  flex: 1 1 calc(50% - 10px);
  min-width: 0;
}

.signup-form__row--align-start {
  align-items: flex-start;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  width: 100%;
}

.field__label {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: 0.72px;
  color: var(--color-ink);
}

.field__required {
  color: var(--color-purple);
}

.field__input {
  width: 100%;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.72px;
  color: var(--color-ink);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.field__input::placeholder {
  color: var(--color-placeholder);
}

.field__input:focus {
  border-color: var(--color-ink);
  box-shadow: 0 0 0 1px var(--color-ink);
}

.field__input--accent-border {
  border-color: var(--color-ink);
}

.field__input--textarea {
  min-height: 133px;
  resize: vertical;
  padding: 16px;
}

/* Radio group */
.field--radio {
  flex: 0 0 414px;
  gap: 24px;
}

.field--radio .field__label {
  margin-bottom: 24px;
}

.radio-group {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.72px;
}

.radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio__control {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1.5px solid var(--color-ink);
  border-radius: 50%;
  transition: border-color var(--transition-base);
}

.radio__control::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-purple);
  transform: translate(-50%, -50%) scale(0);
  transition: transform var(--transition-base);
}

.radio input:checked + .radio__control::after {
  transform: translate(-50%, -50%) scale(1);
}

.radio:hover .radio__control {
  border-color: var(--color-purple);
}

/* --------------------------------------------------------------------------
   Social banner — Figma 117:134 (1280×260, padding 80, gap 233)
   -------------------------------------------------------------------------- */
.social-banner {
  padding-bottom: 80px;
}

.social-banner .container {
  padding-inline: var(--container-padding);
}

.social-banner__card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 233px;
  width: 100%;
  max-width: var(--content-max);
  min-height: 260px;
  margin-inline: auto;
  padding: 80px;
  background-color: var(--color-section-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.social-banner__copy {
  position: relative;
  z-index: 1;
  flex: 0 0 461px;
  max-width: 461px;
}

.social-banner__title {
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  color: var(--color-ink);
  margin-bottom: 11px;
  white-space: nowrap;
}

.social-banner__subtitle {
  font-size: 33px;
  font-weight: 300;
  line-height: normal;
  color: var(--color-ink);
}

.social-banner__links {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: var(--color-ink);
  transition:
    opacity var(--transition-base),
    color var(--transition-base);
}

.social-link:hover {
  opacity: 0.7;
  color: var(--color-purple);
}

.social-link img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-brand-black);
  color: var(--color-white);
  padding: 80px var(--container-padding) 24px;
}

.site-footer .container {
  padding-inline: 0;
  max-width: var(--content-max);
}

.site-footer__inner {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.site-footer__top {
  display: flex;
  flex-wrap: nowrap;
  gap: 93px;
  align-items: flex-start;
  padding-bottom: 56px;
}

.site-footer__brand {
  flex: 0 0 412px;
  max-width: 412px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.site-footer__tagline {
  max-width: 352px;
  font-size: 15px;
  font-weight: 500;
  line-height: 22px;
  color: var(--color-soft-gray);
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-footer__social-link {
  display: flex;
  width: 24px;
  height: 24px;
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.site-footer__social-link:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.site-footer__social-link img {
  width: 24px;
  height: 24px;
}

.site-footer__nav {
  flex: 1;
  display: flex;
  flex-wrap: nowrap;
  gap: 94px;
  justify-content: flex-start;
  min-width: 0;
}

.footer-col {
  flex: 0 0 auto;
  width: auto;
  min-width: 120px;
}

.footer-col__title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.8px;
  color: var(--color-white);
  margin-bottom: 30px;
  white-space: nowrap;
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col__list li {
  min-height: 24px;
}

.footer-col__list a,
.footer-col__list span {
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-semantic-dark);
  white-space: nowrap;
  transition: color var(--transition-base);
}

.footer-col__list a:hover {
  color: var(--color-white);
}

.footer-col--contact {
  min-width: 140px;
}

.footer-col--contact .footer-col__list {
  gap: 44px;
}

.footer-col__contact-item {
  display: block;
  white-space: normal;
}

.footer-col__contact-item .footer-col__label,
.footer-col__contact-item .footer-col__value {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-semantic-dark);
  line-height: normal;
}

.footer-col__contact-item a {
  display: block;
  white-space: nowrap;
  font-weight: 500;
}

.site-footer__rule {
  border: none;
  height: 1px;
  background-color: #2a2a2a;
  margin: 0;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer__copyright {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-soft-gray);
  flex: 1 1 200px;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.site-footer__legal a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-soft-gray);
  white-space: nowrap;
  transition: color var(--transition-base);
}

.site-footer__legal a:hover {
  color: var(--color-white);
}

.site-footer__badge {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-white);
  flex: 0 0 auto;
}

.site-footer__badge img {
  width: 24px;
  height: 16px;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Page views (brand / shopper)
   -------------------------------------------------------------------------- */
.page-view[hidden] {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Shopper hero — Figma 201:133
   -------------------------------------------------------------------------- */
.hero--shopper {
  padding-top: 60px; /* collage y=142 − header bottom 82 */
  padding-bottom: 58px; /* collage bottom → notify section (Figma y=975) */
}

.hero__inner--shopper {
  display: grid;
  grid-template-columns: 630px 1fr;
  grid-template-rows: 775px; /* match collage height — avoids extra white gap */
  align-items: start;
  gap: 0;
  overflow: visible;
}

.hero__content--shopper {
  grid-column: 1;
  grid-row: 1;
  flex: none;
  max-width: 630px;
  padding-top: 41px; /* copy y=183 − collage y=142 */
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero--shopper .hero__title-block {
  margin-bottom: 0;
}

.hero--shopper .hero__body-block {
  gap: 48px;
}

.hero__heading--shopper {
  gap: 0;
}

.hero__heading--shopper .hero__heading-line {
  display: block;
}

.hero__heading--shopper .hero__heading-line--accent {
  white-space: normal;
}

.hero__body-block--shopper {
  max-width: 525px;
  width: 100%;
}

.hero--shopper .hero__actions .btn--primary {
  min-width: 248px;
}

.hero--shopper .hero__actions .btn--outline {
  min-width: 200px;
}

.hero--shopper .btn {
  font-weight: 500;
}

.hero--shopper .hero__actions {
  flex-wrap: nowrap;
}

/* Collage — full Figma artboard (816×775), overlaps copy by 76px */
.hero__collage-wrap {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  margin-left: -76px;
  width: 816px;
  height: 775px;
  overflow: visible;
}

.hero__collage-wrap img {
  max-width: none;
}

.hero__collage {
  position: relative;
  width: 816px;
  height: 775px;
}

.hero__copy-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__paragraph {
  font-size: 20px;
  font-weight: 400;
  line-height: 31px;
  letter-spacing: 0.2px;
  color: var(--color-soft-gray);
}

.hero__callout {
  font-size: 20px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0.2px;
  color: var(--color-ink);
  max-width: 512px;
}

.hero__collage-arch {
  position: absolute;
  left: 116px;
  top: 0;
  width: 404px;
  height: 622px;
  object-fit: cover;
  border-radius: 190px 190px 80px 80px;
  z-index: 1;
}

.hero__collage-blob {
  position: absolute;
  left: 0;
  top: 314px;
  width: 275px;
  height: 275px;
  z-index: 0;
}

.hero__collage-scribble {
  position: absolute;
  left: 501px;
  top: 205px;
  width: 407px;
  height: 499px;
  transform: rotate(12.09deg);
  z-index: 0;
  pointer-events: none;
}

.hero__collage-product {
  position: absolute;
  z-index: 2;
  object-fit: contain;
  pointer-events: none;
}

.hero__collage-product--sneaker {
  left: 507px;
  top: 70px;
  width: 229px;
  height: auto;
  transform: rotate(3.93deg);
}

.hero__collage-product--candle {
  left: 188px;
  top: 444px;
  width: 283px;
  height: auto;
  z-index: 3;
}

.hero__collage-product--vase {
  left: 411px;
  top: 525px;
  width: 270px;
  height: auto;
  transform: rotate(3.93deg);
  z-index: 3;
}

.hero__collage-product--headphones {
  left: 252px;
  top: 497px;
  width: 264px;
  height: auto;
  z-index: 2;
}

.hero__collage-quote {
  position: absolute;
  left: 583px;
  top: 353px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  font-family: "Calaya", "Segoe Script", "Brush Script MT", cursive;
  font-size: 38px;
  font-weight: 400;
  line-height: 41px;
  letter-spacing: 0.38px;
  color: var(--color-accent);
  transform: rotate(-2.62deg);
  pointer-events: none;
}

.hero__collage-quote-line {
  display: block;
  white-space: pre;
}

.hero__collage-quote-line--indent {
  padding-left: 0.35em;
}

.hero__collage-quote-line--indent2 {
  padding-left: 0.7em;
}

.hero__badge--collage {
  left: 399px;
  top: 282px;
}

/* --------------------------------------------------------------------------
   Shopper notify card — Figma 216:968
   -------------------------------------------------------------------------- */
.notify {
  background-color: var(--color-section-bg);
  padding: 80px var(--container-padding);
}

.notify__outer {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: 0;
}

/* Card — Figma 216:968 (1279×291 content, px 56 py 32, gap 172) */
.notify__card {
  display: grid;
  grid-template-columns: 251px minmax(0, 744px);
  align-items: start;
  column-gap: 172px;
  width: 100%;
  max-width: 1279px;
  margin-inline: auto;
  padding: 32px 56px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  box-sizing: border-box;
}

.notify__intro {
  grid-column: 1;
  width: 251px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.notify__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notify__icon {
  flex-shrink: 0;
}

.notify__title {
  font-size: 40px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-ink);
}

.notify__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: var(--color-ink);
}

/* Form column — Figma 216:975 (744px, 24px vertical rhythm) */
.notify-form {
  grid-column: 2;
  width: 100%;
  max-width: 744px;
  min-width: 0;
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.notify-form__fields {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.notify-form__fields .field {
  flex: 1 1 358px;
  min-width: 0;
  max-width: 358px;
  gap: 8px;
  margin: 0;
}

.notify-form .field__label--notify {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.72px;
  color: var(--color-ink);
}

.field__input--notify {
  display: block;
  width: 100%;
  height: 50px;
  min-height: 50px;
  margin: 0;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: 0.72px;
  color: var(--color-ink);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  box-sizing: border-box;
}

.field__input--notify::placeholder {
  color: var(--color-placeholder);
}

.field__input--notify:focus {
  border-color: var(--color-ink);
  box-shadow: 0 0 0 1px var(--color-ink);
}

.btn--notify-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 48px;
  min-height: 48px;
  margin: 0;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.15px;
  box-sizing: border-box;
}

/* Trust row — Figma 216:995 (inset 140px, 25.5px between items) */
.notify-form__trust {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 25.5px;
  width: 100%;
  margin: 0;
  padding: 0 140px;
  box-sizing: border-box;
  list-style: none;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.15px;
  color: var(--color-soft-gray);
}

.notify-form__trust li {
  display: flex;
  flex-shrink: 0;
  align-items: flex-end;
  gap: 8px;
  white-space: nowrap;
  line-height: 18px;
}

.notify-form__trust img {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

body.is-shopper-view .social-banner {
  margin-top: 80px; /* notify frame ends y=1426 → social y=1506 */
  padding-top: 0;
}

/* --------------------------------------------------------------------------
   Responsive — Tablet (≤ 1200px)
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  :root {
    --container-padding: 48px;
  }

  .hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
  }

  .hero__content {
    flex: none;
    max-width: 100%;
  }

  .hero__grid {
    width: 100%;
    max-width: 594px;
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    margin-inline: auto;
  }

  .hero__grid-cell {
    aspect-ratio: 287 / 241;
  }

  .hero__badge {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hero__badge-cover {
    width: 62px;
    height: 62px;
  }

  .hero__badge-mark {
    width: 52px;
    height: 52px;
  }

  .hero__content--shopper {
    max-width: 100%;
  }

  .hero__inner--shopper {
    display: flex;
    flex-direction: column;
    grid-template-rows: none;
    overflow: visible;
  }

  .hero__content--shopper {
    padding-top: 0;
  }

  .hero__collage-wrap {
    position: relative;
    width: 100%;
    max-width: 594px;
    margin-left: 0;
    margin-inline: auto;
    height: calc(775 / 816 * 100cqw);
    max-height: 594px;
    container-type: inline-size;
    overflow: hidden;
  }

  .hero__collage {
    position: absolute;
    top: 0;
    left: 0;
    width: 816px;
    height: 775px;
    transform: scale(calc(100cqw / 816));
    transform-origin: top left;
  }

  .hero--shopper .hero__actions {
    flex-wrap: wrap;
  }

  .notify__card {
    display: flex;
    flex-direction: column;
    gap: 48px;
    overflow: visible;
    grid-template-columns: none;
  }

  .notify__intro {
    grid-column: auto;
    width: 100%;
  }

  .notify-form {
    grid-column: auto;
    width: 100%;
    max-width: 100%;
  }

  .notify-form__fields .field {
    flex: 1 1 0;
    width: auto;
    max-width: 358px;
  }

  .notify-form__trust {
    justify-content: space-between;
    gap: 16px;
    padding-inline: 0;
  }

  .notify__intro {
    flex: none;
    width: 100%;
  }

  .notify-form {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .notify-form__fields {
    flex-direction: column;
    gap: 22px;
  }

  .notify-form__fields .field {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .notify-form__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
  }

  .notify-form__trust li {
    align-items: center;
  }

  body.is-shopper-view .social-banner {
    margin-top: 80px;
  }

  .signup__inner {
    flex-direction: column;
    gap: 48px;
  }

  .signup {
    margin-top: 48px;
  }

  .signup__intro {
    flex: none;
    max-width: 100%;
    min-height: 0;
  }

  .brand-mark--signup {
    position: static;
    margin-bottom: 16px;
  }

  .signup__copy {
    margin-top: 0;
  }

  .signup-form {
    max-width: 100%;
  }

  .social-banner__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    min-height: 0;
    padding: 48px;
  }

  .social-banner__copy {
    flex: none;
    max-width: 100%;
    padding-left: 0;
  }

  .social-banner__links {
    flex-wrap: wrap;
  }

  .site-footer__top {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 48px;
  }

  .site-footer__nav {
    flex-wrap: wrap;
  }

  .site-footer__brand {
    flex: none;
    max-width: 100%;
  }

  .site-footer__nav {
    flex-wrap: wrap;
    gap: 48px 64px;
  }
}

/* --------------------------------------------------------------------------
   Responsive — Tablet promise grid (≤ 1024px)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .promise__cards {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .promise__divider {
    display: none;
  }

  .promise-card {
    flex: none;
    width: 100%;
    max-width: 480px;
  }
}

/* --------------------------------------------------------------------------
   Responsive — Mobile (≤ 768px)
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --container-padding: 24px;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .role-switcher {
    width: 100%;
  }

  .role-switcher__btn {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero {
    padding-top: 32px;
  }

  .hero__heading {
    font-size: 40px;
  }

  .hero__subheading {
    font-size: 20px;
  }

  .hero__description {
    font-size: 18px;
    line-height: 28px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero__actions .btn {
    width: fit-content;
    justify-content: center;
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .hero__badge {
    width: 140px;
    height: 140px;
  }

  .hero__badge-cover {
    width: 52px;
    height: 52px;
  }

  .hero__badge-mark {
    width: 44px;
    height: 44px;
  }

  .brand-logo--footer {
    width: 220px;
  }

  .promise {
    padding-block: 48px;
  }

  .promise__title {
    font-size: 28px;
    white-space: normal;
  }

  .signup-form__row--2 {
    flex-direction: column;
  }

  .field--radio {
    flex: none;
    width: 100%;
  }

  .social-banner__title {
    font-size: 28px;
  }

  .social-banner__subtitle {
    font-size: 22px;
  }

  .social-banner__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__legal {
    gap: 24px;
  }
}

/* --------------------------------------------------------------------------
   Responsive — Small mobile (≤ 480px)
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  .hero__heading {
    font-size: 32px;
  }

  .signup__title {
    font-size: 28px;
    line-height: 40px;
  }
}

/* ==========================================================================
   RESPONSIVE ADDITIONS — Mobile & Tablet Polish
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tablet (≤ 1200px) — additional fixes
   -------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  /* Header */
  .site-header {
    padding-top: 28px;
  }

  /* Hero grid — fix badge position on multi-column */
  .hero__grid {
    position: relative;
  }

  /* Hero content spacing */
  .hero__body-block {
    gap: 32px;
  }

  /* Social banner */
  .social-banner__title {
    white-space: normal;
  }

  /* Footer nav gap tighten */
  .site-footer__nav {
    gap: 40px 48px;
  }

  /* Shopper collage — scale fix for mid-range tablets */
  .hero__collage-wrap {
    height: 480px;
    max-height: 480px;
  }
}

/* --------------------------------------------------------------------------
   Mobile (≤ 768px) — comprehensive fixes
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* ── Header ── */
  .site-header {
    padding-top: 20px;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .brand-logo--header {
    width: 150px;
  }

  .role-switcher {
    width: 100%;
    max-width: 360px;
  }

  /* ── Brand Hero ── */
  .hero {
    padding-top: 28px;
    padding-bottom: 48px;
  }

  .hero__inner {
    gap: 36px;
  }

  .hero__heading {
    font-size: 36px;
  }

  .hero__body-block {
    gap: 28px;
    max-width: 100%;
  }

  .hero__subheading {
    font-size: 18px;
  }

  .hero__description {
    font-size: 17px;
    line-height: 26px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 360px;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Brand hero image grid — single column on mobile */
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    width: 100%;
    max-width: 100%;
    height: auto;
    column-gap: 10px;
    row-gap: 10px;
  }

  .hero__grid-cell {
    aspect-ratio: 287 / 241;
  }

  .hero__grid-cell--1 img,
  .hero__grid-cell--3 img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    position: static;
    left: auto;
    top: auto;
    object-fit: cover;
  }

  .hero__badge {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
  }

  .hero__badge-cover {
    width: 48px;
    height: 48px;
  }

  .hero__badge-mark {
    width: 38px;
    height: 38px;
  }

  /* ── Promise section ── */
  .promise {
    padding-block: 48px;
  }

  .promise__inner {
    gap: 40px;
  }

  .promise__title {
    font-size: 26px;
    white-space: normal;
    line-height: 1.3;
  }

  .promise__cards {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .promise__divider {
    display: none;
  }

  .promise-card {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  /* ── Signup form ── */
  .signup {
    margin-top: 48px;
    padding-bottom: 48px;
  }

  .signup__inner {
    flex-direction: column;
    gap: 32px;
  }

  .signup__intro {
    flex: none;
    max-width: 100%;
    min-height: 0;
    width: 100%;
  }

  .brand-mark--signup {
    position: static;
    margin-bottom: 12px;
    width: 64px;
    height: 64px;
  }

  .signup__copy {
    margin-top: 0;
    max-width: 100%;
  }

  .signup__title {
    font-size: 28px;
    line-height: 40px;
  }

  .signup__description {
    font-size: 16px;
    line-height: 26px;
    max-width: 100%;
  }

  .signup-form {
    max-width: 100%;
    width: 100%;
  }

  .signup-form__row {
    flex-direction: column;
    gap: 16px;
  }

  .signup-form__row--2 .field {
    flex: none;
    width: 100%;
  }

  .field--radio {
    flex: none;
    width: 100%;
  }

  .radio-group {
    gap: 24px;
  }

  .field__label {
    font-size: 16px;
    line-height: 24px;
  }

  .field__input {
    font-size: 16px;
    line-height: 24px;
    padding: 10px 14px;
  }

  .btn--submit {
    width: 100%;
    padding-inline: 24px;
    justify-content: center;
  }

  /* ── Shopper hero ── */
  .hero--shopper {
    padding-top: 28px;
    padding-bottom: 40px;
  }

  .hero__inner--shopper {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .hero__content--shopper {
    max-width: 100%;
    padding-top: 0;
    gap: 24px;
  }

  .hero__heading--shopper {
    font-size: 36px;
  }

  .hero__paragraph {
    font-size: 17px;
    line-height: 27px;
  }

  .hero__callout {
    font-size: 17px;
    line-height: 30px;
  }

  .hero--shopper .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
    max-width: 360px;
  }

  .hero--shopper .hero__actions .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  /* Shopper collage — scale to fit */
  .hero__collage-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    height: calc(775 / 816 * 100vw - 48px);
    max-height: 380px;
    min-height: 220px;
    container-type: inline-size;
    overflow: hidden;
  }

  .hero__collage {
    position: absolute;
    top: 0;
    left: 0;
    width: 816px;
    height: 775px;
    transform-origin: top left;
  }

  /* ── Shopper notify card ── */
  .notify {
    padding: 48px 24px;
  }

  .notify__card {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px 20px;
    grid-template-columns: none;
  }

  .notify__intro {
    width: 100%;
    gap: 16px;
  }

  .notify__title {
    font-size: 28px;
  }

  .notify__subtitle {
    font-size: 17px;
    line-height: 26px;
  }

  .notify-form {
    width: 100%;
    max-width: 100%;
    gap: 16px;
  }

  .notify-form__fields {
    flex-direction: column;
    gap: 16px;
  }

  .notify-form__fields .field {
    flex: none;
    width: 100%;
    max-width: 100%;
  }

  .field__input--notify {
    font-size: 16px;
  }

  .btn--notify-submit {
    width: 100%;
    height: auto;
    padding: 14px 24px;
  }

  .notify-form__trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0;
    flex-wrap: wrap;
  }

  .notify-form__trust li {
    align-items: center;
  }

  /* ── Social banner ── */
  .social-banner {
    padding-bottom: 48px;
  }

  .social-banner__card {
    flex-direction: column;
    gap: 28px;
    padding: 32px 24px;
    min-height: 0;
  }

  .social-banner__copy {
    flex: none;
    max-width: 100%;
  }

  .social-banner__title {
    font-size: 26px;
    white-space: normal;
  }

  .social-banner__subtitle {
    font-size: 20px;
  }

  .social-banner__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    width: 100%;
  }

  body.is-shopper-view .social-banner {
    margin-top: 0;
  }

  /* ── Footer ── */
  .site-footer {
    padding: 48px 24px 20px;
  }

  .site-footer__top {
    flex-direction: column;
    gap: 40px;
    padding-bottom: 40px;
  }

  .site-footer__brand {
    flex: none;
    max-width: 100%;
    gap: 24px;
  }

  .brand-logo--footer {
    width: 180px;
  }

  .site-footer__tagline {
    font-size: 14px;
    max-width: 100%;
  }

  .site-footer__social {
    gap: 20px;
  }

  .site-footer__nav {
    flex-wrap: wrap;
    gap: 32px 40px;
  }

  .footer-col {
    min-width: calc(50% - 20px);
  }

  .footer-col--contact {
    min-width: 100%;
  }

  .footer-col--contact .footer-col__list {
    gap: 24px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer__legal {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* --------------------------------------------------------------------------
   Small mobile (≤ 480px) — extra tightening
   -------------------------------------------------------------------------- */
@media (max-width: 480px) {
  :root {
    --container-padding: 16px;
  }

  .site-header {
    padding-top: 16px;
  }

  .brand-logo--header {
    width: 130px;
  }

  .hero__heading,
  .hero__heading--shopper {
    font-size: 30px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__badge {
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .hero__badge-cover {
    width: 42px;
    height: 42px;
  }

  .hero__badge-mark {
    width: 32px;
    height: 32px;
  }

  .promise__title {
    font-size: 22px;
  }

  .signup__title,
  .notify__title {
    font-size: 24px;
    line-height: 34px;
  }

  .social-banner__title {
    font-size: 22px;
  }

  .social-banner__subtitle {
    font-size: 18px;
  }

  .hero__collage-wrap {
    max-height: 280px;
    min-height: 180px;
  }

  .notify__card {
    padding: 20px 16px;
  }

  .footer-col {
    min-width: 100%;
  }

  .site-footer__legal {
    flex-direction: column;
    gap: 12px;
  }
}

/* --------------------------------------------------------------------------
   Very small phones (≤ 360px)
   -------------------------------------------------------------------------- */
@media (max-width: 360px) {
  .hero__heading,
  .hero__heading--shopper {
    font-size: 26px;
  }

  .hero__subheading {
    font-size: 16px;
  }

  .role-switcher__btn {
    font-size: 13px;
    padding: 10px 8px;
  }

  .btn {
    font-size: 14px;
    padding: 11px 18px;
  }
}

/* ==========================================================================
   OVERFLOW FIX — Kill all horizontal scroll on mobile
   These override base-CSS `white-space: nowrap` and fixed widths
   ========================================================================== */

/* Global hard stop — nothing escapes the viewport */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Every element: never overflow the viewport width */
*, *::before, *::after {
  max-width: 100%;
}

/* But images and collage elements need their own rules (set elsewhere) */
.hero__collage,
.hero__collage-wrap img,
.hero__collage img {
  max-width: none; /* these are intentionally oversized and scaled via transform */
}

@media (max-width: 768px) {
  /* ── Role switcher — prevent clip on right edge ── */
  .role-switcher {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .role-switcher__btn {
    white-space: normal;
    word-break: break-word;
    min-width: 0;
    flex: 1 1 0;
    padding: 10px 8px;
    font-size: 14px;
    line-height: 1.3;
  }

  /* ── Buttons — allow wrap, never overflow ── */
  .btn {
    white-space: normal;
    word-break: break-word;
    box-sizing: border-box;
    max-width: 100%;
  }

  /* ── Hero heading accent line — allow wrap ── */
  .hero__heading-line--accent {
    white-space: normal;
    word-break: break-word;
  }

  /* ── Hero subheading / description — allow wrap ── */
  .hero__subheading,
  .hero__description,
  .hero__paragraph,
  .hero__callout {
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
  }

  /* ── Promise title ── */
  .promise__title {
    white-space: normal;
    word-break: break-word;
  }

  /* ── Social banner ── */
  .social-banner__title {
    white-space: normal;
    word-break: break-word;
  }

  .social-banner__subtitle {
    white-space: normal;
    word-break: break-word;
  }

  /* ── Footer list items ── */
  .footer-col__list a,
  .footer-col__list span {
    white-space: normal;
    word-break: break-word;
  }

  .footer-col__title {
    white-space: normal;
    word-break: break-word;
  }

  .footer-col__contact-item a {
    white-space: normal;
    word-break: break-all; /* emails/phones can be long */
  }

  /* ── Footer legal links ── */
  .site-footer__legal a {
    white-space: normal;
    word-break: break-word;
  }

  /* ── Notify trust list ── */
  .notify-form__trust li {
    white-space: normal;
    word-break: break-word;
    flex-shrink: 1;
  }

  /* ── Signup / notify form inputs ── */
  .field__input,
  .field__input--notify {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  /* ── Shopper hero min-widths on buttons ── */
  .hero--shopper .hero__actions .btn--primary,
  .hero--shopper .hero__actions .btn--outline {
    min-width: 0;
    width: 100%;
  }

  /* ── Signup intro — remove absolute sunburst overflow ── */
  .signup__intro {
    overflow: hidden;
  }

  /* ── Container safety ── */
  .container {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* ── Hero grid cells — make sure images don't overflow ── */
  .hero__grid-cell--1 img,
  .hero__grid-cell--3 img {
    position: static;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    left: auto;
    top: auto;
  }

  /* ── Social banner card ── */
  .social-banner__card {
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
  }

  /* ── Notify card ── */
  .notify__card {
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .role-switcher__btn {
    font-size: 13px;
    padding: 9px 6px;
  }

  /* Footer cols — full width to prevent wrapping text overflow */
  .footer-col__list a,
  .footer-col__list span {
    font-size: 14px;
  }

  .site-footer__legal a {
    font-size: 14px;
  }
}
