/* Systelle content sections, styled with the template's own tokens (type presets, spacing, cards). */
.sys-section {
  --sys-dark: var(--token-b72f3c38-19aa-4001-b465-e11babd5f784, #2e3231);
  --sys-sage: var(--token-534ca2ef-c37b-4157-bbaa-6f2919ef42ae, #7fa69b);
  --sys-gray: var(--token-d424afa5-f2ca-4c1d-b1a5-805fed15097c, #535956);
  --sys-soft: #fafafa;
  --sys-pad-y: 160px;
  --sys-pad-x: 64px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: var(--sys-pad-y) var(--sys-pad-x);
  background: #fff;
  color: var(--sys-dark);
  font-family: "Inter", "Inter Placeholder", sans-serif;
  -webkit-font-smoothing: antialiased;
}
.sys-section *, .sys-section *::before, .sys-section *::after { box-sizing: border-box; }
.sys-section.sys-soft { background: var(--sys-soft); }
.sys-inner { max-width: 1476px; margin: 0 auto; display: flex; flex-direction: column; gap: 80px; }

.sys-header { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; max-width: 800px; margin: 0 auto; }
.sys-header.sys-left { align-items: flex-start; text-align: left; margin: 0; }
.sys-label { margin: 0; font-size: 12px; line-height: 1.4; letter-spacing: .11em; font-weight: 600; text-transform: uppercase; color: var(--sys-sage); }
.sys-h2 { margin: 0; font-size: 44px; line-height: 1.2; letter-spacing: -.04em; font-weight: 500; color: var(--sys-dark); }
.sys-h2 .sys-accent { color: var(--sys-sage); }
.sys-display { margin: 0; font-family: "Crimson Text", "Crimson Text Placeholder", serif; font-weight: 400; font-size: 72px; line-height: 1; letter-spacing: -.03em; color: var(--sys-dark); }
.sys-display .sys-accent { color: var(--sys-sage); }
.sys-intro { margin: 0; max-width: 520px; font-size: 16px; line-height: 1.7; color: var(--sys-gray); }
.sys-note { margin: 0 auto; max-width: 640px; text-align: center; font-size: 14px; line-height: 1.8; color: var(--sys-gray); }

.sys-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sys-grid.sys-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sys-grid.sys-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sys-card { background: var(--sys-soft); border-radius: 16px; padding: 32px; display: flex; flex-direction: column; gap: 24px; min-height: 100%; }
.sys-soft .sys-card { background: #fff; }
.sys-card-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.sys-num { margin: 0; font-size: 12px; line-height: 1.4; letter-spacing: .11em; font-weight: 600; color: var(--sys-sage); }
.sys-tag { margin: 0; font-size: 11px; line-height: 1; letter-spacing: .11em; font-weight: 600; text-transform: uppercase; color: var(--sys-sage); border: 1px solid currentColor; border-radius: 999px; padding: 6px 10px; }
.sys-h3 { margin: 0; font-family: "Crimson Text", "Crimson Text Placeholder", serif; font-weight: 400; font-size: 36px; line-height: 1; letter-spacing: -.03em; color: var(--sys-dark); }
.sys-text { margin: 0; font-size: 14px; line-height: 1.8; color: var(--sys-gray); }
.sys-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.sys-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; line-height: 1.6; color: var(--sys-gray); }
.sys-list svg { width: 20px; height: 20px; flex: none; fill: var(--sys-sage); margin-top: 1px; }

.sys-timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.sys-moment { display: flex; flex-direction: column; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(46, 50, 49, .14); }
.sys-moment .sys-h3 { font-size: 32px; }

.sys-promise { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 64px; align-items: end; }
.sys-promise-copy { display: flex; flex-direction: column; gap: 32px; }

.sys-actions { display: flex; justify-content: center; }
.sys-btn { position: relative; display: inline-flex; align-items: center; height: 39px; padding: 1px 48px 0 20px; border-radius: 999px; background: var(--sys-sage); color: #fff; text-decoration: none; font-size: 12px; line-height: 1.4; letter-spacing: .11em; font-weight: 600; text-transform: uppercase; transition: background-color .3s ease; }
.sys-btn::after { content: ""; position: absolute; right: 20px; top: 50%; width: 4px; height: 4px; border-radius: 999px; background: #fff; transform: translateY(-50%); transition: right .3s ease; }
.sys-btn:hover { background: var(--sys-dark); }
.sys-btn:hover::after { right: 16px; }

/* Appear motion matching the template: fade, lift, and un-blur. */
[data-sys-reveal] { opacity: .001; filter: blur(10px); transform: translateY(10px); transition: opacity .9s cubic-bezier(.44,0,.56,1), filter .9s cubic-bezier(.44,0,.56,1), transform .9s cubic-bezier(.44,0,.56,1); }
[data-sys-reveal].sys-in { opacity: 1; filter: blur(0); transform: none; }
@media (prefers-reduced-motion: reduce) { [data-sys-reveal] { opacity: 1; filter: none; transform: none; transition: none; } }

@media (min-width: 1600px) {
  .sys-h2 { font-size: 48px; }
  .sys-display { font-size: 80px; letter-spacing: -.04em; }
  .sys-h3 { font-size: 38px; }
}
@media (max-width: 1199px) {
  .sys-section { --sys-pad-y: 80px; --sys-pad-x: 40px; }
  .sys-h2 { font-size: 38px; }
  .sys-display { font-size: 64px; }
  .sys-h3 { font-size: 34px; }
  .sys-grid, .sys-grid.sys-cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sys-timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 48px; }
  .sys-promise { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 809px) {
  .sys-section { --sys-pad-y: 80px; --sys-pad-x: 16px; }
  .sys-inner { gap: 56px; }
  .sys-h2 { font-size: 34px; }
  .sys-display { font-size: 48px; }
  .sys-h3 { font-size: 32px; }
  .sys-grid, .sys-grid.sys-cols-2, .sys-grid.sys-cols-4, .sys-timeline { grid-template-columns: 1fr; }
  .sys-header, .sys-header.sys-left { align-items: flex-start; text-align: left; }
  .sys-note { text-align: left; }
  .sys-actions { justify-content: flex-start; }
}
