@font-face {
  font-family: "Geist";
  src: url("/assets/fonts/Geist-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("/assets/fonts/Geist-Medium.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Clash Display";
  src: url("/assets/fonts/ClashDisplay-Bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #171914;
  --muted: #5c6258;
  --quiet: #777e72;
  --paper: #f8faf5;
  --paper-2: #eef3e8;
  --white: #ffffff;
  --line: #dce4d2;
  --line-strong: #c8d4be;
  --accent: #14803a;
  --accent-dark: #0d5e2c;
  --accent-soft: #dff0d7;
  --shadow: 0 24px 60px -34px rgba(23, 25, 20, 0.42);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image: radial-gradient(rgba(23, 25, 20, 0.09) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  mix-blend-mode: multiply;
}

a {
  color: inherit;
}

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

.topbar {
  position: sticky;
  top: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1400px, calc(100% - clamp(28px, 6vw, 112px)));
  margin: 14px auto 0;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(220, 228, 210, 0.74);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 52px -42px rgba(23, 25, 20, 0.52), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand-name {
  min-width: 0;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(220, 228, 210, 0.92), 0 10px 22px -18px rgba(23, 25, 20, 0.62);
}

.brand-mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

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

.nav a {
  min-height: 36px;
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.nav a:hover {
  background: rgba(20, 128, 58, 0.08);
  color: var(--ink);
}

.nav a:active,
.button:active,
.link-chip:active {
  transform: translateY(1px) scale(0.99);
}

.page-shell {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(600px, 1.18fr);
  min-height: clamp(620px, 82dvh, 820px);
  padding: clamp(46px, 6vw, 92px) clamp(20px, 5vw, 72px) clamp(34px, 4vw, 64px);
  gap: clamp(18px, 3vw, 46px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
  padding-bottom: clamp(18px, 3vw, 44px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Clash Display", "Geist", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
}

h2 {
  max-width: 880px;
  font-size: clamp(34px, 5.3vw, 72px);
  line-height: 0.96;
}

.legal h1 {
  max-width: 820px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.96;
}

.legal h2 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.lede {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.link-chip {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: background 260ms var(--ease), color 260ms var(--ease), transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.button {
  padding: 0 22px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 28px -20px rgba(23, 25, 20, 0.62);
}

.button:hover {
  background: #22251f;
  transform: translateY(-2px);
}

.button.secondary {
  background: var(--accent-soft);
  color: var(--accent-dark);
  box-shadow: none;
}

.button.secondary:hover {
  background: #d3eccb;
}

.link-chip {
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--accent-dark);
  box-shadow: inset 0 0 0 1px rgba(200, 212, 190, 0.72);
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(360px, 0.66fr);
  gap: clamp(4px, 1.6vw, 22px);
  align-items: center;
  align-self: stretch;
  min-height: 560px;
  transform: translate3d(-18px, 0, 0);
}

.hero-art {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: end;
}

.hero-bear {
  width: min(100%, 700px);
  margin-left: auto;
  transform: translate3d(0, 0, 0);
  animation: floatBear 6.5s var(--ease) infinite alternate;
}

.capture-strip {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  display: grid;
  width: 100%;
  max-width: 318px;
  gap: 12px;
  transform: rotate(-1.5deg);
}

.capture-note {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 32px -24px rgba(23, 25, 20, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  animation: slideUp 650ms var(--ease) both;
  animation-delay: calc(var(--i) * 110ms);
}

.capture-icon {
  display: grid;
  align-self: center;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 13px;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.capture-icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.capture-note strong {
  display: block;
  font-size: 13px;
}

.capture-copy {
  display: block;
  min-width: 0;
}

.capture-copy span {
  display: block;
  margin-top: 2px;
  color: var(--quiet);
  font-size: 11.5px;
}

.section {
  padding: clamp(68px, 10vw, 142px) clamp(20px, 5vw, 72px);
}

.section-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.asym-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: start;
  margin-top: 44px;
}

.workflow-panel {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 40px;
  background: var(--white);
  border: 1px solid rgba(220, 228, 210, 0.82);
  box-shadow: var(--shadow);
}

.workflow-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: 24px 0;
  border-top: 1px solid var(--line);
  animation: slideUp 650ms var(--ease) both;
  animation-delay: calc(var(--i) * 120ms);
}

.workflow-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.workflow-list b {
  color: var(--accent-dark);
  font-family: "Clash Display", "Geist", sans-serif;
  font-size: 32px;
  line-height: 1;
}

.workflow-list h3,
.tile h3,
.legal h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
}

.workflow-list p,
.tile p,
.legal p,
.legal li {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.side-quote {
  position: sticky;
  top: 112px;
  padding: 12px 0 0;
}

.side-quote p {
  max-width: 370px;
  margin: 0;
  color: var(--ink);
  font-family: "Clash Display", "Geist", sans-serif;
  font-size: clamp(28px, 3.8vw, 54px);
  line-height: 0.98;
}

.side-quote span {
  display: block;
  max-width: 300px;
  margin-top: 20px;
  color: var(--quiet);
  line-height: 1.55;
}

.tiles {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(18px, 2.6vw, 32px);
  margin-top: 46px;
}

.tile {
  min-height: 320px;
  padding: clamp(26px, 3.6vw, 42px);
  border-radius: 40px;
  background: var(--white);
  border: 1px solid rgba(220, 228, 210, 0.82);
  box-shadow: 0 20px 44px -35px rgba(23, 25, 20, 0.52);
}

.tile.media {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(220px, 0.72fr);
  gap: 28px;
  align-items: end;
  overflow: hidden;
}

.tile.media img {
  align-self: end;
  width: min(100%, 410px);
  justify-self: end;
  transform: translate3d(0, 12px, 0);
  animation: floatBear 7s var(--ease) infinite alternate-reverse;
}

.search-demo {
  margin-top: 32px;
  border-radius: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}

.search-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.search-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  animation: breathe 2.6s var(--ease) infinite;
}

.type-line {
  color: var(--ink);
  font-weight: 800;
}

.type-line::after {
  display: inline-block;
  width: 8px;
  height: 1.1em;
  margin-left: 5px;
  background: var(--accent);
  vertical-align: -0.18em;
  content: "";
  animation: blink 1.1s steps(2, end) infinite;
}

.result-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 18px 20px;
  border-top: 1px solid rgba(220, 228, 210, 0.72);
}

.result-row:first-of-type {
  border-top: 0;
}

.result-row strong {
  display: block;
  font-size: 15px;
}

.result-row span {
  display: block;
  margin-top: 5px;
  color: var(--quiet);
  font-size: 13px;
}

.result-pill {
  align-self: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.privacy-band {
  background: var(--ink);
  color: var(--white);
}

.privacy-band .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
}

.privacy-band .eyebrow,
.privacy-band .lede,
.privacy-band p {
  color: rgba(255, 255, 255, 0.72);
}

.privacy-band h2 {
  color: var(--white);
}

.privacy-checks {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.privacy-checks svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent-soft);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.42fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
}

.final-cta img {
  width: min(100%, 340px);
  justify-self: end;
}

.legal {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(42px, 6vw, 90px) clamp(20px, 5vw, 48px) clamp(76px, 9vw, 126px);
}

.legal .updated {
  margin: 16px 0 38px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.legal section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal ul {
  margin: 16px 0 0;
  padding-left: 22px;
}

.callout {
  margin: 34px 0;
  padding: 24px;
  border-radius: 26px;
  background: var(--accent-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.callout p {
  margin: 0;
  color: var(--accent-dark);
  font-weight: 800;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: #20231d;
  color: var(--white);
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  text-decoration: none;
}

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

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

@keyframes floatBear {
  from {
    transform: translate3d(0, 10px, 0) rotate(-0.4deg);
  }
  to {
    transform: translate3d(0, -10px, 0) rotate(0.4deg);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: scale(0.84);
    opacity: 0.58;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

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

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

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    width: min(100%, 860px);
    margin: 0 auto;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero,
  .asym-grid,
  .tiles,
  .tile.media,
  .privacy-band .section-inner,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-stage {
    grid-template-columns: minmax(210px, 0.36fr) minmax(300px, 0.64fr);
    min-height: 520px;
    transform: none;
  }

  .capture-strip {
    max-width: 280px;
  }

  .side-quote {
    position: static;
  }

  .final-cta img,
  .tile.media img {
    justify-self: start;
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    top: 8px;
    width: calc(100% - 24px);
    padding: 10px;
    border-radius: 24px;
  }

  .brand {
    width: 100%;
    gap: 10px;
    font-size: 18px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .brand-mark img {
    width: 40px;
    height: 40px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
  }

  .nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 10px;
    background: rgba(238, 243, 232, 0.78);
    text-align: center;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero-stage {
    grid-template-columns: 1fr;
    min-height: auto;
    transform: none;
  }

  .capture-strip {
    grid-column: 1;
    grid-row: 2;
    max-width: none;
    transform: none;
  }

  .hero-art {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-bear {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .capture-note {
    grid-template-columns: 36px 1fr;
    padding: 11px;
    border-radius: 18px;
  }

  .capture-icon {
    width: 36px;
    height: 36px;
  }

  .workflow-list li {
    grid-template-columns: 1fr;
  }

  .workflow-panel,
  .tile {
    border-radius: 30px;
  }

  .actions {
    width: 100%;
  }

  .button,
  .link-chip {
    width: 100%;
  }
}
