:root {
  --ink: #12150e;
  --ink-soft: #24291d;
  --paper: #f4f2e9;
  --paper-deep: #e9e6d9;
  --card: rgba(255, 255, 255, 0.72);
  --lime: #c8f45b;
  --lime-deep: #a9db35;
  --orange: #ff9a55;
  --blue: #63b7ff;
  --purple: #ae91ff;
  --green: #68d6a0;
  --rose: #ff8ba3;
  --muted: #565c50;
  --line: rgba(18, 21, 14, 0.12);
  --shadow: 0 24px 70px rgba(34, 39, 24, 0.12);
  --radius: 24px;
  --container: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(18, 21, 14, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 21, 14, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 46px 46px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(244, 242, 233, 0.08), rgba(244, 242, 233, 0.9) 42%, var(--paper));
  content: "";
  pointer-events: none;
}

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

button,
input {
  font: inherit;
}

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

svg {
  display: block;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.page-glow {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
}

.page-glow--one {
  top: 90px;
  right: -230px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 244, 91, 0.28), rgba(200, 244, 91, 0));
}

.page-glow--two {
  top: 540px;
  left: -260px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(99, 183, 255, 0.12), rgba(99, 183, 255, 0));
}

.site-header,
.hero,
.downloads-section,
.steps-section,
.contact-strip,
.site-footer {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 11px;
  align-items: center;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  box-shadow: 0 7px 20px rgba(18, 21, 14, 0.18);
}

.brand__mark svg {
  width: 24px;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.brand__text {
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.04em;
}

.brand__text span {
  color: #788f25;
}

.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 0.84rem;
  font-weight: 650;
}

.main-nav > a {
  position: relative;
}

.main-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.status-pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: #3e4632;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.status-pill__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #75bd2d;
  box-shadow: 0 0 0 4px rgba(117, 189, 45, 0.13);
}

.status-pill--warning .status-pill__dot {
  background: #d88935;
  box-shadow: 0 0 0 4px rgba(216, 137, 53, 0.15);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 60px;
  align-items: center;
  min-height: 660px;
  padding-block: 70px 84px;
}

.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 22px;
  color: #717668;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  color: #61741f;
}

.hero h1,
.section-heading h2,
.steps-panel h2 {
  margin: 0;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 750px;
  font-size: clamp(3.25rem, 6.7vw, 5.8rem);
  font-weight: 820;
}

.hero h1 em {
  position: relative;
  z-index: 1;
  color: #667b20;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero h1 em::after {
  position: absolute;
  z-index: -1;
  right: -10px;
  bottom: 5px;
  left: -6px;
  height: 13px;
  border-radius: 50%;
  background: rgba(200, 244, 91, 0.58);
  content: "";
  transform: rotate(-1deg);
}

.hero__intro {
  max-width: 600px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.87rem;
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

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

.button:hover svg {
  transform: translateX(3px);
}

.button--primary {
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(18, 21, 14, 0.18);
  color: white;
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 16px 35px rgba(18, 21, 14, 0.24);
}

.button--ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  color: #656a5d;
  font-size: 0.78rem;
  font-weight: 600;
}

.trust-list li {
  display: flex;
  gap: 7px;
  align-items: center;
}

.trust-list svg {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(200, 244, 91, 0.65);
  fill: none;
  stroke: #42540d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: 460px;
  place-items: center;
  isolation: isolate;
}

.hero__visual::before {
  position: absolute;
  z-index: -3;
  width: 330px;
  height: 330px;
  border-radius: 42% 58% 63% 37% / 47% 41% 59% 53%;
  background: var(--lime);
  box-shadow: inset -30px -22px 70px rgba(112, 156, 19, 0.18);
  content: "";
  transform: rotate(7deg);
}

.orbit {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(18, 21, 14, 0.12);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.orbit--outer {
  width: 430px;
  height: 430px;
  transform: rotate(12deg);
}

.orbit--outer::after {
  top: 42px;
  right: 76px;
}

.orbit--inner {
  width: 370px;
  height: 370px;
  border-style: dashed;
  transform: rotate(-15deg);
}

.orbit--inner::after {
  bottom: 28px;
  left: 77px;
  background: var(--blue);
}

.download-window {
  position: relative;
  z-index: 2;
  width: min(410px, 92%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 0 30px 75px rgba(36, 49, 12, 0.2), inset 0 1px 0 white;
  transform: rotate(-2.5deg);
  backdrop-filter: blur(18px);
}

.download-window__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 15px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(18, 21, 14, 0.08);
  color: #85897e;
  font-size: 0.66rem;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d3d3ca;
}

.window-dots i:first-child {
  background: var(--orange);
}

.window-dots i:nth-child(2) {
  background: #efcf65;
}

.window-dots i:last-child {
  background: #85cf91;
}

.lock {
  justify-self: end;
}

.lock svg {
  width: 15px;
  fill: none;
  stroke: #5d8652;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.download-window__body {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 30px 27px 32px;
}

.file-icon {
  display: grid;
  flex: 0 0 82px;
  height: 94px;
  place-items: center;
  border-radius: 18px;
  background: var(--ink);
  box-shadow: 0 13px 30px rgba(18, 21, 14, 0.18);
}

.file-icon svg {
  width: 39px;
  fill: none;
  stroke: var(--lime);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.download-window__text {
  flex: 1;
  min-width: 0;
}

.download-window__text > span {
  color: #8a8e83;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-window__text strong {
  display: block;
  overflow: hidden;
  margin-top: 6px;
  font-size: 0.9rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.progress {
  height: 6px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 999px;
  background: #e2e3db;
}

.progress i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime-deep), #d6fa78);
}

.download-window__text small {
  display: block;
  margin-top: 8px;
  color: #8a8e83;
  font-size: 0.65rem;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  gap: 11px;
  align-items: center;
  min-width: 176px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 15px 35px rgba(35, 45, 18, 0.14);
  backdrop-filter: blur(12px);
}

.floating-chip--top {
  top: 53px;
  right: -7px;
  transform: rotate(4deg);
}

.floating-chip--bottom {
  bottom: 49px;
  left: -12px;
  transform: rotate(-4deg);
}

.floating-chip__icon {
  display: grid;
  flex: 0 0 32px;
  height: 32px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 154, 85, 0.18);
}

.floating-chip__icon--green {
  background: rgba(104, 214, 160, 0.18);
}

.floating-chip__icon svg {
  width: 18px;
  fill: none;
  stroke: #b85a1d;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.floating-chip__icon--green svg {
  stroke: #2e875a;
}

.floating-chip strong,
.floating-chip small {
  display: block;
}

.floating-chip strong {
  font-size: 0.72rem;
}

.floating-chip small {
  margin-top: 3px;
  color: #878c80;
  font-size: 0.61rem;
}

.downloads-section {
  padding-block: 94px 110px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.section-heading {
  display: flex;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
}

.section-heading h2,
.steps-panel h2 {
  font-size: clamp(2.3rem, 4.6vw, 4.1rem);
  font-weight: 790;
}

.section-heading > p {
  max-width: 330px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.download-controls {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  padding-block: 38px 22px;
}

.search-box {
  display: flex;
  gap: 12px;
  align-items: center;
  width: min(360px, 100%);
  min-height: 48px;
  padding: 0 13px 0 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 22px rgba(30, 35, 21, 0.05);
  transition: border 160ms ease, box-shadow 160ms ease;
}

.search-box:focus-within {
  border-color: #647d21;
  outline: 3px solid #5d741b;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(200, 244, 91, 0.25);
}

.search-box > svg {
  flex: 0 0 18px;
  width: 18px;
  fill: none;
  stroke: #7a7f72;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.search-box input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.84rem;
}

.search-box input::placeholder {
  color: #676d61;
}

.search-box kbd {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 6px;
  background: var(--paper);
  color: #8c9085;
  font-family: inherit;
  font-size: 0.68rem;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: #676c60;
  cursor: pointer;
  font-size: 0.77rem;
  font-weight: 650;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.filter:hover,
.filter:focus-visible {
  transform: translateY(-1px);
}

.filter.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: white;
}

.results-status {
  margin: 0 0 17px;
  color: #5e6458;
  font-size: 0.72rem;
  font-weight: 600;
}

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

.download-card {
  position: relative;
  display: flex;
  min-height: 355px;
  flex-direction: column;
  padding: 21px 21px 20px;
  overflow: hidden;
  border: 1px solid rgba(18, 21, 14, 0.1);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 10px 35px rgba(30, 35, 21, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease;
  backdrop-filter: blur(12px);
}

.download-card::after {
  position: absolute;
  z-index: -1;
  right: -60px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(200, 244, 91, 0.13);
  content: "";
  filter: blur(5px);
}

.download-card:hover {
  border-color: rgba(18, 21, 14, 0.2);
  box-shadow: 0 20px 50px rgba(30, 35, 21, 0.09);
  transform: translateY(-4px);
}

.download-card[hidden] {
  display: none;
}

.download-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.category-badge {
  padding: 6px 9px;
  border-radius: 7px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.category-badge--client {
  background: rgba(200, 244, 91, 0.55);
  color: #536b0c;
}

.category-badge--orange {
  background: rgba(255, 154, 85, 0.18);
  color: #aa4f19;
}

.category-badge--tools {
  background: rgba(174, 145, 255, 0.18);
  color: #644da6;
}

.file-type {
  color: #62685c;
  font-size: 0.62rem;
  font-weight: 600;
}

.download-card__icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  margin-top: 27px;
  border-radius: 16px;
}

.download-card__icon--lime {
  background: var(--lime);
}

.download-card__icon--orange {
  background: #ffd3b6;
}

.download-card__icon--blue {
  background: #c7e5ff;
}

.download-card__icon--purple {
  background: #ded3ff;
}

.download-card__icon--green {
  background: #c3f2da;
}

.download-card__icon--rose {
  background: #ffd3dc;
}

.download-card__icon svg {
  width: 27px;
  fill: none;
  stroke: #293019;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.download-card h3 {
  margin: 19px 0 9px;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.download-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.62;
}

.download-card__footer {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  margin-top: auto;
  border-top: 1px solid rgba(18, 21, 14, 0.08);
}

.download-card__footer > span {
  color: #606659;
  font-size: 0.64rem;
}

.download-button {
  min-height: 36px;
  padding: 0 13px;
  border: 0;
  border-radius: 9px;
  background: #e8e8e0;
  color: #91958a;
  cursor: not-allowed;
  font-size: 0.67rem;
  font-weight: 700;
}

.empty-state {
  padding: 75px 20px;
  border: 1px dashed rgba(18, 21, 14, 0.2);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state[hidden] {
  display: none;
}

.empty-state > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 20px;
  border-radius: 18px;
  background: var(--paper-deep);
}

.empty-state svg {
  width: 28px;
  fill: none;
  stroke: #73786a;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.empty-state h3 {
  margin: 0;
  font-size: 1.15rem;
}

.empty-state p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 0.82rem;
}

.empty-state button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: 9px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
}

.steps-section {
  padding-bottom: 110px;
  scroll-margin-top: 24px;
}

.steps-panel {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  padding: 70px 76px;
  border-radius: 30px;
  background: var(--ink);
  color: white;
  box-shadow: 0 30px 80px rgba(18, 21, 14, 0.16);
}

.eyebrow--dark,
.eyebrow--dark span {
  color: #909a7c;
}

.eyebrow--dark span {
  color: var(--lime);
}

.steps-panel h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.steps-panel__copy > p:last-child {
  max-width: 420px;
  margin: 24px 0 0;
  color: #a9afa0;
  font-size: 0.87rem;
  line-height: 1.7;
}

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

.steps-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.steps-list li:first-child {
  padding-top: 3px;
}

.steps-list li:last-child {
  padding-bottom: 3px;
  border-bottom: 0;
}

.steps-list > li > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border: 1px solid rgba(200, 244, 91, 0.25);
  border-radius: 12px;
  background: rgba(200, 244, 91, 0.08);
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
  font-weight: 700;
}

.steps-list h3 {
  margin: 0 0 7px;
  font-size: 0.95rem;
}

.steps-list p {
  margin: 0;
  color: #979d8e;
  font-size: 0.76rem;
  line-height: 1.5;
}

.contact-strip {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px;
  margin-bottom: 100px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
}

.contact-strip > div {
  display: flex;
  gap: 16px;
  align-items: center;
}

.contact-strip__icon {
  display: grid;
  flex: 0 0 47px;
  height: 47px;
  place-items: center;
  border-radius: 13px;
  background: var(--lime);
}

.contact-strip__icon svg {
  width: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

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

.contact-strip p {
  margin: 0;
}

.contact-strip strong {
  font-size: 0.86rem;
}

.contact-strip p span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
}

.contact-strip__tag {
  padding: 9px 13px;
  border-radius: 999px;
  background: var(--paper-deep);
  color: #555b4f;
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding-block: 34px;
  border-top: 1px solid var(--line);
  color: #5f6559;
  font-size: 0.68rem;
}

.brand--footer {
  color: var(--ink);
}

.brand--footer .brand__mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  box-shadow: none;
}

.brand--footer .brand__mark svg {
  width: 20px;
}

.brand--footer .brand__text {
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__visual {
    width: min(600px, 100%);
    margin-inline: auto;
  }

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

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

  .search-box {
    width: 100%;
  }

  .steps-panel {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 58px;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .downloads-section,
  .steps-section,
  .contact-strip,
  .site-footer {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    min-height: 76px;
  }

  .main-nav > a {
    display: none;
  }

  .status-pill {
    padding: 8px 10px;
  }

  .hero {
    gap: 35px;
    padding-block: 62px 70px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .hero__intro {
    font-size: 1rem;
  }

  .hero__visual {
    min-height: 390px;
  }

  .hero__visual::before {
    width: 270px;
    height: 270px;
  }

  .orbit--outer {
    width: 350px;
    height: 350px;
  }

  .orbit--inner {
    width: 300px;
    height: 300px;
  }

  .floating-chip--top {
    top: 35px;
    right: 0;
  }

  .floating-chip--bottom {
    bottom: 35px;
    left: 0;
  }

  .downloads-section {
    padding-block: 75px 80px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

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

  .download-card {
    min-height: 330px;
  }

  .steps-panel {
    padding: 45px 27px;
    border-radius: 24px;
  }

  .contact-strip {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 75px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer p:last-child {
    justify-self: start;
  }
}

@media (max-width: 470px) {
  .brand__text {
    font-size: 0.95rem;
  }

  .status-pill {
    font-size: 0;
  }

  .status-pill__dot {
    width: 8px;
    height: 8px;
  }

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

  .hero__visual {
    min-height: 340px;
  }

  .download-window {
    width: 94%;
  }

  .download-window__body {
    gap: 15px;
    padding: 23px 20px;
  }

  .file-icon {
    flex-basis: 64px;
    height: 78px;
  }

  .floating-chip {
    min-width: auto;
  }

  .floating-chip--top {
    top: 12px;
  }

  .floating-chip--bottom {
    bottom: 8px;
  }

  .floating-chip small {
    display: none;
  }

  .filters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .filter {
    width: 100%;
  }

  .contact-strip {
    padding: 24px 20px;
  }
}

[hidden] {
  display: none !important;
}

.noscript-warning {
  width: min(calc(100% - 40px), var(--container));
  padding: 12px 16px;
  margin: 20px auto 0;
  border: 1px solid rgba(170, 79, 25, 0.25);
  border-radius: 12px;
  background: rgba(255, 154, 85, 0.14);
  color: #7b3b13;
  font-size: 0.8rem;
  font-weight: 650;
  text-align: center;
}

.progress--complete i {
  width: 100%;
}

.file-icon--complete {
  background: var(--lime);
}

.file-icon--complete svg {
  stroke: var(--ink);
  stroke-width: 2;
}

.upload-section {
  width: min(calc(100% - 40px), var(--container));
  padding-block: 94px 110px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.upload-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: stretch;
  margin-top: 40px;
}

.upload-card,
.upload-aside {
  border: 1px solid rgba(18, 21, 14, 0.11);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 55px rgba(30, 35, 21, 0.07);
  backdrop-filter: blur(14px);
}

.upload-card {
  min-width: 0;
  overflow: hidden;
}

#upload-form {
  padding: 30px;
}

.dropzone {
  position: relative;
  display: flex;
  min-height: 270px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 34px 24px;
  border: 2px dashed rgba(18, 21, 14, 0.22);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 20%, rgba(200, 244, 91, 0.16), transparent 43%),
    rgba(244, 242, 233, 0.58);
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.dropzone:hover,
.dropzone:focus-within,
.dropzone.is-dragging {
  border-color: #77921f;
  background:
    radial-gradient(circle at 50% 20%, rgba(200, 244, 91, 0.3), transparent 48%),
    rgba(244, 242, 233, 0.82);
}

.dropzone.is-dragging {
  transform: scale(1.01);
}

.dropzone:focus-within {
  outline: 3px solid #5d741b;
  outline-offset: 3px;
}

.dropzone input {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.dropzone__icon {
  display: grid;
  width: 67px;
  height: 67px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(18, 21, 14, 0.1);
  border-radius: 19px;
  background: var(--lime);
  box-shadow: 0 12px 25px rgba(100, 126, 24, 0.16);
  transform: rotate(-3deg);
}

.dropzone__icon svg {
  width: 31px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.dropzone strong {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.dropzone > span:not(.dropzone__icon) {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.83rem;
}

.dropzone u {
  color: #566b12;
  font-weight: 750;
  text-underline-offset: 3px;
}

.dropzone small {
  margin-top: 20px;
  color: #646a5d;
  font-size: 0.68rem;
  font-weight: 650;
}

.selected-file {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--paper);
}

.selected-file__icon {
  display: grid;
  flex: 0 0 43px;
  height: 43px;
  place-items: center;
  border-radius: 11px;
  background: #dce8bd;
}

.selected-file__icon svg {
  width: 21px;
  fill: none;
  stroke: #42530f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.selected-file__details {
  min-width: 0;
  flex: 1;
}

.selected-file__details strong,
.selected-file__details small {
  display: block;
}

.selected-file__details strong {
  overflow: hidden;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-file__details small {
  margin-top: 5px;
  color: #5e6458;
  font-size: 0.66rem;
}

.selected-file button {
  display: grid;
  flex: 0 0 35px;
  height: 35px;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #62685c;
  cursor: pointer;
}

.selected-file button:hover,
.selected-file button:focus-visible {
  background: #dedfd5;
}

.selected-file button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.7;
}

.rights-check {
  position: relative;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  margin-top: 20px;
  color: #50564b;
  cursor: pointer;
  font-size: 0.7rem;
  line-height: 1.5;
}

.rights-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.rights-check__box {
  display: grid;
  flex: 0 0 21px;
  height: 21px;
  place-items: center;
  border: 1px solid #979c90;
  border-radius: 6px;
  background: white;
  transition: background 150ms ease, border 150ms ease;
}

.rights-check__box svg {
  width: 15px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 150ms ease, transform 150ms ease;
}

.rights-check input:checked + .rights-check__box {
  border-color: var(--lime-deep);
  background: var(--lime);
}

.rights-check input:checked + .rights-check__box svg {
  opacity: 1;
  transform: scale(1);
}

.rights-check input:focus-visible + .rights-check__box {
  outline: 3px solid #5d741b;
  outline-offset: 2px;
}

.upload-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
}

.upload-button {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 12px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  background: var(--ink);
  box-shadow: 0 11px 25px rgba(18, 21, 14, 0.17);
  color: white;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}

.upload-button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.upload-button:not(:disabled):hover,
.upload-button:not(:disabled):focus-visible {
  box-shadow: 0 15px 30px rgba(18, 21, 14, 0.24);
  transform: translateY(-2px);
}

.upload-button:disabled {
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.38;
}

.upload-button.is-loading svg {
  animation: upload-bob 800ms ease-in-out infinite alternate;
}

@keyframes upload-bob {
  to { transform: translateY(-3px); }
}

.upload-actions > p {
  max-width: 310px;
  margin: 0;
  color: #62685c;
  font-size: 0.65rem;
  line-height: 1.5;
}

.upload-progress {
  padding: 17px;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}

.upload-progress__label {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  color: #4e5449;
  font-size: 0.7rem;
  font-weight: 650;
}

.upload-progress__label strong {
  color: #526716;
}

.progress-track {
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #dcddd3;
}

.progress-track i {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--lime-deep), #d8fb79);
  transition: width 180ms ease;
}

.upload-progress > small {
  display: block;
  margin-top: 9px;
  color: #62685c;
  font-size: 0.63rem;
}

.form-alert {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 13px 14px;
  margin-top: 17px;
  border: 1px solid rgba(180, 66, 48, 0.22);
  border-radius: 12px;
  background: rgba(255, 113, 91, 0.11);
  color: #8c2f24;
  font-size: 0.7rem;
  line-height: 1.5;
}

.form-alert svg {
  flex: 0 0 18px;
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.upload-result {
  min-height: 560px;
  padding: 42px;
  background:
    radial-gradient(circle at 90% 10%, rgba(200, 244, 91, 0.16), transparent 35%),
    var(--ink);
  color: white;
}

.upload-result__heading {
  display: flex;
  gap: 17px;
  align-items: center;
}

.upload-result__check {
  display: grid;
  flex: 0 0 56px;
  height: 56px;
  place-items: center;
  border-radius: 17px;
  background: var(--lime);
  color: var(--ink);
  transform: rotate(-4deg);
}

.upload-result__check svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.upload-result__heading p {
  margin: 0 0 4px;
  color: var(--lime);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.upload-result__heading h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 2rem);
  letter-spacing: -0.04em;
}

.result-file {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  margin-top: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.result-file span {
  min-width: 0;
  overflow: hidden;
  font-size: 0.84rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.result-file small {
  flex: 0 0 auto;
  color: #9da394;
  font-size: 0.64rem;
}

.result-link {
  display: block;
  margin-top: 26px;
}

.result-link > span,
.result-hash > span {
  display: block;
  margin-bottom: 8px;
  color: #aab09f;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-link input {
  width: 100%;
  height: 49px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 11px;
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.68rem;
}

.result-link input:focus {
  border-color: var(--lime);
  outline: 3px solid rgba(200, 244, 91, 0.3);
  outline-offset: 2px;
}

.result-hash {
  margin-top: 20px;
}

.result-hash code {
  display: block;
  overflow-wrap: anywhere;
  color: #aeb4a3;
  font-size: 0.61rem;
  line-height: 1.55;
}

.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.result-actions button,
.result-actions a {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 750;
}

.result-actions a {
  border-color: var(--lime);
  background: var(--lime);
  color: var(--ink);
}

.result-actions svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.upload-another {
  display: block;
  padding: 8px 0;
  margin: 24px auto 0;
  border: 0;
  border-bottom: 1px solid #737b69;
  background: transparent;
  color: #aab09f;
  cursor: pointer;
  font-size: 0.68rem;
}

.upload-aside {
  display: flex;
  flex-direction: column;
  padding: 27px;
}

.aside-heading {
  display: flex;
  gap: 13px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.aside-heading > span {
  display: grid;
  flex: 0 0 45px;
  height: 45px;
  place-items: center;
  border-radius: 13px;
  background: var(--lime);
}

.aside-heading svg {
  width: 24px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.aside-heading strong,
.aside-heading small {
  display: block;
}

.aside-heading strong {
  font-size: 0.8rem;
}

.aside-heading small {
  margin-top: 4px;
  color: #62685c;
  font-size: 0.63rem;
}

.upload-limits {
  padding: 0;
  margin: 10px 0 0;
}

.upload-limits > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(18, 21, 14, 0.08);
  font-size: 0.7rem;
}

.upload-limits dt {
  color: #5f6559;
}

.upload-limits dd {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
}

.aside-note {
  padding: 16px;
  margin: 22px 0 0;
  border-radius: 12px;
  background: #eeeee5;
  color: #555b4f;
  font-size: 0.66rem;
  line-height: 1.6;
}

.community-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.community-stats span {
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: #62685c;
  font-size: 0.58rem;
  text-align: center;
}

.community-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.74rem;
}

.recent-panel {
  padding: 30px;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.54);
}

.recent-panel__heading {
  display: flex;
  gap: 20px;
  align-items: end;
  justify-content: space-between;
}

.recent-panel__heading .eyebrow {
  margin-bottom: 9px;
}

.recent-panel__heading h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.recent-panel__heading button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--paper);
  color: #5c6256;
  cursor: pointer;
  font-size: 0.65rem;
  font-weight: 700;
}

.recent-panel__help {
  margin: 11px 0 20px;
  color: #62685c;
  font-size: 0.67rem;
}

.recent-list {
  display: grid;
  gap: 8px;
}

.recent-list__item {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid rgba(18, 21, 14, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.recent-list__icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 9px;
  background: #e1ebc9;
  color: #526716;
  font-weight: 850;
}

.recent-list__details {
  min-width: 0;
}

.recent-list__details strong,
.recent-list__details small {
  display: block;
}

.recent-list__details strong {
  overflow: hidden;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-list__details small {
  margin-top: 4px;
  color: #62685c;
  font-size: 0.59rem;
}

.recent-list__actions {
  display: flex;
  gap: 7px;
  align-items: center;
}

.recent-list__actions a,
.recent-list__copy {
  display: grid;
  min-width: 36px;
  height: 34px;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: #4f554a;
  cursor: pointer;
  font-size: 0.63rem;
  font-weight: 700;
  text-decoration: none;
}

.recent-list__copy svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

a.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 9px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}

a.download-button:hover,
a.download-button:focus-visible {
  background: #29301f;
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .upload-layout {
    grid-template-columns: 1fr;
  }

  .upload-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .aside-heading {
    grid-column: 1 / -1;
  }

  .community-stats {
    align-self: end;
    padding-top: 0;
  }
}

@media (max-width: 720px) {
  .noscript-warning,
  .upload-section {
    width: min(calc(100% - 28px), var(--container));
  }

  .upload-section {
    padding-block: 75px 80px;
  }

  #upload-form,
  .upload-result,
  .recent-panel {
    padding: 24px 20px;
  }

  .dropzone {
    min-height: 235px;
  }

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

  .upload-button {
    width: 100%;
  }

  .upload-actions > p {
    max-width: none;
  }

  .upload-aside {
    display: flex;
  }

  .recent-panel__heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 470px) {
  .dropzone {
    min-height: 220px;
    padding-inline: 15px;
  }

  .dropzone__icon {
    width: 59px;
    height: 59px;
  }

  .selected-file {
    align-items: flex-start;
  }

  .result-actions {
    grid-template-columns: 1fr;
  }

  .result-file {
    align-items: flex-start;
    flex-direction: column;
  }

  .community-stats {
    grid-template-columns: 1fr;
  }

  .recent-list__item {
    grid-template-columns: 35px minmax(0, 1fr);
  }

  .recent-list__actions {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .page-glow {
    display: none;
  }

  .upload-card,
  .upload-aside,
  .download-card,
  .floating-chip {
    backdrop-filter: none;
  }
}

/* Low-power paint mode: keep the hierarchy, avoid expensive GPU effects. */
body {
  background: var(--paper);
  background-image: none;
}

body::before,
.page-glow {
  display: none;
}

.status-pill,
.download-window,
.floating-chip,
.upload-card,
.upload-aside,
.download-card {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.status-pill,
.download-window,
.floating-chip,
.upload-card,
.upload-aside,
.download-card {
  background: #fffefa;
}

.download-window {
  box-shadow: 0 8px 24px rgba(34, 39, 24, 0.14);
}

.floating-chip {
  box-shadow: 0 5px 14px rgba(35, 45, 18, 0.12);
}

.upload-card,
.upload-aside,
.download-card,
.contact-strip {
  box-shadow: 0 5px 16px rgba(30, 35, 21, 0.06);
}

.steps-panel {
  box-shadow: 0 12px 28px rgba(18, 21, 14, 0.13);
}

.download-card::after {
  display: none;
}

.dropzone {
  background: #f4f2e9;
}

.hero__visual::before {
  box-shadow: inset -18px -16px 38px rgba(112, 156, 19, 0.16);
}

.downloads-section,
.steps-section,
.recent-panel {
  content-visibility: auto;
  contain-intrinsic-size: 800px;
}

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