:root {
  --paper: #f3f6ec;
  --ink: #20211d;
  --muted: #65675e;
  --moss: #60734e;
  --moss-deep: #334226;
  --clay: #b55f3d;
  --sky: #9fc7cf;
  --cream: #fffdf8;
  --bezel: rgba(83, 77, 61, 0.12);
  --hairline: rgba(55, 57, 48, 0.12);
  --soft-shadow: 0 28px 90px rgba(68, 59, 42, 0.14);
  --spring: cubic-bezier(0.32, 0.72, 0, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 8%, rgba(132, 169, 112, 0.34), transparent 31rem),
    radial-gradient(circle at 82% 22%, rgba(159, 199, 207, 0.24), transparent 28rem),
    radial-gradient(circle at 90% 80%, rgba(181, 95, 61, 0.11), transparent 26rem),
    linear-gradient(145deg, #fbfbf2 0%, var(--paper) 48%, #e4ecd9 100%);
  font-family: "Plus Jakarta Sans", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  content: "";
  opacity: 0.025;
  background-image:
    radial-gradient(circle at 1px 1px, #1d1d1b 1px, transparent 0);
  background-size: 18px 18px;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 8;
  padding: 0.75rem 1rem;
  color: var(--cream);
  background: var(--moss-deep);
  border-radius: 999px;
  transform: translateY(-180%);
  transition: transform 520ms var(--spring);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 3;
  padding: 1rem;
  pointer-events: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: 0.45rem;
  pointer-events: auto;
  background: rgba(255, 253, 248, 0.78);
  border-radius: 999px;
  box-shadow: 0 18px 60px rgba(51, 66, 38, 0.1);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  border-radius: 999px;
}

.brand {
  gap: 0.7rem;
  padding: 0.3rem 1rem 0.3rem 0.35rem;
  font-weight: 600;
  text-decoration: none;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.2rem;
}

.nav-links.is-static {
  display: flex;
}

.nav-links a {
  padding: 0.55rem 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 560ms var(--spring), background-color 560ms var(--spring), transform 560ms var(--spring);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(96, 115, 78, 0.09);
  transform: translateY(-1px);
}

.menu-toggle {
  position: relative;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  background: #f4ecdc;
  border: 0;
  border-radius: 50%;
}

.menu-line {
  position: absolute;
  width: 1.05rem;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 650ms var(--spring);
}

.menu-line:first-child {
  transform: translateY(-4px);
}

.menu-line:nth-child(2) {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] .menu-line:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
  transform: rotate(-45deg);
}

.site-header.is-open .nav-shell {
  align-items: flex-start;
  border-radius: 1.6rem;
}

.site-header.is-open .nav-links {
  position: absolute;
  top: 4.8rem;
  right: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.4rem;
  padding: 0.8rem;
  background: rgba(255, 253, 248, 0.92);
  border-radius: 1.6rem;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.site-header.is-open .nav-links a {
  justify-content: center;
  opacity: 0;
  transform: translateY(0.9rem);
  animation: menuIn 720ms var(--spring) forwards;
}

.site-header.is-open .nav-links a:nth-child(2) {
  animation-delay: 80ms;
}

.site-header.is-open .nav-links a:nth-child(3) {
  animation-delay: 160ms;
}

.site-header.is-open .nav-links a:nth-child(4) {
  animation-delay: 240ms;
}

.section-pad {
  width: min(100% - 2rem, 1160px);
  margin: 0 auto;
  padding: 5.5rem 0;
}

.hero {
  display: grid;
  gap: 2.2rem;
  padding-top: 3.5rem;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.4rem 0.7rem;
  color: var(--moss-deep);
  background: rgba(96, 115, 78, 0.11);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  max-width: 11ch;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.35rem;
  font-size: clamp(3.45rem, 15.5vw, 7.4rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 10vw, 5.5rem);
}

h3 {
  margin-bottom: 0.6rem;
  font-size: clamp(1.35rem, 5vw, 2rem);
  line-height: 1.08;
}

.lede {
  max-width: 38rem;
  color: #4e5148;
  font-size: clamp(1.15rem, 3.6vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 3.25rem;
  padding: 0.45rem 0.45rem 0.45rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-weight: 620;
  text-decoration: none;
  transition: transform 650ms var(--spring), background-color 650ms var(--spring), color 650ms var(--spring);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button-primary {
  color: #fffdf8;
  background: var(--moss-deep);
  box-shadow: 0 16px 45px rgba(51, 66, 38, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: #efe5d2;
}

.button-orb {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.8);
  border-radius: 50%;
  transition: transform 650ms var(--spring), background-color 650ms var(--spring);
}

.button-spinner {
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(32, 33, 29, 0.22);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: buttonSpinner 760ms linear infinite;
}

.button:hover .button-orb,
.button:focus-visible .button-orb {
  transform: translate(0.18rem, -0.05rem) scale(1.04);
}

.mini-note,
.field-help,
.checker-intro p,
.info-card p,
.trust-copy,
.legal-core p,
.legal-core li {
  color: var(--muted);
}

.checker-intro > p:not(.eyebrow) {
  color: #4e5148;
}

.mini-note {
  max-width: 21rem;
  margin: 0;
  font-size: 0.95rem;
}

.outer-shell {
  padding: 0.45rem;
  background: rgba(255, 253, 248, 0.5);
  border-radius: 2rem;
  box-shadow: var(--soft-shadow);
}

.inner-core {
  border-radius: 1.65rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 240, 0.94)),
    var(--cream);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(55, 57, 48, 0.05);
}

.bin-night {
  position: relative;
  display: grid;
  min-height: 27rem;
  padding: 1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 22%, rgba(255, 253, 248, 0.2), transparent 10rem),
    linear-gradient(145deg, #2c3922 0%, #5a6e48 52%, #d7ba7a 100%);
  color: #fffdf8;
}

.bin-night p {
  align-self: end;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(1.08rem, 3.7vw, 1.3rem);
}

.phone-frame {
  position: relative;
  align-self: start;
  min-height: 18.8rem;
  padding: 1.05rem 0.75rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at 72% 75%, rgba(215, 186, 122, 0.36), transparent 9rem),
    linear-gradient(145deg, rgba(33, 47, 27, 0.98), rgba(77, 99, 63, 0.9));
  border: 0.42rem solid rgba(11, 14, 10, 0.95);
  border-radius: 2.35rem 2.35rem 1.75rem 1.75rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 1.5rem 3.5rem rgba(14, 18, 12, 0.2);
}

.phone-frame::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 7.4rem;
  height: 1.35rem;
  content: "";
  background: #050605;
  border-radius: 0 0 1rem 1rem;
  transform: translateX(-50%);
}

.phone-status {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.35rem;
  padding: 0 0.25rem;
  color: rgba(255, 253, 248, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
}

.notification-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2.12rem 1fr;
  gap: 0.58rem;
  padding: 0.65rem;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.86);
  border-radius: 1.15rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 1rem 2.4rem rgba(5, 6, 5, 0.18);
  backdrop-filter: blur(10px);
}

.notification-icon {
  width: 2.12rem;
  height: 2.12rem;
  object-fit: cover;
  background: var(--cream);
  border-radius: 0.72rem;
}

.notification-copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.notification-meta {
  display: flex;
  gap: 0.6rem;
  justify-content: space-between;
  color: rgba(32, 33, 29, 0.7);
  font-size: 0.7rem;
}

.notification-meta span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.notification-copy strong {
  color: #1f3f69;
  font-size: clamp(0.83rem, 2.9vw, 1.01rem);
  line-height: 1.2;
  white-space: nowrap;
}

.notification-copy p {
  color: rgba(32, 33, 29, 0.86);
  font-size: clamp(0.76rem, 2.7vw, 0.88rem);
  line-height: 1.34;
}

.checker-band {
  width: 100%;
  max-width: none;
  padding-right: 1rem;
  padding-left: 1rem;
  background: rgba(255, 253, 248, 0.28);
}

.checker-grid {
  display: grid;
  width: min(100%, 1160px);
  margin: 0 auto;
  gap: 2rem;
}

.checker-intro {
  align-self: center;
}

.trust-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 1.6rem;
}

.trust-list li::before {
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 0.85rem;
  height: 0.85rem;
  content: "";
  background: var(--sky);
  border-radius: 50%;
  box-shadow: inset 0 0 0 0.25rem #f6efe2;
}

.checker-shell {
  max-width: 35rem;
  width: 100%;
  justify-self: center;
}

.checker-form {
  min-height: 35rem;
  padding: 1.1rem;
}

.step-indicator {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}

.step-dot {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: var(--muted);
  background: #f0e8da;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  transition: transform 620ms var(--spring), background-color 620ms var(--spring), color 620ms var(--spring);
}

.step-dot.is-active {
  color: #fffdf8;
  background: var(--moss-deep);
  transform: scale(1.08);
}

.form-panel {
  display: none;
  opacity: 0;
  transform: translateY(1rem);
}

.form-panel.is-active {
  display: block;
  animation: panelIn 720ms var(--spring) forwards;
}

.field-group {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.3rem;
}

label {
  font-weight: 650;
}

input,
select {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  border: 0;
  border-radius: 1.05rem;
  box-shadow: inset 0 0 0 1px rgba(55, 57, 48, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: box-shadow 620ms var(--spring), transform 620ms var(--spring), background-color 620ms var(--spring);
}

input:focus,
select:focus {
  outline: 0;
  background: #fffdf8;
  box-shadow: inset 0 0 0 2px rgba(96, 115, 78, 0.58), 0 0 0 0.35rem rgba(96, 115, 78, 0.11);
}

.input-row {
  display: grid;
  gap: 0.65rem;
}

.field-help,
.message {
  margin: 0;
  font-size: 0.9rem;
}

.message {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--clay);
  font-weight: 650;
}

.message:empty {
  display: none;
}

.privacy-callout,
.route-preview {
  margin: 1rem 0;
  padding: 1rem;
  color: var(--moss-deep);
  background: rgba(159, 199, 207, 0.22);
  border-radius: 1.2rem;
}

.route-preview {
  display: grid;
  gap: 0.25rem;
  color: var(--ink);
  background: rgba(96, 115, 78, 0.11);
}

.route-preview span {
  color: var(--muted);
}

.route-preview strong {
  font-size: 1.15rem;
}

.route-preview b {
  color: var(--ink);
  font-weight: 800;
}

.form-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
}

.text-button {
  padding: 0.7rem 0.2rem;
  color: var(--muted);
  background: transparent;
  border: 0;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.check-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.check-row input {
  width: 1.2rem;
  min-height: 1.2rem;
  margin-top: 0.15rem;
  accent-color: var(--moss-deep);
}

.done-panel {
  text-align: center;
}

#done-copy {
  white-space: pre-line;
}

.bin-assemble {
  display: inline-flex;
  gap: 0.55rem;
  align-items: end;
  justify-content: center;
  min-height: 4.4rem;
  margin: 0.45rem 0 1rem;
}

.mini-bin {
  position: relative;
  display: inline-block;
  width: 1.45rem;
  height: 2.15rem;
  background: var(--muted);
  border-radius: 0.22rem 0.22rem 0.12rem 0.12rem;
  box-shadow: inset 0 -0.2rem 0 rgba(32, 33, 29, 0.16);
  transform-origin: 50% 100%;
}

.mini-bin::before {
  content: "";
  position: absolute;
  top: -0.22rem;
  left: -0.13rem;
  width: 1.7rem;
  height: 0.28rem;
  background: inherit;
  border-radius: 999px;
}

.mini-bin::after {
  content: "";
  position: absolute;
  right: 0.16rem;
  bottom: -0.13rem;
  width: 0.98rem;
  height: 0.22rem;
  background:
    radial-gradient(circle at 0.12rem 50%, var(--ink) 0 0.1rem, transparent 0.11rem),
    radial-gradient(circle at 0.82rem 50%, var(--ink) 0 0.1rem, transparent 0.11rem);
}

.mini-bin-grey {
  background: #7c8078;
}

.mini-bin-blue {
  background: #6aa5bd;
}

.mini-bin-green {
  background: #60734e;
}

.mini-bin-purple {
  background: #8f7ab8;
}

.bin-assemble.has-assembled .mini-bin-grey {
  animation: binAssembleGrey 920ms var(--spring) both;
}

.bin-assemble.has-assembled .mini-bin-blue {
  animation: binAssembleBlue 980ms var(--spring) 80ms both;
}

.bin-assemble.has-assembled .mini-bin-green {
  animation: binAssembleGreen 980ms var(--spring) 140ms both;
}

.bin-assemble.has-assembled .mini-bin-purple {
  animation: binAssemblePurple 1080ms var(--spring) 360ms both;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2rem;
}

.info-grid {
  display: grid;
  gap: 1rem;
}

.info-card {
  min-height: 15rem;
  padding: 1.25rem;
}

.card-number {
  display: inline-flex;
  margin-bottom: 3rem;
  color: var(--clay);
  font-weight: 900;
}

.trust-panel {
  width: min(100%, 980px);
  margin: 0 auto;
}

.trust-core {
  display: grid;
  gap: 1.5rem;
  padding: 1.4rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(159, 199, 207, 0.22), transparent 18rem),
    #fffdf8;
}

.trust-copy p:last-child,
.legal-core p:last-child {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  width: min(100% - 2rem, 1160px);
  margin: 0 auto;
  padding: 2rem 0 3rem;
  color: var(--muted);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-page {
  padding-top: 3.5rem;
}

.legal-shell {
  width: min(100%, 850px);
  margin: 0 auto;
}

.legal-core {
  padding: 1.3rem;
}

.legal-core h1 {
  max-width: 12ch;
}

.legal-core h2 {
  max-width: none;
  margin-top: 2rem;
  font-family: inherit;
  font-size: 1.45rem;
  line-height: 1.15;
}

.admin-page {
  min-height: 100vh;
}

.admin-shell {
  width: min(100% - 2rem, 1180px);
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.admin-header {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.admin-header h1 {
  max-width: none;
  margin-bottom: 0;
}

.admin-token-panel,
.admin-status,
.admin-section {
  margin-bottom: 1rem;
  padding: 1.1rem;
  background: rgba(255, 253, 248, 0.78);
  border-radius: 1.2rem;
  box-shadow: inset 0 0 0 1px var(--hairline);
}

.admin-token-panel h2,
.admin-section h2 {
  max-width: none;
  margin-bottom: 0.2rem;
  font-family: inherit;
  font-size: 1.25rem;
  line-height: 1.2;
}

.admin-token-form {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.admin-summary-grid {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.admin-card {
  padding: 1rem;
  background: rgba(255, 253, 248, 0.82);
  border-radius: 0.8rem;
  box-shadow: inset 0 0 0 1px var(--hairline);
}

.admin-card span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.admin-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: clamp(1.45rem, 6vw, 2.25rem);
  line-height: 1;
}

.admin-section-heading {
  display: flex;
  gap: 0.75rem;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.admin-section-heading p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin-table-wrap th,
.admin-table-wrap td {
  padding: 0.7rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--hairline);
}

.admin-table-wrap th {
  color: var(--moss-deep);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(2.5rem);
  filter: blur(8px);
  transition: opacity 900ms var(--spring), transform 900ms var(--spring), filter 900ms var(--spring);
}

.reveal-enabled [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes panelIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes buttonSpinner {
  to {
    transform: rotate(360deg);
  }
}

@keyframes binAssembleGrey {
  0% {
    opacity: 0;
    transform: translate(-1.7rem, 0.45rem) rotate(-9deg);
  }

  72% {
    opacity: 1;
    transform: translate(0.08rem, -0.12rem) rotate(2deg);
  }

  88% {
    transform: translate(0, 0.04rem) rotate(-1deg);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
}

@keyframes binAssembleBlue {
  0% {
    opacity: 0;
    transform: translate(-0.7rem, -0.65rem) rotate(8deg);
  }

  72% {
    opacity: 1;
    transform: translate(-0.04rem, -0.14rem) rotate(-2deg);
  }

  88% {
    transform: translate(0, 0.04rem) rotate(1deg);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
}

@keyframes binAssembleGreen {
  0% {
    opacity: 0;
    transform: translate(0.85rem, 0.55rem) rotate(-7deg);
  }

  72% {
    opacity: 1;
    transform: translate(0.04rem, -0.13rem) rotate(2deg);
  }

  88% {
    transform: translate(0, 0.04rem) rotate(-1deg);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
}

@keyframes binAssemblePurple {
  0% {
    opacity: 0;
    transform: translate(1.9rem, 0.75rem) rotate(12deg);
  }

  58% {
    opacity: 1;
    transform: translate(0.22rem, -0.18rem) rotate(-4deg);
  }

  78% {
    transform: translate(-0.06rem, 0.05rem) rotate(2deg);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
  }
}

@media (min-width: 680px) {
  .section-pad {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .hero-actions,
  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .input-row {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .admin-header {
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .admin-summary-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .checker-form,
  .trust-core,
  .legal-core {
    padding: 1.75rem;
  }

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

@media (min-width: 860px) {
  .menu-toggle {
    display: none;
  }

  .nav-links,
  .nav-links.is-static {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1.12fr) minmax(21rem, 0.88fr);
    align-items: center;
    min-height: calc(100dvh - 6rem);
  }

  .hero-card {
    transform: rotate(1.5deg);
  }

  .checker-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(25rem, 1fr);
    align-items: center;
  }

  .trust-core {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal-enabled [data-reveal] {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .button-spinner {
    animation: none;
  }

  .bin-assemble.has-assembled .mini-bin {
    animation: none;
  }
}
