* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: #4b5563 #0f1218;
}

body {
  scrollbar-color: #4b5563 #0f1218;
}

body::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

body::-webkit-scrollbar-track {
  background: #0f1218;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #5b6676, #3f4856);
  border: 2px solid #0f1218;
  border-radius: 999px;
}

body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #6b7788, #4b5563);
}

body::-webkit-scrollbar-corner {
  background: #0f1218;
}

@font-face {
  font-family: "Midcent60s";
  src: url("/static/fonts/Midcent60s-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Krophed";
  src: url("/static/fonts/Krophed.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "UnivaNova";
  src: url("/static/fonts/UnivaNova-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Chopic";
  src: url("/static/fonts/ChopicStndr-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Monoblock";
  src: url("/static/fonts/Monoblock-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  font-family: "UnivaNova", "Monoblock", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fefefe;
  color: #1f2937;
  min-height: 100vh;
  overflow-x: hidden;
}

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

:root {
  --header-height: 64px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Krophed", "Midcent60s", "Fraunces", "Georgia", serif;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.homepage-form-page {
  max-width: none;
  min-height: var(--homepage-white-area-height, 980px);
  --homepage-spotlight-scroll-y: 0px;
  --homepage-spotlight-current-radius: var(--homepage-spotlight-radius, 430px);
  --homepage-spotlight-current-brightness: var(--homepage-spotlight-brightness, 0.28);
  --homepage-spotlight-current-ambient: var(--homepage-spotlight-ambient, 0.34);
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto 1fr;
  justify-items: center;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.homepage-form-page::before,
.homepage-form-page::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: var(--homepage-spotlight-z, 1);
}

.homepage-form-page::before {
  background:
    radial-gradient(
      circle at 50% calc(var(--homepage-spotlight-y, 50%) + var(--homepage-spotlight-scroll-y, 0px)),
      rgba(0, 0, 0, calc(1 - min(1, var(--homepage-spotlight-current-ambient, 0.34) + var(--homepage-spotlight-current-brightness, 0.28)))) 0,
      rgba(0, 0, 0, calc(1 - min(1, var(--homepage-spotlight-current-ambient, 0.34) + (var(--homepage-spotlight-current-brightness, 0.28) * 0.85)))) calc(var(--homepage-spotlight-current-radius, 430px) * (1 - var(--homepage-spotlight-feather, 0.28))),
      rgba(0, 0, 0, calc(1 - var(--homepage-spotlight-current-ambient, 0.34))) var(--homepage-spotlight-current-radius, 430px),
      rgba(0, 0, 0, calc(1 - var(--homepage-spotlight-current-ambient, 0.34))) 100%
    );
}

.homepage-form-page::after {
  background:
    radial-gradient(
      circle at 50% calc(var(--homepage-spotlight-y, 50%) + var(--homepage-spotlight-scroll-y, 0px)),
      rgb(255 255 255 / calc(var(--homepage-spotlight-current-brightness, 0.28) * 0.92)) 0,
      rgb(255 255 255 / calc(var(--homepage-spotlight-current-brightness, 0.28) * 0.56)) calc(var(--homepage-spotlight-current-radius, 430px) * (0.45 + (var(--homepage-spotlight-feather, 0.28) * 0.2))),
      rgb(255 255 255 / calc(var(--homepage-spotlight-current-brightness, 0.28) * 0.12)) calc(var(--homepage-spotlight-current-radius, 430px) * (0.8 + (var(--homepage-spotlight-feather, 0.28) * 0.2))),
      transparent calc(var(--homepage-spotlight-current-radius, 430px) * (1.08 + (var(--homepage-spotlight-feather, 0.28) * 0.28)))
    );
}

.homepage-form-title {
  grid-row: 1;
  align-self: center;
  width: min(100%, 900px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transform: translateY(var(--homepage-form-title-y, 0px));
}

.form-title-kicker {
  max-width: 420px;
  margin-bottom: 2px;
  transform: none;
}

.form-title-art {
  width: min(100%, var(--homepage-form-title-size, 900px));
  height: auto;
  display: block;
}

.page-wide {
  max-width: 1400px;
  width: 100%;
  padding: 0 40px 110px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 5px solid #000000;
}

.site-header .inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promo-bar {
  background: #fff241;
  border-bottom: 3px solid #000000;
  padding: 9px 24px;
  text-align: center;
}

.promo-bar p {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #111111;
}

.promo-bar strong {
  font-weight: 800;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", "Georgia", serif;
}

.brand img {
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
}

.brand .wordmark {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.brand .dot {
  font-weight: 600;
  color: #ef4444;
}

.brand .tagline {
  font-size: 12px;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #64748b;
}

.header-pill {
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff7ed;
  color: #9a3412;
}

.site-nav {
  display: flex;
  gap: 18px;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: #0f172a;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.site-nav a:hover {
  color: #b50030;
}

.nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  background: #ff0000;
  color: #ffffff !important;
  border: 2px solid #000000;
  box-shadow: 4px 4px 0 #000000;
}

.nav-cta:hover {
  background: #cc0000;
  color: #ffffff !important;
}

.anchor-target {
  scroll-margin-top: calc(var(--header-height) + 8px);
  height: 1px;
}

.hero-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #ffffff;
  min-height: 75vh;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero {
  position: relative;
  z-index: 1;
}

.hero-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: 5px;
  background: #000000;
}
.hero {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 75vh;
  padding: 120px 48px;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-family: "Krophed", "Midcent60s", "Fraunces", "Georgia", serif;
  font-size: 48px;
  margin: 0 0 10px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.lede {
  font-size: 18px;
  color: #475569;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  position: relative;
  z-index: 1;
  text-align: center;
}

.note {
  color: #0f172a;
  font-size: 14px;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  position: relative;
  z-index: 1;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: #475569;
  font-weight: 700;
  margin: 0;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 24px 26px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 16px 26px rgba(15, 23, 42, 0.12);
}

.hero-bubble {
  --bubble-tail-offset: 65px;
  width: min(100%, 680px);
  max-width: 680px;
  aspect-ratio: 911 / 454;
  padding: 16px 28px 42px;
  background: url("/static/images/bubble.webp") center / contain no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translate(var(--speech-bubble-x, 0px), var(--speech-bubble-y, 0px)) scale(var(--speech-bubble-size, 1));
  transform-origin: center center;
}

.bubble-body {
  width: calc(100% - var(--bubble-tail-offset));
  transform: translateX(calc(var(--bubble-tail-offset) / -2));
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bubble-kicker {
  width: 100%;
  max-width: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: -2px;
  color: #47383a;
  transform: translate(var(--bubble-original-x), var(--bubble-original-y));
}

.bubble-kicker::before,
.bubble-kicker::after {
  content: "";
  width: var(--bubble-original-line-width);
  height: 2px;
  background: #7d6466;
  border-radius: 999px;
  flex: 0 0 auto;
}

.bubble-kicker::before {
  transform: translate(var(--bubble-original-line-left-x), var(--bubble-original-line-left-y));
}

.bubble-kicker::after {
  transform: translate(var(--bubble-original-line-right-x), var(--bubble-original-line-right-y));
}

.bubble-kicker span {
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: var(--bubble-original-font-weight);
  letter-spacing: var(--bubble-original-letter-spacing);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-title-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 9px;
  margin-bottom: -8px;
}

.hero-title-art {
  width: 100%;
  height: auto;
  overflow: visible;
  display: block;
}

.hero-title-top {
  max-width: 560px;
}

.hero-title-top text {
  font-size: 80px;
}

.hero-free-group {
  transform: translate(calc(var(--bubble-free-x) - (var(--bubble-title-gap) / 2)), var(--bubble-free-y));
}

.hero-catfish-group {
  transform: translate(calc(var(--bubble-catfish-x) + (var(--bubble-title-gap) / 2)), var(--bubble-catfish-y));
}

.hero-title-bottom {
  max-width: 380px;
  margin-top: -18px;
}

.hero-check-group {
  transform: translate(var(--bubble-check-x), var(--bubble-check-y));
}

.hero-title-art text {
  font-family: "Chopic", "Midcent60s", sans-serif;
  font-size: 84px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 1px;
  text-anchor: middle;
  paint-order: stroke fill;
  stroke: #111111;
  stroke-width: 8px;
  stroke-linejoin: round;
}

.hero-title-shadow {
  fill: #111111;
  stroke: none;
  opacity: 1;
}

.hero-title-fill {
  fill: #111111;
}

.hero-title-red {
  fill: #ff5c4d;
}

.hero-title-blue {
  fill: #5669ff;
}

.bubble-copy {
  width: 100%;
  max-width: var(--bubble-small-text-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
  transform: translate(var(--bubble-small-text-x), var(--bubble-small-text-y));
}

.hero-bubble .lede {
  margin: -8px 0 var(--bubble-small-text-gap);
  font-size: 18px;
  line-height: 1.2;
  color: #27324a;
  text-align: center;
}

.hero-bubble .note {
  margin: 0;
  max-width: var(--bubble-small-text-width);
  font-size: 18px;
  line-height: 1.2;
  color: #27324a;
  text-align: center;
}


.card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.form-card {
  padding: 32px;
}

.homepage-quick-form {
  max-width: 480px;
  margin: 0 auto;
}

.homepage-polaroid-stage {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 40px), 1600px);
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: var(--polaroid-side-gap, 18px);
  min-height: 100%;
  pointer-events: none;
  z-index: 0;
}

.homepage-form-center {
  grid-row: 2;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.homepage-polaroid-column {
  flex: 0 0 var(--polaroid-size, 250px);
  position: relative;
  min-height: 100%;
  z-index: 0;
}

.homepage-polaroid {
  --polaroid-base-rotate: 0deg;
  --polaroid-scroll-rotate: 0deg;
  --polaroid-flip-scale: 1;
  position: absolute;
  width: min(var(--polaroid-size, 250px), 100%);
  height: auto;
  display: block;
  transform: translateY(var(--polaroid-global-y, 0px)) scaleX(var(--polaroid-flip-scale)) rotate(calc(var(--polaroid-base-rotate) + var(--polaroid-scroll-rotate)));
  transform-origin: center center;
  transition: transform 180ms ease-out;
  will-change: transform;
}

.homepage-polaroid-flip {
  --polaroid-flip-scale: -1;
}

.polaroid-left-1 { top: calc(8px * var(--polaroid-vertical-spacing, 1)); left: calc(-24px * var(--polaroid-stagger-spread, 1)); --polaroid-base-rotate: -10deg; }
.polaroid-left-2 { top: calc(132px * var(--polaroid-vertical-spacing, 1)); left: calc(54px * var(--polaroid-stagger-spread, 1)); --polaroid-base-rotate: 7deg; }
.polaroid-left-3 { top: calc(282px * var(--polaroid-vertical-spacing, 1)); left: calc(-36px * var(--polaroid-stagger-spread, 1)); --polaroid-base-rotate: -6deg; }
.polaroid-left-4 { top: calc(428px * var(--polaroid-vertical-spacing, 1)); left: calc(62px * var(--polaroid-stagger-spread, 1)); --polaroid-base-rotate: 11deg; }
.polaroid-left-5 { top: calc(590px * var(--polaroid-vertical-spacing, 1)); left: calc(-18px * var(--polaroid-stagger-spread, 1)); --polaroid-base-rotate: -8deg; }

.polaroid-right-1 { top: calc(24px * var(--polaroid-vertical-spacing, 1)); right: calc(12px * var(--polaroid-stagger-spread, 1)); --polaroid-base-rotate: 11deg; }
.polaroid-right-2 { top: calc(154px * var(--polaroid-vertical-spacing, 1)); right: calc(-48px * var(--polaroid-stagger-spread, 1)); --polaroid-base-rotate: -5deg; }
.polaroid-right-3 { top: calc(336px * var(--polaroid-vertical-spacing, 1)); right: calc(42px * var(--polaroid-stagger-spread, 1)); --polaroid-base-rotate: 4deg; }
.polaroid-right-4 { top: calc((488px * var(--polaroid-vertical-spacing, 1)) - 30px); right: calc(-26px * var(--polaroid-stagger-spread, 1)); --polaroid-base-rotate: -12deg; }
.polaroid-right-5 { top: calc(652px * var(--polaroid-vertical-spacing, 1)); right: calc((64px * var(--polaroid-stagger-spread, 1)) - 50px); --polaroid-base-rotate: 7deg; }

.homepage-form-layout {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  height: var(--homepage-form-pair-height, 520px);
  --homepage-form-pair-width: calc(var(--homepage-form-pair-height, 520px) * 0.7066667);
  position: relative;
}

.homepage-form-layout::after {
  content: "";
  position: absolute;
  border-radius: 28px;
  z-index: -1;
  pointer-events: none;
}

.homepage-form-layout::after {
  inset: -10px;
  box-shadow: 0 0 var(--homepage-form-pair-shadow-hardness, 46px) rgba(0, 0, 0, var(--homepage-form-pair-shadow-darkness, 0.16));
}

.homepage-form-shadow-2-mask {
  position: absolute;
  inset: calc(-10px + var(--homepage-form-pair-shadow-2-inset, 0px) - (var(--homepage-form-pair-shadow-2-size, 12px) * 2) - (var(--homepage-form-pair-shadow-2-hardness, 24px) * 2));
  border-radius: calc(28px + (var(--homepage-form-pair-shadow-2-size, 12px) * 2) + (var(--homepage-form-pair-shadow-2-hardness, 24px) * 2));
  z-index: -1;
  pointer-events: none;
  -webkit-mask-image: var(--homepage-form-pair-shadow-2-mask-image, none);
  mask-image: var(--homepage-form-pair-shadow-2-mask-image, none);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-mode: alpha;
  mask-mode: alpha;
}

.homepage-form-shadow-2-ring {
  position: absolute;
  inset: calc((var(--homepage-form-pair-shadow-2-size, 12px) * 2) + (var(--homepage-form-pair-shadow-2-hardness, 24px) * 2));
  border-radius: 28px;
  background: transparent;
  box-shadow: 0 0 var(--homepage-form-pair-shadow-2-size, 12px) rgba(0, 0, 0, var(--homepage-form-pair-shadow-2-darkness, 0));
}

.homepage-form-privacy {
  grid-row: 3;
  align-self: center;
  margin: 0;
  text-align: center;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.15;
  text-transform: uppercase;
  color: #ff6a5d;
  position: relative;
  z-index: 2;
}

.homepage-form-page + .site-footer {
  margin-top: 0;
}

.homepage-form-layout .homepage-quick-form {
  width: var(--homepage-form-pair-width);
  height: 100%;
  max-width: none;
  margin: 0;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.homepage-form-visual {
  width: var(--homepage-form-pair-width);
  height: 100%;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  flex: 0 0 auto;
}

.homepage-form-visual img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  background: transparent;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.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;
}

#submit-form {
  scroll-margin-top: var(--submit-form-anchor-offset, 180px);
}

.frontpage-band {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(rgba(196, 255, 196, 0.05) 0, rgba(196, 255, 196, 0.05) 1px, transparent 1px, transparent 4px),
    radial-gradient(circle at top, rgba(142, 255, 176, 0.12), transparent 38%),
    linear-gradient(180deg, #102318 0%, #0b1711 100%);
  border-top: 5px solid #000000;
  border-bottom: 5px solid #000000;
  box-shadow: inset 0 0 0 1px rgba(163, 255, 182, 0.12);
}

.frontpage-vhs-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--video-opacity, 0.2);
  mix-blend-mode: screen;
  mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0.36) 40%, rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0) 74%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 20%, rgba(255, 255, 255, 0.36) 40%, rgba(255, 255, 255, 0.08) 58%, rgba(255, 255, 255, 0) 74%);
}

.frontpage-vhs-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(4, 12, 8, 0.28), rgba(4, 12, 8, 0.22)),
    linear-gradient(rgba(150, 255, 180, 0.04) 0, rgba(150, 255, 180, 0.04) 1px, transparent 1px, transparent 3px);
}

.frontpage-vhs-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter:
    saturate(0)
    brightness(0.62)
    contrast(1.08);
}

.frontpage-corner-detail {
  position: absolute;
  top: 0;
  right: 0;
  height: min(78vh, 720px);
  width: min(31vw, 360px);
  pointer-events: none;
  z-index: 1;
}

.frontpage-corner-shadow,
.frontpage-corner-mask {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.frontpage-corner-shadow {
  background-image: url("/static/images/shadow.png");
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}

.frontpage-corner-mask {
  background-image: url("/static/images/background-code-dense.png");
  background-position: top center;
  background-repeat: repeat-y;
  background-size: 100% auto;
  background-attachment: fixed;
  opacity: 0.92;
  filter:
    saturate(0.92)
    brightness(0.7)
    contrast(1.16)
    drop-shadow(-12px 10px 0 rgba(0, 0, 0, 0.28));
  z-index: 1;
  mask-position: top right;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-image: url("/static/images/cutout-mask-alpha.png");
  -webkit-mask-position: top right;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-image: url("/static/images/cutout-mask-alpha.png");
}

.frontpage-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 24px 68px;
  position: relative;
  z-index: 2;
}

.frontpage-intro {
  max-width: 720px;
  margin: 0 auto 38px;
  padding: 18px 0 14px;
  text-align: center;
}

.frontpage-kicker {
  margin: 0 0 20px;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #83f2a8;
  text-shadow: 0 0 14px rgba(131, 242, 168, 0.28), 0 0 28px rgba(131, 242, 168, 0.14);
}

.frontpage-intro h2 {
  margin: 0 0 24px;
  font-family: "Krophed", "Midcent60s", "Fraunces", "Georgia", serif;
  font-size: 44px;
  line-height: 1.02;
  color: #d9ffe2;
  text-shadow: 0 0 18px rgba(114, 255, 160, 0.2), 0 0 42px rgba(114, 255, 160, 0.12);
}

.frontpage-intro h2::after {
  content: "";
  display: block;
  width: min(240px, 48%);
  height: 2px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, rgba(126, 240, 165, 0), rgba(126, 240, 165, 0.92) 18%, rgba(214, 255, 226, 0.98) 50%, rgba(126, 240, 165, 0.92) 82%, rgba(126, 240, 165, 0));
  box-shadow: 0 0 12px rgba(126, 240, 165, 0.28);
}

.frontpage-intro p {
  margin: 0;
  font-size: 21px;
  line-height: 1.5;
  color: #b6d5bf;
  text-shadow: 0 0 14px rgba(114, 255, 160, 0.08);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: var(--feature-separator-pad-y, 30px) 12px;
}

.feature-row + .feature-row {
  border-top: 1px solid rgba(156, 255, 180, 0.12);
}

.feature-row-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
}

.feature-row-reverse .feature-icon-shell {
  order: 2;
}

.feature-row-reverse .feature-copy {
  order: 1;
  justify-self: end;
  text-align: right;
  padding-right: var(--text-icon-padding-x, 0px);
  transform: translateX(var(--feature-text-x, 0px));
}

.feature-icon-shell {
  --icon-local-y: 0px;
  display: flex;
  justify-content: center;
  position: relative;
  min-height: calc(var(--icons-size, 192px) + 104px);
  overflow: visible;
  padding-bottom: calc(var(--icons-size, 192px) * 0.48);
}

.feature-icon-shell::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--icon-border-global-size, 140px);
  height: var(--icon-border-global-size, 140px);
  transform: translate(calc(-50% + var(--icon-border-global-x, 0px)), calc(-50% + var(--icon-border-global-y, -44px)));
  background: url("/static/images/icon-corners.png") center / contain no-repeat;
  pointer-events: none;
  opacity: var(--icon-border-opacity, 0.96);
  z-index: 3;
}

.feature-icon-shell-1 {
  --icon-local-y: var(--icon-1-x);
}

.feature-icon-shell-2 {
  --icon-local-y: var(--icon-2-x);
}

.feature-icon-shell-3 {
  --icon-local-y: var(--icon-3-x);
}

.feature-icon-shell-4 {
  --icon-local-y: var(--icon-4-x);
}

.feature-icon-shell-5 {
  --icon-local-y: var(--icon-5-x);
}

.feature-icon-shell-6 {
  --icon-local-y: var(--icon-6-x);
}

.feature-icon-shell-7 {
  --icon-local-y: var(--icon-7-x);
}

.feature-icon-shell-8 {
  --icon-local-y: var(--icon-8-x);
}

.feature-icon {
  width: auto;
  height: calc(var(--icons-size, 192px) - 14px);
  max-width: 100%;
  display: block;
}

.feature-copy {
  max-width: 620px;
  padding-left: var(--text-icon-padding-x, 0px);
  transform: translateX(calc(var(--feature-text-x, 0px) * -1));
}

.feature-eyebrow {
  margin: 0 0 8px;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7ef0a5;
  text-shadow: 0 0 12px rgba(126, 240, 165, 0.16);
}

.feature-copy h3 {
  margin: 0 0 10px;
  font-family: "Krophed", "Midcent60s", "Fraunces", "Georgia", serif;
  font-size: 34px;
  line-height: 1.05;
  color: #ebfff0;
  text-shadow: 0 0 16px rgba(114, 255, 160, 0.16), 0 0 34px rgba(114, 255, 160, 0.1);
  opacity: 0;
  transition: opacity 650ms ease;
}

.feature-copy h3.is-triggered {
  opacity: 1;
}

.feature-copy p:last-child {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
  color: #b2ccb9;
  text-shadow: 0 0 14px rgba(114, 255, 160, 0.08);
}

.feature-copy-scramble {
  min-height: calc(1.5em * 3);
  white-space: normal;
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  align-items: flex-start;
}

.feature-copy-scramble.is-reverse {
  align-items: flex-end;
}

.feature-copy-scramble.is-settled {
  text-shadow: none;
}

.feature-copy-line-measurer {
  position: absolute;
  visibility: hidden;
  inset: auto;
  pointer-events: none;
  display: block;
  white-space: normal;
}

.feature-copy-line {
  display: block;
  min-height: 1.5em;
  white-space: nowrap;
  width: max-content;
  max-width: none;
}

.feature-row-reverse .feature-copy-line {
  text-align: right;
}

.feature-copy-line-reveal {
  display: none;
}

.feature-copy-line-glitch {
  display: none;
}

.feature-group + .feature-group {
  margin-top: 34px;
}

.feature-group-solution {
  margin-top: 56px;
}

.feature-group-solution .feature-group-head {
  position: relative;
  padding: 28px 24px;
  margin-bottom: 26px;
}

.feature-group-solution .feature-group-head::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(196, 255, 214, 0.12) 0%, rgba(156, 255, 180, 0.08) 100%);
  border-top: 1px solid rgba(180, 255, 199, 0.18);
  border-bottom: 1px solid rgba(180, 255, 199, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(226, 255, 235, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12);
  z-index: -1;
}

.feature-group-head {
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;
}

.feature-group-kicker {
  margin: 0 0 10px;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #83f2a8;
}

.feature-group-kicker-solution {
  color: #7ef0a5;
}

.feature-group-head h3 {
  margin: 0;
  font-family: "Krophed", "Midcent60s", "Fraunces", "Georgia", serif;
  font-size: 36px;
  line-height: 1.04;
  color: #dfffe7;
}

.feature-eyebrow-problem {
  color: #9affb9;
}

.feature-icon-large {
  width: auto;
  height: var(--icons-size, 192px);
  max-width: 100%;
}

.feature-icon-animated {
  width: auto;
  height: var(--icons-size, 192px);
  max-width: 100%;
  image-rendering: pixelated;
  position: relative;
  z-index: 2;
  transform: translateY(calc(15px + var(--icons-master-y, 0px) + var(--icon-local-y, 0px)));
  filter:
    brightness(0)
    saturate(100%)
    invert(81%)
    sepia(53%)
    saturate(647%)
    hue-rotate(78deg)
    brightness(111%)
    contrast(109%)
    drop-shadow(0 0 18px rgba(133, 255, 169, 0.24))
    drop-shadow(7px 7px 0 rgba(0, 0, 0, 0.24));
}

.feature-icon-reflection {
  position: absolute;
  top: calc(100% - (var(--icons-size, 192px) * 0.2) + var(--icons-reflection-gap, -20px));
  left: 50%;
  width: auto;
  height: var(--icons-size, 192px);
  max-width: 100%;
  transform: translate(-50%, calc(15px + var(--icons-master-y, 0px) + var(--icon-local-y, 0px))) scaleY(-0.33);
  transform-origin: top center;
  opacity: 0.34;
  z-index: 1;
  image-rendering: pixelated;
  filter:
    brightness(0)
    saturate(100%)
    invert(44%)
    sepia(22%)
    saturate(632%)
    hue-rotate(79deg)
    brightness(76%)
    contrast(102%);
  mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.65) 72%, rgba(255, 255, 255, 1) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.65) 72%, rgba(255, 255, 255, 1) 100%);
}

.feature-icon-source {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.feature-icon-pixel canvas {
  image-rendering: pixelated;
}

.feature-icon-pixel .pixel-main {
  filter:
    drop-shadow(0 0 18px rgba(133, 255, 169, 0.16))
    drop-shadow(7px 7px 0 rgba(0, 0, 0, 0.24));
}

.feature-icon-pixel .pixel-bloom {
  position: absolute;
  inset: 0;
  margin: auto;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(8px) brightness(2.2) saturate(1.1);
  opacity: 0.9;
}

.form-header {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.form-header h2 {
  margin: 0;
  font-size: 24px;
}

.form-header p {
  margin: 0;
  color: #64748b;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
}

.form {
  display: grid;
  gap: 20px;
}

.homepage-quick-form .form {
  flex: 1 1 auto;
  align-content: space-between;
}

.form .field {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 14px;
}

.form .field input,
.form .field textarea {
  border: 1px solid #cbd5f5;
}

.form .field.checkbox {
  background: transparent;
  border: none;
  padding: 0;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field small {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
}

.link-list {
  display: grid;
  gap: 10px;
}

.checkbox label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
}

.button.primary {
  background: linear-gradient(90deg, #ef4444, #f59e0b);
  color: #ffffff;
}

.button.secondary {
  background: transparent;
  color: #2563eb;
  border: 1px solid #93c5fd;
}

.alert {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.alert.success {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.4);
  color: #065f46;
}

.contact-email-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  flex-wrap: wrap;
}

.contact-email-row a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.contact-email-row img {
  height: 34px;
  width: auto;
  display: block;
}

.error {
  color: #e11d48;
  margin: 6px 0 0;
  font-size: 14px;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
}

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

table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  text-align: left;
  padding: 10px;
  border-bottom: 1px solid #e2e8f0;
}

.summary {
  max-width: 320px;
}

.blog-hero {
  margin: 24px 0 28px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-hero-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.blog-hero h1 {
  margin: 0 0 8px;
  font-family: "Krophed", "Midcent60s", "Fraunces", "Georgia", serif;
  font-size: 36px;
}

.blog-hero p {
  margin: 0;
  color: #475569;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
}

.blog-search {
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #dbeafe;
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search-label {
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  font-weight: 700;
  color: #0f172a;
  font-size: 14px;
}

.search-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.blog-search input[type="search"] {
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  border: 0;
  font-size: 16px;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  background: #ffffff;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.blog-search input[type="search"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 166, 224, 0.18);
}

.search-button,
.search-clear {
  padding: 12px 18px;
  border-radius: 999px;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #000000;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.search-button {
  background: #0da6e0;
  color: #ffffff;
  box-shadow: 4px 4px 0 #000000;
}

.search-button:hover {
  background: #0b90c4;
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 #000000;
}

.search-clear {
  background: #ffffff;
  color: #0f172a;
  min-width: 48px;
  box-shadow: 2px 2px 0 #000000;
}

.search-clear:hover {
  background: #f1f5f9;
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 #000000;
}

.search-help {
  font-size: 12px;
  color: #475569;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
}

@media (max-width: 780px) {
  .search-row {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 10px;
  }
  .search-button,
  .search-clear {
    width: 100%;
    justify-self: stretch;
  }
}

.blog-empty {
  grid-column: 1 / -1;
  padding: 16px;
  text-align: center;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  color: #475569;
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
}

.blog-grid {
  display: grid;
  gap: 20px;
}

.blog-card {
  display: grid;
  gap: 16px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.06);
}

.blog-card-media img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.blog-card-body h2 {
  margin: 8px 0 8px;
  font-family: "Krophed", "Midcent60s", "Fraunces", "Georgia", serif;
  font-size: 26px;
}

.blog-card-body h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-card-body p {
  margin: 0;
  color: #475569;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
}

.blog-meta {
  display: flex;
  gap: 8px;
  color: #64748b;
  font-size: 13px;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.blog-tags span {
  background: #fef3c7;
  color: #9a3412;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
}

.post-hero-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: 50vh;
  background-image: var(--post-hero);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 5px solid #000000;
}

.post-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.post-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  color: #ffffff;
}

.post-hero-inner h1 {
  margin: 6px 0 0;
  font-family: "Krophed", "Midcent60s", "Fraunces", "Georgia", serif;
  font-size: 44px;
  color: #000000;
  display: inline-block;
  padding: 10px 14px;
  border: 4px solid #000000;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 6px 6px 0 #000000;
}

.post-hero-inner .post-meta {
  color: #e2e8f0;
}

.post {
  max-width: 1300px;
  margin: 0 auto;
  background: #ffffff;
  border: none;
  border-radius: 0;
  padding: 32px 0 48px;
  box-shadow: none;
}

.post h1 {
  margin-top: 8px;
  font-family: "Krophed", "Midcent60s", "Fraunces", "Georgia", serif;
  font-size: 36px;
}

.post-meta {
  color: #64748b;
  font-size: 13px;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
}

.post-hero img {
  width: 100%;
  border-radius: 18px;
  margin: 18px 0;
}

.post-body {
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  color: #374151;
  line-height: 1.7;
}

.post-body h2,
.post-body h3 {
  font-family: "Krophed", "Midcent60s", "Fraunces", "Georgia", serif;
  margin-top: 24px;
}

.post-body ul {
  padding-left: 20px;
}

.site-footer {
  margin-top: 48px;
  background: #0f172a;
  color: #e2e8f0;
  padding: 48px 0 24px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: flex-start;
}

.footer-brand img {
  width: 180px;
  height: auto;
  aspect-ratio: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  margin: 0;
  color: #cbd5e1;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  line-height: 1.6;
}

.footer-col h3 {
  margin: 0 0 10px;
  color: #fff82c;
  font-family: "Krophed", "Midcent60s", "Fraunces", "Georgia", serif;
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-links a {
  color: #e2e8f0;
  text-decoration: none;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  font-weight: 600;
}

.footer-links a:hover {
  color: #fff82c;
}

.footer-email img {
  filter: brightness(0) invert(1);
}

.footer-sub {
  max-width: 1400px;
  margin: 32px auto 0;
  padding: 16px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  text-align: center;
  font-size: 14px;
}

.success-page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.success-page-main {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.success-page .site-footer {
  margin-top: 0;
}

.success-shell {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.success-card {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 48px;
  border: 1px solid #dbeafe;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(13, 166, 224, 0.16), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.12);
  text-align: center;
}

.success-kicker {
  margin: 0 0 12px;
  color: #0da6e0;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.success-card h1 {
  margin: 0 0 14px;
  font-family: "Krophed", "Midcent60s", "Fraunces", "Georgia", serif;
  font-size: 46px;
  line-height: 1.05;
}

.success-lede {
  margin: 0 0 14px;
  font-size: 22px;
  color: #0f172a;
}

.success-copy {
  max-width: 560px;
  margin: 0 auto 28px;
  color: #475569;
  line-height: 1.7;
}

.payment-reference {
  font-size: 12px;
}

.success-action {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: "UnivaNova", "Segoe UI", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid #000000;
  background: #0da6e0;
  color: #ffffff;
  box-shadow: 4px 4px 0 #000000;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.success-action:hover {
  background: #0b90c4;
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 #000000;
}

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top left, rgba(255, 219, 228, 0.95), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 246, 194, 0.85), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #fff3f6 48%, #fffaf4 100%);
}

.error-shell {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px 48px;
}

.error-card {
  width: min(760px, 100%);
  text-align: center;
  padding: 56px 48px 52px;
  border: 4px solid #000000;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 247, 239, 0.98));
  box-shadow: 0 26px 0 rgba(0, 0, 0, 0.08), 0 36px 60px rgba(102, 17, 38, 0.14);
  position: relative;
  overflow: hidden;
}

.error-card::before,
.error-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  opacity: 0.9;
}

.error-card::before {
  width: 180px;
  height: 180px;
  top: -72px;
  right: -44px;
  background: radial-gradient(circle, rgba(255, 210, 133, 0.85), rgba(255, 210, 133, 0));
}

.error-card::after {
  width: 150px;
  height: 150px;
  left: -52px;
  bottom: -58px;
  background: radial-gradient(circle, rgba(255, 180, 196, 0.9), rgba(255, 180, 196, 0));
}

.error-kicker,
.error-lede,
.error-copy,
.error-actions,
.error-help,
.error-card h1 {
  position: relative;
  z-index: 1;
}

.error-kicker {
  margin: 0 0 18px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8f2344;
}

.error-card h1 {
  margin: 0;
  font-family: "Krophed", "Midcent60s", "Fraunces", "Georgia", serif;
  font-size: clamp(72px, 13vw, 136px);
  line-height: 0.9;
  color: #111111;
  text-shadow: 4px 4px 0 #ffdb64;
}

.error-lede {
  margin: 22px auto 12px;
  max-width: 520px;
  font-size: 28px;
  line-height: 1.15;
  color: #121212;
}

.error-copy {
  margin: 0 auto;
  max-width: 470px;
  color: #4b5563;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.error-secondary {
  background: #fff7dc;
  color: #18181b;
}

.error-secondary:hover {
  background: #ffeaa0;
}

.error-help {
  margin: 22px 0 0;
  color: #6b7280;
}

.error-help a {
  color: #8f2344;
}

@media (max-width: 640px) {
  .homepage-form-page {
    display: block;
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 0;
    overflow: visible;
  }

  .homepage-polaroid-stage {
    display: none;
    min-height: auto;
    padding: 0;
  }

  .homepage-form-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .homepage-form-title {
    width: 100%;
    margin-bottom: 16px;
  }

  .form-title-art {
    width: min(100%, var(--homepage-form-title-size, 520px));
  }

  .homepage-form-privacy {
    font-size: 13px;
  }

  .homepage-form-layout .homepage-quick-form {
    width: auto;
  }

  .homepage-form-visual {
    max-width: 480px;
    margin: 0 auto;
    min-height: 320px;
    width: auto;
    height: auto;
  }

  .page {
    padding: 32px 16px 60px;
  }
  .hero-wrap {
    background-attachment: scroll;
    min-height: 60vh;
  }

  .post-hero-banner {
    width: 100%;
    margin: 0;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero {
    padding: 60px 16px;
  }

  .hero-bubble {
    --bubble-tail-offset: 46px;
    width: min(100%, 560px);
    padding: 12px 16px 32px;
  }

  .bubble-body {
    transform: translateX(calc(var(--bubble-tail-offset) / -2));
  }

  .bubble-kicker {
    gap: 10px;
    margin-bottom: -2px;
  }

  .bubble-kicker::before,
  .bubble-kicker::after {
    width: 42px;
  }

  .bubble-kicker span {
    font-size: 8px;
    letter-spacing: 0.42em;
  }

  .hero-title-art text {
    font-size: 88px;
    stroke-width: 7px;
  }

  .hero-title-bottom {
    max-width: 290px;
    margin-top: -14px;
  }

  .hero-bubble .lede {
    margin-top: -10px;
    margin-bottom: 2px;
    font-size: 14px;
  }

  .hero-bubble .note {
    max-width: 280px;
    font-size: 11px;
    line-height: 1.14;
  }

  .frontpage-main {
    padding: 36px 16px 48px;
  }

  .frontpage-corner-detail {
    width: 150px;
    height: 220px;
    opacity: 0.52;
  }

  .frontpage-corner-mask {
    background-attachment: scroll;
  }

  .frontpage-corner-shadow {
    opacity: 1;
  }

  .frontpage-intro {
    margin-bottom: 24px;
  }

  .frontpage-intro h2 {
    font-size: 34px;
  }

  .frontpage-intro p {
    font-size: 18px;
  }

  .feature-row,
  .feature-row-reverse {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 0;
  }

  .feature-row-reverse .feature-icon-shell,
  .feature-row-reverse .feature-copy {
    order: initial;
  }

  .feature-row-reverse .feature-copy,
  .feature-copy {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    transform: none;
  }

  .feature-copy h3 {
    font-size: 28px;
  }

  .feature-copy p:last-child {
    font-size: 17px;
  }

  .feature-icon {
    width: min(100%, 138px);
  }

  .feature-group + .feature-group {
    margin-top: 24px;
  }

  .feature-group-solution {
    margin-top: 34px;
  }

  .feature-group-solution .feature-group-head {
    padding: 24px 0;
    margin-bottom: 18px;
  }

  .feature-group-head h3 {
    font-size: 30px;
  }

  .success-shell {
    padding: 0;
  }

  .success-page-main {
    padding: 0 16px;
  }

  .success-card {
    padding: 36px 24px;
    border-radius: 22px;
  }

  .success-card h1 {
    font-size: 34px;
  }

  .success-lede {
    font-size: 20px;
  }

  .error-shell {
    padding: 24px 16px 36px;
  }

  .error-card {
    padding: 42px 24px 40px;
    border-radius: 24px;
  }

  .error-kicker {
    font-size: 13px;
  }

  .error-lede {
    font-size: 22px;
  }

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

  .error-actions .button {
    width: 100%;
  }
}
.form-header h2 {
  font-family: "Krophed", "Midcent60s", "Fraunces", "Georgia", serif;
}
