:root {
    --bg: #f4fbff;
    --surface: #ffffff;
    --surface-soft: #eaf6ff;
    --ink: #111111;
    --muted: #667986;
    --line: #d6e8f5;
    --violet: #2392ff;
    --violet-dark: #0875df;
    --accent-blue: #4fb0f6;
    --green: #00b982;
    --shadow: none;
    --soft-shadow: none;
    --radius: 28px;
}

* {
    box-sizing: border-box;
    box-shadow: none !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.9), rgba(244,251,255,0.98)),
        radial-gradient(circle at 18% 8%, rgba(79, 176, 246, 0.18), transparent 28%),
        radial-gradient(circle at 84% 10%, rgba(35, 146, 255, 0.16), transparent 26%),
        var(--bg);
    overflow-x: hidden;
}

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

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

svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.section-shell {
    width: min(100% - 40px, 1220px);
    margin-inline: auto;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 70px;
    padding: 8px max(20px, calc((100vw - 1220px) / 2 + 20px));
    border-bottom: 1px solid rgba(214, 232, 245, 0.9);
    background: rgba(244, 251, 255, 0.86);
    backdrop-filter: blur(18px);
}

main {
    padding-top: 70px;
}

section {
    scroll-margin-top: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 900;
    letter-spacing: 0;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 18px;
    color: white;
    overflow: hidden;
    background: #86c7f5;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(22px, 4vw, 46px);
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
}

.nav-links a {
    transition: color 0.2s ease;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 44px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: white;
    background: var(--violet);
    box-shadow: 0 18px 38px rgba(101, 87, 255, 0.25);
}

.button-primary:hover {
    background: var(--violet-dark);
    box-shadow: 0 22px 48px rgba(101, 87, 255, 0.32);
}

.button-secondary {
    background: white;
    border-color: var(--line);
    box-shadow: 0 8px 24px rgba(24, 20, 14, 0.06);
}

.button-accent {
    color: white;
    background: var(--accent-blue);
}

.button-large {
    min-height: 58px;
    padding: 0 28px;
    font-size: 17px;
}

.hero {
    padding: 40px 0 24px;
    text-align: center;
}

.hero-copy {
    max-width: 1060px;
    margin: 0 auto;
}

.eyebrow {
    margin: 0 0 22px;
    color: var(--violet);
    font-size: clamp(12px, 1.35vw, 17px);
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 890px;
    margin: 0 auto 26px;
    font-family: Unbounded, Manrope, system-ui, sans-serif;
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
}

.hero-text {
    max-width: 740px;
    margin: 0 auto 34px;
    color: var(--muted);
    font-size: clamp(17px, 1.85vw, 20px);
    line-height: 1.48;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}

.small-note {
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.marquee-container {
    width: 100vw;
    margin: 54px 0 0 calc(50% - 50vw);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-row {
    display: flex;
    gap: 14px;
    width: max-content;
    padding: 0 0 14px;
}

.marquee-row + .marquee-row {
    margin-top: 8px;
}

.marquee-row img {
    width: clamp(150px, 13vw, 230px);
    height: clamp(205px, 17vw, 310px);
    flex: 0 0 auto;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: var(--soft-shadow);
}

.marquee-left {
    animation: marquee-left 120s linear infinite;
}

.marquee-container:hover .marquee-row {
    animation-play-state: paused;
}

@keyframes marquee-left {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 7px)); }
}

.photo-section {
    padding: 74px 0 48px;
}

.section-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 38px;
}
.section-heading.has-controls {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
}


.section-heading.compact {
    align-items: start;
}

.section-heading h2,
.steps h2,
.pricing-heading h2,
.final-cta h2,
.try-copy h2 {
    text-wrap: balance;
    margin: 0 0 10px;
    font-family: Unbounded, Manrope, system-ui, sans-serif;
    font-size: clamp(32px, 4.5vw, 64px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    color: var(--ink);
}

.solution-transition h2 {
    font-family: Manrope, system-ui, sans-serif;
    font-size: clamp(16px, 2vw, 24px);
    color: var(--muted);
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
}


.section-heading p,
.pricing-heading p,
.final-cta p,
.try-copy p,
.solution-transition p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 24px);
    line-height: 1.35;
}

.slider-controls {
    display: flex;
    gap: 14px;
    flex: 0 0 auto;
}

.circle-button {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    background: rgba(255,255,255,0.82);
    box-shadow: 0 10px 25px rgba(24, 20, 14, 0.06);
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.circle-button:hover {
    color: var(--violet);
    border-color: rgba(101, 87, 255, 0.38);
    transform: translateY(-2px);
}

.cards-rail {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 max(20px, calc((100vw - 1220px) / 2 + 20px)) 22px;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
}

.cards-rail > * {
    scroll-snap-align: start;
}

.cards-rail::-webkit-scrollbar {
    display: none;
}

.photo-card {
    position: relative;
    width: 288px;
    height: 368px;
    flex: 0 0 288px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
    box-shadow: var(--soft-shadow);
}

.photo-card a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.img-wrap {
    position: relative;
    width: 100%;
    height: 288px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--surface-soft);
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, white 0%, rgba(255,255,255,0) 8%);
    opacity: 1;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.photo-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.06);
}

.photo-cta {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 2;
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
    color: white;
    background: var(--accent-blue);
    font-size: 14px;
    font-weight: 700;
    opacity: 0;
    transform: translate(-50%, 12px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.24);
}

.photo-card:hover .photo-cta,
.photo-card:focus-within .photo-cta {
    opacity: 1;
    transform: translate(-50%, 0);
}

.photo-card p {
    flex: 1;
    margin: 0;
    padding: 12px 16px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.steps {
    padding: 118px 0 90px;
    text-align: left;
}

.steps h2 {
    text-align: left;
    margin-bottom: 70px;
}

.steps-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
    align-items: center;
    gap: clamp(36px, 6vw, 100px);
}

.step-list {
    display: grid;
    gap: 26px;
}

.step-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding: 30px;
    border: 1px solid transparent;
    border-radius: 28px;
    opacity: 0.58;
    transform: scale(0.98);
    cursor: pointer;
    transition: opacity 0.35s ease, transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.step-card.is-active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(35, 146, 255, 0.46);
    background: white;
    box-shadow: var(--soft-shadow);
}

.step-icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 22px;
    color: var(--violet);
    background: rgba(101, 87, 255, 0.12);
}

.step-icon.blue {
    color: var(--accent-blue);
    background: rgba(79, 176, 246, 0.16);
}

.step-icon.green {
    color: var(--green);
    background: rgba(0, 185, 130, 0.12);
}

.step-card p {
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 18px;
    font-weight: 800;
    text-transform: lowercase;
}

.step-card h3 {
    margin: 0 0 14px;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1;
}

.step-card span {
    color: var(--muted);
    font-size: 22px;
    line-height: 1.5;
}

.phone-preview {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 46px;
    background: white;
    box-shadow: var(--shadow);
    aspect-ratio: 9 / 13;
}

.phone-preview img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.phone-preview img.is-active {
    opacity: 1;
}

.phone-progress {
    position: absolute;
    left: 14%;
    right: 14%;
    bottom: 22px;
    height: 8px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255,255,255,0.48);
    z-index: 10;
}

.phone-progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: white;
}

.phone-progress span.is-running {
    animation: step-progress 3s linear infinite;
}

@keyframes step-progress {
    from { width: 0; }
    to { width: 100%; }
}

.reviews {
    padding: 76px 0 100px;
}

.reviews-rail {
    padding-bottom: 28px;
}

.review-card {
    flex: 0 0 clamp(280px, 24vw, 380px);
    min-height: 300px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: white;
}

.review-card img {
    width: 74px;
    height: 74px;
    margin-bottom: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.avatar-gradient {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    font-weight: 800;
}

.review-name {
    color: var(--ink);
    font-weight: 800;
    font-size: 20px;
}

.review-card p {
    color: #2f2d29;
    font-size: 20px;
    line-height: 1.4;
    margin: 0;
}

/* Pain and Solution */
.pain-solution {
    padding: 100px 0 60px;
}
.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}
.pain-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(135deg, white, rgba(229, 75, 75, 0.06));
    box-shadow: 0 10px 30px rgba(229, 75, 75, 0.08);
    hyphens: manual;
    -webkit-hyphens: manual;
    word-break: normal;
}
.solution-card {
    hyphens: manual;
    -webkit-hyphens: manual;
    word-break: normal;
}
.pain-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(229, 75, 75, 0.12);
    color: #e54b4b;
    margin-bottom: 24px;
}
.pain-icon svg {
    width: 32px;
    height: 32px;
    stroke: none;
    fill: currentColor;
}
.pain-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #e54b4b;
    line-height: 1.2;
}
.pain-card p {
    font-size: 15px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.solution-transition {
    text-align: left;
    margin: 10px 0 50px;
    padding: 0;
    /* border-top: 1px dashed var(--line); */
    /* border-bottom: 1px dashed var(--line); */
}


.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.solution-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(135deg, white, var(--surface-soft));
    box-shadow: 0 10px 30px rgba(79, 176, 246, 0.08);
}
.solution-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: rgba(245, 166, 35, 0.1);
    color: #f5a623;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.solution-icon svg {
    width: 32px;
    height: 32px;
}
.solution-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--ink);
    line-height: 1.2;
}
.solution-card p {
    font-size: 15px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--muted);
}
.check-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(79, 176, 246, 0.1);
    color: var(--accent-blue);
    border-radius: 50%;
    flex-shrink: 0;
}


.try-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 90px 0 110px;
    gap: 48px;
}
.try-copy {
    max-width: 800px;
    margin: 0;
}
.try-copy .benefits-list {
    justify-content: flex-start;
}






.try-panel {
    width: 100%;
    max-width: 900px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: var(--surface-soft);
    margin: 0;
}

.style-picker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 22px;
}

.style-card {
    position: relative;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: var(--surface-soft);
    aspect-ratio: 3 / 4;
}

.style-card-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
}
.empty-icon {
    color: #94a3b8;
    margin-bottom: 16px;
}
.empty-icon svg {
    width: 32px;
    height: 32px;
}
.style-card-empty span {
    position: relative;
    background: transparent;
    color: #475569;
    padding: 0;
}

.style-card.is-selected {
    border-color: var(--accent-blue);
}

.style-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.style-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
    padding: 30px 10px 12px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 4px;
    text-align: center;
}

.check-icon {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    background: var(--accent-blue);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
}

.style-card.is-selected .check-icon {
    display: flex;
}

.check-icon svg {
    width: 14px;
    height: 14px;
}

.idea-box {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 800;
}

.idea-box textarea {
    width: 100%;
    min-height: 136px;
    resize: vertical;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    color: var(--ink);
    background: var(--surface-soft);
    font: inherit;
    font-size: 18px;
    line-height: 1.4;
    outline: none;
}

.idea-box textarea:focus {
    border-color: var(--violet);
}

.pricing {
    padding: 100px 0 104px;
}

.pricing-heading {
    text-align: center;
    margin-bottom: 74px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    min-height: 640px;
    flex-direction: column;
    padding: 46px 34px 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: white;
    box-shadow: var(--soft-shadow);
}

.price-card.popular {
    border-color: var(--accent-blue);
    box-shadow: 0 20px 70px rgba(79, 176, 246, 0.2);
}

.hit-label {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 34px;
    border-radius: 999px;
    color: white;
    background: var(--accent-blue);
    font-size: 21px;
    font-weight: 900;
}

.price-card h3 {
    margin: 0 0 24px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
}

.price-card > p {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 23px;
    font-weight: 700;
}

.price-card strong {
    display: block;
    margin-bottom: 32px;
    font-size: clamp(54px, 5vw, 78px);
    line-height: 1;
}

.token-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    margin-bottom: 34px;
    padding: 0 22px;
    border-radius: 18px;
    color: var(--accent-blue);
    background: rgba(79, 176, 246, 0.12);
    font-size: 23px;
    font-weight: 900;
}

.price-card ul {
    display: grid;
    gap: 18px;
    margin: 0 0 32px;
    padding: 0;
    color: var(--muted);
    list-style: none;
    font-size: 21px;
    line-height: 1.38;
}

.price-card li {
    position: relative;
    padding-left: 34px;
}

.price-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 14px;
    height: 8px;
    border-left: 2px solid #77736c;
    border-bottom: 2px solid #77736c;
    transform: rotate(-45deg);
}

.price-card .button {
    width: 100%;
    margin-top: auto;
}

.pricing-note {
    margin: 44px 0 0;
    color: var(--muted);
    text-align: left;
    font-size: 24px;
    font-weight: 700;
}

.final-cta {
    margin-bottom: 90px;
    padding: 70px 40px;
    border: 1px solid var(--line);
    border-radius: 36px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #f0f7ff);
    box-shadow: var(--soft-shadow);
}

.final-cta p {
    max-width: 760px;
    margin: 0 auto 34px;
}

@media (max-width: 1180px) {
    .nav-links {
        display: none;
    }

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

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

    .phone-preview {
        max-width: 560px;
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    body {
        max-width: 100vw;
    }

    main {
        overflow-x: hidden;
    }

    .section-shell {
        width: min(100% - 28px, 1440px);
    }

    .site-nav {
        min-height: 72px;
        padding: 10px 14px;
        gap: 10px;
    }

    main {
        padding-top: 72px;
    }

    section {
        scroll-margin-top: 84px;
    }

    .brand {
        gap: 10px;
        font-size: 22px;
    }

    .brand-mark {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .nav-cta {
        min-height: 46px;
        padding: 0 14px;
        font-size: 15px;
        white-space: nowrap;
    }

    .hero {
        padding: 24px 0 18px;
    }

    .eyebrow {
        margin-bottom: 10px;
        font-size: 11px;
        line-height: 1.6;
        letter-spacing: 0.14em;
    }

    h1 {
        margin-bottom: 12px;
        max-width: 316px;
        font-size: clamp(30px, 8.4vw, 34px);
        line-height: 1.04;
    }

    .hero-text {
        max-width: 334px;
        margin-bottom: 16px;
        font-size: 16px;
        line-height: 1.4;
    }

    .small-note {
        margin-top: 8px;
    }

    .hero-actions {
        display: grid;
        gap: 12px;
    }

    .button-large {
        width: 100%;
        min-height: 62px;
        font-size: 19px;
        white-space: normal;
        text-align: center;
    }

    .small-note {
        max-width: 330px;
        margin-inline: auto;
        font-size: 17px;
        line-height: 1.35;
    }

    .marquee-container {
        margin-top: 56px;
    }

    .marquee-row {
        gap: 16px;
        padding-bottom: 16px;
    }

    .marquee-row img {
        width: 168px;
        height: 232px;
        border-radius: 20px;
    }

    .photo-section {
        padding: 58px 0 34px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .section-heading h2,
    .steps h2,
    .pricing-heading h2,
    .final-cta h2 {
        font-size: clamp(38px, 12vw, 54px);
    }

    .section-heading p,
    .pricing-heading p,
    .final-cta p {
        font-size: 19px;
    }

    .slider-controls {
        align-self: flex-end;
        gap: 8px;
    }

    .circle-button {
        width: 48px;
        height: 48px;
    }

    .cards-rail {
        gap: 16px;
        padding-inline: 14px;
    }

    .photo-card {
        flex-basis: 82vw;
        border-radius: 22px;
    }

    .photo-card a {
        height: 400px;
    }

    .photo-cta {
        opacity: 1;
        transform: translate(-50%, 0);
        min-height: 50px;
        font-size: 17px;
    }

    .photo-card a::after {
        opacity: 1;
    }

    .photo-card p {
        padding: 18px 20px 22px;
        font-size: 17px;
    }

    .steps {
        padding: 70px 0 58px;
    }

    .steps h2 {
        margin-bottom: 34px;
    }

    .step-card {
        grid-template-columns: 54px 1fr;
        gap: 16px;
        padding: 18px;
        border-radius: 22px;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .step-card p {
        font-size: 14px;
    }

    .step-card h3 {
        font-size: 25px;
    }

    .step-card span {
        font-size: 17px;
    }

    .phone-preview {
        border-radius: 30px;
    }

    .reviews {
        padding: 52px 0 68px;
    }

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

    .review-card {
        flex-basis: 82vw;
        min-height: auto;
        padding: 24px;
    }

    .review-card p {
        min-height: 104px;
        font-size: 19px;
    }

    .try-section {
        grid-template-columns: 1fr;
        padding: 58px 0 70px;
    }

    .try-panel {
    width: 100%;
    max-width: 900px;
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: var(--surface-soft);
    margin: 0;
}

    .style-picker {
        grid-template-columns: repeat(4, 1fr);
    }

    .style-card {
        min-height: 90px;
    }

    .pricing {
        padding: 64px 0 70px;
    }

    .pricing-heading {
        margin-bottom: 46px;
    }

    .price-card {
        min-height: auto;
        padding: 34px 24px 24px;
    }

    .price-card strong {
        font-size: 58px;
    }

    .token-pill {
        min-height: 54px;
        font-size: 19px;
    }

    .price-card ul {
        font-size: 18px;
    }

    .final-cta {
        margin-bottom: 54px;
        padding: 42px 18px;
        border-radius: 26px;
    }

    .pain-grid, .solution-grid {
        grid-template-columns: 1fr;
    }
    .pain-card, .solution-card {
        padding: 26px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}

/* (zoom removed — broke full-bleed marquees) */

/* Word hyphenation for Russian — splits long words on narrow screens */
html {
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    overflow-wrap: break-word;
    word-break: normal;
}

/* Keep hero copy without hyphenation */
.hero-copy h1,
.hero-text {
    hyphens: manual;
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
}

/* Mobile: arrows under the subtitle (instead of overflowing to the right) */
@media (max-width: 760px) {
    .section-heading.has-controls {
        flex-direction: column;
        align-items: stretch;
    }
    .section-heading.has-controls .slider-controls {
        align-self: flex-start;
    }

    /* Photo cards on mobile — smaller so ~1.5 cards fit in viewport */
    .photo-card {
        flex-basis: 62vw;
        flex: 0 0 62vw;
        width: 62vw;
        height: auto;
        min-height: 340px;
    }
    .photo-card a {
        height: 100%;
        min-height: 100%;
    }
    .img-wrap {
        height: 280px;
    }
    .photo-card p {
        padding: 0 14px;
        font-size: 14px;
        min-height: 56px;
    }

    /* Steps section on mobile: hide phone preview, show all 3 cards as a list */
    .phone-preview {
        display: none;
    }
    .steps-layout {
        display: block;
    }
    .step-list {
        gap: 14px;
    }
    .step-card {
        opacity: 1;
        transform: none;
        border-color: rgba(35, 146, 255, 0.24);
        background: white;
        box-shadow: var(--soft-shadow);
    }
    .step-card h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }
    .step-card span {
        font-size: 15px;
        line-height: 1.4;
    }
    .step-card p {
        font-size: 14px;
        margin-bottom: 4px;
    }

    /* Style picker: 2 columns on mobile */
    .style-picker {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Smaller headlines on mobile */
    .section-heading h2,
    .steps h2,
    .pricing-heading h2,
    .final-cta h2,
    .try-copy h2 {
        font-size: clamp(28px, 8vw, 40px);
    }
    .hero-copy h1 {
        font-size: clamp(32px, 9vw, 48px);
    }

    /* Hide hover CTA entirely on mobile */
    .photo-cta {
        display: none !important;
    }

    /* Ensure caption strip fills remaining card height so text centers in it */
    .photo-card a {
        min-height: 100%;
    }
}

/* Center pricing note and entire try-section block */
.pricing-note {
    text-align: center;
}

.try-section {
    align-items: center;
    text-align: center;
}

.try-copy {
    align-items: center;
}

.try-copy .benefits-list {
    justify-content: center;
}

/* Cards rail: edge-to-edge, no centered constraint */
.cards-rail {
    padding: 0 20px 22px;
}

/* Desktop-only photo card sizing (mobile is overridden below in @media 760) */
@media (min-width: 761px) {
    .photo-card {
        width: 360px;
        height: 540px;
        flex: 0 0 360px;
    }
    .img-wrap {
        height: 490px;
    }
}

/* Caption — centered vertically inside the white strip (applies everywhere) */
.photo-card p {
    flex: 1 1 auto;
    font-size: 15px;
    line-height: 1.2;
    -webkit-line-clamp: 1;
    color: var(--ink);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Bigger hover CTA, placed near the bottom of the image */
.photo-cta {
    left: 50%;
    top: auto;
    bottom: 22px;
    min-height: 48px;
    padding: 0 28px;
    font-size: 17px;
    border-radius: 999px;
    transform: translateX(-50%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.photo-card:hover .photo-cta,
.photo-card:focus-within .photo-cta {
    transform: translateX(-50%);
}

/* Pain & solution sections: matched card style, divergent accent color */
.pain-card h3 {
    color: var(--ink);
}

.solution-icon {
    background: rgba(35, 146, 255, 0.12);
    color: var(--violet);
}

/* Center benefits-list under try-copy */
.try-copy .benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 28px;
}

/* Shorter review cards, content centered vertically */
.review-card {
    min-height: 0;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card p {
    font-size: 16px;
    line-height: 1.4;
}

.review-header {
    margin-bottom: 12px;
}

.avatar-gradient {
    width: 44px;
    height: 44px;
    font-size: 18px;
}

.review-name {
    font-size: 16px;
}

/* No edge fade on marquee — extend photos to the edge */
.marquee-container {
    -webkit-mask-image: none;
    mask-image: none;
}

/* Break hero/reviews marquee out of section-shell to full viewport width */
.hero .marquee-container,
.reviews .marquee-container {
    position: relative;
    width: 100vw;
    max-width: none;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* White background inside the idea textarea */
.idea-box textarea {
    background: white;
}

/* <picture> matches its inner <img> in layout (avoids reflow / scroll jitter) */
picture {
    display: inline-block;
    line-height: 0;
}

.marquee-row picture {
    flex: 0 0 auto;
}

.cards-rail picture {
    display: block;
    width: 100%;
    height: 100%;
}

.img-wrap picture {
    width: 100%;
    height: 100%;
}
