:root {
  --ink: #181811;
  --paper: #f4f0e7;
  --paper-deep: #e8e1d4;
  --white: #fffdf8;
  --orange: #ff5c35;
  --orange-dark: #d93b1d;
  --lime: #dfff57;
  --mint: #9ee6cb;
  --lilac: #c7baf7;
  --peach: #ffb694;
  --blue: #3155e7;
  --border: 2px solid var(--ink);
  --shadow: 7px 7px 0 var(--ink);
  --radius-lg: 2rem;
  --radius-md: 1.2rem;
  --container: 75rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}

body {
  margin: 0;
  min-width: 20rem;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body,
button {
  font-family: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  border: var(--border);
  border-radius: 0.5rem;
  background: var(--lime);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.environment-bar {
  background: var(--ink);
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.environment-bar__inner {
  display: flex;
  min-height: 2.4rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
}

.environment-bar strong {
  color: var(--lime);
}

.environment-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(223, 255, 87, 0.65);
  animation: pulse 2s infinite;
}

.site-header {
  border-bottom: var(--border);
  background: rgba(244, 240, 231, 0.94);
}

.site-header__inner {
  display: flex;
  min-height: 5.3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
  text-decoration: none;
}

.wordmark__slash {
  margin-inline: 0.2rem;
  color: var(--orange);
  font-size: 1.6em;
  transform: skew(-10deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:hover {
  background: var(--paper-deep);
}

.hero {
  padding-block: 2.5rem 4.5rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(21rem, 0.92fr);
  gap: 1.5rem;
}

.hero__copy,
.countdown-card {
  min-height: 37rem;
  border: var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero__copy {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  overflow: clip;
  padding: 3rem;
  background: var(--orange);
}

.hero__copy::before {
  position: absolute;
  right: -6rem;
  bottom: -8rem;
  width: 23rem;
  height: 23rem;
  border: 3rem solid rgba(24, 24, 17, 0.1);
  border-radius: 50%;
  content: "";
}

.hero__copy::after {
  position: absolute;
  right: 1.75rem;
  bottom: 1.6rem;
  width: 9rem;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  content: "";
  transform: rotate(-8deg);
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.2rem;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-flex;
  min-height: 1.65rem;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border: 1.5px solid currentColor;
  border-radius: 999px;
}

.hero h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 6.6rem;
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.76;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  margin-left: 0.45em;
  color: var(--white);
  text-shadow: 3px 3px 0 var(--ink), -1px -1px 0 var(--ink), 1px -1px 0 var(--ink), -1px 1px 0 var(--ink);
}

.hero__lede {
  position: relative;
  z-index: 1;
  max-width: 33rem;
  margin: 2.3rem 0 0;
  font-size: 1.16rem;
  font-weight: 600;
}

.hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.4rem;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 0.85rem 1.25rem;
  border: var(--border);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 4px 4px 0 var(--white);
}

.button--primary:hover {
  box-shadow: 1px 1px 0 var(--white);
  transform: translate(3px, 3px);
}

.text-link {
  min-height: 2.75rem;
  padding-block: 0.65rem;
  font-size: 0.9rem;
  font-weight: 800;
  text-underline-offset: 0.25rem;
  text-decoration-thickness: 2px;
}

.hero__assurances {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  margin: auto 0 0;
  padding: 2.2rem 0 0;
  list-style: none;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__assurances li::before {
  margin-right: 0.45rem;
  content: "✦";
}

.hero__stamp {
  position: absolute;
  z-index: 2;
  top: 2.2rem;
  right: 2rem;
  display: grid;
  width: 6.2rem;
  height: 6.2rem;
  place-content: center;
  border: var(--border);
  border-radius: 50%;
  background: var(--lime);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.05;
  text-align: center;
  transform: rotate(9deg);
}

.hero__stamp strong {
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.countdown-card {
  display: flex;
  flex-direction: column;
  padding: 2.2rem;
  background: var(--ink);
  color: var(--white);
}

.countdown-card__topline,
.countdown-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--lime);
}

.live-chip span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: currentColor;
}

.countdown-card__kicker {
  margin: 4.5rem 0 0.5rem;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.countdown-card h2 {
  max-width: 25rem;
  margin: 0;
  font-size: 2.7rem;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.countdown {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0.35rem;
  margin-block: 2.5rem 1rem;
}

.countdown__unit {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
}

.countdown__unit strong {
  display: grid;
  min-height: 4.7rem;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.28);
  border-radius: 0.85rem;
  background: rgba(255, 253, 248, 0.08);
  color: var(--lime);
  font-size: 2.25rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.06em;
  line-height: 1;
}

.countdown__unit > span {
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown__separator {
  padding-top: 1.35rem;
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 900;
}

.countdown-card__message {
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.82rem;
}

.countdown-card__footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 253, 248, 0.2);
  color: rgba(255, 253, 248, 0.65);
}

.section {
  padding-block: 5.5rem;
}

.deals {
  border-top: var(--border);
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(16rem, 0.6fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 3rem;
}

.section-heading h2,
.demo-notes h2 {
  margin: 0;
  font-size: 4.2rem;
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.section-heading > p {
  max-width: 27rem;
  margin: 0 0 0.25rem auto;
  color: #4f4c44;
  font-size: 0.98rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  box-shadow: 8px 8px 0 var(--ink);
  transform: translate(-3px, -3px);
}

.product-card__art {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-bottom: var(--border);
}

.product-card--mint .product-card__art {
  background: var(--mint);
}

.product-card--lilac .product-card__art {
  background: var(--lilac);
}

.product-card--peach .product-card__art {
  background: var(--peach);
}

.product-card__art svg {
  width: 100%;
  height: 100%;
}

.art-shape {
  fill: rgba(255, 253, 248, 0.48);
  stroke: var(--ink);
  stroke-width: 2;
  stroke-dasharray: 7 7;
}

.art-shadow {
  fill: rgba(24, 24, 17, 0.16);
}

.art-object {
  fill: var(--orange);
  stroke: var(--ink);
  stroke-linejoin: round;
  stroke-width: 5;
}

.art-detail {
  fill: var(--lime);
  stroke: var(--ink);
  stroke-linejoin: round;
  stroke-width: 5;
}

.art-line {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.discount-badge {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  padding: 0.42rem 0.7rem;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.45rem;
}

.product-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 0 0.75rem;
  color: #6a665e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.product-card__description {
  margin: 0.8rem 0 1.5rem;
  color: #5a574f;
  font-size: 0.9rem;
}

.product-card__buyline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid #d8d2c6;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin: 0;
}

.price strong {
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.price del {
  color: #77736b;
  font-size: 0.9rem;
}

.deal-button {
  display: flex;
  width: 100%;
  min-height: 3.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: var(--border);
  border-radius: 0.75rem;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 850;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.deal-button:hover {
  background: var(--orange);
  color: var(--ink);
}

.deal-button:active {
  transform: translateY(2px);
}

.deal-button[aria-pressed="true"] {
  background: var(--lime);
  color: var(--ink);
}

.deal-button:disabled {
  border-color: #77736b;
  background: #77736b;
  cursor: not-allowed;
}

.selection-status {
  display: flex;
  max-width: 49rem;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem auto 0;
  padding: 1rem 1.25rem;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper);
}

.selection-status__icon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-weight: 900;
}

.selection-status strong {
  font-size: 0.85rem;
}

.selection-status p {
  margin: 0.12rem 0 0;
  color: #5a574f;
  font-size: 0.82rem;
}

.selection-status[data-active="true"] {
  background: var(--lime);
}

.demo-notes {
  border-top: var(--border);
  background: var(--paper-deep);
}

.demo-notes__panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  padding: 3.5rem;
  border: var(--border);
  border-radius: var(--radius-lg);
  background: var(--lime);
  box-shadow: var(--shadow);
}

.demo-notes__intro > p:last-child {
  max-width: 31rem;
  margin: 1.6rem 0 0;
}

.demo-steps {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: var(--border);
  list-style: none;
}

.demo-steps li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding-block: 1.45rem;
  border-bottom: var(--border);
}

.demo-steps li > span {
  font-size: 0.72rem;
  font-weight: 900;
}

.demo-steps strong {
  font-size: 1.05rem;
}

.demo-steps p {
  margin: 0.3rem 0 0;
  font-size: 0.86rem;
}

.site-footer {
  border-top: var(--border);
  background: var(--ink);
  color: var(--white);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 8rem;
  align-items: center;
  gap: 1.5rem;
}

.wordmark--footer {
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
}

.site-footer p:last-child {
  text-align: right;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 0.45rem rgba(223, 255, 87, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(223, 255, 87, 0);
  }
}

@media (max-width: 68rem) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__copy,
  .countdown-card {
    min-height: 32rem;
  }

  .countdown-card__kicker {
    margin-top: 3.2rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 0.675rem);
    justify-self: center;
  }

  .demo-notes__panel {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }
}

@media (max-width: 47rem) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .environment-bar__inner {
    padding-block: 0.45rem;
  }

  .environment-bar__inner > span:last-child,
  .environment-bar__inner > span:nth-child(3) {
    display: none;
  }

  .site-header__inner {
    min-height: 4.5rem;
  }

  .site-nav a {
    padding-inline: 0.65rem;
    font-size: 0.78rem;
  }

  .site-nav a:last-child {
    display: none;
  }

  .hero {
    padding-block: 1.25rem 3.5rem;
  }

  .hero__grid {
    gap: 1.1rem;
  }

  .hero__copy,
  .countdown-card {
    min-height: auto;
    border-radius: 1.35rem;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .hero__copy {
    padding: 1.5rem;
  }

  .hero h1 {
    font-size: 4.4rem;
  }

  .hero__lede {
    margin-top: 1.8rem;
    font-size: 1rem;
  }

  .hero__stamp {
    top: 1rem;
    right: 1rem;
    width: 4.8rem;
    height: 4.8rem;
    font-size: 0.5rem;
  }

  .hero__stamp strong {
    font-size: 1.05rem;
  }

  .hero__assurances {
    margin-top: 2rem;
  }

  .countdown-card {
    padding: 1.5rem;
  }

  .countdown-card__topline > span:last-child {
    display: none;
  }

  .countdown-card__kicker {
    margin-top: 2.5rem;
  }

  .countdown-card h2 {
    font-size: 2.1rem;
  }

  .countdown {
    margin-top: 1.8rem;
  }

  .countdown__unit strong {
    min-height: 3.8rem;
    font-size: 1.75rem;
  }

  .countdown__separator {
    padding-top: 1rem;
  }

  .countdown-card__footer {
    margin-top: 2.4rem;
  }

  .section {
    padding-block: 4rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    margin-bottom: 2.2rem;
  }

  .section-heading h2,
  .demo-notes h2 {
    font-size: 3.15rem;
  }

  .section-heading > p {
    margin-left: 0;
  }

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

  .product-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .selection-status {
    align-items: flex-start;
    border-radius: 1rem;
  }

  .demo-notes__panel {
    gap: 2.2rem;
    padding: 2rem 1.5rem;
    border-radius: 1.35rem;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding-block: 2.2rem;
  }

  .wordmark--footer {
    justify-self: center;
  }

  .site-footer p:last-child {
    text-align: center;
  }
}

@media (max-width: 27rem) {
  .site-nav {
    display: none;
  }

  .hero h1 {
    font-size: 3.45rem;
  }

  .hero__stamp {
    display: none;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button--primary {
    justify-content: space-between;
  }

  .countdown {
    gap: 0.2rem;
  }

  .countdown__unit strong {
    min-height: 3.2rem;
    border-radius: 0.6rem;
    font-size: 1.4rem;
  }

  .countdown__separator {
    padding-top: 0.8rem;
    font-size: 1rem;
  }

  .countdown__unit > span {
    font-size: 0.47rem;
    letter-spacing: 0.03em;
  }

  .section-heading h2,
  .demo-notes h2 {
    font-size: 2.65rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
