﻿.range-card-preview {
    background: linear-gradient(140deg, rgba(255, 193, 7, 0.18), rgba(255, 255, 255, 0.95));
}

.nav-links li {
    white-space: nowrap;
}

:root {
    --primary: #e50046;
    --primary-strong: #c7003d;
    --bg: #f6f7fb;
    --panel: #ffffff;
    --text: #111322;
    --muted: #5a6175;
    --border: #e5e7ef;
    --shadow-soft: 0 14px 40px rgba(17, 19, 34, 0.08);
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-pill: 999px;
    --max-width: 1180px;
    --space-1: 8px;
    --space-2: 12px;
    --space-3: 16px;
    --space-4: 24px;
    --space-5: 32px;
    --space-6: 48px;
    --space-7: 60px;
    --display-font: 'Space Grotesk', 'League Spartan', 'Segoe UI', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--display-font);
    background: linear-gradient(135deg, #fdfdff 0%, #f4f5fb 40%, #f6f7fb 100%);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

p a {
    color: #e50046;
    text-decoration: none;
    transition: color 0.2s ease;
}

p a:hover {
    color: #ff1a5c;
    text-decoration: underline;
}

.muted {
    color: var(--muted);
}

.centered {
    text-align: center;
}

.page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(246, 247, 251, 0.90);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    padding: 0 12px;
    overflow: hidden;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
    gap: var(--space-4);
    flex-wrap: nowrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--text);
}

.brand-logo {
    height: 32px;
    width: auto;
}

.brand-text {
    font-family: 'League Spartan', 'Segoe UI', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    letter-spacing: 0.02em;
}

.nav-actions {
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-actions .btn {
    padding-top: 5px;
    padding-bottom: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: var(--space-4);
    flex-wrap: nowrap;
    flex: 1 1 auto;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
}

.nav-links a {
    font-size: 0.98rem;
    color: var(--muted);
    transition: color 0.2s, opacity 0.2s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text);
    margin-right: 4px;
}

.lang-option {
    color: inherit;
    text-decoration: none;
    opacity: 0.55;
    transition: opacity 0.2s ease;
}

.lang-option:hover {
    opacity: 0.85;
}

.lang-option.is-active,
.lang-option[aria-current="true"] {
    opacity: 1;
}

.lang-divider {
    opacity: 0.35;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border 0.18s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 28px rgba(229, 0, 70, 0.25);
}

.btn-primary:hover {
    background: var(--primary-strong);
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(229, 0, 70, 0.28);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--border);
    color: var(--text);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.toggle-row {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    margin: var(--space-3) 0;
}

.toggle-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: rgba(17, 19, 34, 0.04);
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
}

.toggle {
    border: 1px solid transparent;
    background: transparent;
    color: var(--muted);
    font-weight: 700;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, border 0.18s ease, box-shadow 0.18s ease;
}

.toggle:hover {
    color: var(--text);
    border-color: rgba(17, 19, 34, 0.08);
    background: #fff;
}

.toggle.is-active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(229, 0, 70, 0.2);
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

section {
    padding: var(--space-7) 16px;
}

#pricing-hero {
    background: #fff;
    border-bottom: 1px solid var(--border);
}



.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-5);
    align-items: center;
}

.how-demo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    align-items: center;
}



.demo-video {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(229, 0, 70, 0.08), rgba(229, 0, 70, 0));
    border: 1px solid rgba(17, 19, 34, 0.08);
    box-shadow: 0 30px 60px rgba(17, 19, 34, 0.12);
}

.demo-video-player {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.how-copy {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.eyebrow {
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 1.2rem;
    margin-bottom: var(--space-2);
}

h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: var(--space-3);
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: var(--space-3);
    line-height: 1.2;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-1);
}

.lede {
    font-size: 1.1rem;
    color: var(--muted);
    margin-bottom: var(--space-4);
    max-width: 640px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.hero-actions.centered {
    justify-content: center;
    margin-top: var(--space-3);
}

.hero-meta {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-pill);
    padding: 8px 14px;
    background: rgba(229, 0, 70, 0.08);
    color: var(--primary-strong);
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid rgba(229, 0, 70, 0.16);
}

.pill+.pill {
    margin-left: 6px;
}

.hero-visual {
    border-radius: var(--radius-lg);
    padding: 0;
    box-shadow: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    width: min(100%, 70vw);
    margin-left: auto;
    margin-right: auto;
}

.ba-wrap {
    position: relative;
}

.ba-slider {
    margin: 8px 0 20px;
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 16/7;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #fdfdff 0%, #eef1ff 60%, #e3e7ff 100%);
    user-select: none;
    touch-action: none;
    --feather: 24px;
    opacity: 0;
    transition: opacity 1s ease;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.22);
}

.ba-slider.loaded {
    opacity: 1;
}

.ba-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 -60px 120px rgba(15, 23, 42, 0.18);
}

.ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba-before {
    -webkit-mask-image: linear-gradient(to right, #000 0, #000 calc(var(--pos) - var(--feather)), transparent calc(var(--pos) + var(--feather)), transparent 100%);
    mask-image: linear-gradient(to right, #000 0, #000 calc(var(--pos) - var(--feather)), transparent calc(var(--pos) + var(--feather)), transparent 100%);
    will-change: mask-image, -webkit-mask-image;
}

.ba-after {
    -webkit-mask-image: linear-gradient(to right, transparent 0, transparent calc(var(--pos) - var(--feather)), #000 calc(var(--pos) + var(--feather)), #000 100%);
    mask-image: linear-gradient(to right, transparent 0, transparent calc(var(--pos) - var(--feather)), #000 calc(var(--pos) + var(--feather)), #000 100%);
    will-change: mask-image, -webkit-mask-image;
}

.ba-slider::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos);
    width: 2px;
    background: linear-gradient(180deg, rgba(229, 0, 70, 0.2), rgba(229, 0, 70, 0.85));
    opacity: 0.85;
    pointer-events: none;
    transform: translateX(-1px);
    box-shadow: 0 0 18px rgba(229, 0, 70, 0.45);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos);
    transform: translateX(-50%);
    width: 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, #fff, #f6f6f6);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    cursor: ew-resize;
    transition: transform 0.16s ease, border 0.16s ease;
}

.ba-handle::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 24px;
    border-right: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ba-handle::after {
    content: none;
}

.ba-handle:hover {
    transform: translateX(-50%) scale(1.1);
}

.ba-handle:active {
    transform: translateX(-50%) scale(1.18);
    border-color: var(--primary);
}

.filelogo {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
    pointer-events: none;
}

.filelogo img {
    max-height: clamp(34px, 12vw, 72px);
    max-width: 100%;
    opacity: 0;
    transform: translateY(14px) scale(0.9);
    animation: filelogo-pop 0.7s ease forwards;
}

.filelogo.input {
    left: 0;
    top: 0;
    transform: translate(-30%, -30%);
}

.filelogo.input img {
    animation-delay: 0.5s;
}

.filelogo.output {
    right: 0;
    bottom: 0;
    transform: translate(10%, 30%);
    justify-content: flex-end;
}

.filelogo.output img:nth-child(1) {
    animation-delay: 0.8s;
}

.filelogo.output img:nth-child(2) {
    animation-delay: 1.1s;
}

.filelogo.output img:nth-child(3) {
    animation-delay: 1.4s;
}

.metrics-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-3);
    padding: var(--space-4) 16px;
}

.stat {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
}

.stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(229, 0, 70, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-weight: 800;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.1;
}

.stat-label {
    font-weight: 700;
    color: var(--text);
    margin: 4px 0 6px;
}

.stat-title {
    font-weight: 700;
    color: var(--text);
}

.stat-desc {
    color: var(--muted);
    font-size: 1rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-2);
}

.card {
    /* background: #fff; */
    /* border: 1px solid var(--border); */
    border-radius: var(--radius-lg);
    padding: var(--space-2) var(--space-4);
}

.card p {
    color: var(--muted);
}

.value-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgb(255, 255, 255), transparent 80%);
}

.white-bg {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-5);
    align-items: stretch;
}

.about-points {
    list-style: none;
    margin: var(--space-3) 0;
    padding-left: 0;
    display: grid;
    gap: var(--space-2);
}

.about-points-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: var(--space-3);
    margin-bottom: var(--space-2);
    color: var(--text);
}

.about-points li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(115deg, rgba(229, 0, 70, 0.04), rgba(229, 0, 70, 0.02));
    border: 1px solid rgba(229, 0, 70, 0.12);
    border-radius: var(--radius-lg);
    padding: var(--space-1) var(--space-3);
    box-shadow: 0 14px 28px rgba(17, 19, 34, 0.06);
}

.about-points .emoji-bullet {
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
    display: flex;
    align-items: baseline;
    line-height: 2.1rem;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(229, 0, 70, 0.18);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-points .point-text {
    flex: 1;
    color: var(--text);
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.founder-grid {
    display: flex;
    flex-direction: column;
    justify-content: end;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-3);
}

.founder-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--space-3);
    align-items: start;
}

.founder-media {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
}

.founder-photo {
    width: 96px;
    height: 96px;
    border-radius: 999px;
    background: repeating-linear-gradient(135deg, rgba(229, 0, 70, 0.25), rgba(229, 0, 70, 0.25) 12px, rgba(0, 0, 0, 0.04) 12px, rgba(0, 0, 0, 0.04) 24px);
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
}

.founder-role {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: var(--space-2);
}

.founder-links {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
}

.btn-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: transform 0.18s ease, border 0.18s ease, box-shadow 0.18s ease;
}

.btn-icon.linkedin {
    color: var(--primary);
}

.btn-icon:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(17, 19, 34, 0.15);
}

.btn-icon svg {
    fill: currentColor;
}

.step-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3);
}

.step-head {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    transition: border 0.2s ease, box-shadow 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.step.is-clickable {
    cursor: pointer;
}

.step.is-clickable:hover {
    border-color: rgba(229, 0, 70, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(17, 19, 34, 0.10);
}

.step.is-clickable:focus-visible {
    outline: 2px solid rgba(229, 0, 70, 0.8);
    outline-offset: 4px;
}

.step.is-active {
    border-color: rgba(229, 0, 70, 0.6);
    box-shadow: 0 20px 45px rgba(17, 19, 34, 0.12);
    background: linear-gradient(135deg, rgba(229, 0, 70, 0.12), rgba(255, 255, 255, 0.95));
    transform: translateY(-2px);
}

.step.is-active .step-number {
    background: #fff;
    color: var(--primary);
    border: 2px solid rgba(229, 0, 70, 0.3);
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-grid h3 {
    margin: 0;
}

.subtle {
    color: var(--muted);
    font-size: 1.1rem;
}

.tag {
    display: inline-block;
    background: rgba(229, 0, 70, 0.10);
    color: #e50046;
    padding: 3px 12px 1px 12px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    border: 1px solid rgba(229, 0, 70, 0.28);
    box-shadow: 0 8px 18px rgba(17, 19, 34, 0.06);
    margin-bottom: var(--space-2);
    text-align: center;
    width: fit-content;
    align-self: center;
}

.use-case-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4) var(--space-2) var(--space-4);
    display: flex;
    flex-direction: column;
}

.use-case-block {
    margin-top: var(--space-5);
}

.use-cases-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-7);
}

.use-cases-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    /* gap: clamp(var(--space-3), 4vw, 32px); */
    align-items: center;
}

.use-cases-copy {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.use-cases-copy .cards-grid {
    margin-top: 0;
}

/* Stack the three value cards in one column under “Why teams choose AmpliFy” */
.use-cases-wrapper .use-cases-panel:nth-child(2) .cards-grid {
    grid-template-columns: 1fr;
}

.use-cases-visual {
    display: flex;
    justify-content: center;
    height: 100%;
}

.use-cases-illustration {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.use-cases-illustration::after {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: calc(var(--radius-lg) - 6px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}

.use-cases-illustration img {
    position: relative;
    display: block;
    width: 125%;
    max-width: 80vw;
    height: auto;
    /* filter: drop-shadow(0 16px 30px rgba(17, 19, 34, 0.18)); */
    filter: drop-shadow(0 10px 16px rgba(17, 19, 34, 0.24));
    /* Fade the right edge so the crop feels softer */
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 80%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 80%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.use-cases-panel.is-reversed .use-cases-illustration {
    justify-content: flex-end;
}

.use-cases-panel.is-reversed .use-cases-illustration img {
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 80%);
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 80%);
}

.use-cases-panel.is-reversed .use-cases-copy {
    order: 2;
}

.use-cases-panel.is-reversed .use-cases-visual {
    order: 1;
}

.timeline-grid {
    margin-top: var(--space-4);
    display: flex;
    justify-content: center;
}

.feature-panel {
    margin: var(--space-4) 0 var(--space-5);
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.feature-panel-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: var(--space-3);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-3) var(--space-4);
    margin-top: var(--space-2);
    margin-bottom: var(--space-4);
}

.feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 4px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    background: linear-gradient(140deg, rgba(17, 19, 34, 0.02), rgba(255, 255, 255, 0.96));
    border: 1px solid rgba(17, 19, 34, 0.08);
    box-shadow: 0 10px 26px rgba(17, 19, 34, 0.05);
}

.feature-item h3 {
    margin: 0;
    font-size: 1.05rem;
}

.feature-item p {
    margin: 2px 0 0;
    color: var(--muted);
}

.timeline-track {
    position: relative;
    padding: var(--space-4) 0;
    width: 100%;
    max-width: 860px;
    display: flex;
    flex-direction: column;
}

.timeline-axis {
    position: absolute;
    left: 50%;
    top: var(--space-4);
    bottom: var(--space-4);
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(229, 0, 70, 0.7), rgba(229, 0, 70, 0.15));
    transform: translateX(-50%);
}

.timeline-card {
    position: relative;
    background: linear-gradient(135deg, rgba(229, 0, 70, 0.05), #fff);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    box-shadow: 0 18px 40px rgba(17, 19, 34, 0.08);
    border: 1px solid rgba(229, 0, 70, 0.25);
    max-width: 340px;
}

.timeline-card::before {
    content: "";
    position: absolute;
    top: 24px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 4px rgba(229, 0, 70, 0.15);
}

.timeline-track.is-animated .timeline-card {
    opacity: 0;
    transform: translateY(36px) scale(0.98);
    transition: opacity 0.55s ease, transform 0.6s cubic-bezier(0.32, 0.72, 0, 1), box-shadow 0.35s ease;
    transition-delay: var(--timeline-delay, 0ms);
}

.timeline-track.is-animated .timeline-card::before {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.45s ease, transform 0.45s ease;
    transition-delay: calc(var(--timeline-delay, 0ms) + 120ms);
}

.timeline-track.is-animated .timeline-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.timeline-track.is-animated .timeline-card.is-visible::before {
    opacity: 1;
    transform: scale(1);
}

.timeline-card+.timeline-card {
    margin-top: -36px;
}

.timeline-card:last-child {
    margin-bottom: 0;
}

.timeline-card:nth-child(odd) {
    align-self: flex-start;
    margin-right: calc(50% + 18px);
}

.timeline-card:nth-child(odd)::before {
    right: -40px;
}

.timeline-card:nth-child(even) {
    align-self: flex-end;
    margin-left: calc(50% + 18px);
}

.timeline-card:nth-child(even)::before {
    left: -40px;
}

.timeline-meta {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-1);
    flex-wrap: wrap;
    justify-content: space-between;
}

.timeline-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--muted);
}

.timeline-status {
    display: inline-flex;
    margin-top: 0;
    padding: 3px 12px 1px 12px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.85rem;
    background: rgba(229, 0, 70, 0.1);
    color: var(--primary-strong);
    white-space: nowrap;
}

.timeline-card.is-future {
    background: #fff;
    border-color: rgba(17, 19, 34, 0.08);
}

.timeline-card.is-future::before {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(229, 0, 70, 0.2);
}

.timeline-card.is-past::before {
    background: var(--primary);
}

.faq {
    column-count: 2;
    column-gap: var(--space-3);
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(17, 19, 34, 0.06);
    break-inside: avoid;
    margin-bottom: var(--space-3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2);
    padding: var(--space-3);
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    transition: color 180ms ease;
}

.faq-question:hover,
.faq-question:focus-visible {
    color: #e50046;
    outline: none;
}

.faq-caret {
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 180ms ease;
}

.faq-item[open] .faq-caret,
.faq-question[aria-expanded="true"] .faq-caret {
    transform: rotate(225deg);
}

.faq-answer {
    padding: 0 var(--space-3) var(--space-3);
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 260ms ease, opacity 200ms ease;
}

.faq-answer.is-open {
    max-height: 900px;
    opacity: 1;
}

.legal-hero {
    padding-top: var(--space-6);
    padding-bottom: var(--space-4);
}

.legal-section {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: var(--space-6) 0;
}

.legal-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: var(--space-3);
}

#privacy-content-standalone h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: var(--space-2);
}

#privacy-content-standalone h3 {
    margin-top: var(--space-3);
    margin-bottom: var(--space-1);
}

#privacy-content-standalone p,
#privacy-content-standalone ul {
    color: var(--muted);
}

#privacy-content-standalone ul {
    margin: var(--space-1) 0 var(--space-2) var(--space-3);
    padding-left: var(--space-2);
    display: grid;
    gap: 6px;
    list-style: disc;
}

.cta {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    text-align: center;
}

.footer {
    padding: var(--space-5) 0 var(--space-4);
    border-top: 1px solid var(--border);
    background: #fff;
    margin-top: var(--space-4);
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    align-items: center;
    justify-content: space-between;
}

.footer-links {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    color: var(--muted);
}

.footer-note {
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: var(--space-2);
}

.token-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0;
    margin: 0;
    color: var(--text);
}

.token-list li::before {
    content: none;
}

.token-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: flex-start;
    line-height: 1.4;
}

.token-feature-title {
    font-weight: 700;
    display: block;
}

.token-feature-detail {
    display: block;
    font-size: 0.92rem;
    color: var(--muted);
}

.tick {
    display: inline-flex;
    align-items: baseline;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: rgba(15, 157, 88, 0.12);
    color: #0f9d58;
    font-weight: 800;
    margin-right: 8px;
    font-size: 0.95rem;
    flex: 0 0 1.4rem;
}

.tick-limited {
    background: rgba(255, 193, 7, 0.2);
    color: #a67600;
}

.tick-missing {
    background: rgba(17, 19, 34, 0.08);
    color: var(--muted);
}

.range-grid {
    margin-top: var(--space-4);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-4);
}

.range-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(17, 19, 34, 0.08);
    padding: var(--space-4);
    box-shadow: 0 18px 40px rgba(17, 19, 34, 0.05);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    background: #fff;
}

.range-card-preview,
.range-card-starter,
.range-card-portfolio,
.range-card-enterprise {
    background: inherit;
}

.range-card-head {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.range-label {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: var(--muted);
}

.range-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(17, 19, 34, 0.12);
    font-weight: 700;
    font-size: 0.9rem;
}

.range-rate {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    align-items: baseline;
}

.custom-rate {
    font-size: 2.2rem;
}

.range-rate-value {
    font-size: 2.6rem;
    font-weight: 800;
}

.range-rate-unit {
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
}

.range-example {
    font-size: 0.95rem;
    color: var(--muted);
    font-weight: 600;
    margin-top: -4px;
}

.range-example-label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: var(--primary);
    background: rgba(229, 0, 70, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 6px;
    width: fit-content;
}

.range-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: var(--space-2) 0 0;
    color: var(--text);
    font-size: 0.95rem;
}

.range-points li {
    position: relative;
    padding-left: 18px;
}

.range-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.range-token-list {
    margin-top: var(--space-2);
    margin-bottom: var(--space-2);
}

.range-token-list .tick {
    margin-top: 2px;
}

.range-cta {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.range-footnote {
    margin-top: var(--space-1);
    padding: var(--space-1);
    text-align: center;
    color: var(--muted);
    font-size: 0.85rem;
}

.token-list {
    list-style: none;
    display: grid;
    gap: 8px;
    padding: 0;
    color: var(--text);
}

li::marker {
    content: none;
}

.list li::before {
    content: "•";
    color: var(--primary);
    margin-right: 8px;
}

.token-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
}

.price-badge {
    position: absolute;
    top: -30px;
    right: -24px;
    background: linear-gradient(120deg, rgba(229, 0, 70, 0.9), rgba(255, 115, 115, 0.9));
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 25px rgba(229, 0, 70, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    animation: badge-pop 2.4s ease-in-out infinite;
}

.price-badge::before {
    content: "✨";
}

/* @keyframes badge-pop {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

@keyframes volume-badge-pop {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -3px);
    }
} */

.examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-3);
}

.rise {
    animation: rise-in 0.6s ease both;
}

.ify-teaser-wrapper {
    position: relative;
    height: 100%;
    max-width: none;
    padding: 0;
    width: 100%;
}

.ify-shell {
    position: relative;
    min-height: 340vh;
    isolation: isolate;
    width: 100%;
    padding: 0;
}

.ify-ambient {
    position: absolute;
    inset: 0;
    background: none;
    mix-blend-mode: normal;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.ify-sticky {
    position: sticky;
    top: 8vh;
    height: clamp(82vh, 90vh, 96vh);
    display: grid;
    align-content: center;
    z-index: 1;
}

.ify-layers {
    position: relative;
    height: 100%;
    min-height: 72vh;
    padding: clamp(22px, 5vw, 44px);
    overflow: hidden;
    width: 100%;
    max-width: min(1200px, 94vw);
    margin: 0 auto;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(245, 247, 255, 0.9));
    /* box-shadow: 0 24px 80px rgba(16, 23, 48, 0.16), 0 4px 24px rgba(16, 23, 48, 0.12); */
    border: 1px solid rgba(155, 155, 155, 0.6);
}

.ify-layers::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(120% 120% at 20% 20%, rgba(229, 0, 70, 0.08), transparent 60%),
        radial-gradient(120% 120% at 80% 80%, rgba(87, 128, 255, 0.08), transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.ify-layers>* {
    position: relative;
    z-index: 1;
}

.ify-product-shot {
    position: absolute;
    top: clamp(6px, 6vw, 32px);
    top: -15%;
    left: 25%;
    width: min(920px, 120vw);
    max-width: 980px;
    opacity: 0;
    transform: translate3d(-50%, -12px, 0) scale(1.06);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
    border-radius: 18px;
    overflow: hidden;
    z-index: 0;
}

.ify-product-shot img {
    display: block;
    width: 100%;
    height: auto;
    filter: blur(4px);
}

.ify-sequence {
    position: relative;
    min-height: 72vh;
    width: 100%;
    display: grid;
    gap: 18px;
    place-items: center;
}

.ify-text {
    position: absolute;
    width: min(680px, 70vw);
    transform: translateY(0);
    text-align: left;
    color: var(--text);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.ify-text-vertical {
    left: 8%;
    right: auto;
    text-align: left;
}

.ify-text-amplify {
    bottom: 0%;
    left: auto;
    right: 8%;
    text-align: right;
}

.ify-text-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    /* mirror h1 scale */
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-3);
}

.ify-text-body {
    font-size: 1.3rem;
    line-height: 1.55;
    color: var(--muted);
}

.ify-note {
    position: absolute;
    right: clamp(16px, 4vw, 32px);
    bottom: clamp(16px, 3vw, 28px);
    max-width: min(320px, 60vw);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 19, 34, 0.08);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 16px 36px rgba(17, 19, 34, 0.12);
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.45;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ify-note-term {
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.ify-note-def {
    color: var(--muted);
    font-size: 0.9rem;
}

.ify-letters {
    width: min(900px, 92vw);
    height: clamp(260px, 46vw, 380px);
    margin: 0 auto;
}

.ify-logo-front {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.ify-logo-front img {
    width: auto;
    height: auto;
    display: block;
}

.ify-letter {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    display: inline-flex;
    align-items: baseline;
    font-family: var(--display-font);
    font-size: clamp(4rem, 13vw, 7rem);
    font-weight: 700;
    color: var(--text);
    text-shadow: 0 6px 18px rgba(17, 19, 34, 0.12);
    transition: transform 0.4s ease, opacity 0.4s ease;
    will-change: transform, opacity;
}

.ampl-letter {
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
    font-size: clamp(4rem, 13vw, 7rem);
}

.ify-letter:nth-child(1) {
    transform: translate3d(calc(-120px), -50%, 0);
}

.ify-letter:nth-child(2) {
    transform: translate3d(-50%, -50%, 0);
}

.ify-letter:nth-child(3) {
    transform: translate3d(calc(120px), -50%, 0);
}

.ify-fragment {
    display: inline-block;
    font-family: var(--display-font);
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 700;
    color: var(--text);
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    white-space: nowrap;
    will-change: opacity, transform;
}

.ify-ampl {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translate(-50%, 0);
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    font-size: clamp(3rem, 11vw, 7rem);
    font-weight: 700;
    opacity: 0;
    transform-origin: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ampl-prefix {
    color: #ffe3ed;
    letter-spacing: -0.04em;
    opacity: 0;
    display: inline-block;
    transform: translateX(-18px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.ampl-inline {
    color: #f7f7fb;
}

.ify-word {
    font-family: var(--display-font);
    font-size: clamp(3.6rem, 13vw, 7rem);
    font-weight: 700;
    color: #f7f7fb;
    text-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.ify-word.meaning {
    font-size: clamp(2.2rem, 8vw, 5rem);
    letter-spacing: -0.03em;
}

.ify-sub {
    max-width: 780px;
    color: rgba(240, 241, 255, 0.82);
    font-size: clamp(1rem, 2.2vw, 1.25rem);
}

.ify-cta {
    display: inline-flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 6px;
}

.legal-section li::marker {
    content: normal;
    color: var(--muted);
}


@keyframes pulse {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes filelogo-pop {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.92);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes rise-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }
}

@media (min-width: 900px) {
    .how-demo-grid {
        grid-template-columns: 0.4fr 0.6fr;
    }
}

@media (max-width: 900px) {
    .nav {
        padding: var(--space-1) 0;
        gap: var(--space-1);
    }

    .ify-shell {
        min-height: 200vh;
    }

    .ify-layers {
        padding: 24px;
    }

    .ify-word {
        font-size: clamp(3rem, 14vw, 6.6rem);
    }

    .ify-sub {
        font-size: 1rem;
    }

    .ify-text-body {
        font-size: 1.1rem;
    }

    .ify-cta {
        width: 100%;
        justify-content: center;
    }

    .nav .btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }

    .brand-logo {
        height: 28px;
    }

    .brand-text {
        font-size: 1.6rem;
    }

    .visual-panels {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        margin-top: var(--space-3);
    }

    .use-cases-panel {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .use-cases-panel.is-reversed .use-cases-copy,
    .use-cases-panel.is-reversed .use-cases-visual {
        order: initial;
    }

    .use-cases-visual {
        margin-top: var(--space-3);
    }

    .use-cases-illustration {
        margin: 0 auto;
        padding: var(--space-3);
        justify-content: center !important;
    }

    .use-cases-illustration img {
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }

    .use-cases-illustration::after {
        inset: 14px;
    }

    .timeline-track {
        max-width: 100%;
        --timeline-mobile-axis: 28px;
        padding: var(--space-4) 0;
        padding-left: calc(var(--timeline-mobile-axis) + 32px);
        display: block;
    }

    .timeline-card,
    .timeline-card:nth-child(odd),
    .timeline-card:nth-child(even) {
        margin: 0 0 var(--space-3);
        max-width: 100%;
        align-self: stretch;
        padding-left: calc(var(--timeline-mobile-axis) + 20px);
    }

    .timeline-card+.timeline-card {
        margin-top: 0;
    }

    .timeline-card:last-child {
        margin-bottom: 0;
    }

    .timeline-card::before,
    .timeline-card:nth-child(odd)::before,
    .timeline-card:nth-child(even)::before {
        left: -43px;
        right: auto;
        transform: translateX(-50%);
    }

    .timeline-axis {
        left: var(--timeline-mobile-axis);
        transform: none;
        top: var(--space-2);
        bottom: var(--space-2);
    }

    .faq {
        column-count: 1;
    }
}


@media (max-width: 500px) {
    .nav .btn-ghost {
        display: none;
    }

    .ify-layers {
        padding: 22px;
    }

    .ify-word {
        font-size: clamp(2.6rem, 16vw, 5.2rem);
    }

    .ify-sub {
        font-size: 0.95rem;
    }

    .ify-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        width: 100%;
    }
}