:root {
  --paper: #f7f0e6;
  --paper-deep: #eee1d1;
  --ink: #2b211e;
  --muted: #74645d;
  --orange: #c55a28;
  --orange-dark: #9e401b;
  --plum: #56384d;
  --gold: #d19a3d;
  --line: rgba(59, 39, 31, .13);
  --white: #fffdf9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.nav { height: 84px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 760; text-decoration: none; letter-spacing: -.02em; }
.brand img { border-radius: 11px; box-shadow: 0 6px 18px rgba(71, 43, 28, .12); }
.nav nav { display: flex; gap: 28px; }
.nav nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
.nav nav a:hover { color: var(--orange-dark); }

.hero { min-height: 690px; padding: 72px 0 90px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 76px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 9px; color: var(--orange-dark); font-weight: 780; font-size: 11px; letter-spacing: .18em; }
.eyebrow span { width: 22px; height: 2px; background: var(--orange); }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.045em; margin: 0; }
h1 { font-size: clamp(56px, 6.5vw, 86px); line-height: .96; }
h1 em { color: var(--orange); font-style: italic; }
.lede { max-width: 600px; color: var(--muted); font-size: 19px; line-height: 1.7; margin: 30px 0; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 12px; font-weight: 720; font-size: 14px; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.primary { color: white; background: var(--orange); box-shadow: 0 12px 24px rgba(157, 61, 21, .18); }
.primary:hover { box-shadow: 0 16px 32px rgba(157, 61, 21, .25); }
.secondary { border: 1px solid var(--line); background: rgba(255,255,255,.46); }
.requirements { color: var(--muted); font-size: 12px; margin-top: 18px; }

.product-card { position: relative; padding: 0 26px 26px; border-radius: 28px; background: var(--white); border: 1px solid rgba(94, 59, 41, .12); box-shadow: 0 38px 90px rgba(72, 44, 30, .16); transform: rotate(1.2deg); }
.product-card::before { content: ""; position: absolute; inset: 10% -7% -8% 10%; border-radius: 44px; background: var(--paper-deep); z-index: -1; transform: rotate(-4deg); }
.window-bar { height: 56px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.window-bar i { width: 10px; height: 10px; border-radius: 50%; background: #dbcab8; }
.window-bar i:first-child { background: #db7655; }
.window-bar span { margin-left: 8px; }
.preview-head { display: flex; justify-content: space-between; padding: 30px 0 18px; }
.preview-head div { display: grid; gap: 4px; }
.preview-head small { color: var(--muted); font-size: 9px; letter-spacing: .14em; }
.preview-head strong { font-family: Georgia, serif; font-size: 43px; font-weight: 500; }
.preview-head span { color: var(--muted); font-size: 12px; }
.preview-head .cost { text-align: right; }
.preview-head .cost strong { color: var(--orange); }
.chart { height: 155px; display: flex; align-items: flex-end; gap: 9px; padding: 22px 4px 0; border-bottom: 1px solid var(--line); background: repeating-linear-gradient(to bottom, transparent 0 38px, rgba(55,35,27,.055) 39px); }
.chart span { flex: 1; min-width: 10px; border-radius: 6px 6px 2px 2px; background: linear-gradient(to top, var(--orange), #dda363); opacity: .86; }
.preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-top: 19px; }
.preview-grid div { display: grid; gap: 5px; padding: 13px 10px; background: #f7f1e9; border-radius: 12px; }
.preview-grid b { font-size: 15px; }.preview-grid span { color: var(--muted); font-size: 10px; }
.sample-note { margin: 10px 2px 0; color: #a4968e; font-size: 9px; text-align: right; text-transform: uppercase; letter-spacing: .12em; }

.trust-strip { border-block: 1px solid var(--line); background: rgba(255,255,255,.25); }
.trust-grid { min-height: 116px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.trust-grid div { display: grid; gap: 5px; padding-left: 24px; border-left: 1px solid var(--line); }
.trust-grid div:first-child { border: 0; padding-left: 0; }
.trust-grid strong { font-family: Georgia, serif; font-size: 20px; font-weight: 500; }
.trust-grid span { color: var(--muted); font-size: 12px; }

.section { padding-top: 130px; padding-bottom: 130px; }
.section-heading { max-width: 720px; margin-bottom: 55px; }
.section-heading.compact { margin-bottom: 44px; }
h2 { font-size: clamp(45px, 5vw, 67px); line-height: 1.04; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.feature-grid article { min-height: 260px; padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-grid .icon { color: var(--orange); font-family: Georgia, serif; font-style: italic; }
.feature-grid h3 { margin: 46px 0 13px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.feature-grid p { margin: 0; color: var(--muted); line-height: 1.65; font-size: 14px; }

.privacy { background: var(--plum); color: var(--white); }
.privacy .eyebrow { color: #f5b274; }.privacy .eyebrow span { background: #f5b274; }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.boundary { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid rgba(255,255,255,.16); border-radius: 24px; overflow: hidden; }
.boundary div { padding: 34px; }.boundary .yes { background: rgba(255,255,255,.07); }
.boundary h3 { font-family: Georgia, serif; font-size: 22px; font-weight: 500; margin: 0 0 24px; }
.boundary ul { padding: 0; margin: 0; list-style: none; }
.boundary li { position: relative; padding: 10px 0 10px 24px; color: #e8dedf; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.boundary li::before { position: absolute; left: 0; color: #f5b274; }
.yes li::before { content: "✓"; }.no li::before { content: "—"; }

.pipeline { display: grid; grid-template-columns: repeat(9, auto); align-items: stretch; gap: 12px; }
.pipeline div { width: 174px; min-height: 160px; padding: 21px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.35); }
.pipeline b { color: var(--orange); font-family: Georgia, serif; font-style: italic; font-weight: 500; }
.pipeline strong { margin-top: auto; font-family: Georgia, serif; font-size: 20px; font-weight: 500; }
.pipeline span { color: var(--muted); font-size: 11px; margin-top: 6px; }
.pipeline i { align-self: center; color: var(--orange); font-style: normal; }
.architecture-link { margin-top: 28px; color: var(--orange-dark); font-weight: 700; }

.cta { margin-top: 20px; margin-bottom: 70px; padding: 55px; display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: 28px; box-shadow: 0 22px 65px rgba(72,44,30,.09); }
.cta img { border-radius: 25px; box-shadow: 0 14px 30px rgba(70,39,22,.14); }
.cta h2 { font-size: 43px; }
footer { min-height: 95px; display: flex; align-items: center; justify-content: space-between; color: var(--muted); border-top: 1px solid var(--line); font-size: 12px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 45px; }
  .product-card { max-width: 660px; transform: none; }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; gap: 50px; }
  .pipeline { grid-template-columns: 1fr; }
  .pipeline div { width: 100%; min-height: 112px; }.pipeline i { transform: rotate(90deg); }
  .cta { grid-template-columns: auto 1fr; }.cta .button { grid-column: 1 / -1; }
}

@media (max-width: 650px) {
  .shell { width: min(100% - 28px, 1180px); }
  .nav nav a:not(:last-child) { display: none; }
  .hero { padding-bottom: 65px; gap: 50px; }
  h1 { font-size: 52px; }.lede { font-size: 16px; }
  .preview-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; padding-block: 24px; gap: 24px; }
  .trust-grid div:nth-child(3) { border: 0; padding-left: 0; }
  .section { padding-top: 85px; padding-bottom: 85px; }
  .feature-grid { grid-template-columns: 1fr; }
  .boundary { grid-template-columns: 1fr; }
  .cta { padding: 30px; grid-template-columns: 1fr; }.cta h2 { font-size: 36px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
}
