:root {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --surface-soft: #f0f4f1;
  --ink: #111111;
  --muted: #646b68;
  --line: #e4e7e2;
  --accent: #dff8b6;
  --accent-strong: #94d82d;
  --blue-soft: #e7f0ff;
  --peach-soft: #fff0e7;
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(247, 247, 244, 0.88);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 12px;
  background: var(--ink);
  color: var(--accent);
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.14);
}

.brand-name {
  font-size: 1.05rem;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 10px;
  background: currentColor;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.site-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 20px;
  left: 20px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  padding: 12px 14px;
  border-radius: 12px;
  color: #2b2f2d;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-nav a:hover,
.site-nav a.active {
  background: var(--surface-soft);
  color: var(--ink);
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-1px);
}

.button {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.18);
}

.button-secondary {
  border-color: rgba(17, 17, 17, 0.12);
  background: var(--surface);
  color: var(--ink);
}

.site-header .nav-cta {
  display: none;
}

.button-ghost {
  min-height: 42px;
  border-color: rgba(17, 17, 17, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.hero {
  position: relative;
  padding: 64px 0 58px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(247, 247, 244, 0) 70%),
    linear-gradient(135deg, rgba(223, 248, 182, 0.42), rgba(231, 240, 255, 0.34) 52%, rgba(255, 240, 231, 0.38));
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #34403b;
  font-size: 0.83rem;
  font-weight: 750;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(148, 216, 45, 0.18);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 2.75rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 26px;
  color: #4d5551;
  font-size: 1.06rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: #46504b;
  font-size: 0.92rem;
  font-weight: 680;
}

.trust-pill {
  padding: 8px 11px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
}

.phone-stage {
  display: grid;
  justify-items: center;
  padding: 14px;
}

.phone-mockup {
  position: relative;
  width: min(100%, 360px);
  min-height: 660px;
  padding: 16px;
  border: 10px solid #111111;
  border-radius: 42px;
  background: #f9faf7;
  box-shadow: 0 36px 90px rgba(17, 17, 17, 0.18);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 94px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #111111;
}

.phone-screen {
  height: 100%;
  padding: 38px 14px 18px;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.app-title {
  font-weight: 850;
  letter-spacing: 0;
}

.app-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dff8b6, #e7f0ff);
  border: 1px solid rgba(17, 17, 17, 0.1);
}

.app-search {
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: #ffffff;
  color: #6d7470;
  font-size: 0.9rem;
}

.deal-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 19px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.06);
}

.deal-thumb {
  min-height: 82px;
  border-radius: 15px;
  background: linear-gradient(145deg, #f3f3f0, #dff8b6);
}

.deal-thumb.blue {
  background: linear-gradient(145deg, #eef4ff, #d9e8ff);
}

.deal-thumb.peach {
  background: linear-gradient(145deg, #fff3ea, #ffe1ce);
}

.deal-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.deal-label {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eff8dd;
  color: #3d5b0c;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.deal-name {
  color: #1e2522;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
}

.deal-sub {
  color: #747b77;
  font-size: 0.78rem;
}

.app-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.app-tabs span {
  padding: 9px 6px;
  border-radius: 999px;
  background: #f0f4f1;
  color: #4d5551;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.doodle-phone {
  border-width: 7px;
  border-radius: 44px 39px 47px 41px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    #fffdf7;
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 13px 13px 0 rgba(17, 17, 17, 0.08), 0 30px 80px rgba(17, 17, 17, 0.12);
  transform: rotate(-1deg);
  animation: doodle-bob 5.6s ease-in-out infinite;
}

.doodle-phone::before {
  top: 11px;
  width: 92px;
  height: 23px;
  border-radius: 0 0 20px 18px;
  transform: translateX(-50%) rotate(1deg);
}

.doodle-phone::after {
  content: "";
  position: absolute;
  inset: -11px -8px -9px -10px;
  z-index: -1;
  border: 2px solid rgba(17, 17, 17, 0.38);
  border-radius: 50px 43px 48px 45px;
  transform: rotate(2deg);
}

.doodle-phone .phone-screen {
  position: relative;
}

.doodle-phone .app-title {
  font-family: "Comic Sans MS", "Bradley Hand", Inter, sans-serif;
  font-size: 1.08rem;
  transform: rotate(-1deg);
}

.doodle-phone .app-avatar {
  --wiggle-start: -2deg;
  --wiggle-end: 2deg;
  display: grid;
  place-items: center;
  border: 2px solid #111111;
  border-radius: 47% 53% 51% 49%;
  background: #f1ffd9;
  box-shadow: 4px 4px 0 #e7f0ff;
  animation: doodle-wiggle 2.8s steps(2, end) infinite;
}

.doodle-phone .app-avatar::before {
  content: ":)";
  color: #111111;
  font-size: 0.78rem;
  font-weight: 900;
}

.doodle-phone .app-search {
  border: 2px solid #111111;
  border-radius: 18px 24px 17px 23px;
  background: #ffffff;
  color: #575d5a;
  box-shadow: 5px 5px 0 #dff8b6;
  transform: rotate(0.6deg);
}

.doodle-phone .deal-card {
  --card-start-rotate: -0.4deg;
  --card-end-rotate: 0.7deg;
  position: relative;
  border: 2px solid #111111;
  border-radius: 24px 18px 23px 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 7px 7px 0 rgba(17, 17, 17, 0.08);
  animation: doodle-card-wiggle 3.8s steps(2, end) infinite;
}

.doodle-phone .deal-card:nth-of-type(4) {
  --card-start-rotate: 0.7deg;
  --card-end-rotate: -0.3deg;
  animation-delay: 0.4s;
}

.doodle-phone .deal-card:nth-of-type(5) {
  --card-start-rotate: -0.8deg;
  --card-end-rotate: 0.5deg;
  animation-delay: 0.9s;
}

.doodle-phone .deal-thumb {
  position: relative;
  overflow: hidden;
  border: 2px solid #111111;
  border-radius: 18px 15px 20px 14px;
  background:
    linear-gradient(135deg, rgba(223, 248, 182, 0.9), rgba(255, 255, 255, 0.8)),
    repeating-linear-gradient(135deg, rgba(17, 17, 17, 0.12) 0 2px, transparent 2px 10px);
}

.doodle-phone .deal-thumb::before,
.doodle-phone .deal-thumb::after {
  content: "";
  position: absolute;
  border: 2px solid #111111;
  border-radius: 999px;
}

.doodle-phone .deal-thumb::before {
  top: 18px;
  left: 14px;
  width: 34px;
  height: 24px;
  transform: rotate(-11deg);
}

.doodle-phone .deal-thumb::after {
  right: 12px;
  bottom: 16px;
  width: 22px;
  height: 22px;
  transform: rotate(12deg);
}

.doodle-phone .deal-thumb.blue {
  background:
    linear-gradient(135deg, rgba(231, 240, 255, 0.95), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(135deg, rgba(17, 17, 17, 0.1) 0 2px, transparent 2px 10px);
}

.doodle-phone .deal-thumb.peach {
  background:
    linear-gradient(135deg, rgba(255, 240, 231, 0.95), rgba(255, 255, 255, 0.82)),
    repeating-linear-gradient(135deg, rgba(17, 17, 17, 0.1) 0 2px, transparent 2px 10px);
}

.doodle-phone .deal-label {
  border: 2px solid #111111;
  border-radius: 13px 18px 15px 17px;
  background: #f1ffd9;
  color: #233407;
  transform: rotate(-1.5deg);
}

.doodle-phone .deal-name,
.doodle-phone .deal-sub,
.doodle-phone .app-tabs span {
  font-family: "Comic Sans MS", "Bradley Hand", Inter, sans-serif;
}

.doodle-phone .deal-name {
  color: #171b19;
}

.doodle-phone .deal-sub {
  color: #59605c;
}

.doodle-phone .app-tabs span {
  border: 2px solid #111111;
  border-radius: 18px 16px 20px 15px;
  background: #ffffff;
  color: #303733;
  box-shadow: 4px 4px 0 #e7f0ff;
}

@keyframes doodle-bob {
  0%,
  100% {
    transform: rotate(-1deg) translateY(0);
  }

  50% {
    transform: rotate(0.5deg) translateY(-7px);
  }
}

@keyframes doodle-wiggle {
  0%,
  100% {
    transform: rotate(var(--wiggle-start, -2deg));
  }

  50% {
    transform: rotate(var(--wiggle-end, 2deg));
  }
}

@keyframes doodle-card-wiggle {
  0%,
  100% {
    transform: rotate(var(--card-start-rotate, -0.4deg));
  }

  50% {
    transform: rotate(var(--card-end-rotate, 0.7deg));
  }
}

@media (prefers-reduced-motion: reduce) {
  .doodle-phone,
  .doodle-phone .app-avatar,
  .doodle-phone .deal-card {
    animation: none;
  }
}

/* Doodle theme layer */
body {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    #fffdf7;
  background-size: 34px 34px, 34px 34px, auto;
}

.site-shell {
  position: relative;
}

.site-header {
  border-bottom: 3px solid rgba(17, 17, 17, 0.2);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    rgba(255, 253, 247, 0.92);
  background-size: 28px 28px, 28px 28px, auto;
}

.brand,
.site-nav a,
.button,
.button-secondary,
.button-ghost,
h1,
h2,
h3,
.section-kicker,
.trust-pill,
.category-card strong,
.category-card span,
.footer-links a,
.footer-bottom {
  font-family: "Comic Sans MS", "Bradley Hand", Inter, sans-serif;
}

.brand-mark,
.nav-toggle,
.button,
.button-secondary,
.button-ghost,
.eyebrow,
.trust-pill,
.card,
.category-card,
.partner-panel,
.statement-card,
.founder,
.cta-band,
.placeholder-panel,
.contact-card,
.page-card,
.field input,
.field textarea {
  border: 2px solid #111111;
  box-shadow: 6px 6px 0 rgba(17, 17, 17, 0.08);
}

.brand-mark {
  border-radius: 13px 17px 12px 18px;
  transform: rotate(-4deg);
  animation: doodle-wiggle 4.4s steps(2, end) infinite;
}

.brand-name {
  transform: rotate(-0.6deg);
}

.nav-toggle {
  border-radius: 14px 18px 12px 16px;
  box-shadow: 4px 4px 0 #dff8b6;
}

.site-nav {
  border: 2px solid #111111;
  border-radius: 20px 24px 18px 22px;
  box-shadow: 7px 7px 0 rgba(17, 17, 17, 0.09);
}

.site-nav a {
  border-radius: 15px 18px 14px 19px;
}

.site-nav a:hover,
.site-nav a.active {
  background: #eff8dd;
  box-shadow: inset 0 -4px 0 rgba(148, 216, 45, 0.22);
}

.button,
.button-secondary,
.button-ghost {
  border-radius: 21px 17px 23px 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button {
  box-shadow: 7px 7px 0 #dff8b6;
}

.button-secondary,
.button-ghost {
  box-shadow: 7px 7px 0 rgba(17, 17, 17, 0.08);
}

.button:hover,
.button-secondary:hover,
.button-ghost:hover {
  transform: translateY(-2px) rotate(-1deg);
  box-shadow: 4px 4px 0 rgba(17, 17, 17, 0.14);
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, rgba(223, 248, 182, 0.38), rgba(231, 240, 255, 0.3) 52%, rgba(255, 240, 231, 0.34));
  background-size: 34px 34px, 34px 34px, auto;
}

.eyebrow {
  border-radius: 18px 22px 17px 23px;
  background: #ffffff;
  box-shadow: 4px 4px 0 #e7f0ff;
  transform: rotate(-0.8deg);
}

.eyebrow::before {
  border: 2px solid #111111;
  background: var(--accent);
  box-shadow: none;
}

h1 {
  text-shadow: 3px 3px 0 rgba(223, 248, 182, 0.75);
}

h2 {
  text-shadow: 2px 2px 0 rgba(231, 240, 255, 0.9);
}

.trust-pill {
  background: #ffffff;
  border-radius: 16px 20px 15px 22px;
}

.trust-pill:nth-child(2) {
  transform: rotate(1deg);
}

.trust-pill:nth-child(3) {
  transform: rotate(-1deg);
}

.section {
  position: relative;
}

.section-header {
  position: relative;
}

.card,
.category-card,
.partner-panel,
.statement-card,
.founder,
.cta-band,
.placeholder-panel,
.contact-card,
.page-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.02) 1px, transparent 1px),
    #ffffff;
  background-size: 26px 26px, 26px 26px, auto;
  border-radius: 24px 19px 27px 21px;
}

.feature-card,
.step-card,
.category-card,
.page-card {
  animation: doodle-card-float 7s ease-in-out infinite;
}

.feature-card:nth-child(2n),
.category-card:nth-child(2n),
.page-card:nth-child(2n) {
  animation-delay: 0.7s;
  transform: rotate(0.3deg);
}

.feature-card:nth-child(3n),
.category-card:nth-child(3n),
.page-card:nth-child(3n) {
  animation-delay: 1.2s;
  transform: rotate(-0.4deg);
}

.icon-box,
.step-card::before,
.founder-mark {
  border: 2px solid #111111;
  border-radius: 17px 12px 18px 14px;
  background: #f1ffd9;
  color: #111111;
  box-shadow: 4px 4px 0 #e7f0ff;
  font-family: "Comic Sans MS", "Bradley Hand", Inter, sans-serif;
  transform: rotate(-2deg);
}

.split-band {
  border-top: 3px solid #111111;
  border-bottom: 3px solid #111111;
  background:
    repeating-linear-gradient(-6deg, rgba(255, 255, 255, 0.055) 0 2px, transparent 2px 12px),
    #111111;
}

.split-band .statement-card,
.split-band .card {
  border-color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    rgba(255, 255, 255, 0.08);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.16);
}

.partner-list li::before,
.check-list li::before {
  width: 13px;
  height: 13px;
  margin-top: 6px;
  border: 2px solid #111111;
  border-radius: 46% 54% 50% 50%;
  background: #dff8b6;
  box-shadow: 2px 2px 0 #e7f0ff;
}

.split-band .partner-list li::before,
.split-band .check-list li::before {
  border-color: #ffffff;
}

.category-card span {
  width: fit-content;
  padding: 3px 8px;
  border: 2px solid #111111;
  border-radius: 12px 16px 11px 15px;
  background: #f1ffd9;
  color: #233407;
}

.category-card strong {
  font-size: 1.15rem;
}

.founder-mark {
  border-radius: 25px 31px 24px 29px;
  background: #111111;
  color: #dff8b6;
}

.placeholder-panel {
  border-style: solid;
}

.placeholder-panel .mock-frame {
  border: 2px solid #111111;
  border-radius: 24px 18px 26px 20px;
  background:
    repeating-linear-gradient(-12deg, rgba(17, 17, 17, 0.08) 0 2px, transparent 2px 12px),
    linear-gradient(135deg, rgba(223, 248, 182, 0.92), rgba(231, 240, 255, 0.92));
  font-family: "Comic Sans MS", "Bradley Hand", Inter, sans-serif;
  box-shadow: 6px 6px 0 rgba(17, 17, 17, 0.08);
}

.field input,
.field textarea {
  border-radius: 16px 20px 15px 22px;
  box-shadow: 4px 4px 0 rgba(17, 17, 17, 0.06);
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid rgba(148, 216, 45, 0.36);
}

.legal-copy {
  position: relative;
  padding: 32px;
  border: 2px solid #111111;
  border-radius: 28px 22px 31px 24px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.02) 1px, transparent 1px),
    #ffffff;
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 8px 8px 0 rgba(17, 17, 17, 0.08);
}

.site-footer {
  border-top: 3px solid #111111;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    #ffffff;
  background-size: 32px 32px, 32px 32px, auto;
}

.footer-bottom {
  border-top: 2px solid rgba(17, 17, 17, 0.18);
}

@keyframes doodle-card-float {
  0%,
  100% {
    transform: rotate(-0.35deg) translateY(0);
  }

  50% {
    transform: rotate(0.35deg) translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark,
  .feature-card,
  .step-card,
  .category-card,
  .page-card {
    animation: none;
  }
}

.section {
  padding: 68px 0;
}

.section-tight {
  padding: 46px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-kicker {
  margin-bottom: 10px;
  color: #52615a;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-header p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 16px;
}

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

.card {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 50px rgba(17, 17, 17, 0.045);
}

.feature-card {
  padding: 22px;
}

.feature-card p,
.mini-card p,
.step-card p,
.page-card p,
.contact-card p,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.icon-box {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--ink);
  font-weight: 900;
}

.split-band {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: #111111;
  color: #ffffff;
}

.split-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.split-band .section-kicker,
.split-band .lead,
.split-band p {
  color: rgba(255, 255, 255, 0.72);
}

.split-band h2 {
  color: #ffffff;
}

.statement-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.statement-card strong {
  color: #ffffff;
}

.partner-panel {
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(140deg, #ffffff, #f3f8ee);
  box-shadow: var(--shadow);
}

.partner-list,
.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.partner-list li,
.check-list li {
  display: flex;
  gap: 10px;
  color: #4b5450;
}

.partner-list li::before,
.check-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
}

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

.category-card {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.category-card span {
  display: block;
  margin-bottom: 20px;
  color: #6a716d;
  font-size: 0.8rem;
  font-weight: 850;
}

.category-card strong {
  display: block;
  font-size: 1.05rem;
}

.steps-grid {
  counter-reset: steps;
}

.step-card {
  position: relative;
  padding: 24px;
}

.step-card::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 850;
}

.founder {
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, #ffffff, #f7fbf0);
  box-shadow: var(--shadow);
}

.founder-inner {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.founder-mark {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: #111111;
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 0 20px 45px rgba(17, 17, 17, 0.16);
}

.cta-band {
  padding: 34px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: calc(var(--radius) + 10px);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-size: 1.9rem;
}

.page-hero {
  padding: 58px 0 34px;
}

.page-hero .lead {
  max-width: 760px;
}

.page-grid {
  display: grid;
  gap: 18px;
}

.page-card {
  padding: 24px;
}

.placeholder-panel {
  padding: 20px;
  border: 1px dashed rgba(17, 17, 17, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.placeholder-panel .mock-frame {
  display: grid;
  min-height: 260px;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(223, 248, 182, 0.92), rgba(231, 240, 255, 0.92)),
    #ffffff;
  color: #3f4843;
  font-weight: 850;
  text-align: center;
}

.contact-layout {
  display: grid;
  gap: 20px;
}

.contact-card {
  padding: 24px;
}

.contact-method {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: var(--ink);
  font-weight: 800;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 0.88rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  padding: 13px 14px;
}

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

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-copy {
  max-width: 860px;
  padding-bottom: 70px;
}

.legal-copy h2 {
  margin-top: 34px;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.legal-copy ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.site-footer {
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
}

.footer-grid {
  display: grid;
  gap: 26px;
  padding: 38px 0;
}

.footer-brand p {
  max-width: 430px;
  color: var(--muted);
}

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

.footer-links a {
  color: #39413d;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

/* Final doodle overrides after the base component rules */
.card,
.category-card,
.partner-panel,
.statement-card,
.founder,
.cta-band,
.placeholder-panel,
.contact-card,
.page-card {
  position: relative;
  overflow: hidden;
  border: 2px solid #111111;
  border-radius: 24px 19px 27px 21px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.02) 1px, transparent 1px),
    #ffffff;
  background-size: 26px 26px, 26px 26px, auto;
  box-shadow: 6px 6px 0 rgba(17, 17, 17, 0.08);
}

.feature-card,
.step-card,
.category-card,
.page-card {
  animation: doodle-card-float 7s ease-in-out infinite;
}

.feature-card:nth-child(2n),
.category-card:nth-child(2n),
.page-card:nth-child(2n) {
  animation-delay: 0.7s;
}

.feature-card:nth-child(3n),
.category-card:nth-child(3n),
.page-card:nth-child(3n) {
  animation-delay: 1.2s;
}

.icon-box,
.step-card::before,
.founder-mark {
  border: 2px solid #111111;
  border-radius: 17px 12px 18px 14px;
  background: #f1ffd9;
  color: #111111;
  box-shadow: 4px 4px 0 #e7f0ff;
  font-family: "Comic Sans MS", "Bradley Hand", Inter, sans-serif;
  transform: rotate(-2deg);
}

.split-band {
  border-top: 3px solid #111111;
  border-bottom: 3px solid #111111;
  background:
    repeating-linear-gradient(-6deg, rgba(255, 255, 255, 0.055) 0 2px, transparent 2px 12px),
    #111111;
}

.split-band .statement-card,
.split-band .card {
  border-color: #ffffff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    rgba(255, 255, 255, 0.08);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.16);
}

.partner-panel {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.02) 1px, transparent 1px),
    #fafff2;
}

.partner-list li::before,
.check-list li::before {
  width: 13px;
  height: 13px;
  margin-top: 6px;
  border: 2px solid #111111;
  border-radius: 46% 54% 50% 50%;
  background: #dff8b6;
  box-shadow: 2px 2px 0 #e7f0ff;
}

.category-card span {
  width: fit-content;
  padding: 3px 8px;
  border: 2px solid #111111;
  border-radius: 12px 16px 11px 15px;
  background: #f1ffd9;
  color: #233407;
}

.category-card strong {
  font-size: 1.15rem;
}

.founder-mark {
  border-radius: 25px 31px 24px 29px;
  background: #111111;
  color: #dff8b6;
}

.placeholder-panel {
  border-style: solid;
}

.placeholder-panel .mock-frame {
  border: 2px solid #111111;
  border-radius: 24px 18px 26px 20px;
  background:
    repeating-linear-gradient(-12deg, rgba(17, 17, 17, 0.08) 0 2px, transparent 2px 12px),
    linear-gradient(135deg, rgba(223, 248, 182, 0.92), rgba(231, 240, 255, 0.92));
  font-family: "Comic Sans MS", "Bradley Hand", Inter, sans-serif;
  box-shadow: 6px 6px 0 rgba(17, 17, 17, 0.08);
}

.field input,
.field textarea {
  border: 2px solid #111111;
  border-radius: 16px 20px 15px 22px;
  box-shadow: 4px 4px 0 rgba(17, 17, 17, 0.06);
}

.legal-copy {
  position: relative;
  padding: 32px;
  border: 2px solid #111111;
  border-radius: 28px 22px 31px 24px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.02) 1px, transparent 1px),
    #ffffff;
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 8px 8px 0 rgba(17, 17, 17, 0.08);
}

.site-footer {
  border-top: 3px solid #111111;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px),
    #ffffff;
  background-size: 32px 32px, 32px 32px, auto;
}

.footer-bottom {
  border-top: 2px solid rgba(17, 17, 17, 0.18);
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark,
  .feature-card,
  .step-card,
  .category-card,
  .page-card,
  .doodle-phone,
  .doodle-phone .app-avatar,
  .doodle-phone .deal-card {
    animation: none;
  }
}

@media (min-width: 720px) {
  .container {
    width: min(100% - 56px, var(--container));
  }

  .hero {
    padding: 72px 0 68px;
  }

  h1 {
    font-size: 4.15rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .hero-copy {
    font-size: 1.16rem;
  }

  .cta-band h2 {
    font-size: 2.5rem;
  }

  .hero-grid,
  .split-grid,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  }

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

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

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

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

  .founder-inner {
    grid-template-columns: auto 1fr;
    padding: 34px;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

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

  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    padding: 9px 11px;
    font-size: 0.9rem;
  }

  .site-header .nav-cta {
    display: inline-flex;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.8fr);
  }

  h1 {
    font-size: 4.75rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .cta-band h2 {
    font-size: 3rem;
  }

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

  .feature-card {
    min-height: 238px;
  }
}

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

  .phone-mockup {
    min-height: 610px;
    border-radius: 34px;
  }

  .deal-card {
    grid-template-columns: 66px 1fr;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .cta-band {
    padding: 24px;
  }
}
