:root {
  --ink: #171713;
  --paper: #f6f1e7;
  --paper-strong: #fffaf0;
  --line: rgba(23, 23, 19, 0.16);
  --green: #11624d;
  --green-soft: #d6eadf;
  --gold: #d8a72e;
  --rust: #9c4a2f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.topbar {
  align-items: center;
  display: flex;
  inset: 0 0 auto;
  justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 64px);
  position: fixed;
  z-index: 10;
}

.brand,
.topbar nav {
  align-items: center;
  display: flex;
}

.brand {
  font-size: 15px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0;
}

.brand-mark {
  background: var(--gold);
  border: 2px solid var(--ink);
  display: inline-block;
  height: 16px;
  transform: rotate(45deg);
  width: 16px;
}

.topbar nav {
  background: rgba(246, 241, 231, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  gap: 4px;
  padding: 4px;
}

.topbar nav a {
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 13px;
}

.topbar nav a:hover {
  background: var(--paper-strong);
}

.hero {
  min-height: 92svh;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 78px) 56px;
  position: relative;
}

.signal-field {
  background:
    radial-gradient(circle at 82% 30%, rgba(216, 167, 46, 0.28), transparent 22%),
    linear-gradient(115deg, rgba(246, 241, 231, 0.98) 0%, rgba(246, 241, 231, 0.64) 46%, rgba(17, 98, 77, 0.14) 100%);
  inset: 0;
  position: absolute;
}

.signal-grid {
  background-image:
    linear-gradient(rgba(23, 23, 19, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 19, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  inset: 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 38%, black 100%);
  position: absolute;
}

.signal-sweep {
  background: linear-gradient(90deg, transparent, rgba(17, 98, 77, 0.24), transparent);
  height: 100%;
  position: absolute;
  right: 10%;
  top: 0;
  transform: skewX(-15deg);
  width: 18%;
}

.lead-feed {
  display: grid;
  gap: 12px;
  position: absolute;
  right: clamp(20px, 7vw, 108px);
  top: 22vh;
  width: min(460px, 42vw);
  z-index: 1;
}

.feed-row {
  align-items: center;
  background: rgba(255, 250, 240, 0.78);
  border: 1px solid rgba(23, 23, 19, 0.16);
  display: grid;
  gap: 12px;
  grid-template-columns: 42px 1fr auto;
  min-height: 64px;
  padding: 14px 16px;
  transform: translateX(20px);
}

.feed-row span {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.feed-row strong {
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 1.1;
}

.feed-row em {
  color: var(--rust);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.feed-row.hot {
  background: var(--green);
  color: var(--paper-strong);
  transform: translateX(-18px);
}

.feed-row.hot span,
.feed-row.hot em {
  color: var(--gold);
}

.feed-row.muted {
  opacity: 0.58;
}

.hero-copy {
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(68px, 12vw, 160px);
  letter-spacing: 0;
  line-height: 0.83;
  margin-bottom: 28px;
  max-width: 820px;
}

h2 {
  font-size: clamp(38px, 6vw, 84px);
  letter-spacing: 0;
  line-height: 0.92;
}

h3 {
  font-size: 22px;
  line-height: 1.05;
}

.hero-line {
  font-size: clamp(19px, 2.6vw, 30px);
  line-height: 1.18;
  margin-bottom: 34px;
  max-width: 620px;
}

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

.button {
  align-items: center;
  border: 1px solid var(--ink);
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: var(--paper-strong);
}

.button.secondary {
  background: rgba(255, 250, 240, 0.68);
}

.button.wide {
  width: 100%;
}

.fine-print {
  color: rgba(23, 23, 19, 0.66);
  font-size: 13px;
  margin: 14px 0 0;
}

.proof-band {
  background: var(--green);
  color: var(--paper-strong);
  padding: 22px clamp(20px, 5vw, 78px);
}

.proof-band p {
  font-size: clamp(18px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.08;
  margin: 0;
  max-width: 1120px;
}

.section,
.detail {
  padding: clamp(74px, 10vw, 128px) clamp(20px, 5vw, 78px);
}

.section-heading {
  max-width: 920px;
}

.workflow {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
}

.workflow article {
  border-right: 1px solid var(--line);
  min-height: 280px;
  padding: 28px 28px 0 0;
}

.workflow article:last-child {
  border-right: 0;
}

.service-links a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.workflow p,
.detail-copy p,
.signup-flow,
.footer p {
  color: rgba(23, 23, 19, 0.72);
  font-size: 17px;
  line-height: 1.55;
}

.step {
  color: var(--gold);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 52px;
}

.detail {
  align-items: center;
  background: var(--paper-strong);
  display: grid;
  gap: clamp(36px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
}

.detail-copy {
  max-width: 700px;
}

.email-preview {
  background: var(--ink);
  color: var(--paper-strong);
  padding: clamp(22px, 4vw, 38px);
}

.email-topline {
  align-items: center;
  border-bottom: 1px solid rgba(255, 250, 240, 0.18);
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
}

.email-topline span,
.email-item em {
  color: var(--gold);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.email-item {
  display: grid;
  gap: 8px;
  padding: 18px 0;
}

.email-item + .email-item {
  border-top: 1px solid rgba(255, 250, 240, 0.14);
}

.email-item b {
  color: var(--green-soft);
  font-size: 13px;
  text-transform: uppercase;
}

.email-item span {
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.12;
}

.email-item.skip {
  opacity: 0.55;
}

.pricing {
  background: var(--green-soft);
}

.price-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 6vw, 88px);
  grid-template-columns: minmax(280px, 430px) minmax(260px, 520px);
  margin-top: 48px;
}

.price-card {
  background: var(--paper-strong);
  border: 1px solid var(--ink);
  display: grid;
  gap: 28px;
  padding: 28px;
}

.plan-name {
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 8px;
}

.price {
  font-size: clamp(54px, 7vw, 84px);
  font-weight: 900;
  line-height: 0.9;
  margin: 0;
}

.price span {
  font-size: 18px;
}

.rate-note {
  color: rgba(23, 23, 19, 0.7);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  margin: 14px 0 0;
}

.price-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-card li {
  border-top: 1px solid var(--line);
  font-weight: 700;
  padding: 13px 0;
}

.signup-flow {
  border-top: 1px solid rgba(23, 23, 19, 0.28);
  padding-top: 28px;
}

.signup-flow h3 {
  font-size: clamp(26px, 3.4vw, 42px);
  margin-bottom: 22px;
}

.signup-flow ol {
  display: grid;
  gap: 18px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.signup-flow li {
  border-bottom: 1px solid rgba(23, 23, 19, 0.16);
  padding-bottom: 16px;
}

.signup-flow strong {
  color: var(--ink);
  display: block;
}

.text-link {
  color: var(--green);
  display: block;
  font-weight: 900;
  margin-top: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer {
  padding: 28px clamp(20px, 5vw, 78px) 44px;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}

.footer nav a {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}

.footer p {
  font-size: 13px;
  margin: 0;
  max-width: 820px;
}

.policy-page {
  background:
    linear-gradient(115deg, rgba(246, 241, 231, 0.98) 0%, rgba(246, 241, 231, 0.7) 50%, rgba(17, 98, 77, 0.12) 100%),
    var(--paper);
  min-height: 100svh;
  padding: 112px clamp(20px, 5vw, 78px) 72px;
}

.policy-content {
  max-width: 860px;
}

.policy-content h1 {
  font-size: clamp(54px, 8vw, 108px);
  margin-bottom: 34px;
}

.policy-content h2 {
  font-size: clamp(26px, 3.2vw, 42px);
  margin: 42px 0 12px;
}

.policy-content p,
.policy-content li {
  color: rgba(23, 23, 19, 0.76);
  font-size: 17px;
  line-height: 1.65;
}

.policy-content ul {
  padding-left: 22px;
}

.policy-content a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sample-email {
  display: grid;
  gap: 18px;
  margin: 34px 0;
}

.question-list {
  display: grid;
  gap: 20px;
  margin: 34px 0;
}

.question-list div {
  border-top: 1px solid rgba(23, 23, 19, 0.18);
  padding-top: 18px;
}

.question-list span {
  color: var(--gold);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
}

.question-list h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  margin-bottom: 12px;
}

.sample-form {
  border-top: 1px solid rgba(23, 23, 19, 0.18);
  display: grid;
  gap: 20px;
  margin-top: 34px;
  padding-top: 28px;
}

.sample-form label {
  color: var(--ink-muted);
  display: grid;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
}

.sample-form input,
.sample-form textarea {
  background: rgba(255, 250, 240, 0.8);
  border: 1px solid rgba(23, 23, 19, 0.22);
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

.sample-form textarea {
  resize: vertical;
}

.sample-form input:focus,
.sample-form textarea:focus {
  border-color: var(--green);
  outline: 2px solid rgba(16, 107, 80, 0.18);
}

.hidden-field {
  display: none;
}

.sample-item {
  border-top: 1px solid rgba(23, 23, 19, 0.18);
  padding-top: 18px;
}

.sample-item h2 {
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.sample-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.sample-item.muted {
  opacity: 0.68;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: rise 700ms ease both;
  }

  .signal-sweep {
    animation: sweep 5.5s ease-in-out infinite alternate;
  }

  .feed-row {
    animation: drift 4s ease-in-out infinite alternate;
  }

  .feed-row:nth-child(2) {
    animation-delay: 400ms;
  }

  .feed-row:nth-child(3) {
    animation-delay: 800ms;
  }

  .feed-row:nth-child(4) {
    animation-delay: 1200ms;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sweep {
  from {
    opacity: 0.38;
    right: 16%;
  }
  to {
    opacity: 0.72;
    right: 34%;
  }
}

@keyframes drift {
  from {
    transform: translateX(14px);
  }
  to {
    transform: translateX(-8px);
  }
}

@media (max-width: 900px) {
  .topbar {
    position: absolute;
  }

  .topbar nav {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-top: 104px;
  }

  .signal-grid {
    mask-image: linear-gradient(180deg, transparent 0%, black 22%, black 100%);
  }

  .lead-feed {
    bottom: auto;
    left: auto;
    margin-top: 34px;
    position: relative;
    right: auto;
    top: auto;
    width: auto;
  }

  .feed-row {
    grid-template-columns: 36px 1fr;
  }

  .feed-row em {
    grid-column: 2;
  }

  .hero-copy {
    max-width: 590px;
  }

  h1 {
    font-size: clamp(62px, 18vw, 112px);
  }

  .hero-line {
    max-width: 420px;
  }

  .workflow,
  .detail,
  .price-layout {
    grid-template-columns: 1fr;
  }

  .workflow article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: auto;
    padding: 28px 0;
  }

  .workflow article:last-child {
    border-bottom: 0;
  }

  .step {
    margin-bottom: 26px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-bottom: 34px;
  }

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

  .button {
    width: 100%;
  }

  .lead-feed {
    gap: 8px;
  }

  .feed-row:nth-child(n + 3) {
    display: none;
  }

  .feed-row {
    min-height: 56px;
    padding: 10px 12px;
  }
}
