@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Unbounded:wght@600;700;800&display=swap");

:root {
  --ink: #11162c;
  --paper: #f5f1e8;
  --white: #fffdf8;
  --lime: #dfff00;
  --blue: #6c8cff;
  --coral: #ff725e;
  --muted: #686b77;
  --line: rgba(17, 22, 44, 0.18);
  --display: "Unbounded", "Arial Black", sans-serif;
  --body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 28px;
  --shadow: 0 24px 80px rgba(17, 22, 44, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 100px;
  background: var(--white);
  font-weight: 800;
  transition: transform 0.2s ease;
}

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

.section-shell {
  width: min(100% - 48px, 1360px);
  margin-inline: auto;
}

.ticker {
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--lime);
  font-family: var(--display);
  font-size: 11px;
  line-height: 36px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  animation: ticker 26s linear infinite;
}

.ticker i {
  font-size: 16px;
  font-style: normal;
}

.site-header {
  display: flex;
  width: min(100% - 48px, 1360px);
  min-height: 92px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.brand__mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-family: var(--display);
  font-size: 18px;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 800;
}

nav a:not(.nav-cta) {
  position: relative;
}

nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ink);
  transition: transform 0.25s ease;
}

nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 13px 19px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  background: var(--white);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink);
}

.hero {
  display: grid;
  min-height: 740px;
  padding-block: 58px 76px;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: clamp(48px, 6vw, 100px);
}

.eyebrow {
  display: flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.62);
}

.live-dot,
.status-pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #20b66c;
  box-shadow: 0 0 0 5px rgba(32, 182, 108, 0.12);
}

.hero h1,
.section-heading h2,
.diagnosis h2,
.load-card h2,
.finale h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.hero h1 {
  max-width: 810px;
  font-size: clamp(54px, 6.3vw, 98px);
  line-height: 0.98;
}

.hero h1 span {
  display: inline-block;
  position: relative;
  z-index: 0;
  white-space: nowrap;
}

.hero h1 span::before {
  position: absolute;
  z-index: -1;
  right: -14px;
  bottom: 4px;
  left: -10px;
  height: 30%;
  content: "";
  transform: rotate(-1deg);
  background: var(--lime);
}

.hero__lead {
  max-width: 630px;
  margin: 32px 0 0;
  color: #3e4150;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.62;
}

.hero__lead strong {
  color: var(--ink);
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button--dark:hover {
  transform: translateY(-3px);
  background: var(--blue);
  color: var(--ink);
}

.button--ghost {
  background: transparent;
}

.button--ghost:hover {
  transform: translateY(-3px);
  background: var(--lime);
}

.hero__fineprint {
  margin-top: 20px;
  color: var(--muted);
  font-size: 11px;
}

.hero-card {
  position: relative;
  width: min(100%, 550px);
  margin: 0 0 0 auto;
  padding: 14px;
  transform: rotate(1.4deg);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 12px 14px 0 var(--ink);
}

.hero-card::before {
  position: absolute;
  z-index: -1;
  inset: -16px 12px 18px -17px;
  border-radius: 36px;
  background: var(--blue);
  content: "";
  transform: rotate(-4deg);
}

.hero-card__status {
  display: flex;
  min-height: 39px;
  padding: 0 9px 0 7px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.06em;
}

.status-pulse {
  width: 8px;
  height: 8px;
  animation: pulse 1.5s ease-in-out infinite;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 4.15;
  border-radius: 18px;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero-card figcaption {
  display: flex;
  padding: 15px 5px 5px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
}

.hero-card figcaption span {
  color: var(--muted);
}

.hero-card figcaption strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 600;
}

.sticker {
  position: absolute;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  text-align: center;
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 5px 5px 0 var(--ink);
}

.sticker--hot {
  top: 8%;
  right: -42px;
  width: 110px;
  height: 110px;
  transform: rotate(11deg);
  border-radius: 50%;
  background: var(--coral);
  font-size: 11px;
}

.sticker--note {
  bottom: 17%;
  left: -52px;
  width: 116px;
  padding: 13px;
  transform: rotate(-8deg);
  background: var(--lime);
  font-size: 9px;
}

.proof-strip {
  display: grid;
  border-block: 2px solid var(--ink);
  background: var(--white);
  grid-template-columns: repeat(4, 1fr);
}

.proof-strip > div {
  display: flex;
  min-height: 162px;
  padding: 30px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid var(--line);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip strong {
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 64px);
  letter-spacing: -0.08em;
}

.proof-strip span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.diagnosis {
  display: grid;
  width: 100%;
  max-width: none;
  padding: 110px max(24px, calc((100vw - 1360px) / 2));
  background: var(--ink);
  color: var(--white);
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(60px, 9vw, 150px);
}

.diagnosis h2,
.load-card h2 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.04;
}

.diagnosis h2 em,
.load-card h2 em {
  color: var(--lime);
  font-style: normal;
}

.diagnosis__terminal {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 18px;
  background: #0a0d1b;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.terminal__bar {
  display: flex;
  height: 45px;
  padding: 0 17px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.terminal__bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.terminal__bar i:nth-child(2) {
  background: #ffc85e;
}

.terminal__bar i:nth-child(3) {
  background: #42ce7f;
}

.terminal__bar span {
  margin-left: 9px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

.terminal__body {
  min-height: 340px;
  padding: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(11px, 1.2vw, 14px);
}

.terminal__body > p {
  margin: 0 0 26px;
}

.terminal__body p span,
.cursor-line span {
  color: var(--lime);
}

.terminal__body dl {
  margin: 0;
}

.terminal__body dl div {
  display: grid;
  padding: 9px 0;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.terminal__body dt {
  color: rgba(255, 255, 255, 0.42);
}

.terminal__body dd {
  margin: 0;
}

.terminal__body .warning {
  color: #ffc85e;
}

.terminal__body .success {
  color: var(--lime);
}

.cursor-line {
  margin-top: 25px !important;
}

.cursor {
  display: inline-block;
  width: 8px;
  height: 16px;
  margin-left: 8px;
  vertical-align: -3px;
  background: var(--white);
  animation: blink 0.8s step-end infinite;
}

.projects {
  padding-block: 120px;
}

.section-heading {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 70px;
}

.section-heading h2,
.finale h2 {
  font-size: clamp(42px, 5.2vw, 78px);
  line-height: 1.02;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 6px;
  color: #555866;
  font-size: 15px;
  line-height: 1.7;
}

.section-heading > p strong {
  color: var(--ink);
}

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

.project-card {
  display: grid;
  min-height: 750px;
  padding: 24px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  grid-template-rows: auto 270px 1fr;
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0 var(--ink);
}

.project-card--lime {
  background: var(--lime);
}

.project-card--blue {
  background: var(--blue);
}

.project-card--coral {
  background: var(--coral);
}

.project-card--cream {
  background: var(--white);
}

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

.project-number {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
}

.project-card__top > a {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-size: 20px;
  font-weight: 800;
  transition: transform 0.3s ease;
}

.project-card__top > a:hover {
  transform: rotate(45deg);
}

.project-visual {
  position: relative;
  display: grid;
  margin-block: 8px 18px;
  place-items: center;
}

.project-visual--orbit span {
  display: grid;
  z-index: 2;
  width: 115px;
  height: 115px;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--display);
  font-size: 44px;
  font-weight: 800;
  box-shadow: 8px 8px 0 rgba(17, 22, 44, 0.25);
}

.project-visual--orbit i {
  position: absolute;
  width: 220px;
  height: 76px;
  transform: rotate(19deg);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.project-visual--orbit i:nth-child(3) {
  transform: rotate(-42deg);
}

.project-visual--orbit i:nth-child(4) {
  transform: rotate(82deg);
}

.project-visual--vpn {
  grid-template-columns: repeat(3, auto);
  gap: 22px;
}

.project-visual--vpn::before,
.project-visual--vpn::after,
.project-visual--vpn i {
  position: absolute;
  width: 70%;
  height: 2px;
  background: var(--ink);
  content: "";
}

.project-visual--vpn::before {
  transform: rotate(20deg);
}

.project-visual--vpn::after {
  transform: rotate(-20deg);
}

.project-visual--vpn i {
  transform: rotate(90deg);
}

.project-visual--vpn span {
  z-index: 1;
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
}

.project-visual--vpn span:nth-child(2) {
  transform: translateY(-50px);
  background: var(--lime);
}

.project-visual--domains {
  align-content: center;
  grid-auto-flow: column;
  gap: 24px;
}

.project-visual--domains strong {
  font-family: var(--display);
  font-size: clamp(86px, 10vw, 150px);
  line-height: 0.8;
  letter-spacing: -0.1em;
  text-shadow: 7px 7px 0 var(--white);
}

.project-visual--domains span {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.project-visual--password {
  align-content: center;
  justify-items: stretch;
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.project-visual--password p {
  margin: 0 0 12px;
  font-size: 13px;
}

.project-visual--password p span,
.project-visual--password .copied {
  color: var(--lime);
}

.project-visual--password .generated-password {
  overflow: hidden;
  color: var(--blue);
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.project-visual--password .copied {
  margin: 0;
}

.project-card__body {
  display: flex;
  padding: 30px 6px 6px;
  flex-direction: column;
  border-top: 2px solid var(--ink);
}

.project-type {
  margin: 0 0 12px !important;
  font-family: var(--display);
  font-size: 9px !important;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.project-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.05em;
}

.project-card__body > p:not(.project-type) {
  max-width: 570px;
  margin: 18px 0 0;
  font-size: 14px;
  line-height: 1.65;
}

.project-card code {
  padding: 2px 5px;
  border: 1px solid currentColor;
  border-radius: 4px;
  font-size: 0.85em;
}

.project-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.project-card li {
  position: relative;
  padding: 4px 0 4px 21px;
  font-size: 12px;
  font-weight: 700;
}

.project-card li::before {
  position: absolute;
  left: 0;
  content: "✦";
}

.project-card blockquote {
  margin: 22px 0 0;
  padding-left: 15px;
  border-left: 3px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.text-link {
  display: flex;
  margin-top: auto;
  padding-top: 26px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link span {
  font-size: 19px;
  transition: transform 0.25s ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.load-section {
  width: 100%;
  max-width: none;
  padding: 110px max(24px, calc((100vw - 1360px) / 2));
  background: var(--blue);
}

.load-card {
  display: grid;
  padding: clamp(34px, 6vw, 84px);
  border: 2px solid var(--ink);
  border-radius: 38px;
  background: var(--ink);
  color: var(--white);
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(60px, 9vw, 150px);
  box-shadow: 14px 14px 0 var(--lime);
}

.load-card__copy > p:last-child {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 15px;
  line-height: 1.75;
}

.load-meter {
  align-self: center;
}

.load-meter > div:not(.meter) {
  display: flex;
  margin: 22px 0 8px;
  align-items: center;
  justify-content: space-between;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.load-meter b {
  color: var(--lime);
}

.meter {
  height: 13px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
}

.meter i {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.load-card.is-visible .meter i {
  transform: scaleX(1);
}

.meter--danger i {
  background: var(--coral);
}

.finale {
  padding-block: 130px 0;
}

.finale__header {
  max-width: 1040px;
  margin: 0 auto 65px;
  text-align: center;
}

.finale__header .eyebrow {
  justify-content: center;
}

.mood-switcher {
  max-width: 1100px;
  margin-inline: auto;
}

.mood-tabs {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 24px;
  padding: 5px;
  border: 2px solid var(--ink);
  border-radius: 100px;
  background: var(--white);
}

.mood-tab {
  padding: 13px 20px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  transition: background 0.25s ease, color 0.25s ease;
}

.mood-tab.is-active {
  background: var(--ink);
  color: var(--white);
}

.mood-stage {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 34px;
  background: var(--ink);
  box-shadow: 12px 12px 0 var(--ink);
}

.mood-panel {
  position: relative;
  margin: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.mood-panel--after {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  pointer-events: none;
}

.mood-switcher[data-state="after"] .mood-panel--before {
  opacity: 0;
  transform: scale(1.04);
}

.mood-switcher[data-state="after"] .mood-panel--after {
  opacity: 1;
  transform: scale(1);
}

.mood-panel img {
  width: 100%;
  height: clamp(500px, 65vw, 760px);
  object-fit: cover;
  object-position: 50% 43%;
}

.mood-panel--after img {
  object-position: 50% 42%;
}

.mood-panel::after {
  position: absolute;
  inset: 50% 0 0;
  content: "";
  background: linear-gradient(transparent, rgba(6, 9, 20, 0.8));
}

.mood-panel figcaption {
  position: absolute;
  z-index: 2;
  right: 5%;
  bottom: 7%;
  left: 5%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  color: var(--white);
}

.mood-panel figcaption span {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mood-panel figcaption strong {
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 52px);
  letter-spacing: -0.05em;
}

.mood-stamp {
  position: absolute;
  z-index: 4;
  top: 32px;
  right: 32px;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  transform: rotate(10deg);
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  box-shadow: 6px 6px 0 var(--ink);
}

.final-ask {
  display: flex;
  max-width: 1100px;
  margin: 140px auto 0;
  padding-bottom: 140px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.final-ask > p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.final-ask h3 {
  margin: 24px 0 50px;
  font-family: var(--display);
  font-size: clamp(38px, 5.5vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.mega-button {
  display: flex;
  width: min(100%, 720px);
  min-height: 128px;
  padding: 24px 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
  transform: rotate(-1deg);
  border: 3px solid var(--ink);
  border-radius: 24px;
  background: var(--lime);
  box-shadow: 12px 12px 0 var(--ink);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mega-button:hover {
  transform: translate(6px, 6px) rotate(0);
  box-shadow: 6px 6px 0 var(--ink);
}

.mega-button span {
  font-family: var(--display);
  font-size: clamp(16px, 2.5vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mega-button i {
  color: rgba(17, 22, 44, 0.6);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

footer {
  display: grid;
  min-height: 150px;
  padding: 35px max(24px, calc((100vw - 1360px) / 2));
  align-items: center;
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
}

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

footer p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  text-align: center;
}

footer > a {
  justify-self: end;
  font-size: 12px;
  font-weight: 800;
}

.toast {
  position: fixed;
  z-index: 300;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: min(380px, calc(100vw - 48px));
  padding: 20px 24px;
  transform: translateY(160%);
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--lime);
  flex-direction: column;
  gap: 4px;
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.toast.is-visible {
  transform: translateY(0);
}

.toast strong {
  font-family: var(--display);
  font-size: 12px;
}

.toast span {
  font-size: 11px;
  font-weight: 700;
}

.confetti {
  position: fixed;
  z-index: 250;
  inset: 0;
  pointer-events: none;
}

.confetti-piece {
  position: absolute;
  top: -20px;
  width: 10px;
  height: 16px;
  border: 1px solid var(--ink);
  animation: confetti-fall var(--duration) linear forwards;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal--delay {
  transition-delay: 0.12s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  50% {
    opacity: 0.4;
    box-shadow: 0 0 0 8px rgba(32, 182, 108, 0.04);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes confetti-fall {
  to {
    transform: translate3d(var(--drift), 110vh, 0) rotate(760deg);
  }
}

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr 0.83fr;
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(48px, 6vw, 70px);
  }

  .sticker--hot {
    right: -20px;
    width: 90px;
    height: 90px;
    font-size: 9px;
  }

  .sticker--note {
    left: -28px;
  }

  .proof-strip > div {
    min-height: 130px;
    padding: 20px;
    gap: 12px;
  }

  .diagnosis,
  .load-card {
    gap: 55px;
  }

  .project-card {
    min-height: 710px;
    grid-template-rows: auto 230px 1fr;
  }

  .project-visual--vpn span {
    width: 74px;
    height: 74px;
  }
}

@media (max-width: 820px) {
  .site-header nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding-top: 45px;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(48px, 11vw, 82px);
  }

  .hero-card {
    width: min(92%, 620px);
    margin: 20px auto 0;
  }

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

  .proof-strip > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .diagnosis,
  .load-card,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .diagnosis {
    padding-block: 85px;
    gap: 45px;
  }

  .section-heading {
    gap: 30px;
  }

  .project-card {
    min-height: 700px;
  }

  .load-card {
    padding: 50px;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer p {
    display: none;
  }
}

@media (max-width: 690px) {
  :root {
    --radius: 22px;
  }

  .section-shell,
  .site-header {
    width: min(100% - 30px, 1360px);
  }

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

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .nav-cta {
    padding: 10px 13px;
    font-size: 10px;
  }

  .hero {
    padding-block: 42px 65px;
  }

  .hero h1 {
    font-size: clamp(39px, 12.5vw, 61px);
    line-height: 1.02;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .hero-card {
    width: calc(100% - 13px);
    margin-top: 10px;
    box-shadow: 8px 9px 0 var(--ink);
  }

  .hero-card img {
    aspect-ratio: 4 / 5;
  }

  .hero-card figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .sticker--hot {
    top: 13%;
    right: -11px;
  }

  .sticker--note {
    bottom: 13%;
    left: -12px;
    width: 103px;
  }

  .proof-strip strong {
    font-size: 36px;
  }

  .proof-strip > div {
    min-height: 115px;
    padding: 14px;
    justify-content: flex-start;
  }

  .proof-strip span {
    font-size: 8px;
  }

  .diagnosis,
  .load-section {
    padding: 72px 15px;
  }

  .diagnosis h2,
  .load-card h2,
  .section-heading h2,
  .finale h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .terminal__body {
    min-height: 310px;
    padding: 22px 18px;
    font-size: 10px;
  }

  .terminal__body dl div {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .projects {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-card {
    min-height: 680px;
    padding: 18px;
    grid-template-rows: auto 225px 1fr;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .project-card:hover {
    transform: none;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .project-visual--vpn {
    gap: 8px;
  }

  .project-visual--vpn span {
    width: 68px;
    height: 68px;
    font-size: 8px;
  }

  .project-visual--domains {
    grid-auto-flow: row;
    gap: 18px;
  }

  .project-visual--domains strong {
    font-size: 102px;
  }

  .project-visual--domains span {
    display: none;
  }

  .project-visual--password {
    padding: 20px;
  }

  .load-card {
    padding: 32px 24px;
    border-radius: 25px;
    gap: 40px;
    box-shadow: 8px 8px 0 var(--lime);
  }

  .finale {
    padding-top: 86px;
  }

  .finale__header {
    margin-bottom: 42px;
  }

  .mood-tabs {
    width: 100%;
  }

  .mood-tab {
    width: 50%;
    padding: 11px 9px;
    font-size: 9px;
  }

  .mood-stage {
    border-radius: 24px;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .mood-panel img {
    height: 590px;
  }

  .mood-panel figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .mood-panel figcaption strong {
    font-size: 28px;
  }

  .mood-stamp {
    top: 20px;
    right: 19px;
    width: 87px;
    height: 87px;
    font-size: 7px;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .final-ask {
    margin-top: 90px;
    padding-bottom: 95px;
  }

  .final-ask h3 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .mega-button {
    min-height: 110px;
    padding: 20px;
    box-shadow: 8px 8px 0 var(--ink);
  }

  footer {
    min-height: 120px;
  }

  .toast {
    right: 15px;
    bottom: 15px;
    width: calc(100vw - 30px);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
