/* ==========================================================================
   STRAYCY HOMEPAGE STYLES
   Migrated out of the homepage's inline <style> block.
   - All colors/fonts reference the central --stry-* tokens (defined in the
     child theme style.css). The local --ink/--orange/etc. names are aliases.
   - Every selector is scoped under .straycy-home so these styles never leak
     into the blog, docs, or other pages. Your homepage content must be
     wrapped in a single <div class="straycy-home"> ... </div>.
   Enqueue this from the child theme (see note), or paste into a homepage-only
   stylesheet. Do NOT put it back inline.
   ========================================================================== */

/* Homepage tokens aliased to the central Straycy design system.
   The real values live in the child theme style.css (:root --stry-*).
   These aliases let the existing homepage CSS keep using --ink, --orange, etc.
   without duplicating hex values. Change a color once, in the theme, and it
   updates here too. Tokens with no central equivalent keep an explicit value. */
.straycy-home {
    --ink: var(--stry-ink);
    --navy: var(--stry-navy);
    --orange: var(--stry-orange);
    --orange-light: var(--stry-orange-light);
    --stone: var(--stry-stone);
    --cream: var(--stry-cream);
    --paper: var(--stry-paper);
    --mist: var(--stry-mist);
    --white: var(--stry-white);
    --border: var(--stry-border);
    --green: var(--stry-green);
    --amber: #F5A623;
    /* no central equivalent yet */
    }
.straycy-home {
    font-family: var(--stry-font-body);
    color: var(--ink);
    line-height: 1.6
    }
.straycy-home .mono {
    font-family: "JetBrains Mono", monospace
    }
/* Homepage lists are styled icon-rows, not prose. Remove the browser's
   default list indent/bullet. Scoped to .straycy-home so blog prose lists
   (which SHOULD keep their indent) are unaffected. */
.straycy-home ul,
.straycy-home ol {
    list-style: none;
    margin: 0;
    padding-left: 0
    }
/* HERO */
.straycy-home .hero {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
    }
.straycy-home .hero-content {
    order: 1
    }
.straycy-home .hero-visual-wrap {
    order: 2
    }
.straycy-home .hero-eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    color: var(--orange);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.1s
    }
.straycy-home .hero h1 {
    font-size: clamp(34px, 4.6vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--ink);
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.2s
    }
.straycy-home .hero h1 .accent {
    color: var(--orange)
    }
.straycy-home .hero-sub {
    font-size: 18px;
    color: var(--stone);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.3s
    }
.straycy-home .hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.4s
    }
.straycy-home .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(232, 93, 60, 0.25);
    min-width: 0
    }
.straycy-home .btn-primary:hover {
    transform: translatey(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 60, 0.35);
    filter: brightness(1.05)
    }
.straycy-home .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white);
    color: var(--ink);
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.25s;
    min-width: 0
    }
.straycy-home .btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translatey(-1px);
    box-shadow: 0 4px 12px rgba(232, 93, 60, 0.08)
    }
.straycy-home .hero-micro {
    font-size: 13px;
    color: var(--stone);
    opacity: 0;
    animation: fadeUp 0.6s ease forwards 0.5s
    }
.straycy-home .hero-visual-wrap {
    position: relative;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s
    }
/* HERO DASHBOARD — event flow visual */
.straycy-home .flow-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 48px rgba(11, 14, 19, 0.08), 0 2px 8px rgba(11, 14, 19, 0.04);
    overflow: hidden;
    transform: perspective(1200px) rotatey(-4deg) rotatex(2deg)
    }
.straycy-home .flow-header {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between
    }
.straycy-home .flow-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink)
    }
.straycy-home .flow-badge {
    font-size: 11px;
    font-weight: 600;
    color: var(--green);
    background: #ECFDF5;
    padding: 4px 10px;
    border-radius: 20px
    }
.straycy-home .flow-body {
    padding: 20px
    }
.straycy-home .flow-event {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6
    }
.straycy-home .flow-event:last-child {
    border-bottom: none
    }
.straycy-home .flow-event-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    font-family: "JetBrains Mono", monospace
    }
.straycy-home .fe-meta {
    background: #1877F2
    }
.straycy-home .fe-google {
    background: #EA4335
    }
.straycy-home .fe-reddit {
    background: #FF4500
    }
.straycy-home .fe-snapchat {
    background: #FFFC00;
    color: #0B0E13 !important
    }
.straycy-home .flow-event-body {
    flex: 1;
    min-width: 0
    }
.straycy-home .flow-event-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink)
    }
.straycy-home .flow-event-detail {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--stone);
    margin-top: 2px
    }
.straycy-home .flow-event-status {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--green)
    }
.straycy-home .flow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green)
    }
.straycy-home .flow-foot {
    padding: 12px 20px;
    background: var(--paper);
    border-top: 1px solid var(--border);
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px
    }
/* TRUST BAR */
.straycy-home .trust-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 24px;
    text-align: center
    }
.straycy-home .trust-text {
    font-size: 13px;
    color: var(--stone);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase
    }
/* SECTIONS */
.straycy-home .section-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--orange);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px
    }
.straycy-home .section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -1px;
    margin-bottom: 16px;
    line-height: 1.15
    }
.straycy-home .section-sub {
    font-size: 17px;
    color: var(--stone);
    max-width: 640px;
    margin-bottom: 48px;
    line-height: 1.7
    }
/* PROBLEM */
.straycy-home .problem {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 24px
    }
.straycy-home .problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
    }
.straycy-home .problem-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 28px;
    transition: all 0.3s
    }
.straycy-home .problem-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(232, 93, 60, 0.06);
    transform: translatey(-2px)
    }
.straycy-home .problem-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.3
    }
.straycy-home .problem-card p {
    font-size: 15px;
    color: var(--stone);
    line-height: 1.65
    }
.straycy-home .problem-stat {
    font-family: "JetBrains Mono", monospace;
    font-size: 32px;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 16px
    }
/* HOW IT WORKS */
.straycy-home .how {
    background: var(--paper);
    padding: 80px 24px
    }
.straycy-home .how-inner {
    max-width: 1140px;
    margin: 0 auto
    }
.straycy-home .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px
    }
.straycy-home .step {
    position: relative
    }
.straycy-home .step-num {
    font-family: "JetBrains Mono", monospace;
    font-size: 48px;
    font-weight: 700;
    color: var(--orange);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 8px
    }
.straycy-home .step h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px
    }
.straycy-home .step p {
    font-size: 15px;
    color: var(--stone);
    line-height: 1.65
    }
.straycy-home .step-code {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 16px;
    overflow-x: auto
    }
/* PLATFORMS */
.straycy-home .platforms {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 24px
    }
.straycy-home .platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px
    }
.straycy-home .platform-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s
    }
.straycy-home .platform-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(232, 93, 60, 0.06);
    transform: translatey(-2px)
    }
.straycy-home .platform-logo {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    font-family: "JetBrains Mono", monospace;
    margin-bottom: 16px
    }
.straycy-home .platform-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px
    }
.straycy-home .platform-card p {
    font-size: 14px;
    color: var(--stone);
    line-height: 1.6;
    margin-bottom: 16px
    }
.straycy-home .platform-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px
    }
.straycy-home .platform-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--navy);
    background: var(--mist);
    padding: 4px 8px;
    border-radius: 4px
    }
/* FEATURES */
.straycy-home .features {
    background: var(--mist);
    padding: 80px 24px
    }
.straycy-home .features-inner {
    max-width: 1140px;
    margin: 0 auto
    }
.straycy-home .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px
    }
.straycy-home .feature {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.3s
    }
.straycy-home .feature:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(232, 93, 60, 0.06);
    transform: translatey(-2px)
    }
.straycy-home .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ink), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--white);
    font-size: 18px
    }
.straycy-home .feature h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px
    }
.straycy-home .feature p {
    font-size: 14px;
    color: var(--stone);
    line-height: 1.6
    }
.straycy-home .feature-soon {
    display: inline-block;
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 600;
    color: var(--amber);
    background: #FEF6E7;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 8px;
    vertical-align: middle
    }
/* MORE PLATFORMS ROW */
.straycy-home .more-platforms {
    margin-top: 32px;
    text-align: center
    }
.straycy-home .more-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--stone);
    letter-spacing: 0.5px;
    margin-bottom: 20px
    }
.straycy-home .more-chips {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px
    }
.straycy-home .more-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px dashed var(--border);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--stone)
    }
.straycy-home .more-chip .chip-mark {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 700;
    color: var(--white)
    }
.straycy-home .more-chip .chip-soon {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 600;
    color: var(--amber);
    background: #FEF6E7;
    padding: 2px 7px;
    border-radius: 10px
    }
.straycy-home .cm-pinterest {
    background: #E60023
    }
.straycy-home .cm-linkedin {
    background: #0A66C2
    }
.straycy-home .cm-snapchat {
    background: #FFFC00;
    color: #0B0E13 !important
    }
.straycy-home .cm-tiktok {
    background: #010101
    }
.straycy-home .cm-x {
    background: #0B0E13
    }
/* SOURCE TRAIL (attribution band) */
.straycy-home .trail {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 24px
    }
.straycy-home .trail-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
    }
.straycy-home .trail-copy .section-sub {
    margin-bottom: 0
    }
.straycy-home .trail-list {
    list-style: none;
    margin-top: 24px
    }
.straycy-home .trail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 15px;
    color: var(--stone)
    }
.straycy-home .trail-list .trail-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--orange-light);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 3px
    }
.straycy-home .trail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(11, 14, 19, 0.06);
    overflow: hidden
    }
.straycy-home .trail-card-head {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between
    }
.straycy-home .trail-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink)
    }
.straycy-home .trail-type {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 600;
    color: var(--green);
    background: #ECFDF5;
    padding: 3px 8px;
    border-radius: 10px
    }
.straycy-home .trail-rows {
    padding: 6px 18px 14px
    }
.straycy-home .trail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid #F3F4F6
    }
.straycy-home .trail-row:last-child {
    border-bottom: none
    }
.straycy-home .trail-key {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--stone);
    width: 104px;
    flex-shrink: 0
    }
.straycy-home .trail-val {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--navy);
    background: var(--mist);
    padding: 3px 8px;
    border-radius: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
    }
/* WORKS WITH STRIP */
.straycy-home .stack-strip {
    background: var(--cream);
    padding: 48px 24px;
    border-bottom: 1px solid var(--border)
    }
.straycy-home .stack-inner {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center
    }
.straycy-home .stack-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    color: var(--stone);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px
    }
.straycy-home .stack-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px
    }
.straycy-home .stack-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink)
    }
.straycy-home .stack-mark {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 700;
    color: #fff
    }
.straycy-home .sm-wp {
    background: #21759B
    }
.straycy-home .sm-woo {
    background: #7F54B3
    }
.straycy-home .sm-stripe {
    background: #635BFF
    }
.straycy-home .sm-meta {
    background: #1877F2
    }
.straycy-home .sm-google {
    background: #EA4335
    }
.straycy-home .sm-reddit {
    background: #FF4500
    }
.straycy-home .sm-snap {
    background: #FFFC00;
    color: #0B0E13 !important
    }
.straycy-home .sm-form {
    background: var(--navy)
    }
/* STRIPE SECTION */
.straycy-home .stripe-sec {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 24px
    }
.straycy-home .stripe-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
    }
.straycy-home .stripe-copy .section-sub {
    margin-bottom: 24px
    }
.straycy-home .stripe-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #635BFF;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px
    }
.straycy-home .stripe-badge img {
    height: 16px;
    width: auto;
    filter: brightness(0) invert(1)
    }
.straycy-home .stripe-list {
    list-style: none;
    margin-top: 8px
    }
.straycy-home .stripe-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 15px;
    color: var(--stone)
    }
.straycy-home .stripe-list .s-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #EEF0FF;
    color: #635BFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 3px
    }
.straycy-home .stripe-flow {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(11, 14, 19, 0.06);
    overflow: hidden
    }
.straycy-home .stripe-flow-head {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between
    }
.straycy-home .stripe-flow-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink)
    }
.straycy-home .stripe-flow-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    font-weight: 600;
    color: #635BFF;
    background: #EEF0FF;
    padding: 3px 8px;
    border-radius: 10px
    }
.straycy-home .stripe-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid #F3F4F6
    }
.straycy-home .stripe-step:last-child {
    border-bottom: none
    }
.straycy-home .stripe-step-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    font-family: "JetBrains Mono", monospace
    }
.straycy-home .stripe-step-num.done {
    background: var(--green)
    }
.straycy-home .stripe-step-body {
    flex: 1;
    min-width: 0
    }
.straycy-home .stripe-step-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink)
    }
.straycy-home .stripe-step-detail {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--stone);
    margin-top: 2px
    }
/* CRM / LTV SECTION */
.straycy-home .crm-sec {
    background: var(--paper);
    padding: 80px 24px
    }
.straycy-home .crm-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
    }
.straycy-home .crm-visual {
    order: 1
    }
.straycy-home .crm-copy {
    order: 2
    }
.straycy-home .crm-list {
    list-style: none;
    margin-top: 24px
    }
.straycy-home .crm-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 15px;
    color: var(--stone)
    }
.straycy-home .crm-list .c-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--orange-light);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 3px
    }
.straycy-home .crm-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(11, 14, 19, 0.06);
    overflow: hidden
    }
.straycy-home .crm-card-head {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between
    }
.straycy-home .crm-contact {
    display: flex;
    align-items: center;
    gap: 12px
    }
.straycy-home .crm-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #F0875F);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px
    }
.straycy-home .crm-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink)
    }
.straycy-home .crm-email {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--stone);
    margin-top: 1px
    }
.straycy-home .crm-ltv {
    text-align: right
    }
.straycy-home .crm-ltv-label {
    font-size: 10px;
    color: var(--stone);
    text-transform: uppercase;
    letter-spacing: 0.5px
    }
.straycy-home .crm-ltv-val {
    font-size: 18px;
    font-weight: 700;
    color: var(--green)
    }
.straycy-home .crm-source-band {
    padding: 10px 20px;
    background: var(--mist);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--navy)
    }
.straycy-home .crm-source-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--orange);
    background: var(--orange-light);
    padding: 2px 8px;
    border-radius: 4px
    }
.straycy-home .crm-events {
    padding: 8px 20px 16px
    }
.straycy-home .crm-event {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #F3F4F6
    }
.straycy-home .crm-event:last-child {
    border-bottom: none
    }
.straycy-home .crm-event-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px
    }
.straycy-home .crm-event-icon.signup {
    background: #EEF1F5;
    color: var(--navy)
    }
.straycy-home .crm-event-icon.sale {
    background: #ECFDF5;
    color: var(--green)
    }
.straycy-home .crm-event-body {
    flex: 1;
    min-width: 0
    }
.straycy-home .crm-event-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink)
    }
.straycy-home .crm-event-date {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px;
    color: var(--stone);
    margin-top: 1px
    }
.straycy-home .crm-event-val {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink)
    }
/* DEDUP SPOTLIGHT */
.straycy-home .dedup {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 24px
    }
.straycy-home .dedup-box {
    background: var(--ink);
    border-radius: 20px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden
    }
.straycy-home .dedup-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(232, 93, 60, 0.12) 0%, transparent 70%);
    border-radius: 50%
    }
.straycy-home .dedup-copy {
    position: relative;
    z-index: 1
    }
.straycy-home .dedup-copy .section-label {
    color: var(--orange)
    }
.straycy-home .dedup-copy h2 {
    font-size: clamp(26px, 3.4vw, 34px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    line-height: 1.2
    }
.straycy-home .dedup-copy p {
    font-size: 16px;
    color: #9CA3AF;
    line-height: 1.7
    }
.straycy-home .dedup-visual {
    position: relative;
    z-index: 1
    }
.straycy-home .dedup-rail {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px
    }
.straycy-home .dedup-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0
    }
.straycy-home .dedup-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500
    }
.straycy-home .dedup-tag.browser {
    background: rgba(24, 119, 242, 0.15);
    color: #5B9BF5
    }
.straycy-home .dedup-tag.server {
    background: rgba(45, 155, 115, 0.15);
    color: #4FBE93
    }
.straycy-home .dedup-id {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: #6B7280;
    margin-left: auto
    }
.straycy-home .dedup-merge {
    text-align: center;
    padding: 12px 0;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    color: var(--orange)
    }
.straycy-home .dedup-result {
    background: rgba(45, 155, 115, 0.1);
    border: 1px solid rgba(45, 155, 115, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #4FBE93;
    font-weight: 600
    }
/* TRUST */
.straycy-home .trust {
    background: var(--paper);
    padding: 80px 24px
    }
.straycy-home .trust-inner {
    max-width: 1140px;
    margin: 0 auto
    }
.straycy-home .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px
    }
.straycy-home .trust-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all 0.3s
    }
.straycy-home .trust-card:hover {
    border-color: var(--orange);
    box-shadow: 0 8px 24px rgba(232, 93, 60, 0.06);
    transform: translatey(-2px)
    }
.straycy-home .trust-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #ECFDF5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--green);
    font-size: 18px
    }
.straycy-home .trust-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px
    }
.straycy-home .trust-card p {
    font-size: 14px;
    color: var(--stone);
    line-height: 1.6
    }
/* PRICING */
.straycy-home .pricing {
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 24px
    }
.straycy-home .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    align-items: start
    }
.straycy-home .price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s
    }
.straycy-home .price-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06)
    }
.straycy-home .price-card.featured {
    border: 2px solid var(--ink);
    box-shadow: 0 16px 40px rgba(11, 14, 19, 0.1);
    transform: scale(1.03)
    }
.straycy-home .price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translatex(-50%);
    background: var(--ink);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    white-space: nowrap
    }
.straycy-home .price-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px
    }
.straycy-home .price-desc {
    font-size: 13px;
    color: var(--stone);
    margin-bottom: 20px
    }
.straycy-home .price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px
    }
.straycy-home .price-amount span:first-child {
    font-size: 42px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -1px
    }
.straycy-home .price-amount span:last-child {
    font-size: 15px;
    color: var(--stone)
    }
.straycy-home .price-billing {
    font-size: 12px;
    color: var(--stone);
    margin-bottom: 24px
    }
.straycy-home .price-cta {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    margin-bottom: 28px
    }
.straycy-home .price-cta-primary {
    background: var(--ink);
    color: var(--white)
    }
.straycy-home .price-cta-primary:hover {
    background: var(--navy);
    transform: translatey(-1px);
    box-shadow: 0 4px 12px rgba(11, 14, 19, 0.15);
    color: var(--white)
    }
.straycy-home .price-cta-secondary {
    background: #F3F4F6;
    color: var(--ink)
    }
.straycy-home .price-cta-secondary:hover {
    background: var(--orange);
    color: var(--white);
    transform: translatey(-1px)
    }
.straycy-home .price-features {
    list-style: none
    }
.straycy-home .price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--stone);
    border-bottom: 1px solid #F9FAFB
    }
.straycy-home .price-features li:last-child {
    border-bottom: none
    }
.straycy-home .price-check {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 2px
    }
.straycy-home .check-dark {
    background: var(--ink);
    color: var(--white)
    }
.straycy-home .check-light {
    background: #F3F4F6;
    color: var(--stone)
    }
/* FAQ */
.straycy-home .faq {
    background: var(--mist);
    padding: 80px 24px
    }
.straycy-home .faq-inner {
    max-width: 720px;
    margin: 0 auto
    }
.straycy-home .faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.2s
    }
.straycy-home .faq-item:hover {
    border-color: var(--orange)
    }
.straycy-home .faq-item.open {
    border-color: var(--orange);
    box-shadow: 0 4px 12px rgba(232, 93, 60, 0.06)
    }
.straycy-home .faq-q {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
    transition: background 0.15s
    }
.straycy-home .faq-q:hover {
    background: rgba(232, 93, 60, 0.03)
    }
.straycy-home .faq-q svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--stone);
    transition: transform 0.3s, color 0.3s
    }
.straycy-home .faq-item.open .faq-q svg {
    transform: rotate(180deg);
    color: var(--orange)
    }
.straycy-home .faq-a {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--stone);
    line-height: 1.7;
    display: none
    }
.straycy-home .faq-item.open .faq-a {
    display: block
    }
/* FINAL CTA */
.straycy-home .final-cta {
    background: var(--ink);
    padding: 80px 24px;
    text-align: center;
    position: relative;
    overflow: hidden
    }
.straycy-home .final-cta::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 93, 60, 0.12) 0%, transparent 70%);
    border-radius: 50%
    }
.straycy-home .final-cta::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(232, 93, 60, 0.08) 0%, transparent 70%);
    border-radius: 50%
    }
.straycy-home .final-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto
    }
.straycy-home .final-cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 16px
    }
.straycy-home .final-cta p {
    font-size: 17px;
    color: #9CA3AF;
    margin-bottom: 32px;
    line-height: 1.6
    }
.straycy-home .final-cta .btn-primary {
    background: var(--orange);
    padding: 16px 32px;
    font-size: 17px
    }
.straycy-home .final-micro {
    font-size: 13px;
    color: #6B7280;
    margin-top: 16px
    }
/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
        } to {
        opacity: 1;
        transform: translateY(0)
        }
    }
.straycy-home .reveal {
    opacity: 0;
    transform: translatey(24px);
    transition: opacity 0.6s ease, transform 0.6s ease
    }
.straycy-home .reveal.visible {
    opacity: 1;
    transform: translatey(0)
    }
/* RESPONSIVE */
@media (max-width: 1024px) {
    .straycy-home .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 24px 40px
        }
    .straycy-home .hero-visual-wrap {
        max-width: 560px;
        margin: 0 auto
        }
    .straycy-home .problem-grid, .straycy-home .steps, .straycy-home .platform-grid, .straycy-home .features-grid, .straycy-home .trust-grid, .straycy-home .pricing-grid {
        grid-template-columns: 1fr
        }
    .straycy-home .pricing-grid {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto
        }
    .straycy-home .price-card.featured {
        transform: none
        }
    .straycy-home .dedup-box {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 28px
        }
    .straycy-home .trail-inner {
        grid-template-columns: 1fr;
        gap: 40px
        }
    .straycy-home .stripe-inner {
        grid-template-columns: 1fr;
        gap: 40px
        }
    .straycy-home .crm-inner {
        grid-template-columns: 1fr;
        gap: 40px
        }
    .straycy-home .crm-visual {
        order: 2
        }
    .straycy-home .crm-copy {
        order: 1
        }
    }
@media (max-width: 768px) {
    .straycy-home .hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
        overflow: hidden
        }
    .straycy-home .hero h1 {
        font-size: 30px
        }
    .straycy-home .hero-sub {
        font-size: 15px
        }
    .straycy-home .hero-ctas {
        flex-direction: column;
        gap: 10px;
        width: 100%
        }
    .straycy-home .hero-ctas a {
        width: 100%;
        max-width: 100%;
        text-align: center
        }
    .straycy-home .section-title {
        font-size: 26px
        }
    .straycy-home .problem-grid, .straycy-home .steps, .straycy-home .platform-grid, .straycy-home .features-grid, .straycy-home .trust-grid, .straycy-home .pricing-grid {
        grid-template-columns: 1fr
        }
    .straycy-home .pricing-grid {
        max-width: 100%
        }
    .straycy-home .price-card.featured {
        transform: none
        }
    .straycy-home .more-chip {
        font-size: 13px;
        padding: 7px 13px
        }
    }