:root {
  color-scheme: light;
  --background: #eeeeee;
  --surface: #f6f4f2;
  --card: #ffffff;
  --foreground: #2b1809;
  --dark: #251b13;
  --dark-soft: rgba(37, 27, 19, 0.66);
  --dark-muted: rgba(37, 27, 19, 0.44);
  --dark-faint: rgba(37, 27, 19, 0.06);
  --line: rgba(43, 24, 9, 0.1);
  --line-strong: rgba(43, 24, 9, 0.18);
  --white-soft: rgba(246, 244, 242, 0.9);
  --blue: #40586f;
  --green: #516f5e;
  --gold: #946c32;
  --red: #9a3d35;
  --shadow: 0 24px 70px rgba(27, 20, 14, 0.22);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans TC",
    "Microsoft JhengHei",
    sans-serif;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-chrome {
  position: fixed;
  inset: 16px 16px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}

.chrome-icon,
.brand,
.top-nav {
  pointer-events: auto;
}

.chrome-icon {
  justify-self: start;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(37, 27, 19, 0.26);
  color: var(--surface);
  backdrop-filter: blur(16px);
  font-size: 15px;
  font-weight: 700;
}

.brand {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  gap: 9px;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(37, 27, 19, 0.38);
  color: var(--surface);
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  background: rgba(246, 244, 242, 0.94);
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
}

.brand-word {
  font-size: 14px;
  font-weight: 700;
}

.top-nav {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 40px;
  border-radius: 999px;
  padding: 4px;
  background: rgba(37, 27, 19, 0.32);
  color: var(--surface);
  backdrop-filter: blur(18px);
}

.top-nav a {
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 14px;
  font-weight: 650;
}

.top-nav a:hover,
.chrome-icon:hover {
  background: rgba(255, 255, 255, 0.14);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: 92px 16px 74px;
  text-align: center;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background: var(--dark);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
  filter: saturate(0.9) contrast(0.96);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(37, 27, 19, 0.42), rgba(37, 27, 19, 0.62)),
    linear-gradient(90deg, rgba(37, 27, 19, 0.62), rgba(37, 27, 19, 0.3) 52%, rgba(37, 27, 19, 0.6));
}

.hero-center {
  display: grid;
  width: min(560px, 100%);
  justify-items: center;
  gap: 24px;
}

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

.hero h1 {
  margin: 0;
  color: var(--surface);
  font-size: 31px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.28);
}

.clerk-card {
  display: grid;
  width: 100%;
  min-height: 148px;
  border-radius: 16px;
  padding: 16px;
  background: rgba(247, 245, 242, 0.97);
  box-shadow: var(--shadow);
  text-align: left;
  backdrop-filter: blur(18px);
  cursor: text;
  transition:
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.clerk-card:focus-within {
  background: rgba(250, 248, 245, 0.99);
  box-shadow:
    0 0 0 2px rgba(246, 244, 242, 0.7),
    0 26px 76px rgba(27, 20, 14, 0.25);
}

.clerk-card.is-idle .thread,
.clerk-card.is-idle .quick-choices {
  display: none;
}

.thread {
  display: grid;
  align-content: start;
  gap: 10px;
  max-height: min(240px, 36svh);
  min-height: 76px;
  margin: 0;
  padding: 2px 2px 12px;
  overflow: auto;
  list-style: none;
}

.message {
  display: grid;
  width: fit-content;
  max-width: min(440px, 94%);
  gap: 4px;
}

.message span {
  color: var(--dark-soft);
  font-size: 12px;
  font-weight: 700;
}

.message p {
  margin: 0;
  border-radius: 13px;
  padding: 10px 12px;
  background: rgba(37, 27, 19, 0.06);
  color: var(--dark);
  white-space: pre-wrap;
}

.message--clerk p {
  background: var(--card);
}

.message--user {
  justify-self: end;
}

.message--user span {
  text-align: right;
}

.message--user p {
  background: rgba(64, 88, 111, 0.13);
}

.message--status p {
  background: transparent;
  color: var(--dark-soft);
}

.quick-choices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 12px;
}

.quick-choices--choice-card {
  border-bottom: 1px solid rgba(37, 27, 19, 0.08);
  padding-bottom: 14px;
}

.choice-button {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--dark);
  font-size: 14px;
  font-weight: 650;
}

.choice-button:hover {
  border-color: var(--line-strong);
}

.choice-button--custom {
  border-style: dashed;
  background: rgba(255, 255, 255, 0.54);
  color: var(--dark-soft);
}

.completion-card {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  border: 1px solid rgba(81, 111, 94, 0.18);
  border-radius: 14px;
  padding: 13px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(37, 27, 19, 0.08);
}

.completion-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(81, 111, 94, 0.1);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.completion-card strong {
  color: var(--dark);
  font-size: 18px;
  line-height: 1.2;
}

.completion-copy {
  margin: 0;
  color: var(--dark-soft);
  font-size: 13px;
}

.completion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.completion-actions button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(37, 27, 19, 0.06);
  color: var(--dark);
  font-weight: 700;
}

.completion-actions button:first-child {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--surface);
}

.composer {
  display: grid;
  min-height: 112px;
  grid-template-rows: 1fr auto;
  gap: 14px;
}

.composer-input-wrap {
  position: relative;
  min-height: 40px;
}

.composer textarea {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 34px;
  max-height: 128px;
  resize: none;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--dark);
  caret-color: var(--dark);
  font-size: 16px;
  line-height: 1.4;
}

.composer textarea::placeholder {
  color: transparent;
  transition: color 0.2s ease;
}

.rolling-placeholder {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  color: rgba(37, 27, 19, 0.5);
  font-size: 16px;
  line-height: 1.4;
  pointer-events: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0.78;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    filter 0.22s ease;
}

.rolling-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.72) 48%, transparent 72%);
  transform: translateX(-120%);
  animation: placeholderShimmer 3.8s ease-in-out infinite;
  mix-blend-mode: screen;
}

.rolling-placeholder.is-changing,
.composer.has-input .rolling-placeholder {
  opacity: 0;
  transform: translateY(2px);
  filter: blur(1px);
}

@keyframes placeholderShimmer {
  0%,
  44% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

.composer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.composer-left {
  display: inline-flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: 8px;
}

.composer-action,
.send-button,
.button,
.artifact-tab {
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.composer-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--foreground);
  font-size: 15px;
  font-weight: 700;
}

.composer-action--ghost {
  color: var(--dark-soft);
  font-weight: 650;
}

.send-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--dark);
  color: var(--surface);
  font-size: 20px;
  font-weight: 800;
}

.composer-action:hover,
.send-button:hover,
.button:hover,
.artifact-tab:hover {
  opacity: 0.82;
}

.composer-action:active,
.send-button:active,
.button:active,
.artifact-tab:active,
.trust-row button:active {
  transform: scale(0.98);
}

.composer-action:disabled,
.send-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.composer-note {
  margin-top: 10px;
  color: var(--dark-soft);
  font-size: 12px;
  line-height: 1.45;
}

.composer-note a {
  color: var(--blue);
  font-weight: 700;
}

.trust-row {
  display: grid;
  width: min(520px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.trust-row button {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(246, 244, 242, 0.18);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(37, 27, 19, 0.3);
  color: rgba(246, 244, 242, 0.9);
  backdrop-filter: blur(14px);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    border-color 0.15s ease;
}

.trust-row button:nth-child(1) {
  transform: none;
}

.trust-row button:nth-child(2) {
  transform: none;
}

.trust-row button:nth-child(3) {
  transform: none;
}

.trust-row button:hover {
  border-color: rgba(246, 244, 242, 0.3);
  opacity: 0.82;
}

.hero-privacy {
  position: absolute;
  left: 50%;
  bottom: 26px;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(246, 244, 242, 0.7);
  font-size: 13px;
}

.workspace-section {
  display: grid;
  width: min(760px, 100%);
  margin: 0 auto;
  padding: 0 16px;
  scroll-margin-top: 78px;
}

.button,
.artifact-tab {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  background: var(--card);
  color: var(--dark);
  font-weight: 650;
}

.button--primary,
.artifact-tab.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--surface);
}

.top-actions,
.artifact-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.toolkit-panel,
.details-panel {
  width: 100%;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(246, 244, 242, 0.98);
  box-shadow: 0 18px 60px rgba(27, 20, 14, 0.1);
  text-align: left;
}

.toolkit-panel__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.toolkit-panel__top span {
  display: inline-block;
  margin-bottom: 6px;
  border-radius: 999px;
  padding: 4px 9px;
  background: var(--green);
  color: var(--surface);
  font-size: 12px;
  font-weight: 800;
}

.toolkit-panel h2,
.details-panel h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.artifact-tabs {
  padding: 12px 16px;
}

.preview-drawer {
  border-top: 1px solid var(--line);
}

.preview-drawer summary,
.details-panel summary {
  padding: 14px 16px;
  color: var(--green);
  font-weight: 700;
  cursor: pointer;
}

.artifact-preview {
  max-height: 340px;
  margin: 0;
  overflow: auto;
  border-top: 1px solid var(--line);
  padding: 16px;
  background: #15181b;
  color: #f3f7f2;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.55;
  white-space: pre-wrap;
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 14px;
  padding: 0 16px 16px;
}

.details-panel section:last-child {
  padding: 0 16px 16px;
}

.facts-list {
  display: grid;
  grid-template-columns: minmax(88px, auto) 1fr;
  gap: 8px 12px;
  margin: 12px 0 0;
}

.facts-list dt {
  color: var(--dark-soft);
  font-size: 13px;
}

.facts-list dd {
  margin: 0;
  overflow-wrap: anywhere;
}

.issues-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.issue-group h4 {
  margin: 0 0 6px;
  color: var(--dark-soft);
  font-size: 13px;
}

.issue-group ul,
.source-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.issue-group li {
  border-left: 3px solid var(--blue);
  padding: 6px 8px;
  background: rgba(64, 88, 111, 0.08);
  font-size: 13px;
}

.issue-group li[data-severity="blocker"] {
  border-left-color: var(--red);
  background: rgba(154, 61, 53, 0.09);
}

.issue-group li[data-severity="warning"],
.issue-group li[data-severity="action"] {
  border-left-color: var(--gold);
  background: rgba(148, 108, 50, 0.1);
}

.muted {
  margin: 0;
  color: var(--dark-soft);
  font-size: 13px;
}

.source-list {
  margin-top: 12px;
}

.source-list li {
  display: grid;
  gap: 2px;
}

.source-list a {
  color: var(--blue);
  overflow-wrap: anywhere;
}

.source-list span {
  color: var(--dark-soft);
  font-size: 12px;
}

.proof-section,
.feature-section,
.review-section,
.answer-section,
.faq-section {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 92px 16px;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.section-heading p,
.faq-label {
  margin: 0;
  color: var(--dark-soft);
  font-size: 14px;
  font-weight: 650;
}

.section-heading h2 {
  max-width: 620px;
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
}

.steps-grid article {
  display: grid;
  min-height: 230px;
  gap: 10px;
  border-right: 1px solid var(--line);
  padding: 28px;
  background: var(--card);
}

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

.steps-grid span {
  display: block;
  color: rgba(37, 27, 19, 0.28);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.steps-grid h3 {
  align-self: end;
  margin: 0;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}

.steps-grid p {
  margin: 0;
  color: var(--dark-soft);
}

.feature-section {
  display: grid;
  gap: 38px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: min(880px, 100%);
  margin: 0 auto;
}

.feature-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  background: var(--card);
}

.feature-card--media {
  background: var(--dark);
  color: var(--surface);
}

.feature-card--media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.58;
  filter: saturate(0.9);
}

.feature-card--media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(37, 27, 19, 0.74));
}

.feature-card--media div,
.feature-card > :not(img) {
  position: relative;
  z-index: 1;
}

.feature-card span {
  width: fit-content;
  margin-bottom: auto;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(43, 24, 9, 0.06);
  color: var(--dark-soft);
  font-size: 13px;
  font-weight: 650;
}

.feature-card h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.feature-card p {
  max-width: 340px;
  margin: 8px 0 0;
  color: inherit;
  opacity: 0.68;
}

.feature-card button,
.review-panel button {
  width: fit-content;
  min-height: 43px;
  margin-top: 22px;
  border: 0;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--dark);
  color: var(--surface);
  font-weight: 700;
}

.review-section {
  width: min(920px, 100%);
  padding-top: 0;
}

.review-panel {
  display: grid;
  min-height: 430px;
  place-content: center;
  justify-items: center;
  border-radius: 16px;
  padding: 48px 24px;
  background:
    linear-gradient(180deg, rgba(37, 27, 19, 0.16), rgba(37, 27, 19, 0.78)),
    url("/assets/first-hire-checklist-v1.jpg") center / cover;
  color: var(--surface);
  text-align: center;
}

.review-panel h2 {
  max-width: 560px;
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.review-panel p {
  max-width: 500px;
  margin: 10px 0 0;
  color: rgba(246, 244, 242, 0.72);
}

.review-panel button {
  background: var(--surface);
  color: var(--dark);
}

.answer-section {
  display: grid;
  gap: 38px;
  padding-top: 0;
}

.answer-grid {
  display: grid;
  width: min(960px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.answer-grid article,
.answer-card {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--dark);
  text-decoration: none;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

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

.answer-grid h3,
.answer-card h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
}

.answer-grid p,
.answer-card p {
  margin: 12px 0 0;
  color: var(--dark-soft);
  line-height: 1.65;
}

.detail-page {
  min-height: 100svh;
  background: var(--surface);
  color: var(--dark);
}

.detail-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  display: flex;
  width: 240px;
  flex-direction: column;
  gap: 18px;
  border-right: 1px solid var(--line);
  padding: 16px 12px;
  background: var(--surface);
}

.detail-logo {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--dark);
  text-decoration: none;
}

.detail-logo span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: var(--dark);
  color: var(--surface);
  font-weight: 800;
}

.detail-logo strong {
  font-size: 15px;
}

.detail-sidebar nav {
  display: grid;
  gap: 4px;
}

.detail-sidebar nav a,
.detail-sidebar-cta {
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--dark);
  font-weight: 650;
  text-decoration: none;
}

.detail-sidebar nav a:hover,
.detail-sidebar nav a[aria-current="page"] {
  background: rgba(43, 24, 9, 0.06);
}

.detail-sidebar-cta {
  margin-top: auto;
  background: var(--dark);
  color: var(--surface);
  text-align: center;
}

.detail-mobile-bar {
  display: none;
}

.detail-main {
  margin-left: 240px;
}

.detail-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--dark);
}

.detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(37, 27, 19, 0.04), rgba(37, 27, 19, 0.78));
}

.detail-hero-copy {
  position: absolute;
  right: 32px;
  bottom: 46px;
  left: 32px;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--surface);
  text-align: center;
}

.detail-hero-copy span,
.detail-kicker {
  color: rgba(246, 244, 242, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.detail-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: 42px;
  font-weight: 750;
  line-height: 1.08;
}

.detail-hero-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(246, 244, 242, 0.76);
  font-size: 16px;
}

.detail-hero-copy a,
.detail-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 18px;
  background: var(--surface);
  color: var(--dark);
  font-weight: 750;
  text-decoration: none;
}

.detail-content {
  display: grid;
  gap: 76px;
  padding: 84px 20px 96px;
}

.detail-block {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.detail-block .detail-kicker,
.detail-faq .detail-kicker {
  color: var(--dark-soft);
}

.detail-block h2 {
  margin: 8px 0 0;
  font-size: 34px;
  line-height: 1.15;
}

.detail-block p:not(.detail-kicker) {
  margin: 18px auto 0;
  color: var(--dark-soft);
  font-size: 16px;
  line-height: 1.75;
}

.detail-grid {
  display: grid;
  width: min(980px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--line);
}

.detail-grid article {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
}

.detail-grid h3 {
  margin: 0;
  font-size: 21px;
}

.detail-grid p {
  margin: 12px 0 0;
  color: var(--dark-soft);
  line-height: 1.68;
}

.detail-faq {
  display: grid;
  width: min(560px, 100%);
  margin: 0 auto;
}

.detail-faq .detail-kicker {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

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

.detail-faq summary {
  padding: 18px 0;
  font-weight: 700;
  cursor: pointer;
}

.detail-faq p {
  margin: -4px 0 18px;
  color: var(--dark-soft);
  line-height: 1.7;
}

.faq-section {
  width: min(680px, 100%);
  padding-top: 0;
}

.faq-section h2 {
  margin: 0 0 54px;
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
}

.faq-label {
  max-width: 560px;
  margin: 0 auto;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  max-width: 560px;
  margin: 0 auto;
}

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

.faq-list summary {
  padding: 18px 0;
  color: var(--dark);
  font-size: 16px;
  font-weight: 650;
  cursor: pointer;
}

.faq-list p {
  margin: -4px 0 18px;
  color: var(--dark-soft);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 26px 16px 34px;
  color: var(--dark-soft);
  font-size: 13px;
}

.site-footer a {
  color: var(--blue);
  font-weight: 700;
}

.checkout-sheet {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(37, 27, 19, 0.42);
  backdrop-filter: blur(10px);
}

.checkout-card {
  display: grid;
  width: min(430px, 100%);
  gap: 10px;
  border: 1px solid rgba(246, 244, 242, 0.42);
  border-radius: 18px;
  padding: 22px;
  background: rgba(247, 245, 242, 0.98);
  box-shadow: 0 28px 90px rgba(27, 20, 14, 0.28);
  text-align: left;
}

.checkout-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(64, 88, 111, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.checkout-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.checkout-card p {
  margin: 0;
  color: var(--dark-soft);
  line-height: 1.65;
}

.checkout-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.checkout-actions button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--dark);
  font-weight: 750;
}

.checkout-actions button:first-child {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--surface);
}

.policy-page {
  min-height: 100svh;
  background:
    linear-gradient(180deg, rgba(81, 111, 94, 0.12), transparent 280px),
    var(--background);
}

.site-chrome--policy .brand,
.site-chrome--policy .top-nav,
.site-chrome--policy .chrome-icon {
  background: rgba(255, 255, 255, 0.72);
  color: var(--dark);
}

.site-chrome--policy .brand-mark {
  background: var(--dark);
  color: var(--surface);
}

.policy-shell {
  display: grid;
  min-height: calc(100svh - 92px);
  padding: 104px 16px 40px;
  place-items: start center;
}

.policy-card {
  width: min(760px, 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 22px 70px rgba(27, 20, 14, 0.1);
}

.policy-card .eyebrow {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.policy-card h1 {
  margin: 0;
  color: var(--dark);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.15;
}

.policy-lead {
  margin: 14px 0 28px;
  color: var(--dark-soft);
  font-size: 18px;
  line-height: 1.65;
}

.policy-card section {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.policy-card h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.policy-card p {
  margin-bottom: 0;
  color: var(--dark-soft);
  line-height: 1.75;
}

.policy-updated {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.site-footer--policy {
  padding-top: 0;
}

@media (max-width: 720px) {
  .site-chrome {
    inset: 16px 14px auto;
    grid-template-columns: 36px 1fr auto;
  }

  .brand {
    justify-self: center;
    padding: 7px 12px;
  }

  .top-nav {
    min-height: 36px;
  }

  .top-nav a {
    padding: 6px 9px;
  }

  .hero {
    padding: 86px 16px 74px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-center {
    gap: 20px;
  }

  .hero h1 {
    font-size: 21px;
  }

  .clerk-card {
    min-height: 140px;
    padding: 16px;
  }

  .composer {
    min-height: 108px;
  }

  .composer-left {
    gap: 7px;
  }

  .composer-action {
    min-height: 37px;
    padding: 8px 13px;
    font-size: 14px;
  }

  .send-button {
    width: 38px;
    height: 38px;
  }

  .trust-row button {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 14px;
  }

  .thread {
    max-height: 30svh;
  }

  .toolkit-panel__top,
  .details-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .proof-section,
  .feature-section,
  .review-section,
  .answer-section,
  .faq-section {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .steps-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

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

  .answer-grid article,
  .answer-card {
    min-height: 0;
  }

  .detail-sidebar {
    display: none;
  }

  .detail-mobile-bar {
    position: fixed;
    inset: 14px 14px auto;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
  }

  .detail-mobile-bar > * {
    pointer-events: auto;
  }

  .detail-mobile-bar > a:last-child {
    border-radius: 999px;
    padding: 9px 13px;
    background: rgba(246, 244, 242, 0.74);
    color: var(--dark);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
    backdrop-filter: blur(12px);
  }

  .detail-main {
    margin-left: 0;
  }

  .detail-hero {
    min-height: 100svh;
  }

  .detail-hero-copy {
    right: 18px;
    bottom: 34px;
    left: 18px;
  }

  .detail-hero-copy h1 {
    font-size: 26px;
  }

  .detail-hero-copy p {
    font-size: 15px;
  }

  .detail-content {
    gap: 54px;
    padding: 64px 16px 78px;
  }

  .detail-block h2 {
    font-size: 27px;
  }

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

  .detail-grid article {
    min-height: 0;
  }

  .feature-card {
    min-height: 360px;
    padding: 22px;
  }

  .feature-card h3 {
    font-size: 25px;
  }

  .review-panel {
    min-height: 360px;
  }

  .section-heading h2,
  .review-panel h2 {
    font-size: 26px;
  }

  .faq-section h2 {
    margin-bottom: 42px;
    font-size: 34px;
  }

  .policy-card {
    padding: 22px;
  }

  .policy-card h1 {
    font-size: 30px;
  }
}

@media (max-width: 390px) {
  .brand-word {
    display: none;
  }

  .top-nav a {
    padding: 6px 8px;
    font-size: 13px;
  }

  .composer-actions {
    gap: 8px;
  }

  .trust-row {
    width: min(176px, 100%);
    grid-template-columns: 1fr;
  }
}
