:root {
  --black: #120f0d;
  --ink: #211814;
  --ash: #342a25;
  --grit: #4f4038;
  --paper: #efe2cc;
  --bone: #fff4dd;
  --yellow: #ffc400;
  --orange: #e46d1f;
  --red: #c52d1f;
  --blue: #2480b9;
  --green: #29975b;
  --muted: #b9aa93;
  --line: rgba(255, 244, 221, .18);
  --shadow: 10px 10px 0 rgba(0, 0, 0, .55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial Black, Impact, Arial, Helvetica, sans-serif;
  color: var(--bone);
  line-height: 1.45;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 196, 0, .16), transparent 28%),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(135deg, #15100d, #271914 46%, #0f0d0c);
  background-size: auto, 46px 46px, 46px 46px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .34;
  background:
    repeating-linear-gradient(0deg, transparent 0 8px, rgba(255, 244, 221, .035) 9px 10px),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(0, 0, 0, .24) 25px 26px);
  mix-blend-mode: screen;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(18, 15, 13, .94);
  border-bottom: 3px solid var(--yellow);
  box-shadow: 0 8px 0 rgba(0, 0, 0, .28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(2px 3px 0 #000);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a,
.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--yellow);
  border-color: var(--yellow);
}

.header-action {
  justify-self: end;
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  box-shadow: 5px 5px 0 #000;
  font-weight: 900;
  text-transform: uppercase;
}

.hero,
.subpage-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(46px, 7vw, 86px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}

.hero::after,
.subpage-hero::after {
  content: "DON'T EVEN STANK ABOUT IT";
  position: absolute;
  right: -42px;
  bottom: 18px;
  color: rgba(255, 244, 221, .055);
  font-size: clamp(58px, 10vw, 150px);
  font-weight: 900;
  line-height: .8;
  transform: rotate(-5deg);
  pointer-events: none;
}

.hero-copy,
.subpage-hero > div {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow {
  width: max-content;
  max-width: 100%;
  margin: 0 0 14px;
  padding: 7px 10px;
  background: var(--red);
  color: var(--bone);
  border: 2px solid var(--black);
  box-shadow: 4px 4px 0 #000;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  color: var(--bone);
  font-size: clamp(48px, 8vw, 112px);
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 #000;
}

.subpage-hero h1 {
  font-size: clamp(42px, 6vw, 86px);
}

h2 {
  margin-bottom: 16px;
  color: var(--bone);
  font-size: clamp(34px, 5vw, 68px);
  line-height: .95;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 3px 3px 0 #000;
}

h3 {
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-lede,
.section-heading p,
.feature-row > div > p,
.panel p,
.launch-section p,
.signup-copy p,
.legal-page p,
.legal-page li {
  max-width: 720px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2.1vw, 23px);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #000;
  padding: 12px 18px;
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 6px 6px 0 #000;
}

.button.primary {
  background: var(--yellow);
}

.button.secondary {
  background: var(--bone);
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 #000;
}

.big-cta {
  justify-self: start;
  align-self: center;
  font-size: 20px;
}

.hero-stage {
  position: relative;
  min-height: 610px;
}

.hero-mascot {
  position: absolute;
  z-index: 2;
  width: min(510px, 82vw);
  right: 20%;
  bottom: -28px;
  filter: drop-shadow(12px 18px 0 rgba(0, 0, 0, .72));
}

.phone-preview {
  position: absolute;
  right: 0;
  top: 20px;
  width: min(350px, 82vw);
  min-height: 610px;
  padding: 22px;
  border: 10px solid #050403;
  background: #f2dfbd;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.phone-bar {
  width: 88px;
  height: 8px;
  margin: 0 auto 18px;
  background: #050403;
}

.map-strip {
  height: 148px;
  margin-bottom: 14px;
  border: 3px solid #050403;
  background:
    linear-gradient(135deg, transparent 0 46%, rgba(255,255,255,.75) 47% 52%, transparent 53%),
    linear-gradient(45deg, transparent 0 42%, rgba(255,255,255,.65) 43% 48%, transparent 49%),
    linear-gradient(135deg, #71c4ff, #2875bd 52%, #17635f);
}

.nearby,
.place {
  border: 3px solid #050403;
  padding: 12px;
  background: var(--bone);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
}

.nearby {
  margin-bottom: 12px;
}

.nearby p,
.nearby strong,
.place span,
.place strong,
.place small {
  display: block;
}

.nearby p,
.place small {
  margin: 0;
  color: #6d5844;
}

.place {
  margin-top: 10px;
  border-left-width: 12px;
}

.place span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.place.good {
  border-left-color: var(--green);
}

.place.okay {
  border-left-color: var(--orange);
}

.place.bad {
  border-left-color: var(--red);
}

.trust-band {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 18px clamp(18px, 5vw, 72px);
  background: var(--yellow);
  color: var(--black);
  border-block: 4px solid #000;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-band span {
  padding: 8px 12px;
  border: 2px solid #000;
  background: rgba(255, 255, 255, .35);
}

.combo-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: stretch;
  border-block: 4px solid #000;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, .52), rgba(80, 64, 56, .35)),
    repeating-linear-gradient(-8deg, rgba(255,196,0,.08) 0 12px, transparent 13px 28px);
}

.combo-copy {
  align-self: center;
}

.combo-copy p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
}

.combo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.combo-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 4px solid #000;
  color: var(--black);
  box-shadow: var(--shadow);
}

.combo-card span {
  width: max-content;
  margin-bottom: auto;
  padding: 6px 9px;
  border: 2px solid #000;
  background: var(--black);
  color: var(--yellow);
  font-size: 12px;
  text-transform: uppercase;
}

.combo-card p {
  color: #4d392e;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.user-card {
  background: linear-gradient(rgba(240, 215, 177, .86), rgba(240, 215, 177, .95)), url("assets/splash-blue-tiles.png");
  background-size: cover;
  transform: rotate(-1deg);
}

.owner-card {
  background: linear-gradient(rgba(255, 196, 0, .88), rgba(239, 226, 204, .96)), url("assets/splash-brown-tiles.jpg");
  background-size: cover;
  transform: rotate(1deg);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 32px;
}

.rating-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.rating-card,
.info-card {
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 18px;
  border: 3px solid #000;
  background: #f0d7b1;
  color: var(--black);
  box-shadow: var(--shadow);
}

.rating-card:nth-child(even),
.info-card:nth-child(even) {
  transform: rotate(1deg);
}

.rating-card:nth-child(odd),
.info-card:nth-child(odd) {
  transform: rotate(-1deg);
}

.rating-card img {
  height: 140px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(5px 6px 0 rgba(0, 0, 0, .32));
}

.rating-card p,
.info-card p,
.checkout-box p,
.winner-card p {
  color: #5d4736;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.status {
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 8px;
  border: 2px solid #000;
  color: var(--bone);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status.clean {
  background: var(--green);
}

.status.watch {
  background: var(--yellow);
  color: var(--black);
}

.status.rough {
  background: var(--orange);
}

.status.avoid {
  background: var(--black);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: rgba(0, 0, 0, .28);
  border-block: 3px solid var(--line);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 2px dashed rgba(255, 244, 221, .24);
}

.feature-list strong {
  color: var(--yellow);
  text-transform: uppercase;
}

.feature-list span {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
}

.tile-scene,
.subpage-hero img {
  width: 100%;
  border: 4px solid #000;
  box-shadow: var(--shadow);
  filter: saturate(1.15) contrast(1.05);
}

.subpage-hero img {
  max-height: 430px;
  justify-self: center;
  object-fit: contain;
  background: #211814;
}

.access-hero img {
  max-height: 390px;
  padding: 28px;
}

.monthly-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  background: #080706;
  border-block: 4px solid var(--yellow);
}

.monthly-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.monthly-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.monthly-stats span {
  padding: 9px 12px;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.winner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 430px;
  padding: 24px;
  border: 4px solid #000;
  background: linear-gradient(160deg, var(--yellow), #f5cf61 48%, var(--bone));
  color: var(--black);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(1.5deg);
}

.winner-card img {
  position: absolute;
  right: -48px;
  top: 34px;
  width: 250px;
  max-width: 68%;
  opacity: .96;
  filter: drop-shadow(6px 8px 0 rgba(0, 0, 0, .28));
}

.winner-ribbon,
.stripe-tag,
.price-kicker {
  position: relative;
  z-index: 1;
  width: max-content;
  padding: 7px 10px;
  border: 2px solid #000;
  background: var(--red);
  color: var(--bone);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.winner-card h3,
.winner-card p,
.winner-card strong {
  position: relative;
  z-index: 1;
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.panel {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 42px);
  border: 4px solid #000;
  color: var(--bone);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.panel.business {
  background-image: linear-gradient(rgba(18, 15, 13, .42), rgba(18, 15, 13, .88)), url("assets/splash-brown-tiles.jpg");
}

.panel.access {
  background-image: linear-gradient(rgba(18, 15, 13, .34), rgba(18, 15, 13, .84)), url("assets/rainbow-stanker.png");
  background-position: center 26%;
}

.text-link {
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  padding-bottom: 4px;
  border-bottom: 4px solid var(--yellow);
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.launch-section,
.signup-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(300px, .72fr);
  gap: 24px;
  align-items: center;
  margin: 0 clamp(18px, 5vw, 72px) clamp(54px, 8vw, 96px);
  padding: clamp(28px, 5vw, 54px);
  border: 4px solid #000;
  background:
    linear-gradient(135deg, rgba(255, 196, 0, .94), rgba(228, 109, 31, .9)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(0,0,0,.09) 19px 20px);
  color: var(--black);
  box-shadow: var(--shadow);
}

.mini-checkout {
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: start;
}

.mini-checkout strong {
  font-size: clamp(46px, 6vw, 78px);
  line-height: .9;
  text-shadow: 3px 3px 0 rgba(255, 244, 221, .55);
}

.launch-section h2,
.signup-section h2 {
  color: var(--black);
  text-shadow: 3px 3px 0 rgba(255, 244, 221, .55);
}

.launch-section p,
.signup-copy p {
  color: #3f2f23;
}

.business-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
}

.business-combo {
  border-top: 0;
}

.rating-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rating-strip article {
  display: grid;
  align-content: end;
  min-height: 310px;
  padding: 16px;
  border: 4px solid #000;
  background: #f0d7b1;
  color: var(--black);
  box-shadow: var(--shadow);
}

.rating-strip article:nth-child(2) {
  transform: rotate(1deg);
}

.rating-strip article:nth-child(3) {
  transform: rotate(-1deg);
}

.rating-strip img {
  height: 130px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(5px 6px 0 rgba(0, 0, 0, .28));
}

.rating-strip strong,
.rating-strip span {
  display: block;
}

.rating-strip span {
  color: #5d4736;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.business-monthly {
  border-top: 0;
}

.price-card,
.checkout-box {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 4px solid #000;
  background: #f0d7b1;
  color: var(--black);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.price-card strong,
.checkout-box strong {
  font-size: clamp(72px, 10vw, 126px);
  line-height: .85;
  letter-spacing: 0;
  text-shadow: 4px 4px 0 var(--yellow);
}

.signup-section {
  margin-top: clamp(24px, 5vw, 54px);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #3f2f23;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.check-list li::before {
  content: "X";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--yellow);
  font-size: 14px;
}

input {
  min-width: 0;
  min-height: 52px;
  border: 3px solid #000;
  padding: 0 12px;
  font: inherit;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px;
  background: #070605;
  color: var(--bone);
  border-top: 4px solid var(--yellow);
}

.site-footer a {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.info-card {
  min-height: 260px;
}

.business-proof {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .42)),
    repeating-linear-gradient(90deg, rgba(255, 244, 221, .035) 0 2px, transparent 3px 26px);
}

.access-band {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .7fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
  border-block: 4px solid #000;
  background:
    linear-gradient(120deg, rgba(36, 128, 185, .32), rgba(0, 0, 0, .56)),
    repeating-linear-gradient(-8deg, rgba(255,196,0,.08) 0 10px, transparent 11px 25px);
}

.access-band p {
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(18px, 2.1vw, 23px);
  font-weight: 800;
}

.access-band img {
  max-height: 390px;
  justify-self: center;
  padding: 24px;
  border: 4px solid #000;
  background: #1b1411;
  box-shadow: var(--shadow);
  object-fit: contain;
}

.legal-page {
  max-width: 900px;
  min-height: 70vh;
  padding: clamp(42px, 8vw, 84px) clamp(18px, 5vw, 72px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .hero,
  .combo-section,
  .access-band,
  .feature-row,
  .monthly-feature,
  .launch-section,
  .signup-section,
  .subpage-hero,
  .business-hero {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 540px;
  }

  .hero-mascot {
    left: 0;
    right: auto;
    width: min(430px, 78vw);
  }

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

  .combo-grid,
  .rating-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .brand {
    flex: 1 1 180px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .header-action {
    flex: 1 1 auto;
  }

  h1 {
    font-size: 48px;
  }

  .subpage-hero h1 {
    font-size: 42px;
  }

  .phone-preview {
    position: relative;
    margin-left: auto;
  }

  .hero-stage {
    min-height: 740px;
  }

  .hero-mascot {
    bottom: 0;
  }

  .rating-grid,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .feature-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
