:root {
  --ink: #151015;
  --ink-2: #24161f;
  --cream: #f6efd9;
  --cream-2: #fff9e9;
  --acid: #c8ff4d;
  --acid-2: #e8ff9c;
  --clay: #b66a4b;
  --clay-2: #6f3e31;
  --muted: rgba(246, 239, 217, 0.72);
  --muted-dark: rgba(21, 16, 21, 0.68);
  --line-light: rgba(246, 239, 217, 0.16);
  --line-dark: rgba(21, 16, 21, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  --glow-acid: 0 0 0 1px rgba(200, 255, 77, 0.34), 0 24px 80px rgba(200, 255, 77, 0.16), 0 28px 90px rgba(0, 0, 0, 0.22);
  --radius: 28px;
  --radius-sm: 16px;
  --container: 1180px;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Black", var(--font-body);
  --font-compact: "Arial Narrow", "Roboto Condensed", "Aptos Display", var(--font-heading);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

main,
section,
header,
footer {
  max-width: 100%;
}

pre,
code {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--acid);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease;
}

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

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 890px;
}

.site-header {
  position: fixed;
  inset: 18px 18px auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(246, 239, 217, 0.16);
  border-radius: 999px;
  background: rgba(21, 16, 21, 0.76);
  color: var(--cream);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
  transition: transform 250ms ease, background 250ms ease, border-color 250ms ease;
}

.site-header.is-scrolled {
  background: rgba(21, 16, 21, 0.9);
  border-color: rgba(200, 255, 77, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 1000;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: -0.09em;
  transform: rotate(-5deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(246, 239, 217, 0.78);
  font-size: 0.92rem;
  font-weight: 850;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--cream);
  background: rgba(246, 239, 217, 0.09);
}

.site-nav .nav-cta {
  background: var(--cream);
  color: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(200, 255, 77, 0.16), transparent 30%),
    radial-gradient(circle at 84% 24%, rgba(182, 106, 75, 0.18), transparent 35%),
    linear-gradient(135deg, var(--ink), var(--ink-2));
  color: var(--cream);
}

.section-cream {
  background: var(--cream);
  color: var(--ink);
}

.section-clay {
  background:
    radial-gradient(circle at 10% 0%, rgba(200, 255, 77, 0.22), transparent 28%),
    linear-gradient(135deg, #d5a071, #9a5743 58%, #5c302d);
  color: var(--ink);
}

.section {
  position: relative;
  padding: 110px 0;
}

.compact-top {
  padding-top: 88px;
}

.grain {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.26;
  mix-blend-mode: overlay;
  background-image:
    linear-gradient(115deg, rgba(255,255,255,0.05), transparent 18%, rgba(255,255,255,0.03) 32%, transparent 44%),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 72% 44%, rgba(255,255,255,0.06) 0 1px, transparent 1px);
  background-size: auto, 26px 26px, 31px 31px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.9;
  will-change: transform;
}

.orb-one {
  width: 320px;
  height: 320px;
  right: 8%;
  top: 120px;
  background: rgba(200, 255, 77, 0.09);
  animation: floatSlow 9s ease-in-out infinite;
}

.orb-two {
  width: 230px;
  height: 230px;
  left: 6%;
  bottom: 110px;
  background: rgba(182, 106, 75, 0.14);
  animation: floatSlow 11s ease-in-out infinite reverse;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 128px 0 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.68fr);
  gap: 56px;
  align-items: center;
  padding-bottom: 100px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--acid);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 900;
}

.eyebrow.dark {
  color: var(--clay-2);
}

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

h1,
h2 {
  max-width: 980px;
  font-family: var(--font-heading);
  font-weight: 950;
  letter-spacing: -0.078em;
  line-height: 0.92;
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(4rem, 10.5vw, 9.8rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6.1vw, 6.2rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 1.8vw, 1.95rem);
  letter-spacing: -0.055em;
  line-height: 1.06;
  text-wrap: balance;
}

.hero-lede,
.large-copy,
.section-heading p,
.feature-copy p,
.cta-grid p,
.page-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
}

.section-cream .large-copy,
.section-cream .feature-copy p,
.section-cream .page-hero p,
.section-cream p {
  color: var(--muted-dark);
}

.hero-actions,
.center-action {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 34px;
}

.button {
  --button-bg: var(--cream);
  --button-color: var(--ink);
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-color);
  font-weight: 1000;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -60%;
  z-index: -1;
  width: 52%;
  transform: skewX(-18deg);
  background: rgba(255,255,255,0.28);
  transition: transform 500ms ease;
}

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

.button:hover::before {
  transform: translateX(340%) skewX(-18deg);
}

.button-primary {
  --button-bg: var(--acid);
  --button-color: var(--ink);
  box-shadow: 0 16px 45px rgba(200, 255, 77, 0.17);
}

.button-ghost {
  --button-bg: transparent;
  --button-color: var(--cream);
  border-color: rgba(246, 239, 217, 0.22);
}

.button-ghost:hover {
  background: rgba(246, 239, 217, 0.08);
}

.button-dark {
  --button-bg: var(--ink);
  --button-color: var(--cream);
}

.full-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.hero-panel {
  position: relative;
  min-height: 500px;
  padding: 18px;
  border: 1px solid rgba(246, 239, 217, 0.14);
  border-radius: 36px;
  background: rgba(246, 239, 217, 0.07);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(1.5deg);
}

.panel-topline {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(246, 239, 217, 0.48);
}

.panel-label {
  margin-left: auto;
  color: rgba(246, 239, 217, 0.54);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.mini-browser {
  min-height: 360px;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 8%, rgba(200, 255, 77, 0.25), transparent 34%),
    var(--cream);
  color: var(--ink);
}

.mini-title {
  max-width: 340px;
  margin-bottom: 24px;
  font-family: var(--font-compact);
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  text-wrap: balance;
}

.mini-line {
  width: 64%;
  height: 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(21, 16, 21, 0.16);
}

.mini-line.wide {
  width: 86%;
}

.mini-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.mini-card {
  display: grid;
  place-items: center;
  min-height: 86px;
  border: 1px solid rgba(21, 16, 21, 0.1);
  border-radius: 18px;
  background: rgba(21, 16, 21, 0.06);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.mini-card.active {
  background: var(--acid);
}

.mini-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: rgba(21, 16, 21, 0.7);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.095em;
  line-height: 1.25;
}

.mini-flow i {
  width: 18px;
  height: 2px;
  background: rgba(21, 16, 21, 0.3);
}

.floating-note {
  position: absolute;
  right: 14px;
  bottom: 52px;
  max-width: 220px;
  padding: 16px;
  border: 1px solid rgba(200, 255, 77, 0.28);
  border-radius: 20px;
  background: rgba(21, 16, 21, 0.88);
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: var(--shadow);
  animation: bob 4.5s ease-in-out infinite;
}

.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(246, 239, 217, 0.14);
  border-bottom: 1px solid rgba(246, 239, 217, 0.14);
  background: rgba(246, 239, 217, 0.06);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  padding: 16px 34px;
  color: rgba(246, 239, 217, 0.86);
  font-family: var(--font-heading);
  font-size: clamp(0.82rem, 1.1vw, 1.02rem);
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee span::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 28px;
  border-radius: 50%;
  background: var(--acid);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(28px, 7vw, 120px);
  align-items: start;
}

.section-kicker {
  position: sticky;
  top: 120px;
  display: inline-flex;
  width: fit-content;
  padding: 10px 14px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--muted-dark);
  font-size: 0.74rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

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

.offer-card,
.value-card {
  position: relative;
  min-height: 440px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(246, 239, 217, 0.14);
  border-radius: var(--radius);
  background: rgba(246, 239, 217, 0.06);
  box-shadow: 0 22px 80px rgba(0,0,0,0.14);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.offer-card:hover,
.offer-card:focus-within,
.value-card:hover,
.value-card:focus-within {
  border-color: rgba(200, 255, 77, 0.42);
  background:
    radial-gradient(circle at 86% 4%, rgba(200, 255, 77, 0.14), transparent 34%),
    rgba(246, 239, 217, 0.075);
  box-shadow: var(--glow-acid);
}

.offer-card.featured {
  background:
    radial-gradient(circle at 86% 8%, rgba(200, 255, 77, 0.3), transparent 36%),
    rgba(246, 239, 217, 0.08);
  border-color: rgba(200, 255, 77, 0.34);
}

.offer-number {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--acid);
  font-family: var(--font-heading);
  font-variant-numeric: tabular-nums;
  font-size: 3.85rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.offer-card p,
.value-card p {
  color: var(--muted);
}

.offer-card ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.offer-card li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(246, 239, 217, 0.8);
  font-weight: 720;
}

.offer-card li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--acid);
}

.section-cream .check-list li,
.statement-card .check-list li,
.contact-list li {
  color: rgba(21, 16, 21, 0.78);
}

.muted-list li::before {
  background: var(--clay);
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 36px;
  align-items: center;
}

.code-card {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--acid-2);
  box-shadow: var(--shadow);
}

.code-card pre {
  margin: 0;
  padding: 28px;
  overflow: hidden;
  font-size: clamp(0.86rem, 1.2vw, 1rem);
  line-height: 1.75;
  height: 12.25rem;
  min-height: 0;
  box-sizing: border-box;
}

.code-card code[data-typewriter]::after {
  content: "";
  display: inline-block;
  width: 0.58ch;
  height: 1.12em;
  margin-left: 0.12ch;
  background: currentColor;
  vertical-align: -0.16em;
  animation: cursorBlink 880ms steps(1, end) infinite;
}

.code-card:hover,
.code-card:focus-within,
.hero-panel:hover,
.hero-panel:focus-within,
.portrait-card:hover,
.portrait-card:focus-within,
.statement-card:hover,
.statement-card:focus-within {
  border-color: rgba(200, 255, 77, 0.38);
  box-shadow: var(--glow-acid);
}

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

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

.template-builds-section {
  border-top: 1px solid rgba(21, 16, 21, 0.1);
}

.build-card,
.project-card {
  overflow: hidden;
  border: 1px solid rgba(21, 16, 21, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 249, 233, 0.78);
  box-shadow: var(--shadow);
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.build-card:hover,
.build-card:focus-within,
.project-card:hover,
.project-card:focus-within {
  border-color: rgba(200, 255, 77, 0.46);
  background:
    radial-gradient(circle at 86% 4%, rgba(200, 255, 77, 0.16), transparent 36%),
    rgba(255, 249, 233, 0.9);
  box-shadow: 0 0 0 1px rgba(200, 255, 77, 0.28), 0 28px 85px rgba(200, 255, 77, 0.16), 0 30px 100px rgba(21, 16, 21, 0.2);
}

.build-visual,
.project-visual {
  display: block;
  min-height: 280px;
  background-color: var(--ink);
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.build-visual::before,
.project-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(246, 239, 217, 0.28);
  border-radius: 24px;
}

.build-visual::after,
.project-visual::after {
  position: absolute;
  left: 34px;
  bottom: 28px;
  max-width: 72%;
  color: var(--cream);
  font-family: var(--font-compact);
  font-size: clamp(1.55rem, 3.35vw, 2.8rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  text-wrap: balance;
}

.academic {
  background:
    radial-gradient(circle at 80% 20%, rgba(200, 255, 77, 0.24), transparent 30%),
    linear-gradient(135deg, #2f2118, #151015 68%);
}

.academic::after {
  content: "Academic Authority";
}

.service {
  background:
    radial-gradient(circle at 24% 16%, rgba(200, 255, 77, 0.28), transparent 32%),
    linear-gradient(135deg, #151015, #553327 70%);
}

.service::after {
  content: "Booking Flow";
}

.local {
  background:
    radial-gradient(circle at 75% 23%, rgba(200, 255, 77, 0.24), transparent 30%),
    linear-gradient(135deg, #151015, #334027 70%);
}

.local::after {
  content: "Local Service";
}

.build-content,
.project-copy {
  padding: 28px;
}

.build-content span,
.project-type,
.project-tags span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(21, 16, 21, 0.12);
  border-radius: 999px;
  color: rgba(21, 16, 21, 0.68);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.build-content p,
.project-copy p {
  color: var(--muted-dark);
}

.center-action {
  justify-content: center;
  margin-top: 36px;
}

.final-cta {
  padding: 92px 0;
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 40px;
  align-items: end;
}

.cta-grid h2 {
  margin-bottom: 0;
}

.cta-grid .button {
  margin-top: 22px;
}



/* Proof image cards */
.image-visual,
.proof-gallery {
  display: block;
  color: inherit;
  text-decoration: none;
  background:
    radial-gradient(circle at 88% 10%, rgba(200, 255, 77, 0.18), transparent 34%),
    linear-gradient(135deg, #2f2118, #151015 68%);
}

.image-visual::before,
.image-visual::after,
.proof-gallery::before,
.proof-gallery::after {
  display: none;
}

.image-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(0.98);
  transform: scale(1.01);
  transition: transform 340ms ease, filter 340ms ease;
}

.build-card:hover .image-visual img,
.project-card:hover .proof-gallery img {
  transform: scale(1.035);
  filter: saturate(1) contrast(1);
}

.proof-badge {
  position: absolute;
  left: 22px;
  top: 22px;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border: 1px solid rgba(21, 16, 21, 0.16);
  border-radius: 999px;
  background: rgba(200, 255, 77, 0.94);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(21, 16, 21, 0.16);
}

.proof-gallery {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.proof-gallery .proof-main,
.proof-thumbs img {
  width: 100%;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(246, 239, 217, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.proof-gallery .proof-main {
  min-height: 300px;
  height: 100%;
}

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

.proof-thumbs img {
  height: 96px;
  opacity: 0.9;
}

.build-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  margin-top: 16px;
}

.build-content .text-link,
.project-copy .build-actions .text-link {
  margin-top: 0;
}

.muted-link {
  color: rgba(21, 16, 21, 0.62);
  border-bottom-color: rgba(21, 16, 21, 0.28);
}

.legal-section {
  padding-top: 84px;
}

.legal-copy {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 0%, rgba(200, 255, 77, 0.16), transparent 28%),
    var(--cream-2);
  box-shadow: 0 24px 70px rgba(21, 16, 21, 0.1);
}

.legal-copy h2 {
  margin-top: 38px;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.legal-copy h2:first-of-type {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.legal-copy ul {
  margin: 0 0 22px;
  padding-left: 1.15rem;
}

.legal-copy a {
  border-bottom: 2px solid rgba(21, 16, 21, 0.8);
  font-weight: 900;
}

.legal-updated {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 9px 12px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(21, 16, 21, 0.04);
  color: rgba(21, 16, 21, 0.68);
  font-size: 0.82rem;
  font-weight: 900;
}

.legal-note {
  margin-top: 38px;
  padding: 20px;
  border: 1px solid rgba(21, 16, 21, 0.14);
  border-radius: 18px;
  background: rgba(200, 255, 77, 0.14);
  color: rgba(21, 16, 21, 0.72);
  font-weight: 750;
}

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

.site-footer {
  padding: 56px 0;
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid rgba(246, 239, 217, 0.12);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 420px;
  color: rgba(246, 239, 217, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: rgba(246, 239, 217, 0.66);
  font-weight: 850;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--acid);
}

.page-hero {
  padding: 190px 0 110px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(3.5rem, 8.8vw, 8rem);
}

.about-split {
  align-items: center;
}

.portrait-card {
  min-height: 520px;
  padding: 18px;
  border-radius: 36px;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.portrait-inner {
  display: flex;
  min-height: 484px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(246, 239, 217, 0.2);
  border-radius: 26px;
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 18%, rgba(200, 255, 77, 0.22), transparent 28%),
    radial-gradient(circle at 18% 84%, rgba(182, 106, 75, 0.22), transparent 32%);
}

.portrait-inner span,
.portrait-inner strong {
  display: block;
  font-family: var(--font-compact);
  font-size: clamp(2.8rem, 5.4vw, 5.7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.portrait-inner strong {
  color: var(--acid);
}

.portrait-inner em {
  max-width: 300px;
  color: rgba(246, 239, 217, 0.72);
  font-style: normal;
  font-weight: 850;
}

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

.value-card {
  min-height: 280px;
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 46px;
  align-items: start;
}

.statement-card {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--cream-2);
  box-shadow: 0 24px 70px rgba(21, 16, 21, 0.12);
}

.do-dont-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 26px;
}

.builds-list {
  display: grid;
  gap: 26px;
}

.project-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: stretch;
}

.project-card.reverse {
  grid-template-columns: 1fr 0.9fr;
}

.project-card.reverse .project-visual {
  order: 2;
}

.large-visual {
  min-height: 420px;
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 24px;
}

.project-tags span {
  margin: 0;
  background: rgba(21, 16, 21, 0.05);
}

.text-link {
  width: fit-content;
  border-bottom: 2px solid currentColor;
  color: var(--ink);
  font-weight: 1000;
}

.text-link[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.62;
}

.contact-hero {
  padding-bottom: 90px;
}

.contact-section {
  padding-top: 80px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.email-note {
  margin-top: 28px;
  color: var(--muted-dark);
  font-weight: 700;
}

.email-note a {
  border-bottom: 2px solid var(--ink);
  font-weight: 1000;
}

.contact-form {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 0%, rgba(200, 255, 77, 0.22), transparent 30%),
    var(--cream-2);
  box-shadow: var(--shadow);
}

.form-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.form-topline span {
  color: var(--muted-dark);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-topline strong {
  max-width: 170px;
  text-align: right;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(21, 16, 21, 0.78);
  font-size: 0.86rem;
  font-weight: 950;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(21, 16, 21, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(21, 16, 21, 0.48);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 0 4px rgba(200, 255, 77, 0.32);
}

.contact-form textarea {
  resize: vertical;
}

.form-disclaimer {
  margin: 14px 0 0;
  color: rgba(21, 16, 21, 0.56);
  font-size: 0.82rem;
  text-align: center;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: rgba(21, 16, 21, 0.68);
  font-size: 0.88rem;
  font-weight: 850;
  text-align: center;
}

.form-status.is-success {
  color: #334a12;
}

.form-status.is-error {
  color: #7a261f;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.delay-1 {
  transition-delay: 90ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 270ms;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes floatSlow {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -20px, 0) scale(1.05); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes cursorBlink {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@media (max-width: 1000px) {
  .hero-grid,
  .feature-row,
  .contact-grid,
  .cta-grid,
  .project-card,
  .project-card.reverse,
  .statement-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 620px;
    margin-inline: auto;
  }

  .offer-grid,
  .values-grid,
  .build-preview-grid,
  .template-build-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-card.reverse .project-visual {
    order: 0;
  }

  .section-kicker,
  .contact-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
    max-width: calc(100vw - 28px);
  }

  .site-header {
    inset: 12px 12px auto;
    border-radius: 24px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 12px auto;
    display: grid;
    gap: 8px;
    padding: 16px;
    border: 1px solid rgba(246, 239, 217, 0.14);
    border-radius: 24px;
    background: rgba(21, 16, 21, 0.96);
    box-shadow: var(--shadow);
    transform-origin: top right;
    transform: scale(0.96) translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(3.1rem, 14.5vw, 5rem);
    letter-spacing: -0.07em;
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2.25rem, 10.8vw, 3.9rem);
    letter-spacing: -0.065em;
    line-height: 0.98;
  }

  .mini-title {
    font-size: clamp(1.85rem, 10.8vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.015em;
  }

  .site-header,
  .site-nav,
  .hero-panel,
  .build-card,
  .project-card,
  .contact-form,
  .code-card {
    max-width: calc(100vw - 24px);
  }

  .hero-panel {
    min-height: auto;
    padding: 12px;
    transform: none;
  }

  .mini-browser {
    min-height: auto;
    padding: 22px;
  }

  .code-card pre {
    height: 13.75rem;
    padding: 24px;
    font-size: clamp(0.78rem, 3.35vw, 0.94rem);
    line-height: 1.68;
  }

  .mini-card-grid {
    grid-template-columns: 1fr;
  }

  .mini-flow {
    flex-wrap: wrap;
  }

  .floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 12px 0 0 auto;
  }

  .section,
  .final-cta {
    padding: 78px 0;
  }

  .page-hero {
    padding: 142px 0 78px;
  }

  .split-grid,
  .do-dont-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .values-grid,
  .build-preview-grid,
  .template-build-grid {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .value-card {
    min-height: auto;
  }

  .offer-number {
    margin-bottom: 42px;
    font-size: 3.35rem;
  }

  .portrait-card,
  .portrait-inner {
    min-height: 420px;
  }

  .footer-grid {
    display: grid;
  }

  .form-topline {
    display: grid;
  }

  .form-topline strong {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .proof-gallery {
    min-height: auto;
  }

  .proof-gallery .proof-main {
    min-height: 230px;
  }

  .proof-thumbs img {
    height: 80px;
  }

}

@media (max-width: 520px) {
  .build-visual,
  .project-visual {
    min-height: 220px;
  }

  .build-visual::after,
  .project-visual::after {
    left: 24px;
    bottom: 22px;
    max-width: calc(100% - 48px);
    font-size: clamp(1.35rem, 8.5vw, 2rem);
    line-height: 1.02;
    letter-spacing: -0.01em;
  }

  .offer-card,
  .value-card,
  .build-content,
  .project-copy {
    padding: 22px;
  }

  .marquee span {
    padding: 13px 28px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .center-action {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-lede,
  .large-copy,
  .section-heading p,
  .feature-copy p,
  .cta-grid p,
  .page-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: clamp(2.72rem, 13.5vw, 4.15rem);
  }

  h2 {
    font-size: clamp(2.02rem, 10vw, 3.3rem);
  }

  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }
}


@media (max-width: 420px) {
  .code-card pre {
    height: 13.5rem;
  }
}

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

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