/* ═══════════════════════════════════════════════
   Cancel This — v4
   ═══════════════════════════════════════════════ */

@font-face { font-display: swap; }

:root {
    --bg: #fafaf9;
    --bg-2: #f5f5f4;
    --surface: #fff;
    --border: #e7e5e4;
    --border-2: #d6d3d1;
    --text: #1c1917;
    --text-2: #44403c;
    --text-3: #78716c;
    --text-4: #a8a29e;
    --accent: #dc2626;
    --accent-2: #ef4444;
    --green: #16a34a;
    --yellow: #ca8a04;
    --blue: #4f46e5;
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --mono: 'JetBrains Mono', monospace;
    --radius: 12px;
    --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* ═══ HERO ═══════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px 40px;
    position: relative;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(220,38,38,0.04) 0%, transparent 100%),
        var(--bg);
}

.hero-inner {
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-3);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 40px;
    letter-spacing: 0.02em;
}

.hero h1 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 24px;
}

.hero .line1 {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    color: var(--text);
    letter-spacing: -0.02em;
}

.hero .line2 {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    letter-spacing: -0.02em;
}

.hero .line2 em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-3);
    max-width: 580px;
    margin: 0 auto 40px;
}

.hero-sub mark {
    background: #e4ff1a;
    color: var(--text);
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 500;
}

/* ─── Search Bar ───────────────────────────────── */

.hero-search {
    display: flex;
    gap: 8px;
    max-width: 520px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 10;
}

.search-box {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--text-4);
    pointer-events: none;
}

#search-input {
    width: 100%;
    padding: 15px 16px 15px 48px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-size: 1rem;
    font-family: var(--sans);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#search-input:focus {
    border-color: var(--text-4);
    box-shadow: 0 0 0 3px rgba(28,25,23,0.05);
}

#search-input::placeholder { color: var(--text-4); }

.search-go {
    width: 52px;
    min-width: 52px;
    height: 52px;
    background: var(--text);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, transform 0.1s;
}

.search-go svg {
    width: 20px;
    height: 20px;
    color: var(--bg);
}

.search-go:hover { background: var(--text-2); }
.search-go:active { transform: scale(0.95); }

/* ─── Popular Tags ─────────────────────────────── */

.hero-examples {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.example-label {
    font-size: 0.78rem;
    color: var(--text-4);
    margin-right: 2px;
}

.example-tag {
    font-size: 0.78rem;
    font-family: var(--sans);
    font-weight: 500;
    color: var(--text-3);
    background: none;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 4px 12px;
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.example-tag:hover {
    border-color: var(--text-4);
    color: var(--text);
    background: var(--surface);
}

/* ─── Scroll Hint ──────────────────────────────── */

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-4);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    animation: float 2.5s ease-in-out infinite;
}

.hero-scroll-hint svg {
    width: 16px;
    height: 16px;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Search Dropdown ──────────────────────────── */

.search-results {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
}

.search-result-item {
    padding: 11px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.08s;
    border-bottom: 1px solid var(--bg-2);
}

.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: var(--bg-2); }
.search-result-name { font-weight: 600; font-size: 0.9rem; }
.search-result-meta { display: flex; gap: 6px; align-items: center; }
.search-result-category { color: var(--text-4); font-size: 0.75rem; }

.difficulty-badge {
    font-size: 0.65rem; font-weight: 600; padding: 2px 7px;
    border-radius: 20px; text-transform: uppercase; letter-spacing: 0.04em;
}
.difficulty-easy { background: #dcfce7; color: #15803d; }
.difficulty-medium { background: #fef3c7; color: #a16207; }
.difficulty-hard { background: #fee2e2; color: #dc2626; }

.search-agent-item {
    padding: 11px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-weight: 500;
    font-size: 0.85rem;
    transition: background 0.08s;
    border-top: 1px solid var(--bg-2);
}
.search-agent-item:hover { background: var(--bg-2); }
.search-agent-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ═══ MARQUEE ════════════════════════════════════ */

.marquee-bar {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    background: var(--bg-2);
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-track span {
    font-family: var(--mono);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-4);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══ FEATURES ═══════════════════════════════════ */

.features {
    padding: 120px 24px;
}

.features-inner {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.feature-left h2 {
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.feature-left p {
    color: var(--text-3);
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-right {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-card {
    display: flex;
    gap: 16px;
    padding: 18px 20px;
    border-radius: var(--radius);
    transition: background 0.15s;
}

.feature-card:hover {
    background: var(--bg-2);
}

.fc-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.feature-card strong {
    font-size: 0.88rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1px;
}

.feature-card span {
    font-size: 0.82rem;
    color: var(--text-3);
    line-height: 1.4;
}

/* ═══ DIFFICULTY ═════════════════════════════════ */

.difficulty-section {
    padding: 100px 24px 120px;
    background: var(--text);
    color: var(--bg);
}

.diff-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.diff-inner h2 {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.diff-sub {
    color: #a8a29e;
    font-size: 0.92rem;
    margin-bottom: 56px;
}

.diff-scale {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    text-align: left;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
}

.diff-item {
    background: rgba(255,255,255,0.03);
    padding: 32px 28px;
    position: relative;
    transition: background 0.2s;
}

.diff-item:hover {
    background: rgba(255,255,255,0.06);
}

.diff-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-bottom: 16px;
    box-shadow: 0 0 8px currentColor;
}

.diff-item.easy .diff-dot { background: #22c55e; color: #22c55e; }
.diff-item.medium .diff-dot { background: #eab308; color: #eab308; }
.diff-item.hard .diff-dot { background: #ef4444; color: #ef4444; }

.diff-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.diff-item span {
    display: block;
    font-size: 0.82rem;
    color: #a8a29e;
    margin-bottom: 20px;
    line-height: 1.5;
}

.diff-examples {
    font-family: var(--mono);
    font-size: 0.72rem;
    color: #57534e;
    letter-spacing: 0.01em;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* ═══ CTA ════════════════════════════════════════ */

.cta-section {
    padding: 100px 24px;
    text-align: center;
}

.cta-inner {
    max-width: 540px;
    margin: 0 auto;
}

.cta-inner h2 {
    font-family: var(--serif);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.cta-btn {
    padding: 16px 40px;
    background: var(--text);
    color: var(--bg);
    border: none;
    border-radius: 100px;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
}

.cta-btn:hover { background: var(--text-2); }
.cta-btn:active { transform: scale(0.97); }

/* ═══ FOOTER ═════════════════════════════════════ */

footer {
    padding: 32px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
    color: var(--text-4);
    font-size: 0.78rem;
}

footer strong { color: var(--text-3); }

/* ═══════════════════════════════════════════════
   RESULTS PAGE
   ═══════════════════════════════════════════════ */

.container { max-width: 680px; margin: 0 auto; padding: 0 20px; }

#results { padding: 32px 0 80px; min-height: 100vh; }

.btn-back {
    background: none; border: none; color: var(--text-3);
    font-size: 0.85rem; font-family: var(--sans); cursor: pointer;
    padding: 6px 0; margin-bottom: 24px; transition: color 0.15s;
}
.btn-back:hover { color: var(--text); }

.result-header { margin-bottom: 24px; }
.result-header h1 {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.result-meta { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.result-tag { font-size: 0.72rem; padding: 3px 9px; border-radius: 20px; font-weight: 500; }
.method-tag { background: #eef2ff; color: var(--blue); }
.category-tag { background: var(--bg-2); color: var(--text-3); border: 1px solid var(--border); }

/* Collapsible */
.section-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
}

.section-card summary {
    padding: 14px 18px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background 0.08s;
    user-select: none;
}

.section-card summary::-webkit-details-marker { display: none; }
.section-card summary:hover { background: var(--bg-2); }

.section-card summary .section-title {
    display: flex; align-items: center; gap: 10px;
}

.section-card summary .section-icon {
    width: 28px; height: 28px; border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.82rem; flex-shrink: 0;
}

.section-card summary .chevron {
    width: 14px; height: 14px; color: var(--text-4);
    transition: transform 0.2s; flex-shrink: 0;
}

.section-card[open] summary .chevron { transform: rotate(180deg); }
.section-card .section-body { padding: 0 18px 18px; }

.icon-steps { background: #eef2ff; color: var(--blue); }
.icon-contact { background: #dcfce7; color: var(--green); }
.icon-tips { background: #fef3c7; color: var(--yellow); }
.icon-scripts { background: #f3e8ff; color: #7c3aed; }
.icon-calendar { background: #fee2e2; color: var(--accent); }

/* Primary steps */
.result-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    margin-bottom: 8px;
}

.result-section h2 {
    font-size: 0.88rem; font-weight: 600; margin-bottom: 12px;
    display: flex; align-items: center; gap: 10px;
}

.steps-list { list-style: none; counter-reset: steps; }

.steps-list li {
    counter-increment: steps;
    padding: 9px 0 9px 34px;
    position: relative;
    font-size: 0.88rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--bg-2);
    line-height: 1.5;
}

.steps-list li:last-child { border-bottom: none; }

.steps-list li::before {
    content: counter(steps);
    position: absolute; left: 0; top: 9px;
    width: 22px; height: 22px;
    background: var(--bg-2);
    color: var(--text-3);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; font-weight: 700;
}

.tips-list { list-style: none; }
.tips-list li {
    padding: 5px 0 5px 16px;
    position: relative;
    color: var(--text-2);
    font-size: 0.85rem;
    line-height: 1.5;
}
.tips-list li::before {
    content: ""; position: absolute; left: 3px; top: 13px;
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--yellow);
}

.no-online-banner {
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    margin-bottom: 8px;
    display: flex; align-items: center; gap: 8px;
    font-size: 0.82rem; color: #92400e;
}
.no-online-icon { font-size: 0.95rem; flex-shrink: 0; }

.recommended-badge {
    font-size: 0.6rem; font-weight: 600; padding: 2px 7px;
    border-radius: 20px; background: #dcfce7; color: #15803d;
    text-transform: uppercase; letter-spacing: 0.04em; margin-left: 4px;
}

details.alt-method {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 8px;
}
details.alt-method summary {
    padding: 13px 18px;
    list-style: none; cursor: pointer;
    font-size: 0.85rem; font-weight: 600; color: var(--text-3);
    display: flex; align-items: center; gap: 6px;
    transition: color 0.1s, background 0.08s;
}
details.alt-method summary:hover { color: var(--text-2); background: var(--bg-2); }
details.alt-method summary::-webkit-details-marker { display: none; }
details.alt-method summary::after {
    content: ''; margin-left: auto;
    border-left: 4px solid transparent; border-right: 4px solid transparent;
    border-top: 5px solid var(--text-4);
    transition: transform 0.15s;
}
details[open].alt-method summary::after { transform: rotate(180deg); }
details[open].alt-method summary { color: var(--text); border-bottom: 1px solid var(--bg-2); }
details.alt-method .steps-list { padding: 10px 18px 14px; }

.warning-box {
    background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 11px 13px; margin-top: 10px; font-size: 0.82rem;
    color: var(--text-2); line-height: 1.5;
}
.warning-box strong { color: var(--text); font-weight: 600; }

.pushback-box {
    background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 11px 13px; margin-top: 6px; font-size: 0.82rem;
    color: var(--text-2); line-height: 1.5; font-style: italic;
}
.pushback-box strong { color: var(--text); font-style: normal; font-weight: 600; }

.contact-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 6px;
}
.contact-item {
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 11px;
}
.contact-item .label {
    font-size: 0.65rem; text-transform: uppercase;
    letter-spacing: 0.06em; color: var(--text-4); margin-bottom: 2px; font-weight: 500;
}
.contact-item .value { font-weight: 600; font-size: 0.88rem; }
.contact-item a { color: var(--blue); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

.action-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.action-btn {
    padding: 12px 10px; background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text); font-family: var(--sans);
    font-size: 0.82rem; cursor: pointer; text-align: center;
    transition: border-color 0.1s, background 0.1s;
}
.action-btn:hover { border-color: var(--border-2); background: var(--bg); }
.action-btn .action-icon { display: block; font-size: 1rem; margin-bottom: 3px; }
.action-btn .action-label { display: block; font-weight: 600; font-size: 0.78rem; }
.action-btn .action-desc { display: block; font-size: 0.68rem; color: var(--text-4); margin-top: 1px; }

.generated-content {
    background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius-sm); padding: 14px; padding-right: 68px;
    margin-top: 10px; white-space: pre-wrap;
    font-size: 0.82rem; line-height: 1.7; position: relative; color: var(--text-2);
}

.copy-btn {
    position: absolute; top: 8px; right: 8px;
    padding: 4px 10px; background: var(--surface); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text-4); font-size: 0.7rem;
    font-family: var(--sans); cursor: pointer;
}
.copy-btn:hover { color: var(--text-2); }

.calendar-form { display: flex; gap: 6px; align-items: end; flex-wrap: wrap; }
.calendar-form label { font-size: 0.75rem; color: var(--text-4); display: block; margin-bottom: 2px; }
.calendar-form input {
    padding: 8px 10px; background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text); font-family: var(--sans); font-size: 0.85rem; outline: none;
}
.calendar-form input:focus { border-color: var(--border-2); }
.calendar-form button {
    padding: 8px 14px; background: var(--text); color: var(--bg); border: none;
    border-radius: var(--radius-sm); font-family: var(--sans); font-size: 0.8rem; font-weight: 600; cursor: pointer;
}
.calendar-form button:hover { background: var(--text-2); }

.calendar-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 10px; }
.calendar-link {
    padding: 9px 10px; background: var(--bg-2); border: 1px solid var(--border);
    border-radius: var(--radius-sm); color: var(--text-2); text-decoration: none;
    font-weight: 500; font-size: 0.8rem; text-align: center; cursor: pointer;
    transition: border-color 0.1s;
}
.calendar-link:hover { border-color: var(--border-2); }

/* Loading */
#loading-overlay {
    position: fixed; inset: 0; background: rgba(250,250,249,0.92);
    backdrop-filter: blur(16px); display: flex; align-items: center;
    justify-content: center; z-index: 1000;
}

.loading-content { text-align: center; }

.loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 40px;
    margin-bottom: 20px;
}

.loader-bar {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 4px;
    animation: loader-pulse 1.2s ease-in-out infinite;
}

.loader-bar:nth-child(1) { animation-delay: 0s; }
.loader-bar:nth-child(2) { animation-delay: 0.1s; }
.loader-bar:nth-child(3) { animation-delay: 0.2s; }
.loader-bar:nth-child(4) { animation-delay: 0.3s; }
.loader-bar:nth-child(5) { animation-delay: 0.4s; }

@keyframes loader-pulse {
    0%, 100% { height: 8px; opacity: 0.4; }
    50% { height: 32px; opacity: 1; }
}

#loading-text {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 4px;
}

.loading-sub {
    font-size: 0.78rem;
    color: var(--text-4);
}

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */

/* Hero entrance — stagger in on load */
.hero [data-enter] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero [data-enter].entered {
    opacity: 1;
    transform: translateY(0);
}

.hero .line1[data-enter] {
    transform: translateY(24px);
    transition-duration: 1.6s;
}

.hero .line2[data-enter] {
    transform: translateY(24px);
    transition-duration: 1.8s;
}

.hero-inner {
    will-change: transform, opacity;
}

/* Scroll reveal — slide up + fade */
[data-reveal] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children — slide in from right */
.stagger-child {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.stagger-child.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Scale-in — cards pop up */
[data-scalein] {
    opacity: 0;
    transform: scale(0.82) translateY(24px);
    transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
                transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-scalein].scaled-in {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Responsive */
@media (max-width: 700px) {
    .features-inner { grid-template-columns: 1fr; gap: 40px; }
    .diff-scale { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
    .action-grid, .calendar-links { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .calendar-form { flex-direction: column; }
    .calendar-form input, .calendar-form button { width: 100%; }
    .hero-search { flex-direction: column; }
    .search-go { width: 100%; height: 48px; }
}
