/*
    What's Your Problem? - Zendesk app landing page
    Copyright Infinite Hooray - 2026

    Self-contained. This page deliberately does NOT use assets/main.css: it is
    presented in the design language of the app itself, not of the agency site.
    Token values are lifted from the app's own style.css via the design handoff.
*/

:root {
    --wyp-purple: #a100ff;
    --wyp-purple-hover: #8500d4;
    --wyp-purple-deep: #7c00c9;
    --wyp-purple-deep-hover: #6a00ad;
    --wyp-orange: #ff9d42;
    --wyp-teal: #19a28d;
    --wyp-teal-hover: #128271;
    --wyp-yellow: #ffc610;
    --wyp-yellow-text: #c79a00;
    --wyp-red: #ff7171;
    --wyp-blue: #2f8fff;

    --wyp-text: #232323;
    --wyp-text-2: #555;
    --wyp-text-3: #666;
    --wyp-muted: #8a8a8a;
    --wyp-faint: #999;

    --wyp-chip: #eeeded;
    --wyp-border: #ececec;
    --wyp-canvas: #f6f6f7;
    --wyp-tint-purple: #faf8fc;
    --wyp-tint-blue: #f4f9ff;
    --wyp-tint-orange: #fdf9f2;

    --wyp-success-bg: #d4f5e2;
    --wyp-success-text: #1a7a45;

    --wyp-receipt: linear-gradient(45deg, #f6e4bd, #f3f3f3);
    --wyp-receipt-rule: #b8a98a;

    --wyp-ui-font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --wyp-shell: 1140px;
    --wyp-gutter: 24px;
}

/* ---------- base ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    background: #fff;
    color: var(--wyp-text);
    font-family: var(--wyp-ui-font);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--wyp-purple);
    text-decoration: none;
}

a:hover {
    color: var(--wyp-purple-hover);
    text-decoration: underline;
}

h1,
h2,
h3 {
    margin: 0;
}

p {
    margin: 0;
}

button {
    font-family: inherit;
}

/*
    Must win over the layout rules below. A bare [hidden] only carries the UA
    stylesheet's display:none, which any author display rule (.wyp-analyzing is
    display:flex) would otherwise override, leaving "hidden" elements visible.
*/
[hidden] {
    display: none !important;
}

.wyp-shell {
    max-width: var(--wyp-shell);
    margin: 0 auto;
}

.wyp-shell-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.wyp-eyebrow {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
}

.wyp-h2 {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 10px 0 8px;
}

.wyp-lede {
    font-size: 17px;
    color: var(--wyp-text-3);
    line-height: 1.5;
}

.wyp-center {
    text-align: center;
}

.wyp-skip {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #fff;
    color: var(--wyp-purple);
    padding: 12px 18px;
    border-radius: 0 0 12px 0;
    font-weight: 800;
    z-index: 60;
}

.wyp-skip:focus {
    left: 0;
}

:focus-visible {
    outline: 3px solid var(--wyp-blue);
    outline-offset: 2px;
}

/* ---------- animation ---------- */

@keyframes wypFloat {
    from { transform: translateY(0) rotate(var(--r, 0deg)); }
    to   { transform: translateY(-14px) rotate(var(--r, 0deg)); }
}

@keyframes wypBlink {
    0%, 49%   { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes wypPop {
    from { opacity: 0; transform: translateY(14px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wypSpin {
    to { transform: rotate(360deg); }
}

.wyp-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .8s ease, transform .8s ease;
}

.wyp-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- nav ---------- */

.wyp-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eee;
}

.wyp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px var(--wyp-gutter);
}

.wyp-wordmark {
    font-weight: 800;
    font-size: 17px;
    color: var(--wyp-purple);
    letter-spacing: -.3px;
}

.wyp-wordmark:hover {
    text-decoration: none;
}

.wyp-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    font-weight: 600;
}

.wyp-nav-links a {
    color: var(--wyp-text-2);
}

.wyp-nav-links a:hover {
    color: var(--wyp-purple);
}

/*
    Selector must include the `a` so it outweighs `.wyp-nav-links a` above, which
    would otherwise paint this grey (#555) on purple, and purple-on-purple on hover.
*/
.wyp-nav-links a.wyp-nav-cta {
    background: var(--wyp-purple);
    color: #fff;
    padding: 9px 18px;
    border-radius: 30px;
    font-weight: 700;
    white-space: nowrap;
}

.wyp-nav-links a.wyp-nav-cta:hover {
    background: var(--wyp-purple-hover);
    color: #fff;
    text-decoration: none;
}

/* ---------- hero ---------- */

.wyp-hero {
    background: var(--wyp-purple);
    position: relative;
    overflow: hidden;
    padding: 90px var(--wyp-gutter) 110px;
    text-align: center;
}

.wyp-ticket-chip {
    position: absolute;
    z-index: 0;
    white-space: nowrap;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 30px;
    animation: wypFloat 5s ease-in-out infinite alternate;
}

.wyp-ticket-chip.tl { left: var(--wyp-gutter); top: 26px;    --r: -6deg; animation-duration: 5s; }
.wyp-ticket-chip.tr { right: var(--wyp-gutter); top: 26px;   --r: 5deg;  animation-duration: 6s; animation-delay: .8s; }
.wyp-ticket-chip.bl { left: var(--wyp-gutter); bottom: 22px; --r: 4deg;  animation-duration: 7s; animation-delay: .4s; }
.wyp-ticket-chip.br { right: var(--wyp-gutter); bottom: 22px;--r: -4deg; animation-duration: 5.5s; animation-delay: 1.2s; }

.wyp-hero-inner {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.wyp-hero h1 {
    color: #fff;
    font-weight: 800;
    font-size: 74px;
    line-height: .96;
    letter-spacing: -2px;
}

.wyp-hero-sub {
    color: #fff;
    opacity: .95;
    font-size: 23px;
    margin: 24px auto 36px;
    max-width: 560px;
    line-height: 1.4;
}

.wyp-hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.wyp-btn-white {
    background: #fff;
    color: var(--wyp-purple);
    font-size: 18px;
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    transition: transform .15s ease;
}

.wyp-btn-white:hover {
    transform: translateY(-2px);
    color: var(--wyp-purple);
    text-decoration: none;
}

.wyp-btn-ghost {
    background: var(--wyp-purple-deep);
    border: 1.5px solid rgba(255, 255, 255, .45);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 26px;
    border-radius: 40px;
    transition: background .15s ease;
}

.wyp-btn-ghost:hover {
    background: var(--wyp-purple-deep-hover);
    color: #fff;
    text-decoration: none;
}

/* ---------- trust strip ---------- */

.wyp-trust {
    border-bottom: 1px solid #eee;
    background: #fff;
}

.wyp-trust-inner {
    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: wrap;
    padding: 18px var(--wyp-gutter);
    font-size: 14px;
    font-weight: 700;
    color: var(--wyp-text-3);
}

.wyp-trust-sep {
    color: #ddd;
}

/* ---------- sections ---------- */

.wyp-section {
    padding: 90px var(--wyp-gutter) 70px;
}

.wyp-section-tint-purple {
    background: var(--wyp-tint-purple);
    padding: 70px var(--wyp-gutter);
}

.wyp-section-tint-blue {
    background: var(--wyp-tint-blue);
    padding: 70px var(--wyp-gutter);
}

.wyp-section-tint-orange {
    background: var(--wyp-tint-orange);
    padding: 70px var(--wyp-gutter);
}

.wyp-section-plain {
    padding: 90px var(--wyp-gutter);
}

/* ---------- how it works ---------- */

.wyp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}

.wyp-step {
    background: #fff;
    border: 1px solid var(--wyp-border);
    border-radius: 16px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
}

.wyp-step.s1 { border-left: 6px solid var(--wyp-orange); }
.wyp-step.s2 { border-left: 6px solid var(--wyp-teal); }
.wyp-step.s3 { border-left: 6px solid var(--wyp-yellow); }

.wyp-step-n {
    font-size: 14px;
    font-weight: 800;
}

.wyp-step.s1 .wyp-step-n { color: var(--wyp-orange); }
.wyp-step.s2 .wyp-step-n { color: var(--wyp-teal); }
.wyp-step.s3 .wyp-step-n { color: var(--wyp-yellow-text); }

.wyp-step h3 {
    font-size: 22px;
    font-weight: 800;
}

.wyp-step p {
    font-size: 15px;
    color: var(--wyp-text-3);
    line-height: 1.5;
}

.wyp-step-chips {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: auto;
}

.wyp-step-chips span {
    background: var(--wyp-chip);
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 20px;
    color: var(--wyp-text-2);
}

.wyp-step-quote {
    margin-top: auto;
    background: var(--wyp-receipt);
    border-radius: 10px;
    padding: 10px 14px;
    font-family: "VT323", monospace;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
}

.wyp-step-quote b {
    font-weight: 700;
}

.wyp-skeleton {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.wyp-skeleton i {
    height: 9px;
    border-radius: 5px;
    background: var(--wyp-chip);
}

.wyp-skeleton i:nth-child(1) { background: var(--wyp-purple); width: 70%; }
.wyp-skeleton i:nth-child(2) { width: 95%; }
.wyp-skeleton i:nth-child(3) { width: 82%; }

/* ---------- insights explorer ---------- */

.wyp-insights-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 26px;
    align-items: start;
    margin-top: 34px;
}

.wyp-insight-tabs {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wyp-insight-tab {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    border: 0;
    border-left: 5px solid transparent;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 16px;
    border-radius: 12px;
    background: transparent;
    color: var(--wyp-text);
    transition: background .15s;
}

.wyp-insight-tab:hover {
    background: rgba(255, 255, 255, .6);
}

.wyp-insight-tab[aria-selected="true"] {
    font-weight: 800;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
    border-left-color: var(--tab-color, var(--wyp-purple));
}

.wyp-dot {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--tab-color, var(--wyp-purple));
}

.wyp-insight-tab-name {
    flex: 1;
    text-align: left;
}

.wyp-insight-tab-arrow {
    font-size: 16px;
    opacity: .5;
}

.wyp-panel {
    background: #fff;
    border: 1px solid var(--wyp-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
    position: sticky;
    top: 84px;
}

.wyp-panel-head {
    padding: 18px 24px;
    color: #fff;
    background: var(--panel-color, var(--wyp-purple));
}

.wyp-panel-eyebrow {
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    opacity: .85;
    font-weight: 700;
}

.wyp-panel-title {
    font-size: 24px;
    font-weight: 800;
    margin-top: 2px;
}

.wyp-panel-sub {
    font-size: 13px;
    opacity: .85;
    margin-top: 2px;
}

.wyp-panel-body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    animation: wypPop .3s ease;
}

.wyp-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 4px;
}

.wyp-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wyp-bar-label {
    width: 70px;
    font-size: 13px;
    font-weight: 700;
    color: var(--wyp-text-2);
}

.wyp-bar-track {
    flex: 1;
    background: #f0f0f0;
    border-radius: 20px;
    height: 16px;
    overflow: hidden;
}

.wyp-bar-fill {
    height: 100%;
    border-radius: 20px;
    width: 0;
    transition: width 1s ease;
}

.wyp-bar-val {
    font-size: 13px;
    font-weight: 800;
}

.wyp-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.wyp-row-dot {
    flex-shrink: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-top: 7px;
    background: var(--panel-color, var(--wyp-purple));
}

.wyp-row-text {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.wyp-tickets {
    display: inline-flex;
    gap: 6px;
    margin-left: 8px;
    vertical-align: middle;
    flex-wrap: wrap;
}

.wyp-ticket {
    background: var(--wyp-chip);
    color: var(--wyp-purple);
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
}

.wyp-panel-note {
    border-top: 1px dashed #e2e2e2;
    padding-top: 12px;
    font-size: 13px;
    color: var(--wyp-faint);
}

/* ---------- ask anything ---------- */

.wyp-window {
    background: #fff;
    border: 1px solid var(--wyp-border);
    border-radius: 18px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, .08);
    overflow: hidden;
}

.wyp-window-bar {
    background: var(--wyp-purple);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.wyp-window-title {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-left: 8px;
}

.wyp-window-body {
    padding: 26px;
}

.wyp-ask-input {
    border: 2px solid #a100ff47;
    background: rgba(161, 0, 255, .04);
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 18px;
    color: var(--wyp-text);
    min-height: 58px;
    line-height: 1.4;
}

.wyp-caret {
    display: inline-block;
    width: 2px;
    height: 20px;
    background: var(--wyp-purple);
    margin-left: 2px;
    vertical-align: middle;
    animation: wypBlink 1s step-end infinite;
}

.wyp-analyzing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    color: var(--wyp-purple);
    font-weight: 700;
    font-size: 15px;
}

.wyp-spinner {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid rgba(161, 0, 255, .25);
    border-top-color: var(--wyp-purple);
    animation: wypSpin 1s linear infinite;
}

.wyp-answer {
    margin-top: 18px;
    border-left: 5px solid var(--wyp-teal);
    background: rgba(25, 162, 141, .05);
    border-radius: 12px;
    padding: 18px 20px;
    animation: wypPop .35s ease;
}

.wyp-answer-head {
    font-size: 19px;
    font-weight: 800;
    color: var(--wyp-text);
}

.wyp-answer-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.wyp-bullet {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.wyp-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--wyp-teal);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}

.wyp-bullet-text {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
}

.wyp-ask-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    gap: 12px;
    flex-wrap: wrap;
}

.wyp-ask-note {
    font-size: 13px;
    color: var(--wyp-faint);
}

.wyp-btn-teal {
    background: var(--wyp-teal);
    border: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 11px 22px;
    border-radius: 40px;
    cursor: pointer;
    transition: background .15s;
}

.wyp-btn-teal:hover {
    background: var(--wyp-teal-hover);
}

/* ---------- recipes ---------- */

.wyp-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 44px;
    align-items: center;
}

.wyp-badge-new {
    background: var(--wyp-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
}

.wyp-eyebrow-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wyp-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wyp-check-lg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.wyp-check-lg.blue   { background: var(--wyp-blue); }
.wyp-check-lg.orange { background: var(--wyp-orange); }

.wyp-demo-card {
    background: #fff;
    border: 1px solid #e4edf8;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 36px rgba(47, 143, 255, .12);
}

.wyp-demo-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.wyp-demo-eyebrow {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--wyp-blue);
    font-weight: 800;
}

.wyp-demo-title {
    font-size: 20px;
    font-weight: 800;
}

.wyp-demo-progress {
    font-size: 12px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 20px;
    white-space: nowrap;
    background: var(--wyp-chip);
    color: var(--wyp-text-3);
}

.wyp-demo-progress.is-done {
    background: var(--wyp-success-bg);
    color: var(--wyp-success-text);
}

.wyp-demo-fields {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.wyp-field {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--wyp-text);
    background: #fff;
    border: 2px solid var(--wyp-border);
    padding: 8px 14px;
    border-radius: 30px;
    cursor: grab;
    user-select: none;
    transition: border-color .12s, opacity .2s;
}

.wyp-field.is-picked {
    border-color: var(--wyp-blue);
    background: rgba(47, 143, 255, .06);
}

.wyp-field.is-used {
    opacity: .38;
    cursor: default;
}

.wyp-field-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    background: var(--badge-color, var(--wyp-purple));
}

.wyp-demo-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wyp-slot {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px dashed #d6d6d6;
    background: #fafafa;
    border-radius: 12px;
    padding: 13px 16px;
    cursor: pointer;
    text-align: left;
    width: 100%;
    font-family: inherit;
    transition: border-color .12s, background .12s;
}

.wyp-slot.is-compatible {
    border-color: var(--wyp-blue);
    background: rgba(47, 143, 255, .06);
}

.wyp-slot.is-over {
    background: rgba(47, 143, 255, .16);
}

.wyp-slot.is-filled {
    border-style: solid;
    border-color: var(--wyp-teal);
    background: rgba(25, 162, 141, .06);
}

.wyp-slot-body {
    flex: 1;
}

.wyp-slot-name {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--wyp-text);
}

.wyp-slot-hint {
    display: block;
    font-size: 12px;
    color: var(--wyp-faint);
}

.wyp-slot-state {
    font-size: 13px;
    font-weight: 700;
    color: var(--wyp-faint);
    background: var(--wyp-chip);
    padding: 5px 12px;
    border-radius: 20px;
    white-space: nowrap;
}

.wyp-slot.is-filled .wyp-slot-state {
    font-weight: 800;
    color: var(--wyp-teal);
    background: rgba(25, 162, 141, .12);
}

.wyp-demo-done {
    margin-top: 14px;
    border: 2px solid var(--wyp-teal);
    background: rgba(25, 162, 141, .07);
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    animation: wypPop .3s ease;
}

.wyp-demo-done span {
    font-size: 15px;
    font-weight: 800;
    color: var(--wyp-teal);
}

.wyp-demo-reset {
    background: transparent;
    border: 0;
    color: var(--wyp-blue);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.wyp-demo-hint {
    margin-top: 12px;
    font-size: 13px;
    color: var(--wyp-red);
    font-weight: 700;
}

/* ---------- filters ---------- */

.wyp-filter-card {
    background: #fff;
    border: 1px solid var(--wyp-border);
    border-left: 6px solid var(--wyp-yellow);
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
}

.wyp-filter-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--wyp-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 10px;
}

.wyp-filter-label.spaced {
    margin: 20px 0 10px;
}

.wyp-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.wyp-chip-btn {
    border: 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 30px;
    background: var(--wyp-chip);
    color: #5a5a5a;
    transition: background .15s;
}

.wyp-chip-btn.tf[aria-pressed="true"] {
    background: var(--wyp-text);
    color: #fff;
}

.wyp-chip-btn.tag[aria-pressed="true"] {
    background: var(--wyp-yellow);
    color: var(--wyp-text);
}

.wyp-scope {
    margin-top: 22px;
    border-top: 1px dashed #e6e6e6;
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.wyp-scope-sentence {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}

.wyp-scope-count {
    background: var(--wyp-text);
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    padding: 9px 18px;
    border-radius: 30px;
    white-space: nowrap;
}

/* ---------- pricing ---------- */

.wyp-split-pricing {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 44px;
    align-items: center;
}

.wyp-slider-card {
    background: #fff;
    border: 1px solid var(--wyp-border);
    border-radius: 14px;
    padding: 20px 22px;
}

.wyp-slider-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
}

.wyp-slider-head-label {
    font-size: 14px;
    font-weight: 800;
    color: var(--wyp-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.wyp-slider-value {
    font-size: 26px;
    font-weight: 800;
    color: var(--wyp-text);
}

.wyp-slider {
    width: 100%;
    accent-color: var(--wyp-purple);
    cursor: pointer;
}

.wyp-slider-scale {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #aaa;
    margin-top: 4px;
}

.wyp-receipt {
    background: var(--wyp-receipt);
    border-radius: 16px;
    padding: 26px 26px 20px;
    font-family: "VT323", monospace;
    color: #1f1f1f;
    font-size: 19px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
    transform: rotate(1.2deg);
}

.wyp-receipt-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wyp-receipt-rule {
    border-top: 1px dashed var(--wyp-receipt-rule);
    margin: 12px 0;
}

.wyp-receipt-line {
    display: flex;
    justify-content: space-between;
}

.wyp-receipt-total {
    display: flex;
    justify-content: space-between;
    font-size: 26px;
}

.wyp-receipt-total b {
    font-weight: 700;
}

.wyp-receipt-fine {
    font-size: 15px;
    opacity: .65;
    margin-top: 2px;
}

.wyp-barcode {
    text-align: center;
    font-family: "Libre Barcode 128", cursive;
    font-size: 44px;
    margin-top: 12px;
}

/* ---------- security ---------- */

.wyp-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.wyp-sec-card {
    background: #fff;
    border: 1px solid var(--wyp-border);
    border-left: 6px solid var(--wyp-teal);
    border-radius: 14px;
    padding: 22px;
}

.wyp-sec-card h3 {
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 6px;
}

.wyp-sec-card p {
    font-size: 14px;
    color: var(--wyp-text-3);
    line-height: 1.55;
}

/* ---------- extras ---------- */

.wyp-extras {
    padding: 0 var(--wyp-gutter) 90px;
}

.wyp-extra-card {
    background: var(--wyp-tint-purple);
    border-radius: 16px;
    padding: 24px;
}

.wyp-extra-eyebrow {
    font-size: 13px;
    font-weight: 800;
    color: var(--wyp-purple);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.wyp-extra-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}

.wyp-extra-card p {
    font-size: 14px;
    color: var(--wyp-text-3);
    line-height: 1.55;
}

/* ---------- final cta ---------- */

.wyp-final {
    background: var(--wyp-purple);
    padding: 80px var(--wyp-gutter);
    text-align: center;
}

.wyp-final h2 {
    color: #fff;
    font-size: 52px;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.wyp-final p {
    color: #fff;
    opacity: .92;
    font-size: 19px;
    margin: 16px auto 32px;
    max-width: 520px;
    line-height: 1.5;
}

.wyp-btn-white-lg {
    display: inline-block;
    background: #fff;
    color: var(--wyp-purple);
    font-size: 19px;
    font-weight: 800;
    padding: 16px 34px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    transition: transform .15s ease;
}

.wyp-btn-white-lg:hover {
    transform: translateY(-2px);
    color: var(--wyp-purple);
    text-decoration: none;
}

/* ---------- footer ---------- */

.wyp-footer {
    background: var(--wyp-text);
    color: #bbb;
    padding: 36px var(--wyp-gutter);
}

.wyp-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
}

.wyp-footer-mark {
    color: #fff;
    font-weight: 800;
}

.wyp-footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.wyp-footer-links a {
    color: #bbb;
}

.wyp-footer-links a:hover {
    color: #fff;
}

.wyp-footer-note {
    color: #777;
}

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
    .wyp-hero h1 { font-size: 60px; }
    .wyp-insights-grid { grid-template-columns: 280px 1fr; gap: 20px; }
    .wyp-split,
    .wyp-split-pricing { gap: 32px; }
    .wyp-nav-links { gap: 14px; font-size: 13px; }
}

@media (max-width: 860px) {
    .wyp-nav-links a:not(.wyp-nav-cta) { display: none; }

    .wyp-hero { padding: 64px var(--wyp-gutter) 76px; }
    .wyp-hero h1 { font-size: 46px; letter-spacing: -1.5px; }
    .wyp-hero-sub { font-size: 19px; margin: 20px auto 28px; }
    .wyp-ticket-chip { display: none; }

    .wyp-h2 { font-size: 32px; letter-spacing: -.5px; }
    .wyp-final h2 { font-size: 36px; letter-spacing: -1px; }

    .wyp-section,
    .wyp-section-plain { padding: 60px var(--wyp-gutter); }
    .wyp-section-tint-purple,
    .wyp-section-tint-blue,
    .wyp-section-tint-orange { padding: 60px var(--wyp-gutter); }
    .wyp-extras { padding: 0 var(--wyp-gutter) 60px; }

    .wyp-steps,
    .wyp-grid-3 { grid-template-columns: 1fr; }

    .wyp-insights-grid { grid-template-columns: 1fr; }
    .wyp-insight-tabs {
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
        -webkit-overflow-scrolling: touch;
    }
    .wyp-insight-tab {
        width: auto;
        white-space: nowrap;
        flex: 0 0 auto;
        background: #fff;
    }
    .wyp-insight-tab-arrow { display: none; }
    .wyp-panel { position: static; }

    .wyp-split,
    .wyp-split-pricing { grid-template-columns: 1fr; }

    .wyp-receipt { transform: none; }

    .wyp-btn-white,
    .wyp-btn-ghost { font-size: 16px; padding: 14px 24px; }
}

@media (max-width: 520px) {
    :root { --wyp-gutter: 18px; }

    .wyp-hero h1 { font-size: 38px; }
    .wyp-h2 { font-size: 27px; }
    .wyp-final h2 { font-size: 30px; }

    .wyp-trust-inner { gap: 12px; font-size: 13px; }
    .wyp-trust-sep { display: none; }

    .wyp-hero-ctas { flex-direction: column; }
    .wyp-hero-ctas a { width: 100%; }

    .wyp-ask-input { font-size: 16px; }
    .wyp-scope { flex-direction: column; align-items: flex-start; }
    .wyp-footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}

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

    .wyp-ticket-chip,
    .wyp-caret,
    .wyp-spinner {
        animation: none;
    }

    .wyp-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .wyp-panel-body,
    .wyp-answer,
    .wyp-demo-done {
        animation: none;
    }

    .wyp-bar-fill {
        transition: none;
    }
}
