:root {
  --cream: #fff5de;
  --cream-soft: #fff8e7;
  --lime: #70e570;
  --dark: #103f10;
  --pink: #f3aaef;
  --box: rgba(42, 18, 10, 0.55);
  --bg-fallback: #8b4a2b;
  --section-x: clamp(1.25rem, 4vw, 2rem);
  --section-y: clamp(2.25rem, 5.5vw, 3.75rem);
  --section-y-sm: clamp(1.5rem, 4vw, 2.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  min-height: 100%;
  min-height: 100dvh;
  scroll-behavior: smooth;
  background-color: var(--bg-fallback);
}

body {
  min-height: 100%;
  min-height: 100dvh;
  margin: 0;
  background-color: var(--bg-fallback);
  background-image: url("assets/backgrounds/desk.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Azeret Mono", monospace;
  color: var(--cream);
  overflow-x: hidden;
}

@supports (-webkit-touch-callout: none) {
  body {
    background-attachment: scroll;
  }
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-y) var(--section-x) var(--section-y-sm);
  background: transparent;
  border: none;
  outline: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.75rem, 4.5vw, 2.75rem);
  width: min(100%, 640px);
}

.hero__logo {
  display: block;
  width: min(314px, 78vw);
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.3));
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  gap: clamp(0.65rem, 2.2vw, 1rem);
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.countdown__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(64px, 18vw, 84px);
  height: clamp(72px, 20vw, 96px);
  background: var(--box);
  border-radius: 10px;
  border: 1.5px solid transparent;
}

.countdown__unit--accent .countdown__box {
  border-color: var(--lime);
  color: var(--lime);
}

.countdown__unit--cream .countdown__box {
  border-color: var(--cream);
  color: var(--cream);
}

.countdown__value {
  font-family: "Azeret Mono", monospace;
  font-size: clamp(2.4rem, 9vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}

.countdown__label {
  font-family: "Azeret Mono", monospace;
  font-size: clamp(0.55rem, 2vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}

.countdown__unit--accent .countdown__label {
  color: var(--lime);
}

.countdown__unit--cream .countdown__label {
  color: var(--cream);
}

.hero__date {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  min-width: 131px;
  height: 29px;
  padding: 7px 16px;
  overflow: hidden;
  white-space: nowrap;
  background: #70e570;
  color: #103f10;
  font-family: "Azeret Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.28px;
  line-height: 1;
}

.signup {
  display: flex;
  justify-content: center;
  padding: var(--section-y-sm) var(--section-x);
}

.signup__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.65rem, 2vw, 0.9rem);
  width: min(100%, 560px);
}

.signup__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  padding: 0.45rem 0.85rem;
  background: var(--cream-soft);
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: center;
  border-radius: 0;
  text-wrap: balance;
}

.signup__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
}

.signup__field-wrap {
  width: 100%;
}

.signup__field {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 3vw, 1.5rem);
  width: 100%;
  min-height: 52px;
  padding: 0.55rem 0.75rem 0.55rem 1rem;
  background: var(--lime);
  border-radius: 0;
  cursor: text;
  outline: 2px solid transparent;
  outline-offset: 0;
  transition: outline-color 0.15s ease;
}

.signup__field.is-invalid {
  outline-color: #c62828;
}

.signup__field-label {
  flex-shrink: 0;
  color: var(--dark);
  font-size: clamp(0.78rem, 2.5vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}

.signup__input {
  flex: 1;
  min-width: 0;
  height: 34px;
  padding: 0 0.65rem;
  border: 1.5px solid var(--dark);
  border-radius: 0;
  background: var(--lime);
  color: var(--dark);
  font-family: "Azeret Mono", monospace;
  font-size: 0.85rem;
  font-weight: 600;
  outline: none;
  appearance: none;
}

.signup__input:focus {
  outline: 2px solid var(--dark);
  outline-offset: 1px;
}

.signup__field.is-invalid .signup__input {
  border-color: #c62828;
}

.signup__field.is-invalid .signup__input:focus {
  outline-color: #c62828;
}

.signup__error {
  margin: 0.35rem 0 0;
  padding: 0 0.15rem;
  color: #fff5de;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  text-align: left;
}

.signup__error[hidden] {
  display: none;
}

.signup__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 0.35rem;
  padding: 0.85rem 1.4rem;
  border: none;
  border-radius: 0;
  background: var(--dark);
  color: var(--lime);
  font-family: "Azeret Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: filter 0.2s ease;
  will-change: transform;
}

.signup__submit:hover {
  filter: brightness(1.08);
}

.signup__submit:active {
  transform: scale(0.98);
}

.signup__submit.is-shake {
  animation: shake-apply 0.4s ease both;
}

@keyframes shake-apply {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px) rotate(-0.4deg);
  }
  50% {
    transform: translateX(3px) rotate(0.4deg);
  }
  75% {
    transform: translateX(-2px);
  }
}

.signup__note {
  margin: 0.15rem 0 0;
  max-width: 28rem;
  color: rgba(255, 245, 222, 0.82);
  font-family: "Azeret Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.signup__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 1.65rem 0 0;
  padding: 0.35rem 0.7rem;
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: center;
  border-radius: 0;
}

.signup__chip--cream {
  background: var(--cream-soft);
}

.signup__taglines {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 0.25rem;
  margin-bottom: 0.15rem;
  gap: 0;
}

.signup__taglines-full,
.signup__taglines-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 0.35rem 0.75rem;
  background: var(--lime);
  color: #0b3b1c;
  font-family: "Azeret Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.signup__taglines-line {
  display: none;
}

.product {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(0.75rem, 2vw, 1.25rem) var(--section-x) var(--section-y-sm);
}

.product__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 920px);
}

.product__image {
  display: block;
  width: min(100%, 760px);
  height: auto;
  object-fit: contain;
}

/* Initial state for GSAP entrances (avoids FOUC) */
.hero__logo,
.countdown,
.hero__date,
.product__image,
.reveal {
  opacity: 0;
}

.manifesto {
  display: flex;
  justify-content: center;
  padding: var(--section-y) var(--section-x);
}

.manifesto__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.1rem);
  width: min(100%, 920px);
}

.manifesto__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: fit-content;
  max-width: 100%;
}

.manifesto__stack-full,
.manifesto__stack-line {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 0.4rem 0.75rem;
  font-family: "Azeret Mono", monospace;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12px;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.manifesto__stack-line {
  display: none;
}

.manifesto__stack--audience .manifesto__stack-full,
.manifesto__stack--audience .manifesto__stack-line {
  background: var(--dark);
  color: #70e570;
}

.manifesto__stack--founders .manifesto__stack-full,
.manifesto__stack--founders .manifesto__stack-line {
  background: var(--lime);
  color: #0b3b1c;
}

.manifesto__line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0.45rem 0.85rem;
  font-family: "Azeret Mono", monospace;
  font-size: clamp(0.72rem, 2.6vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  text-align: center;
  border-radius: 0;
}

.manifesto__line--cream {
  background: var(--cream-soft);
  color: var(--dark);
}

.manifesto__line--dark {
  background: var(--dark);
  color: var(--lime);
}

.manifesto__line--lime {
  background: var(--lime);
  color: var(--dark);
}

.trusted {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.15rem, 3vw, 1.65rem);
  padding: var(--section-y) var(--section-x) clamp(0.75rem, 2vw, 1.25rem);
  overflow: hidden;
}

.trusted__title {
  margin: 0;
  color: #fff5de;
  font-family: "Azeret Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.48px;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
  word-wrap: break-word;
}

.trusted__viewport {
  width: 100%;
  max-width: 1100px;
  overflow: hidden;
}

.trusted__track {
  display: flex;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.trusted__track::-webkit-scrollbar {
  display: none;
}

.trusted__track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.trusted__card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 2 * clamp(0.85rem, 2vw, 1.15rem)) / 3);
  width: calc((100% - 2 * clamp(0.85rem, 2vw, 1.15rem)) / 3);
  min-width: 0;
  padding: 0.85rem;
  border-radius: 0;
  user-select: none;
  position: relative;
  top: 0;
  scroll-snap-align: start;
  transition: top 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .trusted__card:hover {
    top: -8px;
  }
}

.trusted__card--dark {
  background: var(--dark);
  color: #fff;
}

.trusted__card--lime {
  background: var(--lime);
  color: var(--dark);
}

.trusted__media {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  flex: 0 0 auto;
}

.trusted__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  pointer-events: none;
}

.trusted__photo--up {
  object-position: center top;
}

.trusted__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  margin-top: 0.85rem;
}

.trusted__name {
  display: inline-flex;
  max-width: 100%;
  padding: 0.28rem 0.55rem;
  background: var(--lime);
  color: var(--dark);
  font-family: "Azeret Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.trusted__card--lime .trusted__name {
  background: var(--dark);
  color: #fff;
}

.trusted__role {
  display: inline-flex;
  max-width: 100%;
  padding: 0.28rem 0.55rem;
  background: var(--cream-soft);
  color: var(--dark);
  font-family: "Azeret Mono", monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  white-space: normal;
  overflow-wrap: anywhere;
}

.trusted__quote {
  align-self: stretch;
  margin: 0.9rem 0 0.35rem;
  color: #fff5de;
  font-family: "Azeret Mono", monospace;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  word-wrap: break-word;
}

.trusted__card--lime .trusted__quote {
  color: var(--dark);
}

.trusted__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1rem;
}

.trusted__wordmark {
  display: block;
  width: min(520px, 72vw);
  height: auto;
  margin-top: 0;
}

.trusted__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.trusted__dot.is-active {
  background: var(--lime);
  transform: scale(1.15);
}

.trusted__dot:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .trusted {
    padding-left: 0;
    padding-right: 0;
  }

  .trusted__viewport {
    max-width: none;
    overflow: hidden;
  }

  .trusted__track {
    display: flex;
    gap: clamp(0.85rem, 2.5vw, 1.25rem);
    padding: 0 max(1.25rem, calc((100% - 340px) / 2));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
  }

  .trusted__card {
    flex: 0 0 min(340px, 82vw);
    width: min(340px, 82vw);
    scroll-snap-align: center;
  }

  .trusted__dots {
    display: flex;
  }

  .trusted__role {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

.benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  padding: var(--section-y) var(--section-x) clamp(1.5rem, 4vw, 2.5rem);
}

.benefits__panel {
  width: min(100%, 980px);
  min-height: auto;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
  background: #103f10;
  overflow: hidden;
}

.benefits__headers {
  display: grid;
  grid-template-columns: clamp(140px, 20vw, 200px) 34px minmax(0, 1fr);
  column-gap: clamp(0.5rem, 1.5vw, 0.85rem);
  align-items: start;
  width: 100%;
  padding-bottom: 14px;
}

.benefits__header {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: fit-content;
  max-width: 100%;
  padding: 0.45rem 0.7rem;
  overflow: hidden;
  color: #0b3b1c;
  font-family: "Azeret Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09px;
  text-transform: uppercase;
  line-height: 1.2;
  word-wrap: break-word;
}

.benefits__header--pink {
  grid-column: 1;
  background: #f3aaef;
}

.benefits__header--cream {
  grid-column: 3;
  background: #fff5de;
}

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

.benefits__row {
  display: grid;
  grid-template-columns: clamp(140px, 20vw, 200px) 34px minmax(0, 1fr);
  column-gap: clamp(0.5rem, 1.5vw, 0.85rem);
  align-items: center;
  width: 100%;
  padding: clamp(0.85rem, 2vw, 1.1rem) 0;
  border-top: 1px solid #fff;
  overflow: visible;
}

.benefits__name {
  margin: 0;
  color: #fff;
  font-family: "Azeret Mono", monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  word-wrap: break-word;
}

.benefits__arrow {
  display: block;
  width: 34px;
  height: 14px;
}

.benefits__detail {
  min-width: 0;
  margin: 0;
  padding: 0.55rem 0;
  color: #fff5de;
  font-family: "Azeret Mono", monospace;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.benefits__detail-text {
  display: inline;
  color: #fff5de;
}

.benefits__detail-blur {
  display: inline;
  margin-left: 0.35em;
  color: transparent;
  text-shadow: 0 0 7px rgba(255, 245, 222, 0.95);
  user-select: none;
  pointer-events: none;
}

/* Mockup style: sharp line + blurred ghost echo underneath */
.benefits__detail--echo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  overflow: visible;
}

.benefits__detail--echo .benefits__detail-text {
  display: block;
  color: #fff5de;
  white-space: normal;
}

.benefits__detail--echo .benefits__detail-blur {
  display: block;
  margin: 0;
  max-width: 100%;
  color: rgba(255, 245, 222, 0.92);
  text-shadow: none;
  filter: blur(4.5px);
  opacity: 0.78;
  line-height: 1.35;
  white-space: normal;
  user-select: none;
  pointer-events: none;
}

.benefits__blur-layer {
  position: relative;
  display: block;
  width: fit-content;
  max-width: 100%;
}

/* Full-blur rows (mockup): entire detail is soft/illegible */
.benefits__detail--full-blur {
  white-space: normal;
  overflow: visible;
  word-wrap: break-word;
}

.benefits__detail--full-blur .benefits__blur-layer {
  width: 100%;
}

.benefits__detail--full-blur .benefits__detail-text {
  display: block;
  color: transparent;
  text-shadow: 0 0 9px rgba(255, 245, 222, 0.98);
  user-select: none;
}

.benefits__detail--full-blur .benefits__detail-blur {
  display: none;
}

.benefits__row:first-child {
  border-top: none;
}

.benefits__detail-wrap {
  position: relative;
  min-width: 0;
}

.benefits__info {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(210, 210, 210, 0.42);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Azeret Mono", monospace;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(2px);
  transition: filter 0.2s ease, background 0.2s ease;
}

.benefits__row--pink .benefits__info {
  background: rgba(210, 210, 210, 0.42);
}

.benefits__info:hover {
  filter: brightness(1.08);
  background: rgba(230, 230, 230, 0.55);
}

.benefits__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  max-width: calc(100% - 2rem);
  padding: 0.95rem 1.4rem;
  background: var(--lime);
  color: var(--dark);
  font-family: "Azeret Mono", monospace;
  font-size: clamp(12px, 2.8vw, 14px);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.benefits__cta:hover {
  filter: brightness(1.06);
}

.benefits__cta:active {
  transform: scale(0.98);
}

.site-credit {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 var(--section-x) clamp(1.5rem, 4vw, 2.25rem);
}

.site-credit__link {
  color: rgba(255, 245, 222, 0.55);
  font-family: "Azeret Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-credit__link:hover {
  color: var(--cream);
}

@media (max-width: 768px) {
  html {
    background-color: #c57a4d;
  }

  body {
    background-color: #c57a4d;
    background-image:
      linear-gradient(
        to bottom,
        rgba(197, 122, 77, 0) 0%,
        rgba(197, 122, 77, 0) 90%,
        rgba(197, 122, 77, 0.35) 97%,
        rgba(197, 122, 77, 0.15) 100%
      ),
      url("assets/backgrounds/mobile.webp");
    background-size: 100% auto, 100% auto;
    background-position: center top, center top;
    background-repeat: repeat-y, repeat-y;
    background-attachment: scroll;
  }

  .hero {
    padding: 2rem 1.15rem 1.25rem;
    border: none;
    box-shadow: none;
    outline: none;
    background: transparent;
  }

  .hero__inner,
  .signup__inner,
  .manifesto__inner {
    width: 100%;
  }

  .signup,
  .product,
  .manifesto,
  .trusted,
  .benefits {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }

  .signup,
  .product {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .manifesto {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .trusted {
    padding-top: 2rem;
    padding-bottom: 0.75rem;
  }

  .benefits {
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .signup__title,
  .signup__chip,
  .signup__taglines-full,
  .signup__taglines-line,
  .signup__submit,
  .manifesto__line,
  .manifesto__stack-full,
  .manifesto__stack-line {
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .signup__taglines-full,
  .manifesto__stack-full {
    display: none;
  }

  .signup__taglines-line,
  .manifesto__stack-line {
    display: block;
    white-space: normal;
  }

  .signup__taglines {
    width: 100%;
    align-items: center;
  }

  .signup__taglines-line {
    width: fit-content;
    max-width: 100%;
    text-align: center;
  }

  .signup__chip {
    width: fit-content;
    max-width: 100%;
  }

  .manifesto__stack {
    width: 100%;
  }

  .manifesto__stack-line {
    width: fit-content;
    max-width: 100%;
  }

  .signup__submit {
    width: 100%;
    text-align: center;
  }

  .trusted__wordmark {
    width: min(360px, 78vw);
    margin-top: 0.75rem;
    padding: 0 1rem;
  }

  .trusted__quote,
  .trusted__name,
  .trusted__role {
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .benefits__panel {
    padding: 1rem 0.85rem;
  }

  .benefits__headers,
  .benefits__row {
    grid-template-columns: minmax(72px, 0.85fr) 22px minmax(0, 1.4fr);
    column-gap: 0.4rem;
    align-items: center;
  }

  .benefits__headers {
    display: grid;
    padding-bottom: 0.75rem;
  }

  .benefits__header--pink {
    grid-column: 1;
  }

  .benefits__header--cream {
    grid-column: 3;
  }

  .benefits__header {
    font-size: 9px;
    padding: 0.35rem 0.45rem;
  }

  .benefits__row {
    padding: 0.75rem 0;
  }

  .benefits__name,
  .benefits__detail {
    font-size: 10px;
  }

  .benefits__arrow {
    width: 22px;
    height: 10px;
  }

  .benefits__info {
    width: 26px;
    height: 26px;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .countdown {
    gap: 0.4rem;
    width: 100%;
  }

  .countdown__box {
    width: clamp(56px, 20vw, 70px);
    height: clamp(64px, 22vw, 80px);
    border-radius: 8px;
  }

  .countdown__value {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .countdown__unit {
    gap: 0.35rem;
  }

  .hero__date {
    white-space: normal;
    height: auto;
    min-height: 29px;
    max-width: 100%;
  }

  .signup__field {
    min-height: 48px;
    padding: 0.45rem 0.55rem 0.45rem 0.75rem;
    gap: 0.55rem;
  }

  .signup__field-label {
    font-size: 0.72rem;
  }

  .signup__input {
    height: 30px;
    font-size: 0.8rem;
  }

  .signup__title,
  .signup__chip,
  .signup__taglines-line,
  .signup__submit,
  .manifesto__stack-line,
  .manifesto__line {
    font-size: 12px;
  }

  .signup__submit {
    padding: 0.95rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signup__submit {
    transition: none !important;
  }
}

