/**
 * SEW The Pitch — Sales Landing Page
 * Uses SEW design system tokens (--sew-*)
 */

/* ═══ LAYOUT RESETS ═══════════════════════════════════ */
.sew-pitch-landing {
    --pitch-max: 1200px;
    font-family: var(--sew-font-body, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    color: var(--sew-dark-500, #2D2D2D);
    line-height: 1.6;
}
.sew-pitch-section__inner {
    max-width: var(--pitch-max);
    margin: 0 auto;
    padding: 80px 24px;
}

/* ═══ HERO ════════════════════════════════════════════ */
.sew-pitch-hero {
    background: var(--sew-dark-900, #000);
    color: #fff;
    text-align: center;
    overflow: hidden;
    position: relative;
}
.sew-pitch-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,106,112,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.sew-pitch-hero__inner {
    max-width: var(--pitch-max);
    margin: 0 auto;
    padding: 100px 24px 80px;
    position: relative;
    z-index: 1;
}
.sew-pitch-hero__badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(255,106,112,0.15);
    border: 1px solid rgba(255,106,112,0.3);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--sew-primary-400, #FF8D92);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.sew-pitch-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}
.sew-pitch-hero__accent {
    color: var(--sew-primary-500, #FF6A70);
}
.sew-pitch-hero__sub {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.7);
    max-width: 680px;
    margin: 0 auto 16px;
    line-height: 1.6;
}
.sew-pitch-hero__sub--bold {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}
.sew-pitch-hero__cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ═══ BUTTONS ═════════════════════════════════════════ */
.sew-pitch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: 2px solid transparent;
}
.sew-pitch-btn--primary {
    background: var(--sew-primary-500, #FF6A70);
    color: #fff;
    border-color: var(--sew-primary-500, #FF6A70);
}
.sew-pitch-btn--primary:hover {
    background: var(--sew-primary-600, #E65056);
    border-color: var(--sew-primary-600, #E65056);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255,106,112,0.3);
}
.sew-pitch-btn--outline {
    background: transparent;
    color: var(--sew-primary-500, #FF6A70);
    border-color: var(--sew-primary-500, #FF6A70);
}
.sew-pitch-btn--outline:hover {
    background: var(--sew-primary-50, #FFF5F5);
    transform: translateY(-1px);
}
.sew-pitch-hero .sew-pitch-btn--outline {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}
.sew-pitch-hero .sew-pitch-btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
.sew-pitch-btn--full { width: 100%; }
.sew-pitch-btn--large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* ═══ SECTION TITLES ══════════════════════════════════ */
.sew-pitch-section__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.sew-pitch-section__lead {
    font-size: 1.125rem;
    color: var(--sew-dark-400, #6B6B6B);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ═══ NETWORK MOAT ════════════════════════════════════ */
.sew-pitch-moat {
    background: var(--sew-gray-50, #FAFAFA);
}
.sew-pitch-moat__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.sew-pitch-moat__card {
    background: var(--sew-neutral-50, #fff);
    border: 1px solid var(--sew-gray-200, #eee);
    border-radius: 16px;
    padding: 32px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.sew-pitch-moat__card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}
.sew-pitch-moat__icon {
    font-size: 2rem;
    margin-bottom: 12px;
}
.sew-pitch-moat__card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    margin: 0 0 8px;
    color: var(--sew-dark-500, #2D2D2D);
}
.sew-pitch-moat__card p {
    font-size: 0.9375rem;
    color: var(--sew-dark-400, #6B6B6B);
    line-height: 1.6;
    margin: 0;
}

/* ═══ CHANNELS / TIERS ════════════════════════════════ */
.sew-pitch-channels {
    background: #fff;
}
.sew-pitch-channels__tiers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
}
.sew-pitch-tier-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--sew-gray-50, #FAFAFA);
    border: 1px solid var(--sew-gray-200, #eee);
    border-radius: 999px;
    font-size: 0.875rem;
    white-space: nowrap;
}
.sew-pitch-tier-pill__count {
    font-weight: 800;
    color: var(--sew-primary-500, #FF6A70);
    font-size: 1rem;
}
.sew-pitch-tier-pill--accent {
    background: var(--sew-primary-50, #FFF5F5);
    border-color: var(--sew-primary-200, #FFCBCD);
}
.sew-pitch-channels__highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.sew-pitch-highlight {
    padding: 24px;
    background: var(--sew-gray-50, #FAFAFA);
    border-radius: 12px;
}
.sew-pitch-highlight strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
}
.sew-pitch-highlight p {
    font-size: 0.9375rem;
    color: var(--sew-dark-400, #6B6B6B);
    line-height: 1.6;
    margin: 0;
}

/* ═══ COMPETITIVE COMPARISON TABLE ════════════════════ */
.sew-pitch-compare {
    background: var(--sew-dark-900, #000);
    color: #fff;
}
.sew-pitch-compare .sew-pitch-section__title { color: #fff; }
.sew-pitch-compare .sew-pitch-section__lead { color: rgba(255,255,255,0.6); }
.sew-pitch-compare__table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -24px;
    padding: 0 24px;
}
.sew-pitch-compare__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    min-width: 700px;
}
.sew-pitch-compare__table th,
.sew-pitch-compare__table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sew-pitch-compare__table thead th {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.15);
}
.sew-pitch-compare__them { color: rgba(255,255,255,0.4); }
.sew-pitch-compare__us {
    color: var(--sew-primary-400, #FF8D92) !important;
    font-weight: 600;
    background: rgba(255,106,112,0.06);
}
.sew-pitch-compare__table td:first-child {
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}
.sew-pitch-compare__table td {
    color: rgba(255,255,255,0.5);
}
.sew-pitch-compare__price-row td {
    border-top: 2px solid rgba(255,255,255,0.15);
    font-size: 1.0625rem;
    padding-top: 20px;
}
.sew-pitch-compare__footnote {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    max-width: 800px;
    margin: 40px auto 0;
    line-height: 1.7;
}
.sew-pitch-compare__footnote strong {
    color: #fff;
}

/* ═══ PRICING CARDS ═══════════════════════════════════ */
.sew-pitch-pricing {
    background: var(--sew-gray-50, #FAFAFA);
}
.sew-pitch-pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.sew-pitch-pricing__card {
    background: var(--sew-neutral-50, #fff);
    border: 2px solid var(--sew-gray-200, #eee);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.sew-pitch-pricing__card:hover {
    border-color: var(--sew-primary-300, #FFB1B4);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.sew-pitch-pricing__card--featured {
    border-color: var(--sew-primary-500, #FF6A70);
    box-shadow: 0 8px 32px rgba(255,106,112,0.15);
}
.sew-pitch-pricing__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--sew-primary-500, #FF6A70);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 999px;
    white-space: nowrap;
}
.sew-pitch-pricing__name {
    font-size: 1.125rem;
    font-weight: 800;
    margin: 0 0 12px;
}
.sew-pitch-pricing__price {
    margin-bottom: 16px;
}
.sew-pitch-pricing__amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--sew-dark-500, #2D2D2D);
    letter-spacing: -0.02em;
}
.sew-pitch-pricing__per {
    display: block;
    font-size: 0.8125rem;
    color: var(--sew-dark-400, #6B6B6B);
    margin-top: 4px;
}
.sew-pitch-pricing__desc {
    font-size: 0.875rem;
    color: var(--sew-dark-400, #6B6B6B);
    line-height: 1.5;
    margin: 0 0 24px;
    min-height: 60px;
}
.sew-pitch-pricing__custom {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--sew-dark-400, #6B6B6B);
}
.sew-pitch-pricing__custom a {
    color: var(--sew-primary-500, #FF6A70);
    font-weight: 700;
    text-decoration: none;
}
.sew-pitch-pricing__custom a:hover { text-decoration: underline; }

/* ═══ RELEASE SECTION ═════════════════════════════════ */
.sew-pitch-release-section {
    background: #fff;
}
.sew-pitch-pricing__grid--release {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══ BOTTOM CTA ══════════════════════════════════════ */
.sew-pitch-bottom-cta {
    background: var(--sew-dark-900, #000);
    color: #fff;
    text-align: center;
}
.sew-pitch-bottom-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin: 0 0 16px;
}
.sew-pitch-bottom-cta p {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.sew-pitch-bottom-cta strong { color: #fff; }

/* ═══ RESPONSIVE ══════════════════════════════════════ */
@media (max-width: 768px) {
    .sew-pitch-section__inner { padding: 60px 16px; }
    .sew-pitch-hero__inner { padding: 60px 16px 48px; }
    .sew-pitch-moat__grid { grid-template-columns: 1fr; }
    .sew-pitch-channels__highlights { grid-template-columns: 1fr; }
    .sew-pitch-pricing__grid { grid-template-columns: 1fr; gap: 16px; }
    .sew-pitch-hero__cta { flex-direction: column; align-items: center; }
    .sew-pitch-btn--large { width: 100%; max-width: 360px; }
    .sew-pitch-compare__table { font-size: 0.8125rem; }
    .sew-pitch-compare__table th,
    .sew-pitch-compare__table td { padding: 10px 8px; }
}
@media (max-width: 480px) {
    .sew-pitch-channels__tiers { gap: 6px; }
    .sew-pitch-tier-pill { font-size: 0.75rem; padding: 6px 12px; }
}
