/* FluxFront — /features feature blocks (.fblock). Alternating split layout: copy + (photo | spec card).
   .fblock--alt gets the surface background; .fblock--center is the two centered grid sections. */
/* ===================== FEATURE BLOCKS ===================== */
.fblock { padding-block: clamp(56px, 6.5vw, 104px); }
.fblock--alt { background: var(--surface); }
.fblock .h2 { margin-top: 16px; }
.fblock .lead { margin-top: 16px; max-width: 50ch; }
.fblock-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 11px; }
.fblock-list li { position: relative; padding-left: 26px; font-size: var(--t-sm); line-height: 1.5; color: var(--ink-2); }
.fblock-list li::before { content: ""; position: absolute; left: 0; top: 4px; width: 15px; height: 15px; border-radius: 50%; background: var(--teal-wash)
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F766E' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 9px no-repeat; }
.fblock-list .soon-badge { margin-left: 6px; }
.fblock-visual .media { aspect-ratio: 16 / 10; }
.fblock-visual .media img { object-fit: cover; }
.fblock--alt .media { background: var(--cream); }

/* spec card: honest visual for areas without a screenshot yet */
.spec-card { background: var(--cream); border: 1px solid var(--hairline-2); border-radius: var(--r-xl); padding: 24px 26px 20px; box-shadow: var(--sh-lg); max-width: 560px; }
.fblock--alt .spec-card { box-shadow: var(--sh-md); }
.spec-head { font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-700); }
.spec-list { list-style: none; margin: 14px 0 0; padding: 0; }
.spec-list li { display: grid; grid-template-columns: 150px 1fr; gap: 14px; padding: 12px 0; border-top: 1px solid var(--hairline); font-size: var(--t-sm); }
.spec-list li:first-child { border-top: 0; }
.spec-list b { font-weight: 600; color: var(--ink); }
.spec-list span { color: var(--ink-2); line-height: 1.45; }
@media (max-width: 900px) { .spec-card { max-width: none; } }
@media (max-width: 480px) { .spec-list li { grid-template-columns: 1fr; gap: 3px; } }

/* centered grids: integrations + coming next */
.int-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; max-width: 1180px; margin-inline: auto; }
.int-grid--2 { max-width: 820px; }
.int-card { padding: clamp(20px, 2.2vw, 28px); border-radius: var(--r-lg); background: var(--cream); border: 1px solid var(--hairline); text-align: left; }
.fblock--alt .int-card { border-color: var(--hairline-2); }
.int-card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; letter-spacing: -0.012em; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.int-card p { margin-top: 8px; font-size: var(--t-sm); color: var(--ink-2); line-height: 1.5; }
.int-card--soon { background: var(--blue-wash); border-color: #CFDDF9; }
