/* ------------------------------------------------------------------
   JobSign marketing site
   Design system: "Signed paper" — warm paper surfaces, deep ink green,
   Fraunces display serif + Inter, hairline rules, pill actions.
------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --paper: #f6f4ee;
  --paper-2: #efece3;
  --card: #fdfcf9;
  --ink: #121b16;
  --ink-soft: #31403a;
  --muted: #5c6963;
  --line: rgba(18, 27, 22, 0.13);
  --line-soft: rgba(18, 27, 22, 0.07);
  --green: #0d5a41;
  --green-deep: #0a4030;
  --green-ink: #0b1510;
  --green-tint: #e2ebe5;
  --green-bright: #8fc8af;
  --amber: #d99c1a;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --script: "Caveat", "Bradley Hand", cursive;
  --shadow-lg: 0 1px 2px rgba(18, 27, 22, 0.06), 0 12px 32px rgba(18, 27, 22, 0.10), 0 32px 64px -24px rgba(18, 27, 22, 0.18);
  --shadow-md: 0 1px 2px rgba(18, 27, 22, 0.05), 0 10px 28px -8px rgba(18, 27, 22, 0.14);
  --shadow-sm: 0 1px 2px rgba(18, 27, 22, 0.05), 0 4px 12px -2px rgba(18, 27, 22, 0.08);
  --r-card: 20px;
  --r-input: 12px;
  --max: 1140px;
  --gutter: clamp(20px, 4vw, 40px);
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
summary {
  font: inherit;
}

button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

section {
  scroll-margin-top: 104px;
}

h1, h2, h3, p, dl, dd {
  margin: 0;
}

.wrap {
  width: min(100% - var(--gutter) * 2, var(--max));
  margin-inline: auto;
}

/* ---------- type ---------- */

.display {
  font-family: var(--serif);
  font-weight: 590;
  font-variation-settings: "opsz" 90;
  letter-spacing: -0.015em;
  line-height: 1.04;
}

.display em {
  font-style: italic;
  font-weight: 540;
  color: var(--green);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--amber);
}

.lede {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

/* ---------- a11y ---------- */

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  transform: translateY(-160%);
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-weight: 600;
}

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

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- header ---------- */

.site-header,
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: linear-gradient(to bottom, rgba(246, 244, 238, 0.92), rgba(246, 244, 238, 0.78));
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms ease, background 240ms ease;
}

.site-header.is-scrolled,
.header.is-scrolled {
  border-bottom-color: var(--line-soft);
}

.header-row,
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - var(--gutter) * 2, var(--max));
  margin-inline: auto;
  height: 72px;
}

.brand,
.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 620;
  letter-spacing: -0.01em;
}

.brand img,
.header-logo img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 550;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  color: var(--ink);
  background: rgba(18, 27, 22, 0.06);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ---------- buttons ---------- */

.button,
.nav-cta,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta,
.header-cta {
  min-height: 42px;
  padding: 0 20px;
  font-size: 14px;
}

.button-primary,
.nav-cta,
.header-cta {
  color: #fdfdfb;
  background: linear-gradient(to bottom, #11684c, var(--green) 45%, var(--green-deep));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 1px 2px rgba(10, 64, 48, 0.4), 0 8px 20px -6px rgba(10, 64, 48, 0.45);
}

.button-primary:hover,
.nav-cta:hover,
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 2px 4px rgba(10, 64, 48, 0.4), 0 12px 26px -6px rgba(10, 64, 48, 0.5);
}

.button-quiet {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
}

.button-quiet:hover {
  border-color: rgba(18, 27, 22, 0.3);
  background: rgba(255, 255, 255, 0.6);
}

.button .arrow {
  transition: transform 160ms ease;
}

.button:hover .arrow {
  transform: translateX(3px);
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 168px 0 96px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(820px 540px at 86% -10%, rgba(13, 90, 65, 0.09), transparent 70%),
    radial-gradient(640px 420px at -8% 32%, rgba(217, 156, 26, 0.07), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(40px, 6vw, 84px);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 26px;
  padding: 8px 16px 8px 12px;
  border: 1px solid rgba(13, 90, 65, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 600;
}

.hero-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 90, 65, 0.16);
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(46px, 5.4vw, 74px);
  max-width: 13ch;
}

.u-mark {
  position: relative;
  margin-right: 0.06em;
  white-space: nowrap;
}

.u-mark svg {
  position: absolute;
  left: -2%;
  bottom: -0.14em;
  width: 104%;
  height: 0.34em;
  color: var(--amber);
}

.hero .lede {
  max-width: 47ch;
  margin-bottom: 36px;
  font-size: clamp(17px, 1.6vw, 19px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 550;
}

.check-dot {
  display: inline-grid;
  place-items: center;
  flex: none;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-tint);
}

.check-dot svg {
  width: 11px;
  height: 11px;
}

/* hero visual */

.hero-art {
  position: relative;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 10 / 11;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(18, 27, 22, 0.06);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
}

.float-card {
  position: absolute;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.hero-chip {
  top: 22px;
  left: -16px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px 11px 12px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 650;
  color: var(--green-deep);
  animation: drift 7s ease-in-out infinite;
}

.hero-chip .check-dot {
  width: 24px;
  height: 24px;
  color: #fff;
  background: var(--green);
}

.hero-chip .check-dot svg {
  width: 12px;
  height: 12px;
}

.hero-sig {
  left: -34px;
  bottom: 34px;
  width: min(64%, 264px);
  padding: 18px 20px 14px;
  animation: drift 7s ease-in-out 1.2s infinite;
}

.hero-sig .sig-label {
  display: block;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-sig .sig-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.hero-sig .sig-name {
  font-family: var(--script);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
  transform: rotate(-2deg);
}

.hero-sig .sig-amount {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 620;
  color: var(--green);
}

.hero-sig .sig-line {
  height: 1px;
  margin-top: 2px;
  background: var(--line);
}

.hero-sig .sig-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11.5px;
  white-space: nowrap;
}

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

/* ---------- trades strip ---------- */

.trades-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.42);
}

.trades-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: clamp(20px, 3.4vw, 44px);
  row-gap: 10px;
  padding: 22px 0;
}

.trades-row .trades-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trades-row span:not(.trades-label) {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 16.5px;
  font-style: italic;
  font-weight: 540;
  opacity: 0.85;
}

.trades-row span:not(.trades-label)::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
}

/* ---------- sections ---------- */

.section {
  padding: clamp(84px, 10vw, 132px) 0;
}

.section-head {
  max-width: 660px;
  margin-bottom: clamp(44px, 6vw, 68px);
}

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

.section-head.centered .eyebrow {
  justify-content: center;
}

.section-head h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.8vw, 52px);
}

.section-head .lede {
  max-width: 56ch;
}

.section-head.centered .lede {
  margin-inline: auto;
}

/* ---------- flow (scroll-driven) ---------- */

.flow-section {
  padding-bottom: 0;
}

.flow-track {
  position: relative;
  height: 380vh;
}

.flow-pin {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.flow-pin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.flow-steps {
  position: relative;
  display: grid;
  align-content: start;
  padding-left: 26px;
}

.flow-rail {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: var(--line-soft);
  overflow: hidden;
}

.flow-rail-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(to bottom, var(--green), var(--amber));
  transform: scaleY(0);
  transform-origin: top;
  will-change: transform;
}

.flow-step {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 18px;
  padding: 22px 18px 22px 6px;
  border-top: 1px solid var(--line-soft);
  border-radius: 0;
  text-align: left;
  color: var(--muted);
  transition: background 200ms ease, padding 200ms ease;
}

.flow-step:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.flow-step .step-num {
  grid-row: span 2;
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 540;
  line-height: 1.15;
  color: rgba(18, 27, 22, 0.26);
  transition: color 200ms ease;
}

.flow-step strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 640;
  letter-spacing: -0.01em;
}

.flow-step small {
  display: block;
  max-width: 38ch;
  margin-top: 5px;
  font-size: 14.5px;
  line-height: 1.5;
}

.flow-step:hover {
  background: rgba(255, 255, 255, 0.55);
}

.flow-step.is-active .step-num {
  color: var(--amber);
}

.flow-step.is-active {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 3px 0 0 var(--green);
  padding-left: 16px;
}

.flow-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(560px 360px at 88% 0%, rgba(13, 90, 65, 0.10), transparent 70%),
    linear-gradient(160deg, #fdfcf9, #f1eee6);
  box-shadow: var(--shadow-md);
}

.screen-stage {
  display: grid;
  grid-template-columns: minmax(200px, 270px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(26px, 3.4vw, 44px);
  padding: clamp(28px, 3.6vw, 48px);
}

.phone-device {
  position: relative;
  overflow: hidden;
  border: 6px solid #11150f;
  border-radius: 38px;
  background: #f7f8f7;
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.4), var(--shadow-lg);
}

.phone-device img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.stage-phone {
  aspect-ratio: 390 / 800;
  width: 100%;
  will-change: transform;
}

.flow-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 480ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.flow-screen.is-active {
  opacity: 1;
  transform: scale(1);
}

.stage-notes {
  display: grid;
}

.stage-notes .stage-note {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 460ms cubic-bezier(0.16, 1, 0.3, 1), transform 460ms cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.stage-notes .stage-note.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 120ms;
}

.stage-note span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.stage-note strong {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 590;
  letter-spacing: -0.01em;
  line-height: 1.12;
}

.stage-note p {
  max-width: 34ch;
  color: var(--muted);
  font-size: 15.5px;
}

@media (min-width: 1021px) and (max-height: 780px) {
  .screen-stage {
    grid-template-columns: minmax(170px, 215px) minmax(0, 1fr);
    padding: clamp(20px, 2.6vw, 32px);
  }
}

/* ---------- dark sections shared ---------- */

.dark-section {
  position: relative;
  color: #f2f4ee;
  background:
    radial-gradient(900px 500px at 84% 0%, rgba(13, 90, 65, 0.35), transparent 65%),
    radial-gradient(700px 460px at 0% 100%, rgba(13, 90, 65, 0.22), transparent 65%),
    var(--green-ink);
}

.dark-section .eyebrow {
  color: var(--green-bright);
}

.dark-section .lede {
  color: rgba(242, 244, 238, 0.62);
}

.dark-section .display em {
  color: var(--green-bright);
}

/* ---------- signing ---------- */

.signing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  padding: clamp(88px, 10vw, 132px) 0;
}

.signing-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.6vw, 48px);
}

.signing-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.signing-list > span {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 2px;
  border-top: 1px solid rgba(242, 244, 238, 0.12);
  color: rgba(242, 244, 238, 0.88);
  font-size: 15.5px;
  font-weight: 550;
}

.signing-list > span:last-child {
  border-bottom: 1px solid rgba(242, 244, 238, 0.12);
}

.signing-list .check-dot {
  color: var(--green-bright);
  background: rgba(143, 200, 175, 0.14);
}

.signing-visual {
  position: relative;
}

.section-scene {
  width: 100%;
  border-radius: var(--r-card);
  object-fit: cover;
}

.dark-scene {
  aspect-ratio: 16 / 11;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

/* ---------- proof ---------- */

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  align-items: center;
  gap: clamp(40px, 6vw, 84px);
}

.proof-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.6vw, 48px);
}

.paper-scene {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-lg);
}

.proof-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.proof-list > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
}

.proof-list > div:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.proof-list .check-dot {
  width: 24px;
  height: 24px;
  margin-top: 1px;
}

.proof-list .check-dot svg {
  width: 12px;
  height: 12px;
}

.proof-list dt {
  font-weight: 650;
  letter-spacing: -0.01em;
}

.proof-list dd {
  grid-column: 2;
  margin-top: 3px;
  color: var(--muted);
  font-size: 15px;
}

/* ---------- features ---------- */

.features-section {
  background:
    radial-gradient(720px 420px at 8% 0%, rgba(13, 90, 65, 0.06), transparent 70%),
    var(--paper-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--line-soft);
  box-shadow: var(--shadow-sm);
}

.feature-grid article {
  padding: clamp(26px, 3vw, 38px);
  background: var(--card);
  transition: background 200ms ease;
}

.feature-grid article:hover {
  background: #fffef9;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 13px;
  color: var(--green);
  background: var(--green-tint);
  box-shadow: inset 0 0 0 1px rgba(13, 90, 65, 0.12);
}

.feature-icon svg {
  width: 21px;
  height: 21px;
}

.feature-grid h3 {
  margin-bottom: 8px;
  font-size: 17.5px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.feature-grid p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---------- pricing ---------- */

.pricing-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  max-width: 880px;
  margin-inline: auto;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.price-card .plan-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan-tag {
  display: inline-flex;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(217, 156, 26, 0.16);
  color: #8a6206;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 590;
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-card .price small {
  font-family: var(--sans);
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.price-card .plan-for {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
}

.price-card ul {
  display: grid;
  gap: 0;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 500;
}

.price-card .button {
  margin-top: auto;
  width: 100%;
}

.price-card.pro {
  position: relative;
  color: #f2f4ee;
  border-color: rgba(13, 90, 65, 0.5);
  background:
    radial-gradient(420px 300px at 90% -10%, rgba(143, 200, 175, 0.16), transparent 70%),
    linear-gradient(165deg, #11271e, var(--green-ink) 70%);
  box-shadow: var(--shadow-lg);
}

.price-card.pro .plan-name {
  color: var(--green-bright);
}

.price-card.pro .plan-for,
.price-card.pro .price small {
  color: rgba(242, 244, 238, 0.6);
}

.price-card.pro li {
  border-top-color: rgba(242, 244, 238, 0.12);
  color: rgba(242, 244, 238, 0.88);
}

.price-card.pro .check-dot {
  color: var(--green-bright);
  background: rgba(143, 200, 175, 0.14);
}

.price-card.pro .button {
  color: var(--green-ink);
  background: #f2f4ee;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.5);
}

.price-card.pro .button:hover {
  background: #fff;
  transform: translateY(-1px);
}

.pricing-note {
  max-width: 620px;
  margin: 26px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
}

/* ---------- download band ---------- */

.download-band {
  padding: clamp(84px, 10vw, 128px) 0;
  text-align: center;
}

.download-band .eyebrow {
  justify-content: center;
}

.download-band h2 {
  max-width: 17ch;
  margin: 0 auto 18px;
  font-size: clamp(36px, 4.4vw, 58px);
}

.download-band .lede {
  max-width: 44ch;
  margin: 0 auto 38px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.store-pill {
  display: grid;
  gap: 2px;
  min-width: 250px;
  padding: 14px 26px;
  text-align: left;
  border: 1px solid rgba(242, 244, 238, 0.18);
  border-radius: 16px;
  background: rgba(242, 244, 238, 0.05);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.store-pill:not(.muted):hover {
  transform: translateY(-2px);
  border-color: rgba(242, 244, 238, 0.4);
  background: rgba(242, 244, 238, 0.1);
}

.store-pill span {
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.store-pill strong {
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.01em;
}

.store-pill.muted {
  opacity: 0.55;
}

.band-sig {
  width: 130px;
  margin: 46px auto 0;
  color: var(--amber);
  opacity: 0.9;
}

/* ---------- faq ---------- */

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.faq-grid .section-head {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
}

@media (max-width: 1020px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .faq-grid .section-head {
    margin-bottom: 28px;
  }
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding: 22px 44px 22px 2px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 620;
  letter-spacing: -0.01em;
  transition: color 160ms ease;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary:hover {
  color: var(--green);
}

.faq-list summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 12px;
  height: 12px;
  translate: 0 -50%;
  background:
    linear-gradient(var(--ink-soft), var(--ink-soft)) center / 12px 1.5px no-repeat,
    linear-gradient(var(--ink-soft), var(--ink-soft)) center / 1.5px 12px no-repeat;
  transition: transform 220ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list p {
  max-width: 64ch;
  padding: 0 2px 24px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
}

/* ---------- footer ---------- */

.site-footer,
.footer {
  color: rgba(242, 244, 238, 0.62);
  background: var(--green-ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 5vw, 72px);
  padding: clamp(56px, 7vw, 80px) 0 48px;
}

.footer-brand,
.footer-left {
  display: block;
}

.footer-brand .brand,
.footer-left .brand {
  color: #f2f4ee;
  margin-bottom: 14px;
}

.footer-tagline {
  max-width: 30ch;
  font-size: 14.5px;
  line-height: 1.6;
}

.footer-sig {
  width: 96px;
  margin-top: 22px;
  color: var(--amber);
  opacity: 0.75;
}

.footer-col h3 {
  margin-bottom: 16px;
  color: rgba(242, 244, 238, 0.45);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-col nav,
.footer-links {
  display: grid;
  gap: 11px;
  font-size: 14.5px;
}

.footer-col a,
.footer-links a {
  width: fit-content;
  color: rgba(242, 244, 238, 0.78);
  transition: color 150ms ease;
}

.footer-col a:hover,
.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(242, 244, 238, 0.1);
  font-size: 13px;
  color: rgba(242, 244, 238, 0.4);
}

.footer-bottom p {
  margin: 0;
}

/* ---------- legal / support pages ---------- */

.legal-page,
.legal {
  width: min(100% - var(--gutter) * 2, 820px);
  margin-inline: auto;
  padding: 150px 0 96px;
}

.legal-hero {
  margin-bottom: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1,
.legal h1 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-weight: 590;
  letter-spacing: -0.015em;
  font-size: clamp(36px, 4.6vw, 54px);
  line-height: 1.05;
}

.legal-hero p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.legal-date,
.legal .date {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legal-date::before,
.legal .date::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--amber);
}

.legal-content {
  display: grid;
}

.legal-section {
  padding: 30px 0;
  border-bottom: 1px solid var(--line-soft);
}

.legal-section:last-child {
  border-bottom: 0;
}

.legal-section h2,
.legal h2 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.legal h2 {
  margin-top: 36px;
}

.legal-section h3 {
  margin: 20px 0 8px;
  font-size: 16px;
  font-weight: 650;
}

.legal-section p,
.legal-section li,
.legal p,
.legal li {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.legal-section p {
  margin: 0 0 12px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul,
.legal-section ol,
.legal ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
}

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

.legal-section a,
.legal a,
.support-link {
  color: var(--green);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.legal-section a:hover,
.legal a:hover,
.support-link:hover {
  text-decoration: underline;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.support-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.support-card h2,
.support-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 650;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- reveal ---------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

html:not(.js) [data-reveal],
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .site-nav {
    display: none;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero h1 {
    max-width: 15ch;
  }

  .hero-art {
    max-width: 560px;
  }

  .hero-photo {
    aspect-ratio: 5 / 4;
  }

  .flow-section {
    padding-bottom: clamp(84px, 10vw, 132px);
  }

  .flow-track {
    height: auto;
  }

  .flow-pin {
    position: static;
    height: auto;
    overflow: visible;
  }

  .flow-pin-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .flow-rail {
    display: none;
  }

  .flow-steps {
    padding-left: 0;
  }

  .signing-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid .proof-art {
    order: -1;
  }

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

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

@media (max-width: 640px) {
  .header-row,
  .header-inner {
    height: 64px;
  }

  .button-quiet.hero-secondary {
    display: none;
  }

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

  .hero-chip {
    left: 12px;
    top: 14px;
  }

  .hero-sig {
    left: 12px;
    bottom: 16px;
  }

  .hero-sig .sig-name {
    font-size: 28px;
  }

  .trades-row {
    column-gap: 18px;
    padding: 18px 0;
  }

  .trades-row span:not(.trades-label) {
    font-size: 15px;
  }

  .screen-stage {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 28px;
  }

  .stage-phone {
    width: min(66vw, 250px);
  }

  .stage-note p {
    margin-inline: auto;
  }

  .stage-note {
    max-width: 40ch;
  }

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

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .download-actions,
  .store-pill {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .legal-page,
  .legal {
    padding-top: 120px;
  }
}
