:root {
    color-scheme: light;
    --bg: #071019;
    --bg-alt: #0c1621;
    --surface: rgba(12, 20, 30, 0.84);
    --surface-strong: rgba(18, 26, 38, 0.96);
    --surface-soft: rgba(255, 255, 255, 0.04);
    --text: #f6efe7;
    --muted: rgba(219, 227, 236, 0.72);
    --muted-strong: rgba(219, 227, 236, 0.88);
    --accent: #73d4d4;
    --accent-strong: #43b4b4;
    --accent-warm: #ff9f5e;
    --accent-glow: rgba(115, 212, 212, 0.28);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(115, 212, 212, 0.22);
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    --radius-xl: 34px;
    --radius-lg: 26px;
    --radius-md: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Manrope", "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 10% 10%, rgba(115, 212, 212, 0.14), transparent 24%),
        radial-gradient(circle at 92% 6%, rgba(255, 159, 94, 0.12), transparent 18%),
        radial-gradient(circle at 70% 86%, rgba(115, 212, 212, 0.08), transparent 20%),
        linear-gradient(180deg, #051019 0%, #07121c 36%, #08131b 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 82%);
    opacity: 0.35;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 20%, rgba(115, 212, 212, 0.08), transparent 28%),
        radial-gradient(circle at 12% 70%, rgba(255, 159, 94, 0.08), transparent 24%);
    mix-blend-mode: screen;
    opacity: 0.9;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.site {
    position: relative;
    z-index: 1;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.section {
    position: relative;
    padding: 108px 0;
    scroll-margin-top: 108px;
}

.section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.015) 100%);
    pointer-events: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
}

.site-header.is-scrolled .header-shell {
    margin-top: 10px;
    border-color: rgba(115, 212, 212, 0.18);
    background: rgba(7, 16, 25, 0.84);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(9, 17, 26, 0.68);
    backdrop-filter: blur(18px);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, margin 180ms ease;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.88), transparent 30%),
        linear-gradient(135deg, #0f1722 0%, #244e59 50%, #73d4d4 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 16px 28px rgba(0, 0, 0, 0.22);
    position: relative;
    overflow: hidden;
}

.brand-mark::before,
.brand-mark::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.26);
    filter: blur(2px);
}

.brand-mark::before {
    width: 12px;
    height: 12px;
    top: 8px;
    left: 9px;
}

.brand-mark::after {
    width: 24px;
    height: 24px;
    right: -4px;
    bottom: -2px;
}

.brand-text {
    display: grid;
    line-height: 1.02;
}

.brand-text small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    font-weight: 700;
}

.brand-text strong {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 15px;
    color: var(--text);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
    background: rgba(115, 212, 212, 0.12);
    color: var(--text);
    outline: none;
    transform: translateY(-1px);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 800;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
    will-change: transform;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.button-primary {
    color: #041017;
    background: linear-gradient(135deg, #87ecec 0%, #73d4d4 48%, #56b8b8 100%);
    box-shadow: 0 16px 34px rgba(115, 212, 212, 0.24);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

.button-ghost {
    color: var(--muted);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.09);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(115, 212, 212, 0.22);
}

.menu-toggle {
    display: none;
    width: 46px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.menu-toggle span::before {
    top: -6px;
}

.menu-toggle span::after {
    top: 6px;
}

.mobile-panel {
    display: none;
    margin-top: 12px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(7, 16, 25, 0.92);
    border: 1px solid rgba(115, 212, 212, 0.14);
    box-shadow: var(--shadow);
}

.mobile-panel a {
    display: block;
    padding: 14px 12px;
    border-radius: 14px;
    color: var(--text);
    font-weight: 700;
}

.mobile-panel a + a {
    margin-top: 4px;
}

.mobile-panel a:hover,
.mobile-panel a:focus-visible {
    background: rgba(115, 212, 212, 0.08);
    outline: none;
}

.hero {
    position: relative;
    padding: 34px 0 28px;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.88;
    animation: drift 18s ease-in-out infinite alternate;
}

.blob-a {
    width: 340px;
    height: 340px;
    left: -90px;
    top: 90px;
    background: radial-gradient(circle, rgba(115, 212, 212, 0.22), transparent 64%);
}

.blob-b {
    width: 280px;
    height: 280px;
    right: -80px;
    top: 50px;
    background: radial-gradient(circle, rgba(255, 159, 94, 0.18), transparent 68%);
    animation-duration: 20s;
}

.blob-c {
    width: 220px;
    height: 220px;
    right: 18%;
    bottom: 4%;
    background: radial-gradient(circle, rgba(115, 212, 212, 0.14), transparent 66%);
    animation-duration: 22s;
}

.grid-lines {
    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: 58px 58px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
    opacity: 0.12;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    gap: 32px;
    align-items: center;
    min-height: calc(100vh - 130px);
}

.hero-copy {
    position: relative;
    z-index: 1;
    padding: 14px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    color: var(--accent);
    background: rgba(115, 212, 212, 0.08);
    border: 1px solid rgba(115, 212, 212, 0.12);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 6px rgba(115, 212, 212, 0.08);
}

.hero h1 {
    margin: 20px 0 18px;
    max-width: 12ch;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(2.7rem, 5.6vw, 6.1rem);
    line-height: 0.92;
    letter-spacing: -0.06em;
    text-wrap: balance;
}

.hero h1 span {
    color: var(--accent);
}

.lead {
    margin: 0;
    max-width: 62ch;
    font-size: clamp(1.04rem, 1.7vw, 1.18rem);
    line-height: 1.82;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted-strong);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
    max-width: 660px;
}

.hero-metric {
    position: relative;
    padding: 18px 18px 17px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.hero-metric::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    opacity: 0.56;
}

.hero-metric strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.02rem;
    letter-spacing: -0.02em;
}

.hero-metric span {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.56;
}

.hero-visual {
    position: relative;
    min-height: 680px;
    perspective: 1400px;
}

.signal-shell {
    position: relative;
    min-height: 640px;
    border-radius: 38px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 22%, rgba(115, 212, 212, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(10, 16, 24, 0.98), rgba(8, 12, 18, 0.96));
    border: 1px solid rgba(115, 212, 212, 0.12);
    box-shadow: 0 36px 90px rgba(0, 0, 0, 0.4);
    transform-style: preserve-3d;
}

.signal-shell::before {
    content: "";
    position: absolute;
    inset: -12%;
    background:
        radial-gradient(circle at 28% 22%, rgba(115, 212, 212, 0.18), transparent 18%),
        radial-gradient(circle at 74% 20%, rgba(255, 159, 94, 0.16), transparent 18%),
        radial-gradient(circle at 50% 74%, rgba(115, 212, 212, 0.08), transparent 26%);
    animation: pulse 10s ease-in-out infinite alternate;
}

.signal-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.95;
}

.signal-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 86%);
    opacity: 0.14;
}

.signal-orbit {
    position: absolute;
    inset: 50% auto auto 50%;
    border-radius: 50%;
    border: 1px solid rgba(115, 212, 212, 0.16);
    transform: translate(-50%, -50%);
}

.orbit-a {
    width: 72%;
    height: 72%;
    animation: spin 24s linear infinite;
}

.orbit-b {
    width: 52%;
    height: 52%;
    border-style: dashed;
    border-color: rgba(255, 159, 94, 0.16);
    animation: spinReverse 30s linear infinite;
}

.signal-core {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: min(320px, 78%);
    padding: 24px 22px;
    text-align: center;
    border-radius: 28px;
    background: rgba(10, 16, 24, 0.72);
    border: 1px solid rgba(115, 212, 212, 0.16);
    box-shadow: 0 0 0 1px rgba(115, 212, 212, 0.08), 0 20px 50px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
}

.signal-core::before {
    content: "";
    position: absolute;
    inset: -18px;
    border-radius: 34px;
    border: 1px solid rgba(115, 212, 212, 0.08);
    filter: blur(2px);
}

.signal-core__badge,
.search-live,
.result-tag,
.price-featured {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.signal-core__badge {
    margin-bottom: 10px;
    color: #031015;
    background: linear-gradient(135deg, #87ecec 0%, #73d4d4 100%);
}

.signal-core strong {
    display: block;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.signal-core small {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.signal-card {
    position: absolute;
    width: 220px;
    padding: 16px 16px 15px;
    border-radius: 20px;
    background: rgba(8, 14, 22, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(12px);
    animation: bob 6s ease-in-out infinite alternate;
}

.signal-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.signal-card strong {
    display: block;
    margin-top: 8px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.08rem;
    line-height: 1.14;
    letter-spacing: -0.03em;
}

.signal-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.92rem;
}

.signal-card--left {
    top: 90px;
    left: 26px;
}

.signal-card--right {
    top: 198px;
    right: 20px;
    text-align: right;
    animation-delay: 1.2s;
}

.signal-card--bottom {
    left: 34px;
    bottom: 34px;
    width: 250px;
    animation-delay: 0.6s;
}

.signal-dashboard {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mini-panel {
    padding: 18px;
    border-radius: 22px;
    background: rgba(11, 17, 26, 0.84);
    border: 1px solid rgba(115, 212, 212, 0.12);
    backdrop-filter: blur(12px);
}

.mini-panel span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(115, 212, 212, 0.1);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mini-panel strong {
    display: block;
    margin-top: 12px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.02rem;
    letter-spacing: -0.03em;
}

.mini-panel small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.55;
}

.section-head {
    display: grid;
    gap: 14px;
    max-width: 760px;
    margin-bottom: 34px;
}

.section-head h2 {
    margin: 0;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(2rem, 3vw, 3.35rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.section-head p {
    margin: 0;
    max-width: 72ch;
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.72;
}

.reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-delay-1 {
    transition-delay: 80ms;
}

.reveal-delay-2 {
    transition-delay: 140ms;
}

.reveal-delay-3 {
    transition-delay: 200ms;
}

.reveal-delay-4 {
    transition-delay: 260ms;
}

.benefits-grid,
.use-cases-grid,
.pricing-grid {
    display: grid;
    gap: 18px;
}

.benefits-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-card,
.use-case-card,
.feature-card,
.price-card,
.faq-card,
.cta-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(11, 17, 26, 0.92), rgba(8, 13, 20, 0.94));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.benefit-card,
.use-case-card,
.feature-card {
    padding: 22px;
}

.benefit-card::before,
.use-case-card::before,
.feature-card::before,
.price-card::before,
.cta-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(115, 212, 212, 0.1), transparent 38%, rgba(255, 159, 94, 0.06));
    opacity: 0.6;
    pointer-events: none;
}

.benefit-card::after,
.use-case-card::after,
.feature-card::after,
.price-card::after,
.cta-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(115, 212, 212, 0.12), transparent 68%);
    pointer-events: none;
    opacity: 0.9;
}

.benefit-card::after {
    right: -56px;
    bottom: -74px;
}

.use-case-card::after {
    right: -66px;
    bottom: -74px;
}

.feature-card::after {
    right: -48px;
    bottom: -72px;
}

.price-card::after {
    right: -64px;
    bottom: -74px;
}

.cta-card::after {
    right: 10%;
    top: -42px;
    background: radial-gradient(circle, rgba(115, 212, 212, 0.16), transparent 68%);
}

.card-index,
.use-case-chip,
.feature-kicker,
.price-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(115, 212, 212, 0.08);
    border: 1px solid rgba(115, 212, 212, 0.12);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.benefit-card h3,
.use-case-card h3,
.feature-card h3,
.price-card h3 {
    margin: 14px 0 10px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.18rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.benefit-card p,
.use-case-card p,
.feature-card p,
.price-card p {
    position: relative;
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
    z-index: 1;
}

.benefit-card:hover,
.use-case-card:hover,
.feature-card:hover,
.price-card:hover {
    transform: translateY(-6px);
    border-color: rgba(115, 212, 212, 0.18);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.flow-layout {
    display: grid;
    grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.flow-copy {
    position: sticky;
    top: 104px;
}

.flow-copy h2 {
    margin: 18px 0 16px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.flow-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.flow-signals {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.flow-signals div {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-signals strong {
    display: block;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.02rem;
    letter-spacing: -0.03em;
}

.flow-signals span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.92rem;
}

.flow-stage {
    position: relative;
    padding: 14px 0 14px 72px;
}

.flow-track {
    position: absolute;
    left: 30px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.flow-track span {
    display: block;
    width: 100%;
    height: calc(var(--flow-progress, 0) * 100%);
    background: linear-gradient(180deg, var(--accent), var(--accent-warm));
    border-radius: inherit;
    transition: height 90ms linear;
}

.flow-step {
    position: relative;
    margin-bottom: 18px;
    padding: 22px 22px 22px 26px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(11, 17, 26, 0.9), rgba(8, 13, 20, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.flow-step::before {
    content: "";
    position: absolute;
    left: -47px;
    top: 24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(115, 212, 212, 0.28));
    border: 1px solid rgba(115, 212, 212, 0.18);
    box-shadow: 0 0 0 10px rgba(115, 212, 212, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.flow-step.is-active {
    transform: translateX(6px);
    border-color: rgba(115, 212, 212, 0.22);
    background: linear-gradient(180deg, rgba(12, 21, 31, 0.98), rgba(8, 15, 24, 0.96));
}

.flow-step.is-active::before {
    transform: scale(1.18);
    background: linear-gradient(135deg, #87ecec, #73d4d4);
    box-shadow: 0 0 0 14px rgba(115, 212, 212, 0.1);
}

.flow-step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    min-height: 54px;
    padding: 0 12px;
    border-radius: 18px;
    background: rgba(115, 212, 212, 0.08);
    border: 1px solid rgba(115, 212, 212, 0.14);
    color: var(--accent);
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-weight: 700;
}

.flow-step__body {
    margin-top: 14px;
}

.flow-step__body h3 {
    margin: 0 0 8px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.3rem;
    letter-spacing: -0.03em;
}

.flow-step__body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.use-cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefits-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 22px;
    align-items: end;
    margin-bottom: 22px;
}

.benefits-layout .section-head {
    margin-bottom: 0;
}

.use-case-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    min-height: 0;
}

.use-case-chip {
    background: rgba(255, 159, 94, 0.09);
    border-color: rgba(255, 159, 94, 0.14);
    color: #ffbe94;
}

.benefits-visual,
.flow-visual,
.feature-visual,
.use-case-media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(64, 38, 14, 0.08);
    box-shadow: 0 18px 38px rgba(92, 59, 28, 0.1);
}

.benefits-visual img,
.flow-visual img,
.feature-visual img,
.use-case-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 500ms ease;
}

.benefits-visual::after,
.flow-visual::after,
.feature-visual::after,
.use-case-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(52, 32, 12, 0.36) 100%);
    pointer-events: none;
}

.benefits-visual figcaption,
.flow-visual figcaption,
.feature-visual figcaption,
.use-case-media figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    display: grid;
    gap: 6px;
    color: #fff;
}

.benefits-visual figcaption span,
.flow-visual figcaption span,
.feature-visual figcaption span,
.use-case-media figcaption span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.benefits-visual figcaption strong,
.flow-visual figcaption strong,
.feature-visual figcaption strong,
.use-case-media figcaption strong {
    display: block;
    max-width: 28ch;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.35rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.benefits-visual {
    min-height: 324px;
}

.flow-visual {
    min-height: 236px;
    margin-top: 18px;
}

.feature-visual {
    min-height: 260px;
}

.use-case-media {
    min-height: 176px;
}

.benefits-visual:hover img,
.flow-visual:hover img,
.feature-visual:hover img,
.use-case-media:hover img {
    transform: scale(1.06);
}

.use-case-footer {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text);
    font-weight: 800;
    letter-spacing: -0.01em;
}

.feature-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 22px;
    align-items: start;
}

.feature-command {
    grid-row: 1 / span 2;
}

.feature-visual {
    grid-column: 2;
}

.feature-grid {
    grid-column: 2;
}

.feature-command {
    position: relative;
    overflow: hidden;
    padding: 22px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(10, 16, 25, 0.96), rgba(7, 13, 20, 0.96));
    border: 1px solid rgba(115, 212, 212, 0.16);
    box-shadow: var(--shadow);
}

.window-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
}

.window-dot:first-child {
    background: rgba(115, 212, 212, 0.8);
}

.window-dot:nth-child(2) {
    background: rgba(255, 159, 94, 0.82);
}

.window-label {
    margin-left: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.command-search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.search-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(115, 212, 212, 0.12);
    color: var(--accent);
    font-size: 1.1rem;
}

.search-text {
    flex: 1;
    color: var(--text);
    font-weight: 700;
    line-height: 1.4;
}

.search-live {
    color: #031015;
    background: linear-gradient(135deg, #87ecec 0%, #73d4d4 100%);
}

.command-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0;
}

.command-chip {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--muted-strong);
    font-size: 12px;
    font-weight: 700;
}

.command-chip.is-active {
    color: #031015;
    background: linear-gradient(135deg, #87ecec 0%, #73d4d4 100%);
    border-color: transparent;
}

.command-results {
    display: grid;
    gap: 12px;
}

.result-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.result-avatar {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(115, 212, 212, 0.82), rgba(68, 174, 174, 0.3));
}

.result-avatar.alt {
    background: linear-gradient(135deg, rgba(255, 159, 94, 0.84), rgba(255, 159, 94, 0.28));
}

.result-avatar.warm {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(115, 212, 212, 0.38));
}

.result-card strong {
    display: block;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.result-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    line-height: 1.45;
    font-size: 0.92rem;
}

.result-tag {
    background: rgba(115, 212, 212, 0.12);
    color: var(--accent);
}

.result-tag.alt {
    background: rgba(255, 159, 94, 0.12);
    color: #ffbe94;
}

.result-tag.warm {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text);
}

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

.feature-card {
    min-height: 172px;
}

.feature-card h3 {
    margin-top: 14px;
}

.feature-card p {
    position: relative;
    z-index: 1;
}

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

.price-card {
    padding: 24px;
}

.price-card.featured {
    transform: translateY(-8px);
    border-color: rgba(115, 212, 212, 0.24);
    box-shadow: 0 26px 72px rgba(0, 0, 0, 0.42);
}

.price-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
}

.price-value {
    margin-top: 14px;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.price-featured {
    color: #031015;
    background: linear-gradient(135deg, #87ecec 0%, #73d4d4 100%);
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 22px;
    display: grid;
    gap: 10px;
}

.price-list li {
    display: flex;
    gap: 10px;
    color: var(--muted);
    line-height: 1.55;
}

.price-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    margin-top: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #87ecec, #73d4d4);
    box-shadow: 0 0 0 6px rgba(115, 212, 212, 0.08);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-card {
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    border: 0;
    padding: 22px;
    background: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    color: var(--text);
    text-align: left;
}

.faq-trigger strong {
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: 1.04rem;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

.faq-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: rgba(115, 212, 212, 0.12);
    display: grid;
    place-items: center;
    transition: transform 180ms ease, background 180ms ease;
}

.faq-icon::before {
    content: "+";
    color: var(--accent);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.faq-card.is-open {
    border-color: rgba(115, 212, 212, 0.2);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.faq-card.is-open .faq-icon {
    transform: rotate(45deg);
    background: rgba(255, 159, 94, 0.12);
}

.faq-body {
    padding: 0 22px 22px;
    color: var(--muted);
    line-height: 1.75;
}

.cta-section {
    padding-top: 0;
}

.cta-card {
    padding: 34px;
    background:
        radial-gradient(circle at 18% 22%, rgba(115, 212, 212, 0.14), transparent 26%),
        radial-gradient(circle at 82% 26%, rgba(255, 159, 94, 0.12), transparent 24%),
        linear-gradient(135deg, rgba(9, 18, 28, 0.98), rgba(12, 25, 38, 0.96));
    border-color: rgba(115, 212, 212, 0.18);
}

.cta-card h2 {
    position: relative;
    margin: 16px 0 12px;
    max-width: 13ch;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    z-index: 1;
}

.cta-card p {
    position: relative;
    margin: 0;
    max-width: 64ch;
    color: var(--muted);
    line-height: 1.75;
    z-index: 1;
}

.cta-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    z-index: 1;
}

.site-footer {
    padding: 0 0 34px;
}

.footer-shell {
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 22px;
    align-items: start;
}

.footer-meta {
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.6;
    max-width: 58ch;
}

.footer-links {
    display: grid;
    gap: 8px;
}

.footer-links a {
    color: var(--muted);
    font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--text);
    outline: none;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinReverse {
    from { transform: translate(-50%, -50%) rotate(360deg); }
    to { transform: translate(-50%, -50%) rotate(0deg); }
}

@keyframes pulse {
    from { transform: translate3d(-1.2%, -0.6%, 0) scale(1); }
    to { transform: translate3d(1.2%, 1.4%, 0) scale(1.05); }
}

@keyframes drift {
    from { transform: translate3d(0, 0, 0) scale(0.98); }
    to { transform: translate3d(0, -18px, 0) scale(1.03); }
}

@keyframes bob {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, -10px, 0); }
}

@media (max-width: 1100px) {
    .hero-grid,
    .flow-layout,
    .feature-stage,
    .footer-shell {
        grid-template-columns: 1fr;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .feature-command,
    .feature-visual,
    .feature-grid {
        grid-column: auto;
        grid-row: auto;
    }

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

    .hero-visual {
        min-height: 600px;
    }

    .benefits-grid,
    .use-cases-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .flow-copy {
        position: relative;
        top: auto;
    }

    .footer-shell {
        gap: 18px;
    }
}

@media (max-width: 860px) {
    .nav,
    .header-actions .button-secondary {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .hero {
        padding-top: 24px;
    }

    .hero-grid {
        gap: 24px;
    }

    .hero h1 {
        max-width: 13ch;
    }

    .hero-metrics,
    .flow-signals {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 540px;
    }

    .benefits-visual,
    .flow-visual,
    .feature-visual {
        min-height: 220px;
    }

    .use-case-media {
        min-height: 160px;
    }

    .signal-card--left {
        top: 78px;
        left: 16px;
    }

    .signal-card--right {
        top: 180px;
        right: 14px;
    }

    .signal-card--bottom {
        left: 16px;
        bottom: 108px;
        width: auto;
        right: 16px;
    }

    .benefits-grid,
    .use-cases-grid,
    .pricing-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .flow-stage {
        padding-left: 28px;
    }

    .flow-track {
        left: 11px;
    }

    .flow-step {
        padding-left: 20px;
    }

    .flow-step::before {
        left: -19px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 20px, var(--container));
    }

    .header-shell {
        padding: 12px 14px;
        border-radius: 28px;
    }

    .brand-text small {
        font-size: 9px;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 14vw, 3.8rem);
    }

    .section {
        padding: 80px 0;
    }

    .cta-card {
        padding: 28px 20px;
    }

    .benefits-visual,
    .flow-visual,
    .feature-visual {
        min-height: 190px;
    }

    .use-case-media {
        min-height: 150px;
    }

    .faq-trigger,
    .faq-body {
        padding-left: 16px;
        padding-right: 16px;
    }

    .signal-shell {
        min-height: 500px;
        border-radius: 30px;
    }

    .signal-dashboard {
        grid-template-columns: 1fr;
    }
}

@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;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .blob,
    .signal-card,
        .signal-orbit {
        animation: none !important;
    }
}

.hero-visual {
    min-height: 700px;
}

.signal-shell.hero-collage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    grid-template-rows: repeat(3, minmax(0, 1fr));
    height: clamp(580px, 56vw, 700px);
    gap: 14px;
    padding: 16px;
    border-radius: 38px;
    overflow: hidden;
    background:
        radial-gradient(circle at 22% 18%, rgba(115, 212, 212, 0.16), transparent 20%),
        radial-gradient(circle at 82% 14%, rgba(255, 159, 94, 0.12), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 242, 232, 0.92));
    border: 1px solid rgba(64, 38, 14, 0.08);
    box-shadow: 0 36px 90px rgba(92, 59, 28, 0.12);
    transform-style: preserve-3d;
}

.signal-shell.hero-collage::before {
    inset: -10%;
    background:
        radial-gradient(circle at 28% 18%, rgba(115, 212, 212, 0.18), transparent 18%),
        radial-gradient(circle at 76% 24%, rgba(255, 159, 94, 0.14), transparent 18%),
        radial-gradient(circle at 52% 72%, rgba(212, 163, 115, 0.12), transparent 26%);
    animation: pulse 14s ease-in-out infinite alternate;
    opacity: 0.72;
}

.hero-collage__eyebrow {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(115, 212, 212, 0.16);
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(92, 59, 28, 0.08);
}

.hero-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #f7f1e8;
    box-shadow: 0 16px 30px rgba(92, 59, 28, 0.1);
}

.hero-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 500ms ease;
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(52, 32, 12, 0.34) 100%);
    pointer-events: none;
}

.hero-photo figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    display: grid;
    gap: 6px;
    color: #fff;
}

.hero-photo figcaption span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.hero-photo figcaption strong {
    display: block;
    max-width: 24ch;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(1rem, 1.35vw, 1.3rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.hero-photo:hover img {
    transform: scale(1.06);
}

.hero-photo--main {
    grid-column: 1;
    grid-row: 1 / span 3;
}

.hero-photo--breeder {
    grid-column: 2;
    grid-row: 1;
}

.hero-photo--app {
    grid-column: 2;
    grid-row: 2;
}

.hero-photo--walk {
    grid-column: 2;
    grid-row: 3;
}

.hero-photo--main,
.hero-photo--breeder,
.hero-photo--app,
.hero-photo--walk {
    min-height: 0;
}

@media (max-width: 1100px) {
    .hero-visual {
        min-height: 620px;
    }
}

@media (max-width: 860px) {
    .signal-shell.hero-collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .hero-photo--main,
    .hero-photo--breeder,
    .hero-photo--app,
    .hero-photo--walk {
        grid-column: auto;
        grid-row: auto;
        min-height: 220px;
    }

    .hero-photo--main {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .hero-visual {
        min-height: auto;
    }

    .signal-shell.hero-collage {
        gap: 12px;
        padding: 12px;
        border-radius: 30px;
    }

    .hero-collage__eyebrow {
        top: 14px;
        left: 14px;
    }

    .hero-photo {
        border-radius: 24px;
    }

    .hero-photo--main {
        min-height: 280px;
    }

    .hero-photo--breeder,
    .hero-photo--app,
    .hero-photo--walk {
        min-height: 180px;
    }

    .hero-photo figcaption {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
}

.hero-visual {
    min-height: 620px;
}

.signal-shell.hero-frame {
    position: relative;
    display: grid;
    place-items: stretch;
    height: clamp(560px, 54vw, 680px);
    padding: 16px;
    border-radius: 38px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 14%, rgba(115, 212, 212, 0.16), transparent 18%),
        radial-gradient(circle at 82% 18%, rgba(255, 159, 94, 0.14), transparent 16%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 242, 232, 0.92));
    border: 1px solid rgba(64, 38, 14, 0.08);
    box-shadow: 0 36px 90px rgba(92, 59, 28, 0.12);
    transform-style: preserve-3d;
}

.signal-shell.hero-frame::before {
    inset: -8%;
    background:
        radial-gradient(circle at 28% 18%, rgba(115, 212, 212, 0.16), transparent 18%),
        radial-gradient(circle at 76% 22%, rgba(255, 159, 94, 0.12), transparent 18%);
    animation: pulse 14s ease-in-out infinite alternate;
    opacity: 0.72;
}

.hero-frame__eyebrow {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(115, 212, 212, 0.16);
    color: var(--accent-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(92, 59, 28, 0.08);
}

.hero-frame__photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 30px;
    min-height: 100%;
    box-shadow: 0 18px 36px rgba(92, 59, 28, 0.12);
}

.hero-frame__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    transform: scale(1.02);
    transition: transform 500ms ease;
}

.hero-frame__photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 42%, rgba(52, 32, 12, 0.34) 100%);
    pointer-events: none;
}

.hero-frame__photo figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    display: grid;
    gap: 8px;
    color: #fff;
}

.hero-frame__photo figcaption span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.hero-frame__photo figcaption strong {
    display: block;
    max-width: 26ch;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(1.1rem, 1.5vw, 1.55rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.hero-frame__photo:hover img {
    transform: scale(1.06);
}

.scene-section {
    padding-top: 0;
}

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

.scene-card {
    position: relative;
    margin: 0;
    min-height: 300px;
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(64, 38, 14, 0.08);
    box-shadow: 0 18px 38px rgba(92, 59, 28, 0.08);
}

.scene-card--tall {
    min-height: 360px;
}

.scene-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.scene-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 48%, rgba(52, 32, 12, 0.36) 100%);
    pointer-events: none;
}

.scene-card figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 1;
    display: grid;
    gap: 6px;
    color: #fff;
}

.scene-card figcaption span {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.scene-card figcaption strong {
    display: block;
    max-width: 18ch;
    font-family: "Space Grotesk", "Manrope", sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.25rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.scene-card:hover img {
    transform: scale(1.05);
}

@media (max-width: 1100px) {
    .scene-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .scene-card--tall {
        min-height: 320px;
    }
}

@media (max-width: 860px) {
    .signal-shell.hero-frame {
        height: clamp(420px, 64vw, 560px);
    }
}

@media (max-width: 640px) {
    .signal-shell.hero-frame {
        height: 380px;
        padding: 12px;
        border-radius: 30px;
    }

    .hero-frame__eyebrow {
        top: 14px;
        left: 14px;
    }

    .hero-frame__photo {
        border-radius: 24px;
    }

    .hero-frame__photo figcaption {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .hero-frame__photo figcaption strong {
        max-width: 22ch;
    }

    .scene-grid {
        grid-template-columns: 1fr;
    }

    .scene-card,
    .scene-card--tall {
        min-height: 240px;
    }
}

:root {
    color-scheme: light;
    --bg: #faf7f1;
    --bg-alt: #f3ede3;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-strong: rgba(255, 255, 255, 0.98);
    --surface-soft: rgba(250, 242, 232, 0.86);
    --text: #40260e;
    --muted: rgba(120, 93, 73, 0.84);
    --muted-strong: rgba(82, 58, 39, 0.96);
    --accent: #59b9b9;
    --accent-strong: #3fa5a5;
    --accent-warm: #ff9f5e;
    --accent-glow: rgba(115, 212, 212, 0.18);
    --border: rgba(64, 38, 14, 0.08);
    --border-strong: rgba(212, 163, 115, 0.24);
    --shadow: 0 28px 80px rgba(92, 59, 28, 0.12);
}

body {
    background:
        radial-gradient(circle at 10% 8%, rgba(115, 212, 212, 0.16), transparent 24%),
        radial-gradient(circle at 92% 8%, rgba(255, 159, 94, 0.14), transparent 18%),
        radial-gradient(circle at 70% 86%, rgba(212, 163, 115, 0.12), transparent 20%),
        linear-gradient(180deg, #fbf8f3 0%, #f6efe4 42%, #f9f6f0 100%);
    color: var(--text);
}

body::before {
    background-image:
        linear-gradient(rgba(64, 38, 14, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(64, 38, 14, 0.04) 1px, transparent 1px);
    opacity: 0.72;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.84), transparent 84%);
}

body::after {
    background:
        radial-gradient(circle at 50% 18%, rgba(115, 212, 212, 0.12), transparent 28%),
        radial-gradient(circle at 12% 72%, rgba(255, 159, 94, 0.1), transparent 24%),
        radial-gradient(circle at 88% 78%, rgba(212, 163, 115, 0.12), transparent 22%);
    mix-blend-mode: normal;
    opacity: 1;
}

.section::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0.64;
}

.site-header.is-scrolled .header-shell,
.header-shell,
.mobile-panel {
    background: rgba(255, 255, 255, 0.84);
    border-color: var(--border);
    box-shadow: 0 18px 48px rgba(92, 59, 28, 0.08);
}

.header-shell {
    backdrop-filter: blur(20px);
}

.site-header.is-scrolled .header-shell {
    margin-top: 10px;
}

.brand-mark {
    background:
        radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.96), transparent 28%),
        linear-gradient(135deg, #fff9f3 0%, #d4a373 48%, #73d4d4 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 16px 30px rgba(92, 59, 28, 0.12);
}

.brand-mark::before,
.brand-mark::after {
    background: rgba(255, 255, 255, 0.5);
}

.brand-text small {
    color: var(--muted);
}

.brand-text strong {
    color: var(--text);
}

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

.nav a:hover,
.nav a:focus-visible {
    background: rgba(115, 212, 212, 0.14);
    color: var(--text);
}

.button-primary {
    color: #3a210c;
    background: linear-gradient(135deg, #73d4d4 0%, #96e6df 48%, #ffbe94 100%);
    box-shadow: 0 18px 34px rgba(115, 212, 212, 0.2);
}

.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.82);
    border-color: var(--border);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(115, 212, 212, 0.22);
}

.button-ghost {
    color: var(--muted);
    background: transparent;
    border-color: var(--border);
}

.mobile-panel a {
    color: var(--text);
}

.mobile-panel a:hover,
.mobile-panel a:focus-visible {
    background: rgba(115, 212, 212, 0.1);
}

.hero {
    padding: 36px 0 30px;
}

.hero-backdrop .blob {
    filter: blur(28px);
    opacity: 0.62;
}

.blob-a {
    background: radial-gradient(circle, rgba(115, 212, 212, 0.28), transparent 68%);
}

.blob-b {
    background: radial-gradient(circle, rgba(255, 159, 94, 0.22), transparent 68%);
}

.blob-c {
    background: radial-gradient(circle, rgba(212, 163, 115, 0.18), transparent 68%);
}

.grid-lines {
    opacity: 0.1;
    background-image:
        linear-gradient(rgba(64, 38, 14, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(64, 38, 14, 0.05) 1px, transparent 1px);
}

.hero-grid {
    min-height: calc(100vh - 120px);
}

.hero h1 {
    max-width: 14.5ch;
    color: var(--text);
}

.hero h1 span {
    color: var(--accent-warm);
}

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

.hero-pill {
    background: rgba(255, 255, 255, 0.84);
    border-color: var(--border);
    color: var(--muted-strong);
    box-shadow: 0 10px 24px rgba(92, 59, 28, 0.05);
}

.hero-metric {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 242, 232, 0.82));
    border-color: var(--border);
    box-shadow: 0 16px 34px rgba(92, 59, 28, 0.08);
}

.hero-metric::after {
    background: linear-gradient(90deg, var(--accent), var(--accent-warm));
    opacity: 0.85;
}

.hero-metric strong {
    color: var(--text);
}

.hero-metric span {
    color: var(--muted);
}

.hero-visual {
    min-height: 660px;
    perspective: 1200px;
}

.signal-shell {
    min-height: 620px;
    background:
        radial-gradient(circle at 18% 14%, rgba(115, 212, 212, 0.18), transparent 22%),
        radial-gradient(circle at 82% 18%, rgba(255, 159, 94, 0.14), transparent 20%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 242, 232, 0.9));
    border-color: var(--border);
    box-shadow: 0 36px 90px rgba(92, 59, 28, 0.12);
}

.signal-shell::before {
    background:
        radial-gradient(circle at 22% 20%, rgba(115, 212, 212, 0.18), transparent 18%),
        radial-gradient(circle at 74% 18%, rgba(255, 159, 94, 0.14), transparent 18%),
        radial-gradient(circle at 50% 70%, rgba(212, 163, 115, 0.14), transparent 26%);
    animation: pulse 12s ease-in-out infinite alternate;
    opacity: 0.92;
}

.signal-canvas,
.signal-grid,
.signal-orbit {
    display: none !important;
}

.signal-core {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(115, 212, 212, 0.16);
    box-shadow: 0 20px 48px rgba(92, 59, 28, 0.1);
}

.signal-core::before {
    border-color: rgba(212, 163, 115, 0.14);
}

.signal-core__badge,
.search-live,
.result-tag,
.price-featured {
    color: #3a210c;
    background: linear-gradient(135deg, #73d4d4 0%, #ffbe94 100%);
}

.signal-core strong,
.signal-card strong,
.mini-panel strong {
    color: var(--text);
}

.signal-core small,
.signal-card small,
.mini-panel small {
    color: var(--muted);
}

.signal-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--border);
    box-shadow: 0 16px 34px rgba(92, 59, 28, 0.08);
    animation: bob 7.5s ease-in-out infinite alternate;
}

.signal-card--right {
    text-align: right;
}

.signal-dashboard {
    gap: 14px;
}

.mini-panel {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--border);
    box-shadow: 0 16px 34px rgba(92, 59, 28, 0.08);
}

.mini-panel span {
    background: rgba(115, 212, 212, 0.12);
    color: var(--accent-strong);
}

.section-head h2,
.flow-copy h2,
.flow-step__body h3,
.price-value,
.faq-trigger strong,
.cta-card h2 {
    color: var(--text);
}

.section-head p,
.flow-copy p,
.flow-step__body p,
.price-card p,
.faq-body,
.cta-card p,
.footer-meta,
.footer-links a {
    color: var(--muted);
}

.benefit-card,
.use-case-card,
.feature-card,
.price-card,
.faq-card,
.cta-card,
.flow-step,
.feature-command,
.command-search,
.result-card,
.flow-signals div {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 242, 232, 0.84));
    border-color: var(--border);
    box-shadow: var(--shadow);
}

.benefit-card::before,
.use-case-card::before,
.feature-card::before,
.price-card::before,
.cta-card::before {
    background: linear-gradient(135deg, rgba(115, 212, 212, 0.12), transparent 42%, rgba(255, 159, 94, 0.06));
}

.benefit-card::after,
.use-case-card::after,
.feature-card::after,
.price-card::after,
.cta-card::after {
    background: radial-gradient(circle, rgba(115, 212, 212, 0.14), transparent 68%);
}

.card-index,
.use-case-chip,
.feature-kicker,
.price-badge {
    background: rgba(115, 212, 212, 0.1);
    border-color: rgba(115, 212, 212, 0.14);
    color: var(--accent-strong);
}

.benefit-card h3,
.use-case-card h3,
.feature-card h3,
.price-card h3 {
    color: var(--text);
}

.benefit-card p,
.use-case-card p,
.feature-card p {
    color: var(--muted);
}

.benefit-card:hover,
.use-case-card:hover,
.feature-card:hover,
.price-card:hover {
    border-color: rgba(115, 212, 212, 0.22);
    box-shadow: 0 24px 58px rgba(92, 59, 28, 0.12);
}

.flow-signals div {
    border-color: var(--border);
}

.flow-signals strong {
    color: var(--text);
}

.flow-track {
    background: rgba(64, 38, 14, 0.08);
}

.flow-track span {
    background: linear-gradient(180deg, var(--accent), var(--accent-warm));
}

.flow-step::before {
    background: linear-gradient(135deg, rgba(115, 212, 212, 0.9), rgba(255, 159, 94, 0.76));
    border-color: rgba(115, 212, 212, 0.18);
    box-shadow: 0 0 0 10px rgba(115, 212, 212, 0.08);
}

.flow-step.is-active {
    border-color: rgba(115, 212, 212, 0.24);
    background: rgba(255, 255, 255, 0.98);
}

.flow-step.is-active::before {
    box-shadow: 0 0 0 14px rgba(115, 212, 212, 0.1);
}

.flow-step__number {
    background: rgba(115, 212, 212, 0.1);
    border-color: rgba(115, 212, 212, 0.14);
    color: var(--text);
}

.window-dot:first-child {
    background: rgba(115, 212, 212, 0.8);
}

.window-dot:nth-child(2) {
    background: rgba(255, 159, 94, 0.82);
}

.window-dot:nth-child(3) {
    background: rgba(212, 163, 115, 0.86);
}

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

.command-search {
    background: rgba(255, 255, 255, 0.94);
}

.search-icon {
    background: rgba(115, 212, 212, 0.12);
    color: var(--accent);
}

.search-text {
    color: var(--text);
}

.command-chip {
    background: rgba(255, 255, 255, 0.86);
    border-color: var(--border);
    color: var(--muted-strong);
}

.command-chip.is-active {
    color: #3a210c;
    background: linear-gradient(135deg, #73d4d4 0%, #d4a373 100%);
}

.result-card {
    border-color: var(--border);
}

.result-avatar {
    background: linear-gradient(135deg, rgba(115, 212, 212, 0.9), rgba(250, 242, 232, 0.7));
}

.result-avatar.alt {
    background: linear-gradient(135deg, rgba(255, 159, 94, 0.9), rgba(255, 232, 208, 0.72));
}

.result-avatar.warm {
    background: linear-gradient(135deg, rgba(212, 163, 115, 0.94), rgba(255, 255, 255, 0.76));
}

.result-card strong {
    color: var(--text);
}

.result-card span {
    color: var(--muted);
}

.result-tag.alt {
    color: #9b5d2e;
    background: rgba(255, 159, 94, 0.14);
}

.result-tag.warm {
    color: #7c4e25;
    background: rgba(212, 163, 115, 0.16);
}

.price-card.featured {
    border-color: rgba(115, 212, 212, 0.24);
    box-shadow: 0 26px 72px rgba(92, 59, 28, 0.14);
}

.price-list li {
    color: var(--muted);
}

.price-list li::before {
    background: linear-gradient(135deg, #73d4d4, #ffbe94);
    box-shadow: 0 0 0 6px rgba(115, 212, 212, 0.08);
}

.faq-card.is-open {
    border-color: rgba(115, 212, 212, 0.24);
    box-shadow: 0 24px 60px rgba(92, 59, 28, 0.12);
}

.faq-trigger {
    color: var(--text);
}

.faq-icon {
    background: rgba(115, 212, 212, 0.12);
}

.faq-icon::before {
    color: var(--accent);
}

.faq-card.is-open .faq-icon {
    background: rgba(255, 159, 94, 0.12);
}

.cta-card {
    background:
        radial-gradient(circle at 18% 22%, rgba(115, 212, 212, 0.16), transparent 26%),
        radial-gradient(circle at 82% 26%, rgba(255, 159, 94, 0.14), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(250, 242, 232, 0.94));
    border-color: rgba(115, 212, 212, 0.18);
}

.site-footer {
    color: var(--text);
}

.footer-shell {
    border-top: 1px solid var(--border);
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--text);
}

@keyframes floatCard {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(0, -8px, 0);
    }
}
