/* Fonts
   Shared binaries:
   - Fraunces: one normal file for 400-700, one italic file if needed
   - Sora: one normal file for 400-700
   - IBM Plex Mono: separate files for 400, 500, 600 and italic 400
*/
@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/fraunces-variable-normal-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/fraunces-variable-normal-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'IBM Plex Mono';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/ibm-plex-mono-400-normal-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/sora-variable-normal-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/sora-variable-normal-latin.woff2') format('woff2');
}

@font-face {
    font-family: 'Sora';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/sora-variable-normal-latin.woff2') format('woff2');
}

:root {
    --feedalys-ink: #102024;
    --feedalys-paper: #f4ede1;
    --feedalys-paper-bright: #fcf8f1;
    --feedalys-mint: #12756d;
    --feedalys-mint-deep: #0b5a55;
    --feedalys-mint-pale: #e2f1ed;
    --feedalys-copper: #be7a2a;
    --feedalys-line: rgba(16, 32, 36, 0.1);
    --feedalys-font-display: 'Fraunces', serif;
    --feedalys-font-sans: 'Sora', sans-serif;
    --feedalys-font-mono: 'IBM Plex Mono', monospace;
    --s2-color-primary: var(--feedalys-mint);
    --s2-color-primary-dark: var(--feedalys-mint-deep);
    --s2-color-primary-light: var(--feedalys-mint-pale);
    --s2-color-secondary: #5d726b;
    --s2-color-accent: var(--feedalys-copper);
    --s2-color-bg: var(--feedalys-paper-bright);
    --s2-color-bg-alt: var(--feedalys-paper);
    --s2-color-text: var(--feedalys-ink);
    --s2-color-text-muted: #5f6d69;
    --s2-color-border: var(--feedalys-line);
    --s2-font-sans: var(--feedalys-font-sans);
    --s2-font-body: var(--feedalys-font-sans);
    --s2-line-height: 1.65;
    --s2-nav-bg: rgba(252, 248, 241, 0.88);
    --s2-shadow-sm: 0 10px 24px rgba(12, 25, 28, 0.05);
    --s2-shadow: 0 18px 48px rgba(12, 25, 28, 0.09);
    --s2-shadow-lg: 0 28px 72px rgba(12, 25, 28, 0.18);
    --s2-radius: 1rem;
    --s2-radius-lg: 1.4rem;
    --s2-radius-xl: 1.8rem;
    --s2-container-max: 1280px;
    --s2-container-px: 1.5rem;
    --s2-section-py: 6rem;
}

html {
    scroll-behavior: smooth;
}

section[id] {
    scroll-margin-top: calc(var(--s2-nav-height, 4.5rem) + 1rem);
}

::selection {
    background: rgba(18, 117, 109, 0.18);
    color: var(--s2-color-text);
}

body.feedalys-site {
    position: relative;
    background: linear-gradient(180deg, #fbf8f1 0%, #f4ede1 35%, #fcf8f1 100%);
}

body.feedalys-site::before,
body.feedalys-site::after {
    content: '';
    position: fixed;
    width: 34rem;
    height: 34rem;
    border-radius: 50%;
    filter: blur(14px);
    pointer-events: none;
    z-index: 0;
}

.s2-tagline {
    font-family: var(--feedalys-font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    color: var(--s2-color-secondary);
}

.s2-nav {
    background: var(--s2-nav-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.s2-nav-cta > a,
.s2-btn--primary {
    box-shadow: 0 18px 40px rgba(18, 117, 109, 0.18);
}

.s2-btn--ghost {
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(18, 117, 109, 0.35);
}

.s2-btn--ghost:hover {
    background: var(--s2-color-primary);
    border-color: var(--s2-color-primary);
}

.s2-btn--outline {
    background: rgba(255, 255, 255, 0.45);
    border-color: rgba(16, 32, 36, 0.14);
}

:where(a, button, summary, input, textarea, select, .s2-btn):focus-visible {
    outline: 3px solid rgba(18, 117, 109, 0.34);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(18, 117, 109, 0.12);
}

.s2-card,
.s2-feature,
.s2-box-highlight {
    background: rgba(255, 255, 255, 0.76);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.feedalys-brandmark {
    gap: 0.85rem;
}

.feedalys-brandmark__glyph {
    display: inline-grid;
    place-items: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.95rem;
    background: linear-gradient(135deg, #193a61 0%, #133044 48%, #12756d 100%);
    color: #fff;
    font-family: var(--feedalys-font-display);
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(19, 48, 68, 0.18);
}

.feedalys-brandmark__word {
    font-family: var(--feedalys-font-sans);
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--s2-color-text);
}

.feedalys-brandmark--footer .feedalys-brandmark__word {
    color: var(--s2-color-text);
}

.feedalys-hero {
    min-height: calc(100svh - var(--s2-nav-height));
    align-items: flex-start;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.feedalys-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 24%, rgba(18, 117, 109, 0.22), transparent 32%),
        radial-gradient(circle at 16% 82%, rgba(190, 122, 42, 0.18), transparent 28%);
    pointer-events: none;
}

.feedalys-hero::after {
    content: '';
    position: absolute;
    inset: 2rem 1.5rem auto auto;
    width: min(42vw, 32rem);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 70%);
    filter: blur(8px);
    pointer-events: none;
}

.feedalys-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    gap: clamp(1.75rem, 4.2vw, 3.9rem);
    align-items: start;
}

.feedalys-hero-side {
    display: grid;
    gap: 1.85rem;
    align-content: start;
}

.feedalys-badge {
    margin-bottom: 1rem;
    padding: 0.45rem 0.85rem;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(18, 117, 109, 0.16);
    color: var(--s2-color-primary);
}

.s2-hero-title {
    max-width: 11.4ch;
    font-size: clamp(3.05rem, 6.5vw, 5.85rem);
    line-height: 0.95;
    text-wrap: balance;
}

h1,
h2,
h3,
.feedalys-card-title,
.s2-feature-title,
.s2-hero-title {
    font-family: var(--feedalys-font-display);
    font-optical-sizing: auto;
    letter-spacing: -0.04em;
}

em {
    color: var(--s2-color-primary);
    font-style: italic;
}

.s2-hero-subtitle {
    max-width: 34rem;
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--s2-color-text-muted);
}

.feedalys-hero-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 0;
    align-items: start;
}

.feedalys-hero-note {
    display: grid;
    gap: 0.45rem;
    padding: 1rem 1.15rem;
    border: 1px solid rgba(18, 117, 109, 0.12);
    border-radius: 1.1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(247, 241, 232, 0.72));
    box-shadow: 0 18px 42px rgba(16, 32, 36, 0.06);
}

.feedalys-hero-note__eyebrow {
    font-family: var(--feedalys-font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--s2-color-secondary);
}

.feedalys-hero-note p {
    margin: 0;
    color: var(--s2-color-text-muted);
}

.feedalys-hero-note strong {
    color: var(--s2-color-text);
}

.feedalys-hero-cluster {
    display: grid;
    gap: 0.75rem;
}

.feedalys-hero-cluster__label {
    font-family: var(--feedalys-font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--s2-color-secondary);
}

.feedalys-service-chiplist {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.feedalys-service-chiplist li {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(18, 117, 109, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--s2-color-text);
    font-family: var(--feedalys-font-mono);
    font-size: 0.76rem;
    letter-spacing: 0.04em;
}

.feedalys-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.85rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(16, 32, 36, 0.09);
}

.feedalys-proof {
    padding-top: 0.15rem;
}

.feedalys-proof__value {
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--feedalys-font-display);
    font-size: clamp(1.55rem, 3vw, 2.05rem);
    line-height: 1;
    color: var(--s2-color-text);
}

.feedalys-proof__label {
    display: block;
    max-width: 18ch;
    font-size: 0.92rem;
    color: var(--s2-color-text-muted);
}

.feedalys-hero .s2-hero-actions {
    margin-top: 1.45rem;
}

.feedalys-signal-panel {
    position: relative;
    overflow: hidden;
    padding: 1.5rem;
    margin-top: 0;
    align-self: start;
    border: 1px solid rgba(244, 239, 228, 0.12);
    border-radius: 1.6rem;
    background: linear-gradient(180deg, #122229 0%, #0d171a 100%);
    color: #f7f1e8;
    box-shadow: 0 32px 90px rgba(13, 23, 26, 0.24);
}

.feedalys-signal-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 117, 109, 0.18), transparent 35%, transparent 65%, rgba(190, 122, 42, 0.12));
    pointer-events: none;
}

.feedalys-signal-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 100% 5rem, 5rem 100%;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0.25;
    pointer-events: none;
}

.feedalys-signal-panel__header,
.feedalys-signal-stack {
    position: relative;
    z-index: 1;
}

.feedalys-signal-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feedalys-panel__eyebrow,
.feedalys-panel__tag,
.feedalys-card-label,
.feedalys-module__index {
    font-family: var(--feedalys-font-mono);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.feedalys-panel__eyebrow {
    margin-bottom: 0.5rem;
    font-size: 0.72rem;
    color: rgba(247, 241, 232, 0.58);
}

.feedalys-panel__title {
    max-width: 10ch;
    font-family: var(--feedalys-font-display);
    font-size: 1.7rem;
    line-height: 1.1;
    color: #fff;
}

.feedalys-panel__tag {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    color: rgba(247, 241, 232, 0.78);
}

.feedalys-signal-stack {
    display: grid;
    gap: 1rem;
}

.feedalys-signal-card {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.05);
}

.feedalys-card-title {
    margin: 0;
}

.feedalys-signal-card .feedalys-card-title {
    margin: 0.4rem 0 0.5rem;
    font-family: var(--feedalys-font-display);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.15;
    color: #fff !important;
    -webkit-text-fill-color: #fff;
    text-wrap: balance;
}

.feedalys-signal-card > p:not(.feedalys-card-title) {
    font-size: 0.93rem;
    color: rgba(247, 241, 232, 0.72);
}

.feedalys-card-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    color: var(--s2-color-secondary);
}

.feedalys-card-label::before {
    content: '';
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--s2-color-accent);
}

.feedalys-signal-card .feedalys-card-label {
    color: rgba(247, 241, 232, 0.62);
}

.feedalys-signal-card .feedalys-card-label::before {
    background: var(--s2-color-primary);
}

.s2-section-header h2 {
    max-width: 16ch;
}

.s2-section-header--center h2 {
    margin-left: auto;
    margin-right: auto;
}

.s2-section-header h2::after {
    content: '';
    display: block;
    width: 4rem;
    height: 2px;
    margin-top: 1rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--s2-color-primary), rgba(18, 117, 109, 0));
}

.s2-section-header--center h2::after {
    margin-left: auto;
    margin-right: auto;
}

.feedalys-feature {
    height: 100%;
}

.feedalys-icon {
    border: 1px solid rgba(16, 32, 36, 0.08);
    border-radius: 1.1rem;
    background: linear-gradient(135deg, rgba(18, 117, 109, 0.12), rgba(190, 122, 42, 0.12));
    color: var(--s2-color-text);
    font-family: var(--feedalys-font-mono);
    font-size: 1rem;
}

.feedalys-section-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.feedalys-blueprint {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.feedalys-blueprint .s2-card {
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 232, 0.72));
}

.feedalys-blueprint .feedalys-card-title,
.feedalys-module .feedalys-card-title,
.feedalys-service-rail .feedalys-card-title {
    margin-top: 0.75rem;
    font-size: 1.3rem;
}

.feedalys-blueprint p,
.feedalys-module p {
    color: var(--s2-color-text-muted);
}

.s2-callout {
    border: 1px solid rgba(18, 117, 109, 0.15);
    border-left: 0;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(18, 117, 109, 0.08), rgba(255, 255, 255, 0.72));
}

.s2-callout-header {
    font-family: var(--feedalys-font-sans);
    font-size: 1rem;
}

.s2-callout-header span:first-child {
    display: inline-grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    background: var(--s2-color-primary);
    color: #fff;
    font-family: var(--feedalys-font-mono);
    font-size: 0.78rem;
}

.feedalys-dark-section {
    position: relative;
    overflow: hidden;
}

.feedalys-dark-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(18, 117, 109, 0.18), transparent 28%), radial-gradient(circle at 80% 80%, rgba(190, 122, 42, 0.12), transparent 20%);
    pointer-events: none;
}

.feedalys-dark-section .s2-tagline,
.feedalys-dark-section .s2-lead {
    color: rgba(247, 241, 232, 0.66);
}

.feedalys-dark-section .s2-section-header h2::after {
    background: linear-gradient(90deg, rgba(247, 241, 232, 0.9), rgba(247, 241, 232, 0));
}

.feedalys-module {
    position: relative;
    border-color: rgba(247, 241, 232, 0.1);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feedalys-module:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.feedalys-module .s2-card-body {
    height: 100%;
}

.feedalys-module__index {
    display: inline-flex;
    padding: 0.35rem 0.55rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    font-size: 0.72rem;
    color: rgba(247, 241, 232, 0.72);
}

.feedalys-module .feedalys-card-title {
    color: #fff;
}

.feedalys-module p {
    color: rgba(247, 241, 232, 0.66);
}

.feedalys-step-grid {
    gap: 1.5rem;
    align-items: stretch;
}

.feedalys-step {
    position: relative;
    height: 100%;
    padding: 1.6rem 1.5rem 1.55rem;
    text-align: left;
    border: 1px solid rgba(16, 32, 36, 0.09);
    border-radius: 1.55rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 244, 238, 0.92));
    box-shadow: 0 18px 42px rgba(16, 32, 36, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.feedalys-step::before {
    content: none;
}

.feedalys-step:hover {
    transform: translateY(-3px);
    border-color: rgba(18, 117, 109, 0.18);
    box-shadow: 0 24px 50px rgba(16, 32, 36, 0.12);
}

.feedalys-step .feedalys-card-label {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
}

.feedalys-step .feedalys-card-label::before {
    background: var(--s2-color-primary);
}

.feedalys-step .feedalys-card-label {
    color: rgba(18, 117, 109, 0.88);
}

.feedalys-step .s2-step-icon {
    position: relative;
    z-index: 1;
    display: inline-grid;
    place-items: center;
    width: 4.4rem;
    height: 4.4rem;
    margin-left: 0;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 32, 36, 0.08);
    border-radius: 1.3rem;
    background: linear-gradient(135deg, rgba(18, 117, 109, 0.14), rgba(190, 122, 42, 0.16));
    color: var(--s2-color-text);
    font-family: var(--feedalys-font-mono);
    font-size: 0.98rem;
    box-shadow: 0 16px 28px rgba(16, 32, 36, 0.08);
}

.feedalys-step .s2-feature-title {
    position: relative;
    z-index: 1;
    margin-bottom: 0.7rem;
    font-size: 1.45rem;
}

.feedalys-step .s2-feature-text {
    position: relative;
    z-index: 1;
    max-width: 30ch;
    color: var(--s2-color-text-muted);
}

.feedalys-card-list {
    display: grid;
    gap: 0.9rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.feedalys-card-list li {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(16, 32, 36, 0.08);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.72);
    color: var(--s2-color-text-muted);
    box-shadow: var(--s2-shadow-sm);
}

.feedalys-card-list li strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--s2-color-text);
    font-family: var(--feedalys-font-sans);
    font-size: 0.98rem;
}

.feedalys-service-rail {
    display: grid;
    gap: 1rem;
}

.feedalys-form-shell {
    display: grid;
    gap: 1rem;
}

.feedalys-form-shell .feed-form {
    margin: 0;
}

.feedalys-form-shell .form-submitted {
    position: relative;
    opacity: 0.82;
}

.feedalys-form-shell .form-submitted::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.1rem;
    background: rgba(252, 248, 241, 0.18);
    pointer-events: none;
}

.feedalys-form-shell .form-submitted .s2-input,
.feedalys-form-shell .form-submitted .s2-textarea {
    background: rgba(255, 255, 255, 0.42);
    border-color: rgba(16, 32, 36, 0.08);
    color: rgba(16, 32, 36, 0.52);
    box-shadow: none;
    cursor: not-allowed;
    -webkit-text-fill-color: rgba(16, 32, 36, 0.52);
}

.feedalys-form-shell .form-submitted .s2-input::placeholder,
.feedalys-form-shell .form-submitted .s2-textarea::placeholder {
    color: rgba(95, 109, 105, 0.45);
}

.feedalys-form-shell .form-submitted .s2-btn,
.feedalys-form-shell .form-submitted .s2-btn--primary,
.feedalys-form-shell .feed-form button[disabled] {
    background: linear-gradient(180deg, rgba(18, 117, 109, 0.36), rgba(18, 117, 109, 0.34));
    border-color: rgba(18, 117, 109, 0.16);
    color: rgba(255, 255, 255, 0.72);
    box-shadow: none;
    transform: none;
    cursor: not-allowed;
    opacity: 0.88;
    filter: grayscale(0.35);
}

.feedalys-form-shell .form-submitted .s2-btn:hover,
.feedalys-form-shell .form-submitted .s2-btn:focus-visible,
.feedalys-form-shell .feed-form button[disabled]:hover,
.feedalys-form-shell .feed-form button[disabled]:focus-visible {
    background: linear-gradient(180deg, rgba(18, 117, 109, 0.36), rgba(18, 117, 109, 0.34));
    border-color: rgba(18, 117, 109, 0.16);
    color: rgba(255, 255, 255, 0.72);
    box-shadow: none;
    transform: none;
    outline: none;
}

.feedalys-form-shell .s2-feedback {
    position: static;
    display: none;
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    text-align: left;
}

.feedalys-form-shell .s2-feedback--processing,
.feedalys-form-shell .s2-feedback--success,
.feedalys-form-shell .s2-feedback--error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
}

.feedforms-spinner {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
}

.feedalys-service-rail .s2-card {
    min-height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 241, 232, 0.72));
}

.feedalys-launchpad {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    border: 1px solid rgba(18, 117, 109, 0.14);
    background: linear-gradient(135deg, rgba(18, 117, 109, 0.08), rgba(255, 255, 255, 0.82));
}

.feedalys-launchpad h2 {
    max-width: 16ch;
}

.feedalys-launchpad__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
}

.feedalys-cta-panel {
    display: grid;
    gap: 0.85rem;
    width: 100%;
}

.feedalys-cta-panel-item {
    padding: 1rem 1.05rem;
    border: 1px solid rgba(18, 117, 109, 0.14);
    border-radius: 1.15rem;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: var(--s2-shadow-sm);
}

.feedalys-cta-panel-item span {
    display: inline-block;
    font-family: var(--feedalys-font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--s2-color-secondary);
}

.feedalys-cta-panel-item strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--s2-color-text);
    font-family: var(--feedalys-font-sans);
    font-size: 1rem;
}

.feedalys-cta-panel-item p {
    margin-top: 0.4rem;
    color: var(--s2-color-text-muted);
}

.feedalys-footer {
    padding: 0 0 3rem;
}

.feedalys-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(16, 32, 36, 0.08);
}

.feedalys-footer__tagline {
    max-width: 24rem;
    margin-top: 1rem;
    color: var(--s2-color-text-muted);
}

.feedalys-footer__credit {
    margin-top: 0.7rem;
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(16, 32, 36, 0.52);
}

.feedalys-footer__credit a {
    color: inherit;
    text-decoration-color: rgba(18, 117, 109, 0.24);
    text-underline-offset: 0.18em;
}

.feedalys-footer__credit a:hover {
    color: var(--s2-color-primary);
    text-decoration-color: currentColor;
}

.feedalys-footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feedalys-footer__links a {
    font-size: 0.92rem;
    color: var(--s2-color-text-muted);
}

.feedalys-footer__links a:hover {
    color: var(--s2-color-primary);
}

@media (max-width: 991px) {
    .feedalys-hero-grid,
    .feedalys-section-shell,
    .feedalys-launchpad {
        grid-template-columns: 1fr;
    }

    .feedalys-hero-intro-grid {
        margin-top: 0;
    }

    .feedalys-signal-panel {
        margin-top: 0;
    }

    .feedalys-launchpad__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    :root {
        --s2-container-px: 1rem;
        --s2-section-py: 4.5rem;
    }

    .feedalys-hero {
        min-height: auto;
    }

    .feedalys-hero-intro-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .s2-hero-title,
    .feedalys-panel__title {
        max-width: none;
    }

    .feedalys-hero-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feedalys-blueprint {
        grid-template-columns: 1fr;
    }

    .feedalys-step-grid {
        gap: 1rem;
    }

    .feedalys-service-chiplist {
        gap: 0.55rem;
    }

    .feedalys-footer__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 575px) {
    .feedalys-brandmark__word {
        font-size: 0.85rem;
        letter-spacing: 0.12em;
    }

    .feedalys-hero-proof {
        grid-template-columns: 1fr;
    }

    .feedalys-proof__label {
        max-width: none;
    }

    .feedalys-signal-panel,
    .s2-callout,
    .s2-feature,
    .s2-card,
    .s2-box-highlight {
        border-radius: 1.15rem;
    }

    .s2-hero-actions,
    .feedalys-launchpad__actions {
        width: 100%;
    }

    .s2-hero-actions .s2-btn,
    .feedalys-launchpad__actions .s2-btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}