:root {
  color-scheme: light;
  --black: #050505;
  --paper: #fff8df;
  --white: #ffffff;
  --lime: #c8ff2d;
  --purple: #7e37ff;
  --orange: #ff6b21;
  --cyan: #18d9ff;
  --red: #ff3848;
  --green: #18a65f;
  --muted: #4f5665;
  --shadow: 7px 7px 0 var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.08) 2px, transparent 2px) 0 0 / 28px 28px,
    linear-gradient(135deg, #fffdf4 0 48%, #efff96 48% 66%, #ffe2c2 66% 100%);
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.page {
  width: min(1040px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 44px;
}

.topbar,
.card,
.hero-panel,
.plan {
  border: 4px solid var(--black);
  background: var(--white);
  box-shadow: var(--shadow);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
  padding: 12px;
  color: var(--white);
  background: var(--black);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-mark {
  position: relative;
  width: 46px;
  height: 39px;
  border: 3px solid var(--black);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 28%, var(--orange) 0 9px, transparent 10px),
    linear-gradient(135deg, var(--lime) 0 58%, var(--purple) 58% 100%);
  box-shadow: 4px 4px 0 var(--orange);
}

.logo-mark::before,
.logo-mark::after {
  content: "$";
  position: absolute;
  display: grid;
  place-items: center;
  color: var(--black);
  font-weight: 950;
}

.logo-mark::before {
  left: 7px;
  top: 5px;
  font-size: 22px;
}

.logo-mark::after {
  right: 5px;
  bottom: 1px;
  width: 18px;
  height: 18px;
  border: 3px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  font-size: 12px;
}

.brand span {
  display: inline-flex;
  margin-bottom: 5px;
  border: 2px solid var(--black);
  padding: 3px 7px;
  color: var(--black);
  background: var(--lime);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
}

.brand strong {
  display: block;
  font-size: 22px;
  line-height: 0.9;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
}

.hero-panel {
  position: sticky;
  top: 24px;
  min-height: 500px;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, var(--lime) 0 52px, transparent 53px),
    linear-gradient(135deg, #ffffff 0 58%, #f4efff 58% 100%);
}

.kicker {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  border: 3px solid var(--black);
  padding: 0 9px;
  background: var(--lime);
  box-shadow: 3px 3px 0 var(--black);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

.hero-panel h1 {
  max-width: 440px;
  margin-top: 24px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.86;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-panel p,
.muted {
  color: var(--muted);
  font-weight: 780;
}

.hero-panel p {
  max-width: 460px;
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.45;
}

.feature-strip,
.status-grid,
.plans {
  display: grid;
  gap: 12px;
}

.feature-strip {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.feature-strip div,
.stat {
  border: 3px solid var(--black);
  padding: 12px;
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--black);
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
}

.card {
  padding: 22px;
}

.card h2 {
  font-size: 30px;
  line-height: 0.95;
  font-weight: 950;
  text-transform: uppercase;
}

.form,
.stack {
  display: grid;
  gap: 13px;
  margin-top: 18px;
}

.mt {
  margin-top: 18px;
}

label {
  display: grid;
  gap: 7px;
}

label span,
.eyebrow {
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

input {
  min-height: 48px;
  border: 3px solid var(--black);
  border-radius: 0;
  padding: 0 13px;
  background: #fffdf4;
  box-shadow: 4px 4px 0 var(--black);
  font-weight: 850;
}

button,
.button {
  display: inline-grid;
  min-height: 44px;
  place-items: center;
  border: 3px solid var(--black);
  border-radius: 0;
  padding: 0 16px;
  color: var(--black);
  background: var(--white);
  box-shadow: 4px 4px 0 var(--black);
  cursor: pointer;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
}

button:hover,
.button:hover {
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--black);
}

.primary {
  background: var(--lime);
}

.dark {
  color: var(--white);
  background: var(--black);
}

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

.purple {
  color: var(--white);
  background: var(--purple);
}

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

.plan {
  display: grid;
  gap: 8px;
  padding: 14px;
  text-align: left;
}

.plan.is-selected {
  background: var(--lime);
}

.price {
  font-size: 34px;
  line-height: 0.95;
  font-weight: 950;
}

.price small {
  font-size: 13px;
}

.message {
  min-height: 22px;
  margin-top: 13px;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 850;
}

.message.is-error {
  color: #8b0010;
}

.message.is-good {
  color: #07572c;
}

.account-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.side-nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

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

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer a {
  border: 3px solid var(--black);
  padding: 8px 10px;
  color: var(--black);
  background: var(--white);
  box-shadow: 3px 3px 0 var(--black);
  text-decoration: none;
}

@media (max-width: 840px) {
  .hero,
  .account-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    position: relative;
    top: auto;
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .page {
    width: min(100vw - 18px, 520px);
    padding-top: 10px;
  }

  .plans,
  .feature-strip,
  .status-grid {
    grid-template-columns: 1fr;
  }
}
