
:root {
    --color-voltage-magenta: #6ca16c;
    --color-plasma-gradient: radial-gradient(86% 86% at 6% 9%, #8800ff 0%, #a732d6 51%, #ef79ff 100%);
    --color-ember-orange: #ec660d;
    --color-signal-red: #e83b47;
    --color-ink-black: #131517;
    --color-porcelain: #f4f5f6;
    --color-pure-white: #ffffff;
    --color-graphite: #333537;
    --color-stone: #737577;
    --color-mist: #b3b5b7;
    --line: rgba(19, 21, 23, 0.12);
    --soft-line: rgba(19, 21, 23, 0.08);
    --phone-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    --header-bg: rgba(244, 245, 246, 0.86);
    --card-bg: rgba(255, 255, 255, 0.74);
    --card-bg-strong: rgba(255, 255, 255, 0.86);
    --card-shadow: 0 18px 46px rgba(19, 21, 23, 0.06);
    --icon-accent-bg: rgba(108, 161, 108, 0.12);
    --icon-warm-bg: rgba(236, 102, 13, 0.12);
    --badge-bg: rgba(108, 161, 108, 0.14);
    --radius-card: 10px;
    --radius-button: 19px;
    --radius-small: 8px;
    --container: 1200px;
}

:root[data-theme="dark"] {
    color-scheme: dark;
    --color-ink-black: #f6f7fb;
    --color-porcelain: #020617;
    --color-pure-white: #171a20;
    --color-graphite: #e5e7ee;
    --color-stone: #a7abb4;
    --color-mist: #363b45;
    --line: rgba(255, 255, 255, 0.16);
    --soft-line: rgba(255, 255, 255, 0.1);
    --phone-shadow: 0 14px 36px rgba(0, 0, 0, 0.34);
    --header-bg: rgba(2, 6, 23, 0.84);
    --card-bg: rgba(23, 26, 32, 0.66);
    --card-bg-strong: rgba(23, 26, 32, 0.82);
    --card-shadow: 0 22px 60px rgba(0, 0, 0, 0.3);
    --icon-accent-bg: rgba(108, 161, 108, 0.18);
    --icon-warm-bg: rgba(236, 102, 13, 0.18);
    --badge-bg: rgba(108, 161, 108, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    position: relative;
    margin: 0;
    min-height: 100vh;
    background: var(--color-porcelain);
    color: var(--color-ink-black);
    font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
    text-rendering: optimizeLegibility;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 0;
    display: none;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(to right, rgba(71, 85, 105, 0.15) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(71, 85, 105, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 50% 60%, rgba(236, 72, 153, 0.15) 0%, rgba(168, 85, 247, 0.05) 40%, transparent 70%);
    background-color: #020617;
    background-size: 40px 40px, 40px 40px, 100% 100%;
}

:root[data-theme="dark"] body::before {
    display: block;
}

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

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

code {
    padding: 0.16rem 0.38rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--color-pure-white);
    color: var(--color-graphite);
    font: 0.92em ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

:focus-visible {
    outline: 3px solid rgba(108, 161, 108, 0.34);
    outline-offset: 4px;
}

.site-shell {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.site-container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 18px 0;
    background: var(--header-bg);
    backdrop-filter: blur(18px);
}

.nav-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand,
.footer-wordmark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Outfit", "Poppins", ui-sans-serif, system-ui, sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    width: 38px;
    height: 38px;
    overflow: hidden;
    place-items: center;
    border-radius: 15px;
    background: var(--color-plasma-gradient);
}

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

.nav-links {
    display: flex;
    justify-content: center;
    gap: clamp(18px, 4vw, 42px);
}

.nav-links a,
.footer-links a,
.legal-jump a {
    color: var(--color-stone);
    font-size: 0.86rem;
    font-weight: 700;
    transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.footer-links a:hover,
.legal-jump a:hover {
    color: var(--color-ink-black);
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: var(--radius-button);
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-primary {
    background: var(--color-voltage-magenta);
    color: var(--color-pure-white);
}

.button-secondary {
    border: 1.5px solid var(--color-ink-black);
    background: var(--color-pure-white);
    color: var(--color-ink-black);
}

.button-light {
    background: var(--color-pure-white);
    color: var(--color-ink-black);
}

.theme-toggle {
    position: relative;
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1.5px solid var(--line);
    border-radius: var(--radius-button);
    background: var(--color-pure-white);
    color: var(--color-ink-black);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.theme-toggle:hover {
    transform: translateY(-3px);
}

.theme-icon {
    position: absolute;
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    transition: opacity 180ms ease, transform 180ms ease;
}

.theme-icon-moon {
    opacity: 0;
    transform: scale(0.82) rotate(-18deg);
}

:root[data-theme="dark"] .theme-icon-sun {
    opacity: 0;
    transform: scale(0.82) rotate(18deg);
}

:root[data-theme="dark"] .theme-icon-moon {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.nav-cta:hover,
.button:hover,
.feature-card:hover,
.occasion-card:hover,
.pricing-card:hover,
.contact-panel:hover {
    transform: translateY(-3px);
}

.play-mark {
    width: 17px;
    height: 17px;
    clip-path: polygon(14% 4%, 14% 96%, 96% 50%);
    background: linear-gradient(135deg, #23c7ff, #38d979 42%, #ffcf48 43%, #ff546b);
}

.hero-section {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: clamp(32px, 6vw, 76px);
    align-items: center;
    min-height: 680px;
    padding: clamp(44px, 7vw, 88px) 0 64px;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    color: var(--color-stone);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.083em;
    line-height: 1.5;
    text-transform: uppercase;
}

.eyebrow {
    padding: 3px 8px;
    border-radius: 4px;
    background: var(--badge-bg);
    color: var(--color-ember-orange);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Outfit", "Poppins", ui-sans-serif, system-ui, sans-serif;
    letter-spacing: 0;
}

.hero-copy h1,
.page-hero h1 {
    max-width: 12ch;
    margin-top: 18px;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 800;
    line-height: 0.98;
}

.hero-copy p,
.page-hero p,
.section-heading p,
.feature-card p,
.steps-flow p,
.occasion-card p,
.privacy-copy p,
.privacy-points p,
.story-copy p,
.final-cta p,
.pricing-card p,
.contact-panel p,
.legal-title p,
.policy-section p,
.policy-section li,
.notice-card {
    color: var(--color-stone);
    line-height: 1.65;
}

.hero-copy > p,
.page-hero > div > p {
    max-width: 520px;
    margin: 22px 0 28px;
    color: var(--color-graphite);
    font-size: 1.05rem;
}

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

.product-stage,
.mockup-card {
    position: relative;
    display: grid;
    min-height: 520px;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-card);
    background: var(--card-bg-strong);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(18px);
}

.hero-photo-stage {
    background: var(--card-bg-strong);
}

.product-stage::before,
.mockup-card::before {
    position: absolute;
    inset: 28px;
    border: 1px solid var(--soft-line);
    border-radius: 10px;
    content: "";
}

.hero-photo-stage::before {
    z-index: 1;
    pointer-events: none;
}

.hero-feature-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ghost-words {
    position: absolute;
    inset: 52px 20px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    color: rgba(19, 21, 23, 0.09);
    font-family: "Outfit", "Poppins", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(1.8rem, 4.8vw, 3.7rem);
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.phone-mockup {
    position: relative;
    z-index: 2;
    width: min(286px, 64vw);
    padding: 12px;
    border: 7px solid var(--color-ink-black);
    border-radius: 38px;
    background: var(--color-pure-white);
    box-shadow: var(--phone-shadow);
}

.phone-speaker {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 68px;
    height: 14px;
    border-radius: 999px;
    background: var(--color-ink-black);
    transform: translateX(-50%);
}

.phone-content {
    min-height: 438px;
    overflow: hidden;
    border-radius: 27px;
    background: var(--color-porcelain);
}

.phone-header {
    padding: 44px 16px 12px;
}

.phone-header span,
.phone-header small,
.phone-nav span {
    display: block;
}

.phone-header span {
    font-size: 1.1rem;
    font-weight: 800;
}

.phone-header small {
    margin-top: 4px;
    color: var(--color-stone);
    font-size: 0.72rem;
    font-weight: 700;
}

.tab-row {
    display: flex;
    gap: 7px;
    padding: 0 16px 14px;
}

.tab-row span {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--color-pure-white);
    color: var(--color-stone);
    font-size: 0.68rem;
    font-weight: 800;
}

.tab-row .active {
    background: var(--color-ink-black);
    color: var(--color-pure-white);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 0 16px;
}

.photo-grid span,
.occasion-image,
.memory-strip {
    background:
        linear-gradient(180deg, rgba(19, 21, 23, 0.02), rgba(19, 21, 23, 0.22)),
        linear-gradient(135deg, #ffc9a9, #ef79ff 47%, #7ed7ff);
}

.photo-grid span {
    aspect-ratio: 1;
    border-radius: 8px;
}

.photo-grid span:nth-child(2n),
.occasion-card:nth-child(2n) .occasion-image,
.memory-strip.alt {
    background:
        linear-gradient(180deg, rgba(19, 21, 23, 0.02), rgba(19, 21, 23, 0.18)),
        linear-gradient(135deg, #c9f5df, #77dfae 45%, #d7c8ff);
}

.photo-grid span:nth-child(3n),
.occasion-card:nth-child(3n) .occasion-image {
    background:
        linear-gradient(180deg, rgba(19, 21, 23, 0.02), rgba(19, 21, 23, 0.2)),
        linear-gradient(135deg, #ffe092, #ffb38a 48%, #ef79ff);
}

.phone-nav {
    display: flex;
    justify-content: space-around;
    margin: 18px 16px 0;
    padding: 13px 8px;
    border-radius: 18px;
    background: var(--color-pure-white);
}

.phone-nav span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--color-mist);
}

.phone-nav .hot {
    background: var(--color-voltage-magenta);
}

.walkthrough-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
}

.walkthrough-media {
    min-height: auto;
    padding: 20px;
}

.walkthrough-video-card {
    padding: 16px;
}

.walkthrough-video-poster {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    background: #0d1117;
    box-shadow: var(--phone-shadow);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.walkthrough-video-poster:hover {
    transform: translateY(-2px);
}

.walkthrough-video-poster-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1516 / 858;
    object-fit: cover;
}

.walkthrough-video-poster::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(19, 21, 23, 0.06), rgba(19, 21, 23, 0.32)),
        linear-gradient(135deg, rgba(108, 161, 108, 0.1), rgba(236, 102, 13, 0.08));
    content: "";
}

.walkthrough-video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
    border-radius: 999px;
    background: rgba(19, 21, 23, 0.7);
    box-shadow: 0 0 0 10px rgba(108, 161, 108, 0.12);
    backdrop-filter: blur(14px);
    transform: translate(-50%, -50%);
}

.walkthrough-video-play::before {
    display: block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 22px solid #fff;
    content: "";
}

.walkthrough-video-caption {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 2;
    padding: 11px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(19, 21, 23, 0.76);
    color: var(--color-pure-white);
    font-size: 0.8rem;
    font-weight: 800;
    backdrop-filter: blur(14px);
    transform: translateX(-50%);
}

.walkthrough-video-iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 14px;
    background: #000;
    box-shadow: var(--phone-shadow);
}

.walkthrough-copy h2 {
    margin-top: 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.06;
}

.walkthrough-copy p {
    max-width: 520px;
    margin: 16px 0 0;
    color: var(--color-stone);
    line-height: 1.65;
}

.walkthrough-link {
    margin-top: 22px;
}

.walkthrough-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.walkthrough-points span {
    border: 1px solid var(--soft-line);
    border-radius: 10px;
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(18px);
    padding: 16px 18px;
    color: var(--color-stone);
    font-size: 0.82rem;
    font-weight: 800;
}

.walkthrough-story-grid {
    display: grid;
    gap: 24px;
}

.walkthrough-story {
    display: grid;
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 56px);
    align-items: center;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid var(--soft-line);
    border-radius: var(--radius-card);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(18px);
}

.walkthrough-story-reverse {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
}

.walkthrough-story-wide {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
}

.walkthrough-story-reverse .walkthrough-story-frame {
    order: 2;
}

.walkthrough-story-reverse .walkthrough-story-copy {
    order: 1;
}

.walkthrough-story-frame {
    display: grid;
    justify-content: center;
}

.walkthrough-phone-media {
    display: block;
    width: min(100%, 320px);
    aspect-ratio: 9 / 19.5;
    border-radius: 22px;
    object-fit: cover;
    background: transparent;
    box-shadow: var(--phone-shadow);
}

.walkthrough-wide-media {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    object-fit: contain;
    background: transparent;
    box-shadow: var(--phone-shadow);
}

.walkthrough-story-copy h2 {
    margin-top: 10px;
    font-size: clamp(1.85rem, 4vw, 2.7rem);
    font-weight: 800;
    line-height: 1.08;
}

.walkthrough-story-copy p {
    max-width: 560px;
    margin: 16px 0 0;
    color: var(--color-stone);
    line-height: 1.7;
}

.section-block {
    padding: clamp(56px, 8vw, 96px) 0;
}

.home-page .section-block {
    content-visibility: auto;
    contain-intrinsic-size: 1px 900px;
}

.section-heading {
    max-width: 650px;
}

.section-heading.centered {
    margin-inline: auto;
    margin-bottom: 32px;
    text-align: center;
}

.section-heading h2,
.privacy-copy h2,
.final-cta h2,
.pricing-card h2,
.legal-title h1 {
    margin-top: 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.06;
}

.section-heading p {
    max-width: 520px;
    margin-top: 16px;
}

.feature-grid,
.values-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

.feature-card,
.pricing-card,
.contact-panel,
.legal-title,
.legal-jump,
.legal-content {
    border: 1px solid var(--soft-line);
    border-radius: var(--radius-card);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(18px);
}

.feature-card {
    min-height: 220px;
    padding: 24px;
    transition: transform 180ms ease;
}

.feature-icon-line {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 10px;
    background: var(--icon-accent-bg);
    color: var(--color-voltage-magenta);
}

.feature-icon-line svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.feature-card:nth-child(2n) .feature-icon-line {
    background: var(--icon-warm-bg);
    color: var(--color-ember-orange);
}

.feature-card h3,
.steps-flow h3,
.occasion-card strong,
.privacy-points strong {
    font-size: 1.05rem;
    font-weight: 800;
}

.feature-card p,
.steps-flow p,
.privacy-points p {
    margin: 10px 0 0;
    font-size: 0.94rem;
}

.split-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(28px, 6vw, 72px);
    align-items: start;
}

.steps-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.steps-flow article {
    min-height: 184px;
    padding: 24px;
    border: 1px solid var(--soft-line);
    border-radius: var(--radius-card);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(18px);
}

.steps-flow small {
    display: inline-flex;
    margin-bottom: 36px;
    color: var(--color-voltage-magenta);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.083em;
}

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

.occasion-card {
    overflow: hidden;
    border: 1px solid var(--soft-line);
    border-radius: 10px;
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(18px);
    transition: transform 180ms ease;
}

.occasion-image {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.occasion-card strong {
    display: block;
    padding: 20px 22px 0;
    font-size: 1.08rem;
}

.occasion-card p {
    margin: 10px 0 0;
    padding: 0 22px 22px;
    color: var(--color-stone);
    font-size: 0.92rem;
    line-height: 1.45;
}

.privacy-section {
    display: grid;
    grid-template-columns: 0.85fr 0.9fr 1.25fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

.mockup-card {
    min-height: 360px;
}

.privacy-screenshot-card {
    min-height: 520px;
    padding: 24px;
}

.privacy-screenshot {
    position: relative;
    z-index: 2;
    display: block;
    width: min(270px, 100%);
    max-height: 620px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: var(--phone-shadow);
}

.privacy-points {
    display: grid;
    gap: 12px;
}

.privacy-points article {
    padding: 18px 0;
    border-top: 1px solid var(--soft-line);
}

.privacy-points article:first-child {
    border-top: 0;
}

.final-cta {
    display: grid;
    justify-items: center;
    margin-bottom: 64px;
    padding: clamp(44px, 8vw, 78px) 24px;
    border-radius: var(--radius-card);
    border: 1px solid var(--soft-line);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(18px);
    text-align: center;
}

.final-cta h2 {
    max-width: 760px;
}

.final-cta p {
    max-width: 560px;
    margin: 16px 0 24px;
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
    padding: clamp(52px, 8vw, 104px) 0 clamp(28px, 5vw, 56px);
}

.page-mockup {
    min-height: 430px;
}

.memory-strip {
    display: block;
    width: 100%;
    height: 56px;
    margin-top: 22px;
    border-radius: 10px;
}

.memory-strip.alt {
    width: 78%;
    height: 42px;
    margin-top: 10px;
}

.story-copy {
    max-width: 690px;
    font-size: 1.04rem;
}

.story-copy p {
    margin: 0;
}

.story-copy p + p {
    margin-top: 18px;
}

.value-card {
    min-height: 260px;
}

.pricing-card,
.contact-panel {
    padding: clamp(26px, 4vw, 40px);
    transition: transform 180ms ease;
}

.pricing-card h2 {
    margin-top: 12px;
}

.price {
    margin: 18px 0 14px;
    color: var(--color-ink-black);
    font-family: "Outfit", "Poppins", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 0.98;
}

.pricing-card .button {
    margin-top: 22px;
}

.contact-panel {
    display: grid;
    align-content: center;
    min-height: 260px;
}

.contact-panel a {
    margin-top: 12px;
    color: var(--color-ink-black);
    font-family: "Outfit", "Poppins", ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.contact-panel p {
    margin-bottom: 0;
}

.legal-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 16px;
    padding: clamp(40px, 7vw, 80px) 0 24px;
}

.legal-title,
.legal-jump,
.legal-content {
    padding: clamp(22px, 4vw, 36px);
}

.legal-title h1 {
    max-width: 12ch;
}

.legal-meta {
    color: var(--color-graphite);
    font-size: 0.88rem;
}

.legal-jump {
    display: grid;
    align-content: start;
    gap: 6px;
    border-radius: 10px;
}

.legal-jump h2 {
    margin: 0 0 8px;
    font-size: 0.95rem;
}

.legal-jump a {
    padding: 10px 12px;
    border-radius: 10px;
}

.legal-jump a:hover {
    background: var(--color-porcelain);
}

.legal-content {
    margin-bottom: 64px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.blog-post-hero {
    align-items: center;
}

.blog-post-hero .blog-hero-image {
    min-height: 420px;
}

.blog-post-hero > div > p {
    max-width: 58ch;
}

.blog-feature-card,
.blog-card,
.blog-cta-card,
.blog-related,
.blog-article,
.blog-hero-image {
    border: 1px solid var(--soft-line);
    border-radius: var(--radius-card);
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(18px);
}

.blog-card {
    padding: 26px;
}

.blog-card h2,
.blog-card h3 {
    margin-top: 10px;
    font-size: 1.55rem;
    line-height: 1.14;
}

.blog-card h2 a:hover,
.blog-breadcrumbs a:hover,
.related-link:hover {
    color: var(--color-voltage-magenta);
}

.blog-category {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--badge-bg);
    color: var(--color-voltage-magenta);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 18px 0 0;
    color: var(--color-stone);
    font-size: 0.84rem;
    font-weight: 700;
}

.blog-read-more {
    display: inline-flex;
    margin-top: 20px;
    color: var(--color-ink-black);
    font-weight: 800;
}

.blog-hero-image {
    overflow: hidden;
}

.blog-hero-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.blog-article-wrap {
    display: grid;
    gap: 24px;
    margin-top: 10px;
}

.blog-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
    gap: 24px;
    align-items: start;
}

.blog-breadcrumbs {
    grid-column: 1 / -1;
}

.blog-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--color-stone);
    font-size: 0.84rem;
    font-weight: 700;
}

.blog-breadcrumbs a + a::before {
    content: " / ";
    color: var(--color-mist);
}

.blog-article {
    padding: 30px;
    min-width: 0;
}

.blog-section + .blog-section {
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid var(--soft-line);
}

.blog-section h2 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    line-height: 1.18;
}

.blog-sidebar {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 106px;
    min-width: 0;
}

.blog-cta-card {
    padding: 26px;
}

.blog-related {
    padding: 24px;
}

.related-link {
    display: grid;
    gap: 6px;
    padding: 16px 0;
    border-bottom: 1px solid var(--soft-line);
    color: inherit;
}

.related-link:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.related-link strong {
    font-size: 0.98rem;
    line-height: 1.35;
}

.related-link span {
    color: var(--color-stone);
    font-size: 0.88rem;
    line-height: 1.55;
}

.notice-card {
    margin-bottom: 12px;
    padding: 16px 18px;
    border: 1px solid var(--soft-line);
    border-radius: 10px;
    background: var(--card-bg-strong);
    backdrop-filter: blur(18px);
}

.policy-section {
    padding: 22px 0;
    border-top: 1px solid var(--soft-line);
}

.policy-section:first-of-type {
    border-top: 0;
}

.policy-section h2 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}

.policy-section ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.policy-section li + li {
    margin-top: 8px;
}

.site-footer {
    padding: 28px 0 36px;
}

.footer-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, auto) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
    color: var(--color-stone);
}

.footer-brand-block p {
    max-width: 280px;
    margin: 10px 0 0;
    color: var(--color-stone);
    font-size: 0.9rem;
    line-height: 1.55;
}

.footer-wordmark {
    color: var(--color-ink-black);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
    padding-top: 4px;
}

.footer-actions {
    display: grid;
    justify-items: end;
    gap: 12px;
}

.copyright {
    margin: 0;
    color: var(--color-stone);
    font-size: 0.82rem;
    font-weight: 700;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms ease, transform 650ms ease;
}

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

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

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1020px) {
    .nav-bar {
        grid-template-columns: 1fr auto;
    }

    .nav-links {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero-section,
    .page-hero,
    .split-section,
    .privacy-section,
    .legal-hero,
    .footer-panel {
        grid-template-columns: 1fr;
    }

    .hero-section {
        min-height: auto;
    }

    .product-stage {
        min-height: 560px;
        order: -1;
    }

    .feature-grid,
    .values-grid,
    .contact-grid,
    .pricing-features,
    .blog-grid,
    .occasion-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-post-hero {
        gap: 22px;
    }

    .blog-article-wrap {
        gap: 18px;
    }

    .blog-main-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-post-hero .blog-hero-image {
        order: -1;
        min-height: 320px;
    }

    .blog-article,
    .blog-related,
    .blog-cta-card {
        padding: 24px;
    }

    .walkthrough-section {
        grid-template-columns: 1fr;
    }

    .walkthrough-story,
    .walkthrough-story-reverse,
    .walkthrough-story-wide {
        grid-template-columns: 1fr;
    }

    .walkthrough-story-reverse .walkthrough-story-frame,
    .walkthrough-story-reverse .walkthrough-story-copy {
        order: initial;
    }

    .footer-panel {
        justify-items: start;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-actions {
        justify-items: start;
    }
}

@media (max-width: 680px) {
    .site-container {
        width: min(100% - 20px, var(--container));
    }

    .site-header {
        padding: 12px 0;
    }

    .brand span:last-child {
        display: none;
    }

    .nav-cta {
        min-height: 38px;
        padding-inline: 12px;
        font-size: 0.82rem;
    }

    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        white-space: nowrap;
    }

    .hero-section,
    .page-hero {
        padding-top: 32px;
    }

    .hero-copy h1,
    .page-hero h1 {
        font-size: clamp(2.75rem, 14vw, 4rem);
    }

    .hero-actions,
    .button,
    .final-cta .button,
    .pricing-card .button {
        width: 100%;
    }

    .product-stage,
    .mockup-card {
        min-height: 470px;
        border-radius: 10px;
    }

    .product-stage::before,
    .mockup-card::before {
        inset: 18px;
        border-radius: 10px;
    }

    .ghost-words {
        inset: 36px 14px auto;
        gap: 12px 18px;
    }

    .hero-feature-photo {
        object-position: center;
    }

    .walkthrough-points,
    .feature-grid,
    .values-grid,
    .contact-grid,
    .blog-grid,
    .pricing-features,
    .steps-flow,
    .occasion-grid {
        grid-template-columns: 1fr;
    }

    .walkthrough-story {
        padding: 18px;
    }

    .walkthrough-phone-media {
        width: min(100%, 290px);
    }

    .walkthrough-video-card {
        padding: 12px;
    }

    .walkthrough-video-play {
        width: 72px;
        height: 72px;
    }

    .walkthrough-video-play::before {
        margin-left: 4px;
        border-top-width: 12px;
        border-bottom-width: 12px;
        border-left-width: 18px;
    }

    .walkthrough-video-caption {
        bottom: 12px;
        padding: 9px 12px;
        font-size: 0.72rem;
    }

    .feature-card,
    .blog-card,
    .steps-flow article,
    .pricing-card,
    .contact-panel,
    .blog-article,
    .blog-related,
    .legal-title,
    .legal-content {
        border-radius: 10px;
    }

    .blog-card h2,
    .blog-card h3,
    .blog-section h2 {
        font-size: 1.28rem;
    }

    .blog-post-hero .blog-hero-image {
        min-height: 250px;
    }

    .feature-card {
        min-height: auto;
    }

    .occasion-image {
        height: 240px;
    }

    .final-cta,
    .legal-content {
        margin-bottom: 40px;
    }
}
