:root {
  --bg: #f8f6f2;
  --bg2: #f1ede6;
  --surface: #ffffff;
  --surface-muted: #f9f7f3;
  --text: #14120f;
  --muted: #5e5952;
  --line: #e3ded6;
  --accent: #c07a3c;
  --accent2: #8b5a3c;
  --ink: #0f0f0f;
  --shadow: 0 28px 60px rgba(20, 17, 12, 0.14);
  --radius: 18px;
  --radius2: 28px;
}

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

html,
body {
  height: 100%;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(900px 600px at 8% -10%, #f6eadb, transparent 60%),
    radial-gradient(900px 600px at 92% 10%, #efe6d6, transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  font-family: "Work Sans", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration-color: rgba(20, 18, 15, 0.24);
  text-underline-offset: 4px;
}

a,
button {
  -webkit-tap-highlight-color: rgba(20, 18, 15, 0.12);
  touch-action: manipulation;
}

a:hover {
  text-decoration-color: rgba(20, 18, 15, 0.5);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(192, 122, 60, 0.5);
  outline-offset: 2px;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 16px;
  padding: 10px 12px;
  background: #111111;
  color: #ffffff;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
}

.skip:focus-visible {
  left: 16px;
}

.header {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}

.nav > * {
  min-width: 0;
}

.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}

.brand__mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--accent), var(--accent2));
  box-shadow:
    0 0 0 4px rgba(192, 122, 60, 0.15),
    0 16px 40px rgba(20, 17, 12, 0.18);
}

.brand__name {
  font-weight: 650;
  letter-spacing: 0.2px;
}

.nav__links {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav__links a {
  text-decoration: none;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
}

.nav__links a:hover {
  color: var(--text);
  background: rgba(20, 18, 15, 0.06);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 22px 0 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(192, 122, 60, 0.18);
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Iowan Old Style", "Times New Roman", serif;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  text-wrap: balance;
}

h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  text-wrap: balance;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.lead {
  margin: 0 0 18px;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 58ch;
}

.hero__cta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 18px 0 10px;
}

.fine {
  margin: 12px 0 0;
  color: rgba(20, 18, 15, 0.6);
  font-size: 0.92rem;
}

.fine--center {
  text-align: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 16px;
  border: 1px solid #111111;
  background: #111111;
  color: #ffffff;
  font-weight: 650;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(20, 17, 12, 0.18);
  transition: transform 0.2s ease;
  touch-action: manipulation;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(20, 17, 12, 0.2);
}

.button--secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.button--ghost {
  background: transparent;
  color: var(--text);
  border-color: transparent;
  box-shadow: none;
}

.hero__card {
  position: relative;
  padding: 24px;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 320px at 20% 10%, #f3dcc4, transparent 60%),
    radial-gradient(360px 260px at 90% 40%, #ead7c5, transparent 60%);
  filter: blur(20px);
  z-index: -1;
}

.glass {
  border-radius: var(--radius2);
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.glass__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

.kbd {
  font-weight: 700;
  border: 1px solid var(--line);
  background: var(--surface-muted);
  padding: 4px 8px;
  border-radius: 10px;
}

.glass__title {
  color: var(--muted);
  font-weight: 600;
}

.status {
  margin-left: auto;
  color: #1d6f42;
  font-weight: 650;
  border: 1px solid #c6e6d2;
  background: #e9f6ef;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.prompt {
  margin: 0 0 12px;
  color: var(--muted);
}

.answer {
  margin: 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-muted);
}

.chips {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.chips span {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  background: var(--surface-muted);
  padding: 6px 10px;
  border-radius: 999px;
}

.logos {
  padding: 26px 0;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logos > * {
  min-width: 0;
}

.logo-rail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
}

.logo-img {
  height: 20px;
  width: auto;
  display: block;
}

.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-row li {
  padding-left: 16px;
  position: relative;
}

.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.muted {
  color: var(--muted);
}

.logo-row {
  display: flex;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.logo-row li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  color: var(--muted);
}

.section {
  padding: 62px 0;
  scroll-margin-top: 96px;
}

.section--alt {
  background: var(--surface-muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
  max-width: 70ch;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 18px;
  box-shadow: 0 1px 0 rgba(20, 17, 12, 0.04);
  transition: transform 0.2s ease;
}

.card:hover {
  border-color: rgba(20, 17, 12, 0.2);
  box-shadow: 0 16px 40px rgba(20, 17, 12, 0.12);
  transform: translateY(-2px);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.steps {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.steps li {
  margin: 10px 0;
}

.panel {
  border-radius: var(--radius2);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
}

.checklist {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding-left: 26px;
  position: relative;
  margin: 10px 0;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(120deg, #c07a3c, #8b5a3c);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.price {
  position: relative;
}

.price__tag {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin: 10px 0 8px;
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.price ul {
  margin: 12px 0 18px;
  padding-left: 18px;
  color: var(--muted);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #f3ece2;
  color: #6c4a2e;
}

.price--featured {
  border-color: #e3c7a9;
  background: linear-gradient(180deg, #fbf5ed, #ffffff);
}

.faq {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: start;
}

.accordion details {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 12px;
}

.accordion summary {
  cursor: pointer;
  font-weight: 650;
}

.accordion p {
  margin: 10px 0 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: start;
}

.contact__list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

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

label span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 12px 12px;
  font: inherit;
  box-shadow: 0 1px 0 rgba(20, 17, 12, 0.04);
}

button.button {
  cursor: pointer;
}

.footer {
  padding: 26px 0 36px;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.footer__inner > * {
  min-width: 0;
}

.footer__links {
  display: flex;
  gap: 14px;
}

.thanks .card {
  margin-top: 40px;
}

@media (max-width: 920px) {
  .hero,
  .split,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }
  .grid,
  .pricing {
    grid-template-columns: 1fr;
  }
  .nav__links {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
a,
p,
li {
  overflow-wrap: break-word;
}
