@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--yellow: #6341EE;
--yellow-dark: #5232C9;
--black: #000000;
--dark: #1d1d1f;
--dark-mid: #2d2d2f;
--gray: #6e6e73;
--gray-light: #a1a1a6;
--border: #d2d2d7;
--border-dark: #424245;
--bg: #FFFFFF;
--bg-soft: #f5f5f7;
--text: #1d1d1f;
--text-secondary: #6e6e73;
--radius: 18px;
--radius-sm: 12px;
--radius-lg: 28px;
--shadow: 0 2px 20px rgba(0,0,0,.08);
--shadow-lg: 0 20px 60px rgba(0,0,0,.15);
--nav-height: 48px;
--max-w: 1200px;
}
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
font-size: 16px;
line-height: 1.6;
color: var(--text);
background: var(--bg);
-webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
.display { font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 800; line-height: 1.08; letter-spacing: -.04em; }
.h1 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; }
.h2 { font-size: clamp(1.4rem, 2.4vw, 2rem); font-weight: 700; line-height: 1.15; letter-spacing: -.02em; }
.h3 { font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 600; line-height: 1.3; letter-spacing: -.01em; }
.body-lg { font-size: 1.2rem; line-height: 1.65; }
.body { font-size: 1rem; line-height: 1.65; }
.caption { font-size: .875rem; line-height: 1.5; color: var(--gray); }
.label { font-size: .8rem; font-weight: 500; letter-spacing: .02em; color: var(--gray); }
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 140px 0; }
.section-sm { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.gap-4 { gap: 4px; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }
.btn {
display: inline-flex; align-items: center; gap: 8px;
padding: 14px 28px; border-radius: 100px;
font-size: 15px; font-weight: 600; line-height: 1;
transition: all .18s ease; white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: #fff; }
.btn-primary:hover { background: var(--yellow-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(99,65,238,.35); }
.btn-dark { background: var(--black); color: #fff; }
.btn-dark:hover { background: var(--dark-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.25); }
.btn-outline { border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--text); background: var(--bg-soft); }
.btn-outline-dark { border: 1.5px solid var(--border-dark); color: #fff; }
.btn-outline-dark:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-lg { padding: 17px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
height: var(--nav-height); background: rgba(255,255,255,.72);
backdrop-filter: saturate(180%) blur(20px);
-webkit-backdrop-filter: saturate(180%) blur(20px);
border-bottom: 1px solid rgba(0,0,0,.08);
transition: background .2s;
}
.nav.dark {
background: rgba(0,0,0,.72);
border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav-inner {
height: 100%; display: flex; align-items: center; justify-content: space-between;
max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
display: flex; align-items: center; gap: 10px;
font-weight: 700; font-size: 18px;
}
.nav-logo-icon {
width: 34px; height: 34px; background: var(--yellow); border-radius: 9px;
display: flex; align-items: center; justify-content: center;
}
.nav.dark .nav-logo { color: #fff; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav.dark .nav-links a { color: rgba(255,255,255,.6); }
.nav.dark .nav-links a:hover, .nav.dark .nav-links a.active { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .2s; }
.nav.dark .nav-hamburger span { background: #fff; }
.mobile-menu {
display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0;
background: var(--bg); z-index: 99; padding: 32px 24px;
flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 20px; font-weight: 600; padding: 12px 0; border-bottom: 1px solid var(--border); color: var(--text); }
.mobile-menu .mobile-cta { margin-top: 16px; display: flex; justify-content: center; text-align: center; color: #fff; border-bottom: none; }
.hero { padding-top: calc(var(--nav-height) + 100px); padding-bottom: 100px; background: var(--bg); overflow: hidden; }
.hero-dark {
background: var(--bg-soft);
padding-top: calc(var(--nav-height) + 72px);
padding-bottom: 0;
overflow: hidden;
text-align: center;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.hero-dark-text {
padding: 0 24px 56px;
max-width: 860px;
margin: 0 auto;
}
.hero-dark-headline {
font-size: clamp(2.2rem, 4.2vw, 3.8rem);
font-weight: 800;
line-height: 1.1;
letter-spacing: -.02em;
color: var(--text);
margin-bottom: 18px;
}
.hero-dark-sub {
font-size: 1.05rem;
line-height: 1.65;
color: var(--text-secondary);
margin-bottom: 36px;
max-width: 680px;
margin-left: auto;
margin-right: auto;
}
.btn-hero-download {
display: inline-flex; align-items: center; gap: 10px;
background: #000; color: #fff;
font-weight: 700; font-size: .95rem;
padding: 15px 28px; border-radius: 100px;
text-decoration: none; transition: opacity .2s;
}
.btn-hero-download:hover { opacity: .78; }
.hero-phones-trio {
display: flex;
justify-content: center;
align-items: flex-end;
flex: 1;
position: relative;
padding-bottom: 0;
}
/* Landing page app-preview image (single, centered, 16:9) */
.landing-single { display: flex; justify-content: center; }
.landing-single img { width: 100%; max-width: 1040px; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block; border-radius: 24px; box-shadow: 0 26px 64px rgba(20,12,40,.16); }
.iphone { flex-shrink: 0; position: relative; }
.iphone-frame {
position: relative;
background: #161616;
border-radius: 60px;
padding: 12px;
box-shadow:
0 0 0 1px rgba(255,255,255,.09),
0 80px 160px rgba(0,0,0,.8),
0 24px 48px rgba(0,0,0,.5);
}
.iphone-btn { position: absolute; background: #282828; border-radius: 3px; }
.iphone-btn-vol-up  { left: -3px; top: 120px; width: 3px; height: 40px; }
.iphone-btn-vol-dn  { left: -3px; top: 172px; width: 3px; height: 40px; }
.iphone-btn-power   { right: -3px; top: 145px; width: 3px; height: 76px; }
.iphone-screen {
position: relative;
background: #0d0d0d;
border-radius: 50px;
overflow: hidden;
aspect-ratio: 9 / 19.5;
}
.iphone-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.iphone-dynamic-island {
position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
width: 126px; height: 35px;
background: #000; border-radius: 22px; z-index: 10;
}
.iphone-center {
z-index: 3;
margin-bottom: -120px;
}
.iphone-center .iphone-frame { width: 340px; }
.iphone-center .iphone-screen { border-radius: 50px; }
.iphone-side .iphone-frame { width: 260px; }
.iphone-side .iphone-screen { border-radius: 42px; }
.iphone-side .iphone-dynamic-island { width: 104px; height: 29px; top: 11px; }
.iphone-side .iphone-btn-vol-up  { top: 95px; height: 32px; }
.iphone-side .iphone-btn-vol-dn  { top: 138px; height: 32px; }
.iphone-side .iphone-btn-power   { top: 115px; height: 62px; }
.iphone-left {
z-index: 2;
transform: rotate(-10deg) translateX(56px) translateY(80px);
}
.iphone-right {
z-index: 2;
transform: rotate(10deg) translateX(-56px) translateY(80px);
}
@media (max-width: 860px) {
.iphone-center .iphone-frame { width: 270px; }
.iphone-side .iphone-frame { width: 210px; }
.iphone-left { transform: rotate(-10deg) translateX(40px) translateY(70px); }
.iphone-right { transform: rotate(10deg) translateX(-40px) translateY(70px); }
}
@media (max-width: 600px) {
.iphone-side { display: none; }
.iphone-center .iphone-frame { width: 240px; }
.iphone-center { margin-bottom: -80px; }
}
@media (max-width: 380px) {
.iphone-center .iphone-frame { width: 200px; }
}
.store-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.store-badge {
display: inline-flex; align-items: center; gap: 10px;
background: var(--black); color: #fff; border-radius: 12px;
padding: 10px 18px; transition: all .18s;
}
.store-badge:hover { background: var(--dark-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.store-badge svg { width: 22px; height: 22px; flex-shrink: 0; }
.store-badge-text { display: flex; flex-direction: column; }
.store-badge-text .small { font-size: 10px; opacity: .7; line-height: 1; }
.store-badge-text .big { font-size: 15px; font-weight: 700; line-height: 1.3; }
.section-header { max-width: 700px; margin: 0 auto 80px; text-align: center; }
.testimonials-dark { background: var(--bg-soft) !important; }
.testimonials-dark .pfeat-formats-cards { grid-template-columns: repeat(3, 1fr); }
.testimonials-dark .section-header { text-align: left; margin: 0 0 64px; }
.testimonials-big-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 700;
line-height: 1.08;
letter-spacing: -.04em;
color: rgba(0,0,0,.3);
text-align: left;
}
.testimonials-big-headline strong {
color: var(--text);
font-weight: 800;
}
.section-header .label { margin-bottom: 16px; }
.section-header .h2 { margin-bottom: 20px; }
.section-header .body-lg { color: var(--text-secondary); font-size: 1.2rem; line-height: 1.6; }
.feature-card {
background: var(--bg-soft); border: 1px solid var(--border);
border-radius: var(--radius-lg); padding: 32px; transition: all .2s;
}
.feature-card:hover { border-color: var(--yellow); box-shadow: 0 8px 32px rgba(99,65,238,.12); transform: translateY(-2px); }
.feature-icon { width: 48px; height: 48px; background: var(--yellow); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-icon svg { width: 24px; height: 24px; }
.feature-card .h3 { margin-bottom: 8px; }
.feature-card .body { color: var(--text-secondary); }
.features-split {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 96px;
align-items: start;
}
.features-split-heading .h2 {
margin-bottom: 20px;
line-height: 1.08;
}
.features-split-heading .body-lg {
color: var(--text-secondary);
}
.features-split-list {
display: flex;
flex-direction: column;
}
.features-split-item {
padding: 28px 0;
border-bottom: 1px solid var(--border);
}
.features-split-item:first-child {
border-top: 1px solid var(--border);
padding-top: 28px;
}
.features-split-item h3 {
font-size: 1.15rem;
font-weight: 600;
letter-spacing: -.015em;
color: var(--text);
margin-bottom: 6px;
}
.features-split-item p {
font-size: .975rem;
line-height: 1.65;
color: var(--text-secondary);
margin: 0;
}
@media (max-width: 768px) {
.features-split { grid-template-columns: 1fr; gap: 48px; }
}
.features-editorial {
display: grid;
grid-template-columns: repeat(3, 1fr);
}
.feature-editorial-col {
padding: 48px 56px 0 0;
border-top: 1px solid var(--text);
}
.feature-editorial-col + .feature-editorial-col {
padding-left: 56px;
border-left: 1px solid var(--border);
}
.feature-editorial-num {
display: block;
font-size: 11px;
font-weight: 500;
letter-spacing: .06em;
color: var(--gray-light);
margin-bottom: 32px;
}
.feature-editorial-col .h3 {
margin-bottom: 14px;
font-size: 1.3rem;
letter-spacing: -.02em;
}
.feature-editorial-col .body { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.6; }
@media (max-width: 768px) {
.features-editorial { grid-template-columns: 1fr; }
.feature-editorial-col { padding: 36px 0 0; border-left: none !important; }
.feature-editorial-col + .feature-editorial-col { margin-top: 36px; }
}
.feature-card-dark {
background: var(--dark-mid); border: 1px solid var(--border-dark);
border-radius: var(--radius-lg); padding: 32px; transition: all .2s;
}
.feature-card-dark:hover { border-color: var(--yellow); }
.feature-card-dark .h3 { color: #fff; margin-bottom: 8px; }
.feature-card-dark .body { color: rgba(255,255,255,.55); }
.feature-card-dark .feature-icon { background: rgba(99,65,238,.15); }
.feature-card-dark .feature-icon svg { color: var(--yellow); }
.section-dark { background: #000000; color: #fff; padding-top: 100px; }
.section-dark .section-header .h2 { color: #fff; }
.section-dark .section-header .body-lg { color: rgba(255,255,255,.6); }
.section-dark .label { color: rgba(255,255,255,.4); }
.stats-block-section { background: #000; padding: 0 0 72px; }
/* Scroll-drawn brush circle */
.brush-word { position: relative; white-space: nowrap; display: inline-block; }
.brush-circle { position: absolute; left: -9%; width: 118%; top: -26%; height: 152%; overflow: visible; pointer-events: none; }
.brush-circle path { fill: none; stroke: #6341EE; stroke-width: 4.4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 820; stroke-dashoffset: 820; transition: stroke-dashoffset 1.3s cubic-bezier(.6,0,.35,1) .2s; }
.fade-up.visible .brush-circle path { stroke-dashoffset: 0; }
@media (prefers-reduced-motion: reduce) { .brush-circle path { transition: none; stroke-dashoffset: 0; } }
/* Collection-tracker single image — expands to full width on scroll */
.ct-shot { --p: 0; --ct-base: min(1000px, 92vw); width: calc(var(--ct-base) + (100vw - var(--ct-base)) * var(--p)); margin: 56px auto calc(100px * (1 - var(--p))); border-radius: calc(22px - 22px * var(--p)); overflow: hidden; will-change: width, border-radius; }
.ct-shot img { display: block; width: 100%; height: auto; }
@media (max-width: 600px) { .ct-shot { margin-top: 40px; } }
@media (prefers-reduced-motion: reduce) { .ct-shot { width: var(--ct-base); border-radius: 22px; } }
.stats-block {
display: grid;
grid-template-columns: repeat(3, 1fr) 0.7fr;
background: #111;
border-radius: 24px;
border: 1px solid rgba(255,255,255,.07);
overflow: hidden;
}
.stats-block-item {
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 28px 32px 36px;
min-height: 260px;
}
.stats-block-item + .stats-block-item {
border-left: 1px solid rgba(255,255,255,.07);
}
.stats-block-dot {
display: block;
width: 9px; height: 9px;
border-radius: 50%;
background: rgba(255,255,255,.3);
align-self: flex-end;
}
.stats-block-body {}
.stats-block-number {
font-size: clamp(2.4rem, 4vw, 3.6rem);
font-weight: 800;
letter-spacing: -.05em;
color: #fff;
line-height: 1;
margin-bottom: 10px;
}
.stats-block-number span {
color: rgba(255,255,255,.35);
font-weight: 700;
font-size: .75em;
letter-spacing: 0;
}
.stats-block-label {
font-size: 12.5px;
color: rgba(255,255,255,.35);
line-height: 1.5;
max-width: 150px;
}
@media (max-width: 700px) {
.stats-block { grid-template-columns: 1fr 1fr; }
.stats-block-item:nth-child(3) { border-left: none; border-top: 1px solid rgba(255,255,255,.07); }
.stats-block-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); }
}
@media (max-width: 420px) {
.stats-block { grid-template-columns: 1fr; }
.stats-block-item + .stats-block-item { border-left: none; border-top: 1px solid rgba(255,255,255,.07); }
}
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat-item { background: var(--bg); padding: 40px 32px; text-align: center; }
.stat-item .number { font-size: 2.8rem; font-weight: 800; letter-spacing: -.03em; color: var(--black); line-height: 1; margin-bottom: 6px; }
.stat-item .number span { color: var(--yellow); }
.stat-item .stat-label { font-size: .875rem; color: var(--text-secondary); font-weight: 500; }
.screenshot-scroll { display: flex; gap: 20px; overflow-x: auto; padding: 20px 4px 40px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.screenshot-scroll::-webkit-scrollbar { height: 4px; }
.screenshot-scroll::-webkit-scrollbar-track { background: transparent; }
.screenshot-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.screenshot-frame { flex-shrink: 0; width: 220px; scroll-snap-align: start; }
.screenshot-frame .phone-mockup { width: 100%; }
.testimonials-apple-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.testimonial-apple-card {
background: #fff;
border-radius: 24px;
padding: 40px 36px;
display: flex;
flex-direction: column;
box-shadow: none;
}
.testimonial-apple-stars {
color: #F0C93A;
font-size: 14px;
letter-spacing: 2px;
margin-bottom: 20px;
}
.testimonial-apple-card blockquote {
font-size: 1.05rem;
line-height: 1.7;
color: var(--text);
flex: 1;
margin-bottom: 32px;
}
.testimonial-apple-author {
display: flex;
align-items: center;
gap: 12px;
}
.testimonial-apple-avatar {
display: none;
width: 40px;
height: 40px;
border-radius: 50%;
flex-shrink: 0;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 14px;
color: var(--black);
}
.testimonial-apple-name {
font-weight: 600;
font-size: 14px;
color: var(--text);
}
.testimonial-apple-role {
font-size: 12px;
color: var(--gray);
margin-top: 3px;
}
@media (max-width: 768px) {
.testimonials-apple-grid { grid-template-columns: 1fr; }
}
.testimonial-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.testimonial-card .stars { display: flex; gap: 2px; margin-bottom: 14px; }
.testimonial-card .stars span { color: var(--yellow); font-size: 15px; }
.testimonial-card blockquote { font-size: 15px; line-height: 1.65; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--bg-soft); border: 1px solid var(--border); flex-shrink: 0; overflow: hidden; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: var(--gray); }
.testimonial-author .name { font-weight: 600; font-size: 14px; }
.testimonial-author .role { font-size: 12px; color: var(--gray); }
.testimonials-editorial {
display: grid;
grid-template-columns: 3fr 2fr;
gap: 0;
border-top: 1px solid var(--border);
}
.testimonial-editorial-main {
padding: 64px 64px 64px 0;
border-right: 1px solid var(--border);
display: flex;
flex-direction: column;
}
.testimonial-editorial-quote {
font-size: 96px;
line-height: .75;
color: var(--yellow);
font-weight: 800;
margin-bottom: 24px;
font-family: Georgia, serif;
}
.testimonial-editorial-main blockquote {
font-size: 1.4rem;
line-height: 1.6;
color: var(--text);
font-style: italic;
font-weight: 400;
flex: 1;
margin-bottom: 40px;
letter-spacing: -.01em;
}
.testimonial-editorial-author {
display: flex;
align-items: center;
gap: 14px;
}
.testimonial-editorial-avatar {
width: 44px;
height: 44px;
border-radius: 50%;
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 15px;
color: var(--black);
}
.testimonial-editorial-name { font-weight: 600; font-size: 15px; color: var(--text); }
.testimonial-editorial-role { font-size: 13px; color: var(--gray); margin-top: 3px; }
.testimonials-editorial-stack {
display: flex;
flex-direction: column;
}
.testimonial-editorial-item {
padding: 48px 0 48px 56px;
flex: 1;
display: flex;
flex-direction: column;
}
.testimonial-editorial-item + .testimonial-editorial-item {
border-top: 1px solid var(--border);
}
.testimonial-editorial-stars {
color: var(--yellow);
font-size: 12px;
letter-spacing: 2px;
margin-bottom: 20px;
}
.testimonial-editorial-item blockquote {
font-size: 1rem;
line-height: 1.7;
color: var(--text);
font-style: italic;
flex: 1;
margin-bottom: 28px;
}
@media (max-width: 768px) {
.testimonials-editorial { grid-template-columns: 1fr; border-top: none; }
.testimonial-editorial-main { padding: 40px 0; border-right: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonial-editorial-main blockquote { font-size: 1.15rem; }
.testimonial-editorial-item { padding: 36px 0; }
}
.cta-banner {
background: #000000; border-radius: var(--radius-lg);
padding: 72px 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px;
position: relative; overflow: hidden;
}
.cta-banner::before {
content: ''; position: absolute; top: -80px; right: -80px;
width: 360px; height: 360px; border-radius: 50%;
background: radial-gradient(circle, rgba(255,234,45,.12) 0%, transparent 70%);
}
.cta-banner::after {
content: ''; position: absolute; bottom: -100px; left: 20%;
width: 300px; height: 300px; border-radius: 50%;
background: radial-gradient(circle, rgba(255,234,45,.06) 0%, transparent 70%);
}
.cta-banner-text .h2 { color: #fff; margin-bottom: 12px; }
.cta-banner-text p { color: rgba(255,255,255,.55); font-size: 17px; line-height: 1.5; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; position: relative; z-index: 1; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: none; border: none; }
.faq-question {
width: 100%; text-align: left; padding: 24px 28px; display: flex; align-items: center;
justify-content: space-between; gap: 16px; font-size: 16px; font-weight: 700;
color: var(--text); background: none; border: none; cursor: pointer;
transition: color .15s;
}
.faq-question:hover { color: var(--text-secondary); }
.faq-icon { width: 30px; height: 30px; border-radius: 50%; background: #e8e8e8; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; position: relative; }
.faq-icon::before,
.faq-icon::after { content: ''; position: absolute; background: #555; border-radius: 2px; transition: opacity .35s ease, transform .35s ease; }
.faq-icon::before { width: 12px; height: 1.5px; }
.faq-icon::after { width: 1.5px; height: 12px; }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-answer { height: 0; overflow: hidden; transition: height .45s cubic-bezier(0.4, 0, 0.2, 1), opacity .4s ease; opacity: 0; }
.faq-answer-inner { padding: 0 28px 24px; color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.faq-item.open .faq-answer { opacity: 1; }
.stories-section { background: #000; padding: 100px 0; }
.stories-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: center; }
.stories-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.stories-headline { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; line-height: 1.1; letter-spacing: -.035em; color: #fff; margin-bottom: 16px; }
.stories-sub { font-size: .95rem; line-height: 1.6; color: rgba(255,255,255,.45); margin-bottom: 32px; }
.stories-btn { display: inline-block; padding: 11px 22px; border: 1px solid rgba(255,255,255,.25); border-radius: 100px; font-size: 14px; font-weight: 600; color: #fff; text-decoration: none; transition: border-color .2s, background .2s; }
.stories-btn:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.45); }
.stories-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stories-card { display: block; text-decoration: none; color: inherit; transition: opacity .2s; }
.stories-card:hover { opacity: .8; }
.stories-card-img { aspect-ratio: 16/9; width: 100%; display: block; clip-path: inset(0 round 14px); }
.stories-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stories-card-img svg { width: 100%; height: 100%; display: block; }
.stories-card-body { padding-top: 16px; }
.stories-card-meta { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 8px; display: flex; gap: 8px; }
.stories-card-meta span::before { content: '·'; margin-right: 8px; opacity: .5; }
.stories-card-title { font-size: 1.05rem; font-weight: 700; line-height: 1.3; letter-spacing: -.02em; color: #fff; }
@media (max-width: 860px) { .stories-layout { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 540px) { .stories-cards { grid-template-columns: 1fr; } }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); border: 1px solid var(--border); transition: all .2s; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card-img { aspect-ratio: 16/9; background: var(--bg-soft); position: relative; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.blog-card-body { padding: 24px; }
.blog-tag { display: inline-block; width: fit-content; padding: 4px 12px; background: var(--yellow); border-radius: 100px; font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.blog-card-body .h3 { margin-bottom: 8px; font-size: 1.1rem; }
.blog-card-body .body { color: var(--text-secondary); font-size: 14px; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray); }
.blog-meta .sep { opacity: .4; }
.blog-post { max-width: 720px; margin: 0 auto; }
.blog-post-header { margin-bottom: 40px; }
.blog-post-header .display { margin-bottom: 20px; }
.blog-post-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.blog-post-cover { aspect-ratio: 16/9; background: var(--bg-soft); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 48px; }
.blog-post-cover img { width: 100%; height: 100%; object-fit: cover; }
.blog-post-cover-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.prose h2 { font-size: 1.5rem; font-weight: 700; margin: 40px 0 16px; }
.prose h3 { font-size: 1.2rem; font-weight: 600; margin: 32px 0 12px; }
.prose p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.75; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 20px; color: var(--text-secondary); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; line-height: 1.7; }
.prose strong { color: var(--text); font-weight: 600; }
.prose blockquote { border-left: 3px solid var(--yellow); padding-left: 20px; margin: 32px 0; color: var(--text-secondary); font-style: italic; }
.prose a { color: var(--black); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--yellow-dark); }
.support-categories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.support-cat-card { background: var(--bg-soft); border: 1px solid transparent; border-radius: var(--radius-lg); padding: 28px 28px 32px; transition: border-color .18s, box-shadow .18s; cursor: pointer; }
.support-cat-card:hover { border-color: var(--border); box-shadow: var(--shadow); }
.support-cat-card .icon { width: 44px; height: 44px; border-radius: 11px; border: 1.5px solid var(--border); background: transparent; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.support-cat-card .icon svg { width: 20px; height: 20px; }
.support-cat-card .h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.support-cat-card .caption { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.contact-card { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; display: flex; gap: 20px; align-items: flex-start; }
.contact-card .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--yellow); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card .icon svg { width: 22px; height: 22px; }
.contact-card .h3 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; }
.footer { background: var(--black); color: rgba(255,255,255,.55); padding: 72px 0 112px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand .nav-logo { margin-bottom: 16px; color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .05em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; transition: color .15s; }
.footer-col ul li a:hover { color: rgba(255,255,255,.9); }
.footer-bottom { border-top: 1px solid var(--border-dark); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social-link { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; transition: background .15s; }
.footer-social-link:hover { background: rgba(255,255,255,.15); }
.footer-social-link svg { width: 16px; height: 16px; color: rgba(255,255,255,.7); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray); padding: calc(var(--nav-height) + 24px) 0 0; }
.breadcrumb a { transition: color .15s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb .sep { opacity: .4; }
.breadcrumb .current { color: var(--text); font-weight: 500; }
.page-header { padding: calc(var(--nav-height) + 64px) 0 64px; background: linear-gradient(to bottom, var(--bg-soft) 0%, #ffffff 100%); }
.page-header .display { margin-bottom: 16px; }
.page-header .body-lg { color: var(--text-secondary); max-width: 560px; }
.chip { display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 100px; font-size: 13px; font-weight: 500; background: var(--bg-soft); border: 1px solid var(--border); color: var(--text-secondary); transition: all .15s; cursor: pointer; }
.chip:hover, .chip.active { background: var(--black); color: #fff; border-color: var(--black); }
.divider { width: 100%; height: 1px; background: var(--border); margin: 0; }
.divider-dark { background: var(--border-dark); }
.notif-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); }
.notif-card .icon { width: 36px; height: 36px; border-radius: 10px; background: var(--yellow); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.notif-card .icon svg { width: 18px; height: 18px; }
.notif-card .title { font-size: 13px; font-weight: 600; }
.notif-card .sub { font-size: 12px; color: var(--gray); }
.float-card {
background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
padding: 16px 20px; box-shadow: var(--shadow-lg); position: absolute;
}
.text-yellow { color: var(--yellow); }
.text-muted { color: var(--text-secondary); }
.text-white { color: #fff; }
.text-white-60 { color: rgba(255,255,255,.6); }
.bg-yellow { background: var(--yellow); }
.bg-dark { background: var(--dark); }
.custom-app-banner {
background: var(--black); color: #fff;
padding: 12px 16px;
padding-bottom: calc(12px + env(safe-area-inset-bottom));
display: flex; align-items: center; gap: 12px;
position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
border-top: 1px solid var(--border-dark); transform: translateY(0);
transition: transform .3s ease; box-shadow: 0 -4px 24px rgba(0,0,0,.3);
}
.custom-app-banner.hidden { transform: translateY(100%); }
.custom-app-banner .icon { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; overflow: hidden; }
.custom-app-banner .icon img { width: 42px; height: 42px; display: block; border-radius: 10px; }
.custom-app-banner .text { flex: 1; min-width: 0; }
.custom-app-banner .text .app-name { font-size: 14px; font-weight: 700; }
.custom-app-banner .text .app-sub { font-size: 12px; color: rgba(255,255,255,.55); }
.custom-app-banner .banner-btn { background: var(--yellow); color: #fff; padding: 8px 18px; border-radius: 100px; font-size: 14px; font-weight: 700; white-space: nowrap; transition: all .15s; }
.custom-app-banner .banner-btn:hover { background: var(--yellow-dark); }
.custom-app-banner .banner-close { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; opacity: .5; transition: opacity .15s; flex-shrink: 0; }
.custom-app-banner .banner-close:hover { opacity: 1; }
.custom-app-banner .banner-close svg { width: 14px; height: 14px; }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.w-full { width: 100%; }
.placeholder-hero { background: linear-gradient(135deg, #f5f0e8 0%, #ede5d0 100%); }
.placeholder-dark { background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%); }
.placeholder-yellow { background: linear-gradient(135deg, #f0c93a 0%, #e0b52a 100%); }
.placeholder-blue { background: linear-gradient(135deg, #e8f0fe 0%, #d0e0f8 100%); }
.placeholder-pink { background: linear-gradient(135deg, #fce8f0 0%, #f8d0e0 100%); }
.placeholder-green { background: linear-gradient(135deg, #e8f8ee 0%, #d0f0dc 100%); }
.pfeat-eyebrow {
display: block;
font-size: 11px;
font-weight: 700;
letter-spacing: .1em;
text-transform: uppercase;
color: var(--gray-light);
margin-bottom: 16px;
}
.real-phone {
position: relative;
display: inline-block;
flex-shrink: 0;
}
.real-phone-frame-img {
width: 100%;
display: block;
position: relative;
z-index: 2;
pointer-events: none;
filter: drop-shadow(0 32px 80px rgba(0,0,0,.18)) drop-shadow(0 8px 24px rgba(0,0,0,.1));
}
.real-phone-screen {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
overflow: hidden;
z-index: 1;
background: #000;
}
.real-phone-screen img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.hero-app-image {
width: 100%;
max-width: 980px;
margin: 0 auto;
display: block;
padding: 0 16px;
}
@media (max-width: 768px) {
.hero-app-image { max-width: 600px; }
}
.pfeat-cinema {
background: #000;
padding: 100px 0 90px;
overflow: hidden;
}
.pfeat-cinema-wrap {
max-width: 960px;
margin: 0 auto;
padding: 0 24px;
}
.pfeat-cinema-card {
width: 75%;
margin-left: auto;
margin-right: auto;
border-radius: 22px;
overflow: hidden;
background: #111;
aspect-ratio: auto;
margin-top: 36px;
position: relative;
}
.pfeat-cinema-card img {
width: 100%; height: 100%;
object-fit: cover; display: block;
}
.pfeat-cinema-video {
width: 100%; height: auto;
display: block;
}
.pfeat-cinema-overlay {
position: absolute;
inset: 0;
display: flex;
align-items: flex-end;
justify-content: space-between;
padding: 28px 32px;
background: linear-gradient(to top, rgba(0,0,0,.52) 0%, transparent 55%);
pointer-events: none;
}
.pfeat-cinema-overlay a { pointer-events: auto; }
.pfeat-cinema-overlay-left {
display: flex;
flex-direction: column;
gap: 2px;
}
.pfeat-cinema-label {
font-size: 13px;
font-weight: 600;
color: rgba(255,255,255,.72);
letter-spacing: .01em;
margin: 0;
}
.pfeat-cinema-title {
font-size: 28px;
font-weight: 800;
color: #fff;
letter-spacing: -.03em;
line-height: 1.1;
margin: 0;
}
.pfeat-cinema-badge {
display: block;
flex-shrink: 0;
transition: opacity .2s;
}
.pfeat-cinema-badge:hover { opacity: .82; }
@media (max-width: 540px) {
.pfeat-cinema-overlay { padding: 18px 20px; }
.pfeat-cinema-title { font-size: 20px; }
.pfeat-cinema-badge img { height: 32px; }
}
.pfeat-cinema-ph {
width: 100%; height: 100%;
background: linear-gradient(145deg, #141414 0%, #1e1e1e 100%);
display: flex; align-items: center; justify-content: center;
}
.pfeat-cinema-text {
text-align: center;
}
.pfeat-cinema-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 700;
line-height: 1.07;
letter-spacing: -.04em;
color: rgba(255,255,255,.38);
margin-bottom: 28px;
}
.pfeat-cinema-headline strong {
color: #fff;
font-weight: 800;
}
.pfeat-cinema-cta {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 15px;
font-weight: 600;
color: #fff;
background: var(--yellow);
text-decoration: none;
padding: 12px 24px;
border-radius: 100px;
transition: background .18s, transform .18s;
}
.pfeat-cinema-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.pfeat-cinema-cta .learn-arrow { display: inline-block; transition: transform .25s cubic-bezier(.4,0,.2,1); }
.pfeat-cinema-cta:hover .learn-arrow { transform: translateX(4px); }
@media (max-width: 680px) {
.pfeat-cinema { padding: 64px 0 56px; }
.pfeat-cinema-card { border-radius: 14px; width: 100%; }
.pfeat-cinema-headline { font-size: 2rem; }
}
.pfeat-need {
background: #000;
padding: 100px 0 0;
overflow: hidden;
}
.pfeat-need-text {
max-width: 920px;
margin: 0 auto;
padding: 0 40px 80px;
}
.pfeat-need-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 700;
line-height: 1.08;
letter-spacing: -.04em;
color: rgba(255,255,255,.38);
}
.pfeat-need-headline strong {
color: #fff;
font-weight: 800;
}
.pfeat-need-sub {
font-size: 1.1rem;
line-height: 1.7;
color: rgba(255,255,255,.45);
max-width: 560px;
margin-top: 24px;
}
.pfeat-need-devices {
position: relative;
width: 108%;
margin-left: -4%;
overflow: hidden;
}
.pfeat-frames-img {
display: block;
width: 100%;
position: relative;
z-index: 2;
pointer-events: none;
}
.pfeat-frame-screen {
position: absolute;
z-index: 1;
overflow: hidden;
}
.pfeat-frame-screen img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.pfeat-frame-screen-a {
left: 1.5%;
top: 14%;
width: 16.6%;
bottom: 6%;
border-radius: 4.5% / 2%;
}
.pfeat-frame-screen-b {
left: 22.2%;
top: 11.5%;
width: 20.5%;
bottom: 3%;
border-radius: 4% / 1.8%;
}
.pfeat-frame-screen-c {
left: 48.8%;
top: 32%;
width: 49.4%;
bottom: 6%;
border-radius: 2% / 4.5%;
}
.pfeat-editorial-section {
background: #000;
padding: 160px 0 140px;
}
@media (max-width: 860px) {
.pfeat-need-text { padding: 0 24px 56px; }
.pfeat-need-devices { height: 400px; }
.pn-phone-a { left: calc(50% - 240px); }
.pn-phone-c { display: none; }
}
.pfeat-stats { background: var(--bg-soft); padding: 72px 0; }
.pfeat-stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0;
border: 1px solid var(--border);
border-radius: var(--radius-lg);
overflow: hidden;
}
.pfeat-stat-item {
background: #fff;
padding: 48px 36px;
text-align: center;
}
.pfeat-stat-item + .pfeat-stat-item { border-left: 1px solid var(--border); }
.pfeat-stat-number {
font-size: clamp(2.2rem, 3.6vw, 3.2rem);
font-weight: 800;
letter-spacing: -.05em;
color: var(--text);
line-height: 1;
margin-bottom: 10px;
}
.pfeat-stat-label {
font-size: 13px;
color: var(--text-secondary);
line-height: 1.5;
}
.pfeat-intro { background: #fff; padding: 140px 0 96px; }
.pfeat-intro-text {
text-align: center;
max-width: 680px;
margin: 0 auto 96px;
}
.pfeat-intro-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 800;
letter-spacing: -.04em;
line-height: 1.04;
color: var(--text);
margin: 14px 0 22px;
}
.pfeat-intro-sub {
font-size: 1.1rem;
color: var(--text-secondary);
line-height: 1.65;
max-width: 480px;
margin: 0 auto;
}
.pfeat-editorial-headline {
max-width: 820px;
margin-bottom: 72px;
}
.pfeat-editorial-headline h2 {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 700;
line-height: 1.08;
letter-spacing: -.04em;
color: rgba(255,255,255,.38);
}
.pfeat-editorial-headline h2 strong {
color: #fff;
font-weight: 800;
}
.pfeat-editorial {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.pfeat-editorial-item {
background: #1c1c1e;
border-radius: 24px;
padding: 36px;
display: flex;
flex-direction: column;
min-height: 280px;
}
.pfeat-editorial-icon {
color: var(--yellow);
margin-bottom: auto;
padding-bottom: 48px;
}
.pfeat-editorial-icon svg { display: block; }
.pfeat-editorial-card-title {
font-size: clamp(1.5rem, 2vw, 1.9rem);
font-weight: 700;
letter-spacing: -.035em;
line-height: 1.15;
text-wrap: balance;
white-space: nowrap;
color: #fff;
margin-bottom: 14px;
}
.pfeat-editorial-card-desc {
font-size: 15px;
font-weight: 400;
line-height: 1.6;
color: rgba(255,255,255,.5);
margin: 0;
}
.pfeat-editorial-item-body {
font-size: 0.95rem;
line-height: 1.7;
color: rgba(255,255,255,.5);
}
.feat-cards-6 {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.feat-card-6 {
background: #1c1c1e;
border-radius: 20px;
padding: 28px;
display: flex;
flex-direction: column;
gap: 16px;
}
.feat-card-6-icon {
width: 48px;
height: 48px;
background: rgba(255,255,255,.08);
border-radius: 14px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}
/* About "values" cards — match index editorial block (purple icon top-left, large title lower) */
.values-cards .feat-card-6 {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 0;
padding: 36px;
min-height: 280px;
border-radius: 24px;
}
.values-cards .feat-card-6-icon {
width: auto;
height: auto;
background: none;
border-radius: 0;
color: var(--yellow);
margin-bottom: auto;
padding-bottom: 48px;
}
.values-cards .feat-card-6-icon svg { display: block; }
.values-cards .feat-card-6-title {
font-size: clamp(1.4rem, 1.9vw, 1.8rem);
letter-spacing: -.03em;
line-height: 1.15;
margin-bottom: 14px;
text-wrap: balance;
}
.values-cards .feat-card-6-desc { font-size: 15px; }
.feat-card-6-title {
font-size: 1rem;
font-weight: 700;
color: #fff;
letter-spacing: -.02em;
line-height: 1.3;
margin: 0;
}
.feat-card-6-desc {
font-size: 0.9rem;
line-height: 1.65;
color: rgba(255,255,255,.5);
margin: 0;
}
@media (max-width: 768px) {
.feat-cards-6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
.feat-cards-6 { grid-template-columns: 1fr; }
}
.pfeat-row { background: #fff; padding: 100px 0; overflow: hidden; }
.pfeat-row-alt { background: var(--bg-soft); padding: 0 !important; }
.pfeat-row-inner {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 24px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.pfeat-row-inner-rev { direction: rtl; }
.pfeat-row-inner-rev > * { direction: ltr; }
.pfeat-row-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 800;
letter-spacing: -.04em;
line-height: 1.06;
color: var(--text);
margin-bottom: 20px;
}
.pfeat-row-alt .pfeat-row-headline {
color: var(--text);
}
.pfeat-row-body {
font-size: 1.05rem;
line-height: 1.7;
color: var(--text-secondary);
margin-bottom: 36px;
}
.pfeat-row-alt .pfeat-row-body {
color: var(--text-secondary);
}
.pfeat-row-alt .pfeat-eyebrow {
color: var(--text-secondary);
}
.pfeat-row-visual { display: flex; justify-content: center; align-items: flex-start; }
.pfeat-phone {
position: relative;
flex-shrink: 0;
}
.pfeat-phone-frame {
background: #1c1c1e;
border-radius: 52px;
padding: 12px;
box-shadow:
0 0 0 1px rgba(0,0,0,.08),
0 40px 100px rgba(0,0,0,.13),
0 12px 32px rgba(0,0,0,.08);
position: relative;
}
.pfeat-phone-di {
position: absolute;
top: 24px; left: 50%; transform: translateX(-50%);
width: 104px; height: 30px;
background: #000; border-radius: 20px; z-index: 10;
}
.pfeat-phone-screen {
background: #f5f5f7;
border-radius: 43px;
aspect-ratio: 9 / 19.5;
overflow: hidden;
position: relative;
}
.pfeat-phone-ph {
width: 100%; height: 100%;
display: flex; align-items: center; justify-content: center;
}
.pfeat-phone-lg { width: 300px; }
.pfeat-phone-md { width: 256px; }
.pfeat-phone-sm { width: 210px; }
.pfeat-phone-offset { margin-top: 56px; margin-left: -28px; }
.pfeat-formats-wrap { max-width: var(--max-w); margin: 0 auto; padding: 60px 24px 32px; }
.pfeat-formats-header {
margin-bottom: 64px;
}
.pfeat-formats-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 800;
letter-spacing: -.04em;
line-height: 1.06;
color: var(--text);
margin: 12px 0 20px;
max-width: 700px;
}
.pfeat-formats-sub {
font-size: 1.05rem;
line-height: 1.65;
color: var(--text-secondary);
max-width: 600px;
}
.pfeat-formats-cards {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.pfeat-formats-card-img {
width: 100%;
aspect-ratio: 4 / 5;
border-radius: 16px;
overflow: hidden;
margin-bottom: 14px;
}
.pfeat-formats-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pfeat-formats-card p { font-size: 14px; line-height: 1.6; color: var(--text-secondary); }
.pfeat-formats-card p strong { color: var(--text); font-weight: 700; display: block; margin-bottom: 4px; }
@media (max-width: 860px) {
.pfeat-formats-cards { grid-template-columns: repeat(2, 1fr); }
}
.pfeat-checklist {
display: flex;
flex-direction: column;
border-top: 1px solid var(--border);
margin-bottom: 8px;
}
.pfeat-checklist li {
display: flex;
align-items: center;
gap: 12px;
padding: 15px 0;
border-bottom: 1px solid var(--border);
font-size: 15px;
color: var(--text);
font-weight: 500;
}
.pfeat-checklist li::before {
content: '';
width: 20px; height: 20px;
flex-shrink: 0;
border-radius: 50%;
background: var(--yellow);
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 10l4 4 8-8' stroke='%23fff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
background-size: 65%;
background-repeat: no-repeat;
background-position: center;
}
.pfeat-row-alt .pfeat-checklist {
border-top-color: var(--border);
}
.pfeat-row-alt .pfeat-checklist li {
color: var(--text);
border-bottom-color: var(--border);
}
.pfeat-carousel { background: var(--bg-soft); padding: 140px 0 0; overflow: hidden; }
.pfeat-carousel-header {
text-align: center;
max-width: 780px;
margin: 0 auto 96px;
padding: 0 24px;
}
.pfeat-carousel-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 800;
letter-spacing: -.04em;
line-height: 1.04;
color: var(--text);
margin: 14px 0 18px;
}
.pfeat-carousel-sub {
font-size: 1.05rem;
color: var(--text-secondary);
line-height: 1.65;
}
.pfeat-phone-strip {
display: flex;
justify-content: center;
padding: 0 100px;
overflow: hidden;
max-height: 80vh;
}
.pfeat-section2-img {
width: 100%;
display: block;
object-fit: cover;
object-position: top center;
}
.pfeat-strip-item { flex-shrink: 0; }
.pfeat-strip-item:nth-child(1) { transform: translateY(80px); }
.pfeat-strip-item:nth-child(2) { transform: translateY(40px); }
.pfeat-strip-item:nth-child(3) { transform: translateY(0); z-index: 3; }
.pfeat-strip-item:nth-child(4) { transform: translateY(40px); }
.pfeat-strip-item:nth-child(5) { transform: translateY(80px); }
.pfeat-gallery {
background: #fff;
position: relative;
min-height: 940px;
overflow: hidden;
display: flex;
align-items: flex-start;
justify-content: center;
padding-top: 104px;
}
.pfeat-gallery-header {
position: relative;
z-index: 2;
text-align: center;
max-width: 720px;
padding: 0 24px;
}
.pfeat-gallery-headline {
font-size: clamp(2rem, 3.6vw, 3.4rem);
font-weight: 800;
letter-spacing: -.04em;
line-height: 1.08;
color: var(--text);
margin-bottom: 16px;
}
.pfeat-gallery-sub { font-size: 1rem; color: var(--text-secondary); line-height: 1.65; }
.pfeat-gallery-cta { display: flex; justify-content: center; margin-top: 30px; }
/* App images rising from the bottom */
.gf-cluster { position: absolute; left: 0; right: 0; bottom: -30px; z-index: 1; display: flex; justify-content: center; padding: 0 24px; pointer-events: none; }
.gf-cluster-img { width: min(1060px, 100%); height: auto; display: block; transform: translateY(96px); transition: opacity 1.3s ease, transform 1.3s cubic-bezier(.16,1,.3,1); }
.gf-cluster-img.visible { transform: translateY(0); }
@media (max-width: 700px) { .gf-cluster { bottom: -14px; } }
@media (prefers-reduced-motion: reduce) { .gf-cluster-img { transition: opacity .4s ease; transform: none; } }
.gf { position: absolute; z-index: 1; }
.gf img { display: block; width: 100%; border-radius: 12px; }
.gf-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.05); }
.gf-card img { border-radius: 0; }
.gf-bar { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; color: #262626; }
.gf-bar-icons { display: flex; gap: 14px; }
.gf img { aspect-ratio: 4 / 5; object-fit: cover; }
.gf-card img { aspect-ratio: 4 / 5; object-fit: cover; }
.gf-a { top: 10%;  right: 10%; width: 280px; box-shadow: 0 8px 32px rgba(0,0,0,.09); border-radius: 12px; overflow: hidden; }
.gf-b { top: 28%; left: 4%;  width: 310px; }
.gf-c { bottom: 4%; left: 18%; width: 176px; box-shadow: 0 8px 32px rgba(0,0,0,.09); border-radius: 12px; overflow: hidden; }
.gf-d { top: 32%; right: 3%; width: 280px; }
@media (max-width: 860px) {
.pfeat-editorial { grid-template-columns: 1fr; }
.pfeat-editorial-item { min-height: auto; padding: 28px; }
.pfeat-editorial-icon { margin-bottom: 0; padding-bottom: 28px; }
.pfeat-stats-grid { grid-template-columns: 1fr; }
.pfeat-stat-item { padding: 36px 28px; text-align: left; }
.pfeat-stat-item + .pfeat-stat-item { border-left: none; border-top: 1px solid var(--border); }
.pfeat-row-inner { grid-template-columns: 1fr; gap: 48px; }
.pfeat-row-inner-rev { direction: ltr; }
.pfeat-phone-strip { gap: 12px; }
.pfeat-strip-item:nth-child(1),
.pfeat-strip-item:nth-child(5) { display: none; }
.pfeat-phone-lg { width: 240px; }
.pfeat-phone-sm { width: 170px; }
}
@media (max-width: 540px) {
.pfeat-editorial-item { padding: 24px; }
.pfeat-editorial-icon { padding-bottom: 24px; }
.pfeat-editorial-card-title { font-size: 1.4rem; }
.pfeat-stats-grid { grid-template-columns: 1fr; }
.pfeat-phone-lg { width: 260px; }
.pfeat-intro-headline, .pfeat-row-headline, .pfeat-carousel-headline, .pfeat-gallery-headline { font-size: 2rem; }
}
@media (max-width: 1024px) {
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.footer-grid { grid-template-columns: 1fr 1fr 1fr; }
.stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
:root { --nav-height: 48px; }
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.grid-2, .grid-3 { grid-template-columns: 1fr; }
.grid-2 .order-first { order: -1; }
.nav-links, .nav-actions .btn { display: none; }
.nav-hamburger { display: flex; }
.section-header { margin-bottom: 56px; }
.cta-banner { flex-direction: column; text-align: center; padding: 48px 28px; }
.cta-banner-actions { justify-content: center; }
.footer-grid { grid-template-columns: 1fr; gap: 32px; }
.footer-bottom { flex-direction: column; text-align: center; }
.hero-actions { flex-direction: column; align-items: flex-start; }
.store-badges { flex-direction: column; align-items: flex-start; }
.hero-display { font-size: 2.4rem; letter-spacing: -.03em; }
.hero-app-img { margin-top: 48px; }
.btn-hero-download { font-size: .95rem; padding: 16px 28px; }
.stats-row { grid-template-columns: 1fr 1fr; }
.support-categories { grid-template-columns: 1fr 1fr; }
.support-cat-card { padding: 22px 22px 26px; }
}
@media (max-width: 600px) {
.support-categories { grid-template-columns: 1fr; }
.blog-post { padding: 0 4px; }
.page-header { padding: calc(var(--nav-height) + 40px) 0 40px; }
.breadcrumb { padding-top: calc(var(--nav-height) + 16px); }
}
@media (max-width: 480px) {
.container { padding: 0 16px; }
.stats-row { grid-template-columns: 1fr 1fr; }
.phone-mockup { width: 200px; }
.cta-banner-actions .btn-lg { width: 100%; justify-content: center; }
}
.feat-scroll-wrap {
width: 100%;
overflow-x: auto;
padding: 48px 40px 56px;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}
.feat-scroll-wrap::-webkit-scrollbar { display: none; }
.feat-scroll-track {
display: flex;
gap: 16px;
width: max-content;
}
.feat-scroll-card {
background: #fff;
border-radius: 24px;
padding: 36px 28px 48px;
width: 260px;
flex-shrink: 0;
display: flex;
flex-direction: column;
gap: 24px;
}
.feat-scroll-icon {
width: 56px;
height: 56px;
display: flex;
align-items: center;
justify-content: flex-start;
}
.feat-scroll-title {
font-size: 1.35rem;
font-weight: 700;
line-height: 1.3;
letter-spacing: -.02em;
color: var(--text);
}
.feat-scroll-sub {
color: var(--text-secondary);
font-weight: 600;
}
@media (max-width: 600px) {
.feat-scroll-wrap { padding: 32px 20px 40px; }
.feat-scroll-card { width: 220px; padding: 28px 22px 36px; }
}
.pfeat-statement {
background: var(--bg-soft);
padding: 100px 0 44px;
}
.pfeat-statement-inner {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
text-align: center;
}
.pfeat-statement-text {
font-size: clamp(2rem, 4.5vw, 4rem);
font-weight: 800;
line-height: 1.25;
letter-spacing: -.03em;
color: var(--text);
}
.feat-chip {
display: inline-flex;
align-items: center;
justify-content: center;
vertical-align: middle;
border-radius: 14px;
overflow: hidden;
margin: 0 4px;
flex-shrink: 0;
width: 52px;
height: 52px;
position: relative;
top: -3px;
}
.feat-chip-photo { border-radius: 14px; }
.feat-chip-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feat-chip-yellow { background: var(--yellow); }
.feat-chip-dark { background: #111; }
.feat-chip-blue { background: #4f7aff; }
@media (max-width: 600px) {
.pfeat-statement { padding: 64px 0 56px; }
.pfeat-statement-inner { padding: 0 20px; }
.feat-chip { width: 38px; height: 38px; border-radius: 10px; }
}
.updates-header { padding-bottom: 100px; }
.pfeat-social {
background: #fff;
padding: 120px 0;
}
/* Side-by-side reviews (no background, large text) */
.reviews-duo { max-width: var(--max-w); margin: 0 auto; padding: 64px 40px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; }
.review-card { display: flex; flex-direction: column; padding-left: 32px; border-left: 1px solid var(--border); }
.review-card .pfeat-social-headline { margin-bottom: 32px; }
.review-card .pfeat-social-testimonial { margin-top: auto; }
@media (max-width: 820px) { .reviews-duo { grid-template-columns: 1fr; gap: 48px; } }
.pfeat-social-row {
max-width: var(--max-w);
margin: 0 auto;
padding: 0 40px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 64px;
align-items: center;
}
.pfeat-social-row + .pfeat-social-row {
margin-top: 80px;
padding-top: 80px;
border-top: 1px solid var(--border);
}
.pfeat-social-row-rev {
direction: rtl;
}
.pfeat-social-row-rev > * {
direction: ltr;
}
.pfeat-social-visual {
border-radius: var(--radius-lg);
overflow: hidden;
aspect-ratio: 1;
position: relative;
}
.pfeat-social-visual img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
/* Cross-fading fragrance loop */
.frag-loop { position: absolute; inset: 0; }
.frag-loop img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; will-change: opacity; animation: fragLoop 21s ease-in-out infinite; }
.frag-loop img:nth-child(1) { animation-delay: 0s; }
.frag-loop img:nth-child(2) { animation-delay: -3.5s; }
.frag-loop img:nth-child(3) { animation-delay: -7s; }
.frag-loop img:nth-child(4) { animation-delay: -10.5s; }
.frag-loop img:nth-child(5) { animation-delay: -14s; }
.frag-loop img:nth-child(6) { animation-delay: -17.5s; }
@keyframes fragLoop {
  0%      { opacity: 0; }
  2%      { opacity: 1; }
  15.66%  { opacity: 1; }
  18.66%  { opacity: 0; }
  100%    { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .frag-loop img { animation: none; opacity: 0; }
  .frag-loop img:nth-child(1) { opacity: 1; }
}
.pfeat-social-img-gradient {
position: absolute;
bottom: 0; left: 0; right: 0;
height: 65%;
background: linear-gradient(to top, rgba(0,0,0,.72) 0%, transparent 100%);
pointer-events: none;
}
.pfeat-social-overlay {
position: absolute;
bottom: 28px;
left: 32px;
right: 32px;
z-index: 1;
}
.pfeat-social-overlay-name {
font-size: clamp(3rem, 6vw, 5.5rem);
font-weight: 800;
letter-spacing: -.04em;
line-height: 1;
color: var(--yellow);
}
.pfeat-social-overlay-role {
font-size: 1rem;
font-weight: 600;
color: rgba(255,255,255,.75);
margin-top: 6px;
letter-spacing: .01em;
}
.pfeat-social-content {
display: flex;
flex-direction: column;
gap: 32px;
}
.pfeat-social-content-split {
justify-content: space-between;
}
.pfeat-social-headline {
font-size: clamp(1.8rem, 3.2vw, 3rem);
font-weight: 600;
line-height: 1.15;
letter-spacing: -.025em;
color: rgba(0,0,0,.28);
}
.pfeat-social-headline strong {
color: var(--text);
font-weight: 700;
}
.pfeat-social-card {
background: var(--bg-soft);
border-radius: var(--radius);
padding: 28px 32px 32px;
}
.feat-checklist-box {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 12px;
}
.feat-checklist-box li {
display: inline-flex;
align-items: center;
gap: 12px;
align-self: flex-start;
max-width: 100%;
font-size: 15px;
font-weight: 500;
color: var(--text);
line-height: 1.45;
}
.feat-checklist-box li svg {
flex-shrink: 0;
}
.pfeat-social-testimonial {
display: flex;
flex-direction: column;
gap: 16px;
}
.pfeat-social-testimonial-header {
display: flex;
align-items: center;
gap: 14px;
}
.pfeat-social-thumb {
width: 76px;
height: 56px;
border-radius: 12px;
overflow: hidden;
flex-shrink: 0;
background: var(--bg-soft);
}
.pfeat-social-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.pfeat-social-name {
font-size: 15px;
font-weight: 700;
color: var(--text);
line-height: 1.3;
}
.pfeat-social-role {
font-size: 13px;
color: var(--text-secondary);
margin-top: 2px;
}
.pfeat-social-quote {
font-size: 1rem;
line-height: 1.7;
color: var(--text);
}
.pfeat-social-link {
font-size: 15px;
font-weight: 500;
color: var(--text-secondary);
display: inline-flex;
align-items: center;
gap: 4px;
transition: color .15s;
}
.pfeat-social-link:hover {
color: var(--text);
}
.pfeat-social-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.pfeat-social-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--border); overflow: hidden; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; color: var(--text); }
@media (max-width: 860px) {
.pfeat-social { padding: 80px 0; }
.pfeat-social-row { grid-template-columns: 1fr; gap: 40px; }
.pfeat-social-row-rev { direction: ltr; }
.pfeat-social-row + .pfeat-social-row { margin-top: 60px; padding-top: 60px; }
.pfeat-social-content-split { justify-content: flex-start; }
.pfeat-social-overlay-name { font-size: clamp(2.5rem, 8vw, 4rem); }
}
@media (max-width: 600px) {
.pfeat-social { padding: 60px 0; }
.pfeat-social-row { padding: 0 20px; }
.pfeat-social-headline { font-size: clamp(1.6rem, 7vw, 2.4rem); }
.pfeat-social-overlay { left: 20px; bottom: 20px; }
.pfeat-social-overlay-name { font-size: clamp(2rem, 10vw, 3.5rem); }
}
.pricing-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 24px;
}
@media (max-width: 600px) {
.pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
.hero-dark { min-height: unset; }
.hero-phones-trio { flex: unset; }
.pfeat-intro { padding: 80px 0 60px; }
.pfeat-intro-text { margin-bottom: 56px; }
.pfeat-need { padding: 72px 0 0; }
.pfeat-need-text { padding: 0 24px 48px; }
.pfeat-editorial-section { padding: 72px 0 80px; }
.pfeat-editorial-headline { margin-bottom: 48px; }
.pfeat-row { padding: 72px 0; }
.pfeat-carousel { padding: 80px 0 0; }
.pfeat-carousel-header { margin-bottom: 56px; }
.pfeat-phone-strip { padding: 0 32px; }
.pfeat-formats-wrap { padding: 40px 20px 24px; }
.pfeat-formats-header { margin-bottom: 40px; }
.testimonials-dark .pfeat-formats-cards { grid-template-columns: repeat(2, 1fr); }
.pfeat-gallery { min-height: 760px; padding-top: 90px; }
}
@media (max-width: 600px) {
.hero-dark { min-height: unset; padding-top: calc(var(--nav-height) + 48px); }
.hero-phones-trio { flex: unset; }
.hero-dark-text { padding-bottom: 36px; }
.pfeat-intro { padding: 60px 0 48px; }
.pfeat-editorial-section { padding: 56px 0 64px; }
.pfeat-row { padding: 56px 0; }
.pfeat-carousel { padding: 60px 0 0; }
.pfeat-carousel-header { margin-bottom: 40px; padding: 0 20px; }
.pfeat-phone-strip { padding: 0 16px; }
.pfeat-formats-cards { grid-template-columns: repeat(2, 1fr) !important; }
.pfeat-formats-wrap { padding: 32px 16px 16px; }
.testimonials-dark .pfeat-formats-cards { grid-template-columns: 1fr !important; }
.testimonials-dark .section-header { margin-bottom: 40px; }
.pfeat-gallery {
display: block;
min-height: 600px;
padding-top: 56px;
overflow: hidden;
}
.pfeat-gallery-header {
position: relative;
z-index: 3;
max-width: 100%;
padding: 0 24px;
margin: 0 auto 0;
text-align: center;
}
.gf { display: block; }
.gf-c { display: none; }
.gf-b { width: 185px; left: calc(50% - 189px); top: auto; bottom: 16px; }
.gf-d { width: 185px; right: calc(50% - 189px); top: auto; bottom: 60px; }
.gf-a { display: none; }
.pfeat-row-inner { gap: 36px; }
.pfeat-row-inner .pfeat-phone-wrap { max-width: 280px; margin: 0 auto; }
.pfeat-need-devices { height: 300px; }
}
@media (max-width: 768px) {
br.desktop-only { display: none; }
.updates-nowrap { white-space: normal; }
}
.sl-popup-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, .55);
backdrop-filter: blur(4px);
-webkit-backdrop-filter: blur(4px);
z-index: 9000;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
opacity: 0;
visibility: hidden;
transition: opacity .35s ease, visibility .35s ease;
}
.sl-popup-overlay.sl-popup-visible {
opacity: 1;
visibility: visible;
}
.sl-popup {
background: var(--bg-soft);
border-radius: var(--radius-lg);
overflow: hidden;
width: 100%;
max-width: 420px;
box-shadow: 0 32px 80px rgba(0,0,0,.22);
transform: translateY(28px) scale(.97);
transition: transform .35s cubic-bezier(.22,.68,0,1.2);
position: relative;
}
.sl-popup-overlay.sl-popup-visible .sl-popup {
transform: translateY(0) scale(1);
}
.sl-popup-close {
position: absolute;
top: 12px;
right: 12px;
width: 32px;
height: 32px;
border-radius: 50%;
background: rgba(0,0,0,.45);
color: #fff;
font-size: 18px;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
border: none;
z-index: 2;
transition: background .2s;
}
.sl-popup-close:hover { background: rgba(0,0,0,.65); }
.sl-popup-img {
width: 100%;
aspect-ratio: 4 / 3;
overflow: hidden;
background: var(--bg-soft);
}
.sl-popup-img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.sl-popup-body {
padding: 28px 28px 24px;
background: #fff;
}
.sl-popup-eyebrow {
font-size: 11px;
font-weight: 700;
letter-spacing: .1em;
text-transform: uppercase;
color: var(--gray);
margin-bottom: 8px;
}
.sl-popup-title {
font-size: clamp(1.3rem, 4vw, 1.65rem);
font-weight: 800;
letter-spacing: -.03em;
color: var(--text);
line-height: 1.15;
margin-bottom: 10px;
}
.sl-popup-sub {
font-size: .9rem;
color: var(--text-secondary);
line-height: 1.6;
margin-bottom: 20px;
}
.sl-popup-form {
display: flex;
gap: 8px;
margin-bottom: 12px;
}
.sl-popup-input {
flex: 1;
min-width: 0;
padding: 11px 14px;
border: 1.5px solid var(--border);
border-radius: 100px;
font-family: inherit;
font-size: 14px;
color: var(--text);
background: #fff;
outline: none;
transition: border-color .2s;
}
.sl-popup-input:focus { border-color: var(--yellow-dark); }
.sl-popup-input::placeholder { color: var(--gray-light); }
.sl-popup-submit {
flex-shrink: 0;
padding: 11px 20px;
border-radius: 100px;
background: var(--yellow);
color: #fff;
font-family: inherit;
font-size: 14px;
font-weight: 700;
border: none;
cursor: pointer;
transition: background .2s, transform .15s;
white-space: nowrap;
}
.sl-popup-submit:hover { background: var(--yellow-dark); }
.sl-popup-submit:active { transform: scale(.97); }
.sl-form-msg {
font-size: 13px;
font-weight: 500;
margin-top: 12px;
padding: 9px 16px;
border-radius: 100px;
display: inline-block;
}
.sl-form-msg--ok {
background: rgba(134, 239, 172, .15);
color: #86efac;
}
.sl-form-msg--err {
background: rgba(252, 165, 165, .15);
color: #fca5a5;
}
.sl-popup-error {
font-size: .85rem;
font-weight: 500;
color: #dc2626;
margin-bottom: 10px;
padding: 9px 12px;
background: #fef2f2;
border: 1.5px solid #fca5a5;
border-radius: 10px;
}
.sl-popup-success {
font-size: .9rem;
font-weight: 600;
color: var(--text);
margin-bottom: 12px;
padding: 10px 14px;
background: #f0fdf4;
border: 1.5px solid #86efac;
border-radius: 10px;
}
.sl-popup-skip {
display: block;
width: 100%;
text-align: center;
font-family: inherit;
font-size: 12px;
color: var(--gray-light);
background: none;
border: none;
cursor: pointer;
padding: 4px;
transition: color .2s;
}
.sl-popup-skip:hover { color: var(--text-secondary); }
@media (max-width: 480px) {
.sl-popup { border-radius: var(--radius); }
.sl-popup-img { aspect-ratio: 16 / 9; }
.sl-popup-body { padding: 20px 20px 18px; }
.sl-popup-form { flex-direction: column; }
.sl-popup-submit { width: 100%; padding: 13px; }
}
/* ─── QR Code Widget ─────────────────────────────────────────── */
.qr-widget {
position: fixed;
bottom: 88px;
right: 24px;
z-index: 90;
background: #fff;
border: 1px solid var(--border);
border-radius: var(--radius-sm);
box-shadow: var(--shadow-lg);
padding: 14px;
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
width: 148px;
transition: opacity .2s, transform .2s;
}
.qr-widget img { width: 108px; height: 108px; display: block; }
.qr-widget-label {
font-size: 12px;
font-weight: 600;
color: var(--text-secondary);
text-align: center;
line-height: 1.4;
}
.qr-widget-close {
position: absolute;
top: 6px;
right: 6px;
width: 20px;
height: 20px;
display: flex;
align-items: center;
justify-content: center;
background: none;
border: none;
cursor: pointer;
color: var(--gray-light);
font-size: 14px;
border-radius: 50%;
transition: background .15s, color .15s;
}
.qr-widget-close:hover { background: var(--bg-soft); color: var(--text); }
.qr-widget.hidden { display: none; }
@media (max-width: 768px) {
.qr-widget { display: none; }
}

/* ====== Scent showcase (phone + drifting cards) ====== */
/* Home bento feature grid */
/* Stacking feature cards */
.stack-section { background: linear-gradient(180deg, #e6e6eb 0%, #ffffff 100%); padding: 96px 0 120px; }
.stack-wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.stack-head { text-align: center; max-width: 760px; margin: 0 auto 56px; }
.stack-heading { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.06; color: var(--text); margin: 0 auto; max-width: 720px; }
.stack-sub { font-size: 1.1rem; font-weight: 400; line-height: 1.6; color: var(--text-secondary); margin: 20px auto 0; max-width: 560px; }
.stack-cta { margin-top: 28px; display: flex; justify-content: center; }
.stack-trust-badge { display: block; width: 140px; height: auto; margin: 40px auto 0; }
/* Big stat full-page band */
.bignum { background: #000; color: #fff; padding: clamp(70px, 11vw, 140px) 0 0; }
.bignum-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px clamp(40px, 6vw, 72px); display: flex; align-items: center; justify-content: space-between; gap: 40px; border-bottom: 1px solid rgba(255,255,255,.16); }
.bignum-label { font-size: clamp(1.1rem, 2.2vw, 1.9rem); font-weight: 700; color: rgba(255,255,255,.5); margin: 0; line-height: 1.18; letter-spacing: -.01em; flex-shrink: 0; }
.bignum-value { font-size: clamp(3.2rem, 11.5vw, 11rem); font-weight: 600; letter-spacing: -.04em; line-height: .9; font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap; }
@media (max-width: 720px) { .bignum-wrap { flex-direction: column; align-items: flex-start; gap: 18px; } .bignum-value { text-align: left; } }
.stack-avatars { display: flex; justify-content: center; align-items: center; margin-top: 24px; }
.stack-rating-text { text-align: center; margin: 14px 0 0; font-size: .98rem; color: var(--text-secondary); }
.stack-rating-text strong { color: var(--text); font-weight: 700; }
/* horizontal sliding circles (marquee) */
.avatar-window { width: 140px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14px); mask-image: linear-gradient(90deg, transparent 0, #000 14px); }
.avatar-track { display: flex; width: max-content; animation: avatarMarquee 16s linear infinite; }
.av-circle { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%; border: 3px solid var(--bg-soft); overflow: hidden; margin-left: -14px; background: var(--bg-soft); }
.av-circle img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stack-avatar-more { position: relative; z-index: 2; width: 56px; height: 56px; flex: 0 0 auto; border-radius: 50%; border: 3px solid var(--bg-soft); margin-left: -14px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #8b6ff5, #6341EE); color: #fff; font-weight: 700; font-size: 16px; letter-spacing: -.02em; box-shadow: 0 6px 16px rgba(99,65,238,.35); }
@keyframes avatarMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .avatar-track { animation: none; } }
.stack-card {
  position: sticky; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch;
  aspect-ratio: 2 / 1; min-height: 480px; border-radius: 30px; overflow: hidden; background: #0d0d11; color: #fff;
  box-shadow: 0 30px 70px rgba(20,12,40,.22); margin-bottom: 28px;
}
.stack-card:nth-child(1) { top: 96px; }
.stack-card:nth-child(2) { top: 116px; }
.stack-card:nth-child(3) { top: 136px; }
.stack-card:nth-child(4) { top: 156px; margin-bottom: 0; }
.stack-card-text { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.stack-card-eyebrow { font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #7c5cf0; margin: 0 0 20px; }
.stack-card-title { font-size: clamp(2rem, 3.4vw, 3.4rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.06; margin: 0 0 22px; }
.stack-card-desc { font-size: clamp(1rem, 1.3vw, 1.2rem); font-weight: 500; line-height: 1.5; color: rgba(255,255,255,.7); margin: 0 0 34px; max-width: 500px; }
.stack-card-btn { align-self: flex-start; display: inline-flex; background: #fff; color: #15110d; font-weight: 700; font-size: .95rem; padding: 14px 28px; border-radius: 100px; transition: transform .2s ease, box-shadow .2s ease; box-shadow: 0 0 18px rgba(124,58,237,.5), 0 0 40px rgba(99,65,238,.32); animation: stackBtnGlow 3.2s ease-in-out infinite; }
.stack-card-btn:hover { transform: translateY(-2px); box-shadow: 0 0 26px rgba(124,58,237,.72), 0 0 56px rgba(99,65,238,.48); }
@keyframes stackBtnGlow { 0%, 100% { box-shadow: 0 0 15px rgba(124,58,237,.38), 0 0 34px rgba(99,65,238,.24); } 50% { box-shadow: 0 0 26px rgba(124,58,237,.68), 0 0 54px rgba(99,65,238,.44); } }
@media (prefers-reduced-motion: reduce) { .stack-card-btn { animation: none; } }
.stack-card-img { position: relative; overflow: hidden; }
.stack-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Alternate: even cards put the image on the left */
.stack-card:nth-child(even) .stack-card-text { order: 2; }
.stack-card:nth-child(even) .stack-card-img { order: 1; }
@media (max-width: 860px) {
  .stack-section { padding: 72px 0 90px; }
  .stack-card { grid-template-columns: 1fr; aspect-ratio: auto; min-height: 0; }
  .stack-card-text { padding: 34px; order: 2; }
  .stack-card-img { order: 1; min-height: 220px; }
  .stack-card:nth-child(1), .stack-card:nth-child(2), .stack-card:nth-child(3), .stack-card:nth-child(4) { top: 78px; }
}
.home-bento { background: var(--bg-soft); padding: 100px 0; }
.home-bento-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
.home-bento-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.home-bento-head .pfeat-eyebrow { margin-bottom: 12px; }
.home-bento-title { font-size: clamp(2rem, 3.6vw, 3.4rem); font-weight: 800; letter-spacing: -.04em; line-height: 1.06; color: var(--text); margin: 0; }
.home-bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.hb-card { background: #fff; border-radius: 24px; padding: 34px; min-height: 320px; display: flex; flex-direction: column; }
.hb-icon { width: 54px; height: 54px; border-radius: 15px; background: rgba(99,65,238,.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hb-icon svg { stroke: #6341EE; }
.hb-card-body { margin-top: auto; padding-top: 40px; }
.hb-title { font-size: 1.4rem; font-weight: 700; letter-spacing: -.02em; color: var(--text); margin: 0 0 10px; }
.hb-desc { font-size: 15px; line-height: 1.6; color: var(--text-secondary); margin: 0; }
.hb-image { grid-column: span 2; border-radius: 24px; overflow: hidden; aspect-ratio: 16 / 9; }
.hb-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .home-bento-grid { grid-template-columns: 1fr 1fr; }
  .hb-image { grid-column: span 2; }
  .hb-card { min-height: 220px; }
}
@media (max-width: 560px) {
  .home-bento { padding: 64px 0; }
  .home-bento-grid { grid-template-columns: 1fr; }
  .hb-image { grid-column: span 1; }
}
.scent-showcase { padding: 100px 0 110px; background: var(--bg); overflow: hidden; }
.scent-showcase--alt { background: var(--bg-soft); }
.scent-showcase-title {
  max-width: 880px; margin: 0 auto; text-align: center;
  font-size: clamp(2rem, 3.6vw, 3.4rem); font-weight: 800;
  line-height: 1.06; letter-spacing: -.04em; color: var(--text);
}
.scent-showcase-sub { text-align: center; margin: 22px auto 0; color: var(--text-secondary); font-size: 1.05rem; }
.scent-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 18px auto 0; }
.scent-tag {
  background: var(--bg-soft); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 13px; font-weight: 600;
  padding: 7px 14px; border-radius: 100px;
}
.scent-showcase--alt .scent-tag { background: #fff; }

/* Rotating large title */
.scent-rotate-title {
  text-align: center; max-width: 1000px; margin: 0 auto;
  font-size: clamp(2.4rem, 5.2vw, 4.6rem); font-weight: 600;
  line-height: 1.05; letter-spacing: -.04em; color: var(--text);
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.scent-rotator { display: block; height: 1.25em; overflow: hidden; }
.scent-rot-list { display: flex; flex-direction: column; animation: scentRoll 20s cubic-bezier(.7,0,.3,1) infinite; }
.scent-rot-list > span {
  display: flex; align-items: center; justify-content: center;
  height: 1.25em; line-height: 1.25em; white-space: nowrap;
  background: linear-gradient(105deg, #0d0d12 0%, #2c2070 28%, #6341EE 62%, #8b6ff5 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.scent-rotate-static { display: block; color: var(--text); font-size: .62em; margin-top: 4px; }
.scent-rotate-cta { display: flex; justify-content: center; margin-top: 32px; }
@keyframes scentRoll {
  0%, 9%       { transform: translateY(0); }
  12.5%, 21.5% { transform: translateY(-11.111%); }
  25%, 34%     { transform: translateY(-22.222%); }
  37.5%, 46.5% { transform: translateY(-33.333%); }
  50%, 59%     { transform: translateY(-44.444%); }
  62.5%, 71.5% { transform: translateY(-55.556%); }
  75%, 84%     { transform: translateY(-66.667%); }
  87.5%, 96.5% { transform: translateY(-77.778%); }
  100%         { transform: translateY(-88.889%); }
}
@media (prefers-reduced-motion: reduce) { .scent-rot-list { animation: none; } }

/* Stage holds the centered phone with absolutely-positioned cards behind it */
.scent-stage {
  position: relative; width: 100%; max-width: 1080px; margin: 36px auto 0;
  min-height: 700px; display: flex; align-items: center; justify-content: center;
}
.scent-phone { position: relative; z-index: 3; }
.scent-phone img {
  height: 680px; width: auto;
}

/* Floating cards layer — sits behind the phone */
.scent-cards { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.float-card {
  position: absolute; display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 12px 34px rgba(0,0,0,.12);
  padding: 12px 16px; font-size: 14px; font-weight: 600; color: var(--text);
  white-space: nowrap;
  animation: scentDrift 7s ease-in-out infinite;
  will-change: transform;
}
.fc-pill { border-radius: 100px; padding: 9px 16px 9px 12px; }
.fc-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.fc-dot-amber { background: #e8923a; }
.fc-dot-gold  { background: #e9c64b; }
.fc-dot-rose  { background: #e0567f; }
.fc-dot-wood  { background: #8a6242; }
.fc-ico {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center; font-size: 15px;
}
.fc-ico-yellow { background: #fff3c4; }
.fc-ico-green  { background: #d7f5d7; }
.fc-ico-purple { background: #ece1ff; }
.fc-ico-blue   { background: #d8ebff; }
.fc-icon-text { display: inline-flex; flex-direction: column; line-height: 1.15; }
.fc-icon-text strong { font-size: 16px; font-weight: 800; }
.fc-icon-text { font-size: 12px; color: var(--text-secondary); font-weight: 600; }
.fc-name { flex-direction: column; align-items: flex-start; gap: 3px; padding: 13px 17px; }
.fc-name-label { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gray-light); }
.fc-name-title { font-size: 14px; font-weight: 700; }

/* Card positions (left + right of the phone) and per-card timing */
.fc-1 { top: 6%;  left: 4%;  animation-duration: 7.5s; animation-delay: -.4s; }
.fc-2 { top: 30%; left: 0%;  animation-duration: 8.5s; animation-delay: -2.1s; }
.fc-3 { top: 56%; left: 6%;  animation-duration: 6.8s; animation-delay: -1.2s; }
.fc-4 { top: 80%; left: 17%; animation-duration: 9s;   animation-delay: -3s; }
.fc-5 { top: 7%;  right: 5%; animation-duration: 8s;   animation-delay: -1.6s; }
.fc-6 { top: 31%; right: 0%; animation-duration: 7.2s; animation-delay: -.8s; }
.fc-7 { top: 57%; right: 6%; animation-duration: 8.8s; animation-delay: -2.6s; }
.fc-8 { top: 81%; right: 16%; animation-duration: 6.5s; animation-delay: -1.9s; }

@keyframes scentDrift {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}

.scent-rating-badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 8px auto 0; padding: 10px 18px;
  background: #fff; border: 1px solid var(--border); border-radius: 100px;
  font-size: 14px; font-weight: 700; box-shadow: var(--shadow);
}
.scent-rating-badge span { font-weight: 500; color: var(--text-secondary); }
.scent-showcase .container { display: flex; flex-direction: column; align-items: center; }
.scent-showcase-foot { max-width: 560px; text-align: center; margin: 20px auto 0; color: var(--text-secondary); }
.scent-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }

@media (max-width: 900px) {
  .scent-stage { min-height: 0; }
  .scent-phone img { height: 480px; }
  /* keep only the outer cards on tablet, drop the ones that crowd the phone */
  .fc-2, .fc-6 { display: none; }
  .fc-1 { left: 0; } .fc-5 { right: 0; }
}
@media (max-width: 640px) {
  .scent-showcase { padding: 64px 0 72px; }
  .scent-cards { display: none; }      /* phone-only on mobile to avoid clutter */
  .scent-phone img { height: 420px; }
  .scent-cta { width: 100%; }
  .scent-cta .btn { flex: 1 1 auto; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  .float-card { animation: none; }
}

/* ====== Fragrance hero (bg image + white fade + phone + side cards) ====== */
.hero-fr {
  position: relative; overflow: hidden; background: #000;
  min-height: 92vh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--nav-height) + 60px) 0 11vh;
}
.hero-fr-bg { position: absolute; inset: 0; z-index: 0; }
.hero-fr-bg img, .hero-fr-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (prefers-reduced-motion: reduce) { .hero-fr-bg-video { display: none; } }
.hero-fr-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0) 26%,
    rgba(0,0,0,.30) 46%,
    rgba(0,0,0,.62) 66%,
    rgba(0,0,0,.88) 84%,
    #000 100%);
}
/* Bottom fade blends the hero into black */
.hero-fr::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 160px;
  background: linear-gradient(to top, #000 12%, rgba(0,0,0,0));
  z-index: 4; pointer-events: none;
}
.hero-fr-inner {
  position: relative; z-index: 2;
  max-width: 1120px; margin: 0 auto; padding: 0 24px; text-align: center;
}
.hero-fr-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(20,16,28,.62); color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 7px 16px 7px 8px; border-radius: 100px;
  font-size: 14px; font-weight: 500;
}
.hero-fr-pill-tag {
  background: #fff; color: #1d1d1f; font-weight: 700;
  padding: 3px 11px; border-radius: 100px; font-size: 13px;
}
.hero-fr-title {
  margin: 26px auto 0; color: #fff;
  font-size: clamp(2.3rem, 5.6vw, 4.3rem); font-weight: 800;
  line-height: 1.04; letter-spacing: -.045em;
  text-shadow: 0 2px 30px rgba(20,8,40,.35);
}
.hero-fr-sub {
  max-width: 540px; margin: 22px auto 0; color: #fff;
  font-size: 1.18rem; line-height: 1.5; font-weight: 500;
  text-shadow: 0 1px 18px rgba(20,8,40,.35);
}
.hero-fr-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }
.hero-fr-btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 15px 28px; border-radius: 100px;
  font-size: 16px; font-weight: 600; line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.hero-fr-btn-primary { background: #fff; color: #15110d; box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.hero-fr-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(0,0,0,.26); }
/* Soft glowing halo BEHIND the white primary button */
.hero-fr-btn-glowwrap { position: relative; display: inline-flex; }
.hero-fr-btn-glowwrap > .hero-fr-btn-primary { position: relative; z-index: 1; }
.hero-fr-btn-glowwrap::before {
  content: ""; position: absolute; inset: -8px; border-radius: 100px; z-index: 0; pointer-events: none;
  background: linear-gradient(100deg, #c026d3, #7c3aed 45%, #2f6bff);
  filter: blur(17px); opacity: .75;
  animation: hbGlowPulse 3.4s ease-in-out infinite;
}
@keyframes hbGlowPulse { 0%, 100% { opacity: .5; } 50% { opacity: .9; } }
@media (prefers-reduced-motion: reduce) { .hero-fr-btn-glowwrap::before { animation: none; opacity: .7; } }
.hero-fr-btn-ghost {
  background: rgba(20,16,28,.30); color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.hero-fr-btn-ghost:hover { background: rgba(20,16,28,.45); transform: translateY(-2px); }

/* Stage: centered phone with side cards */
.hero-fr-stage {
  position: relative; margin: 44px auto 0; max-width: 1080px;
  display: flex; align-items: flex-end; justify-content: center;
}
.hero-fr-phone { position: relative; z-index: 1; }
.hero-fr-phone img {
  height: 640px; width: auto;
  filter: drop-shadow(0 36px 70px rgba(0,0,0,.35));
}
.hero-fr-card {
  position: absolute; z-index: 3;
  background: rgba(26,20,34,.42);
  backdrop-filter: blur(20px) saturate(140%); -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 22px; color: #fff;
  box-shadow: 0 22px 55px rgba(0,0,0,.28);
  padding: 22px;
  animation: heroFrFloat 7s ease-in-out infinite;
}
.hero-fr-card-left { left: 1%; bottom: 30%; width: 208px; text-align: center; animation-delay: -1.5s; }
.hero-fr-card-right { right: 1%; bottom: 42%; width: 234px; animation-delay: -3.5s; }
.hero-fr-card-ico {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center; font-size: 27px;
  background: radial-gradient(circle at 50% 38%, #ffa54d, #e8761c);
  box-shadow: 0 0 38px rgba(232,118,28,.65);
}
.hero-fr-card-text { font-size: 18px; font-weight: 700; line-height: 1.25; }
.hero-fr-card-title { font-size: 15px; font-weight: 700; text-align: center; margin-bottom: 16px; }
.hero-fr-matches { display: flex; gap: 12px; justify-content: center; }
.hero-fr-match { text-align: center; }
.hero-fr-match-ico {
  width: 46px; height: 46px; border-radius: 50%; margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center; font-size: 21px;
  background: #fff;
}
.hero-fr-match-pct { font-size: 14px; font-weight: 700; }

@keyframes heroFrFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}


@media (max-width: 900px) {
  .hero-fr-phone img { height: 540px; }
  .hero-fr-card-left  { left: -2%;  width: 180px; padding: 18px; }
  .hero-fr-card-right { right: -2%; width: 200px; padding: 18px; }
}
@media (max-width: 640px) {
  .hero-fr { padding-top: calc(var(--nav-height) + 36px); }
  .hero-fr-card { display: none; }
  .hero-fr-phone img { height: 460px; }
  .hero-fr-sub { font-size: 1.05rem; }
  .hero-fr-cta { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-fr-card { animation: none; }
}

/* ====== Scent tile wall (square tiles scrolling behind the phone) ====== */
/* Clip the rows on the tile layer only — NOT the stage — so the phone's drop shadow isn't cut. */
.tilewall {
  position: absolute; inset: 0; z-index: 1; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
  /* fade only the left/right edges (no top/bottom gradient) */
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%);
}
.tile-row { display: flex; flex-direction: row; flex: 0 0 auto; width: max-content; will-change: transform; }
.tile-left  { animation: tileLeft  50s linear infinite; }
.tile-right { animation: tileRight 50s linear infinite; }
.row-a { animation-duration: 58s; } .row-b { animation-duration: 50s; }
.row-c { animation-duration: 34s; } .row-d { animation-duration: 27s; }
@keyframes tileLeft  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes tileRight { from { transform: translateX(-50%); } to { transform: translateX(0); } }

.tile {
  width: 150px; height: 150px; margin-right: 16px; border-radius: 22px; flex: 0 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9px;
  font-size: 15px; font-weight: 700; text-align: center; color: #fff; padding: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}
.tile-emoji { font-size: 32px; line-height: 1; }
.note-bergamot { background: linear-gradient(150deg,#5ec8d8,#2f9fb5); }
.note-amber    { background: linear-gradient(150deg,#ffa54d,#e8761c); }
.note-vanilla  { background: linear-gradient(150deg,#f3d98f,#dcb24e); color:#5a4a1e; }
.note-oud      { background: linear-gradient(150deg,#9b7150,#6e4a2f); }
.note-fresh    { background: linear-gradient(150deg,#7bd389,#3fa45a); }
.note-citrus   { background: linear-gradient(150deg,#ffe066,#f4c430); color:#5a4a1e; }
.note-floral   { background: linear-gradient(150deg,#f6a6c4,#e0567f); }
.note-sillage  { background: linear-gradient(150deg,#b79cff,#7c5cff); }
.tile-white { background: #fff; color: var(--text); box-shadow: 0 14px 34px rgba(0,0,0,.12); }
.tile-ico { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.ico-yellow { background: #fff3c4; } .ico-green { background: #d7f5d7; }
.ico-purple { background: #ece1ff; } .ico-blue { background: #d8ebff; }
.tile-cap { font-size: 13.5px; font-weight: 700; line-height: 1.2; }
.tile-cap strong { font-size: 18px; }
.tile-bottle { height: 66px; display: flex; align-items: flex-end; justify-content: center; }
.tile-bottle img { max-height: 66px; width: auto; filter: drop-shadow(0 8px 14px rgba(0,0,0,.18)); }


@media (max-width: 900px) {
  .tile { width: 122px; height: 122px; margin-right: 12px; border-radius: 18px; }
  .tile-emoji { font-size: 27px; }
  .tilewall { gap: 12px; }
}
@media (max-width: 640px) {
  .tile { width: 100px; height: 100px; margin-right: 10px; border-radius: 16px; }
  .tile-emoji { font-size: 23px; }
  .tile-cap { font-size: 12px; }
  .tile-ico { width: 38px; height: 38px; font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .tile-left, .tile-right { animation: none; }
}

/* ====== Transparent overlay nav (home hero) — solidifies on scroll ====== */
.nav { transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease; }
.nav-overlay:not(.scrolled) {
  background: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav-overlay:not(.scrolled) .nav-links a { color: rgba(255,255,255,.82); }
.nav-overlay:not(.scrolled) .nav-links a:hover,
.nav-overlay:not(.scrolled) .nav-links a.active { color: #fff; }
.nav-overlay:not(.scrolled) .nav-hamburger span { background: #fff; }



/* Accent (#6341EE) foreground fixes — light text/icons on the purple accent */
.contact-card .icon svg { stroke: #fff; }
.feat-chip-yellow svg { stroke: #fff; }


/* ====== Free vs Premium comparison table ====== */
.cmp-card {
  max-width: 880px; margin: 48px auto 0; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table th, .cmp-table td { padding: 17px 24px; border-bottom: 1px solid var(--border); text-align: left; }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table thead th { background: var(--bg-soft); font-size: 14px; font-weight: 700; color: var(--text); }
.cmp-table .cmp-col { text-align: center; width: 130px; }
.cmp-table thead th.cmp-col-pro { background: rgba(99,65,238,.10); color: var(--yellow); }
.cmp-table td.cmp-col-pro { background: rgba(99,65,238,.04); }
.cmp-table td.cmp-feature { font-size: 15px; font-weight: 500; color: var(--text); }
.cmp-table tbody tr:nth-child(even) td { background: rgba(0,0,0,.012); }
.cmp-table tbody tr:nth-child(even) td.cmp-col-pro { background: rgba(99,65,238,.05); }
.cmp-ico { display: inline-block; vertical-align: middle; }
.cmp-table .cmp-val { font-size: 13px; font-weight: 600; color: var(--gray); white-space: nowrap; }
.cmp-table td.cmp-col-pro .cmp-val { color: var(--yellow); }
.cmp-note { max-width: 880px; margin: 18px auto 0; text-align: center; font-size: 13px; color: var(--gray); }
@media (max-width: 560px) {
  .cmp-table th, .cmp-table td { padding: 14px 12px; }
  .cmp-table td.cmp-feature { font-size: 13px; }
  .cmp-table .cmp-col { width: 64px; }
  .cmp-table .cmp-val { font-size: 11px; }
}

/* ====== Big inline-pill tagline (after hero) ====== */
.hero-tagline { background: #000; padding: clamp(64px, 9vw, 112px) 24px; }
.hero-tagline-inner { max-width: 1000px; margin: 0 auto; }
.hero-tagline-text {
  text-align: center;
  font-size: clamp(1.9rem, 5vw, 3.5rem);
  font-weight: 800; letter-spacing: -.03em; line-height: 1.38; color: #fff;
}
.tagline-pill {
  display: inline-block; vertical-align: middle;
  height: 1.5em; width: 1.25em; margin: 0 .12em;
  position: relative; top: -.02em;
}
.tagline-pill img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; opacity: 0;
  animation: taglinePillCycle 13s ease-in-out infinite;
}
.tagline-pill img:nth-child(1) { animation-delay: 0s; }
.tagline-pill img:nth-child(2) { animation-delay: 3.25s; }
.tagline-pill img:nth-child(3) { animation-delay: 6.5s; }
.tagline-pill img:nth-child(4) { animation-delay: 9.75s; }
@keyframes taglinePillCycle {
  0% { opacity: 0; } 3% { opacity: 1; } 22% { opacity: 1; } 25% { opacity: 0; } 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .tagline-pill img { animation: none; }
  .tagline-pill img:nth-child(1) { opacity: 1; }
}
.tagline-emoji { display: inline-block; position: relative; vertical-align: middle; font-size: .92em; width: 1.15em; height: 1em; margin: 0 .08em; top: -.02em; }
.tagline-emoji span { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0; animation: taglinePillCycle 13s ease-in-out infinite; }
.tagline-emoji span:nth-child(1) { animation-delay: -1.65s; }
.tagline-emoji span:nth-child(2) { animation-delay: 1.6s; }
.tagline-emoji span:nth-child(3) { animation-delay: 4.85s; }
.tagline-emoji span:nth-child(4) { animation-delay: 8.1s; }
@media (prefers-reduced-motion: reduce) { .tagline-emoji span { animation: none; } .tagline-emoji span:nth-child(1) { opacity: 1; } }
@media (max-width: 560px) {
  .tagline-pill { width: 1.15em; height: 1.35em; }
}

/* ====== About: video reviews / social / in-app blocks ====== */
.pfeat-social-p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.65; }
.about-stats {
  align-self: flex-start; display: inline-flex; align-items: stretch;
}
.about-stat { display: flex; flex-direction: column; justify-content: center; padding: 0 36px; }
.about-stat:first-child { padding-left: 0; }
.about-stat-num { font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.03em; color: var(--text); line-height: 1; }
.about-stat-label { font-size: 14px; color: var(--gray); margin-top: 12px; }
.about-stat-divider { width: 1px; background: var(--border); }
.about-socials { align-self: flex-start; display: flex; gap: 12px; }
.about-social {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center; color: var(--text);
  transition: background .15s, color .15s, border-color .15s;
}
.about-social:hover { background: var(--text); color: #fff; border-color: var(--text); }
.about-social svg { width: 20px; height: 20px; }
@media (max-width: 560px) {
  .about-stat { padding: 0 20px; }
}

/* image tiles in the scent wall (full-bleed photo, same rounded square) */
.tile-img { padding: 0; overflow: hidden; }
.tile-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ====== Gradient stat cards (homepage, dark) ====== */
.grad-stats { background: var(--black); padding: clamp(64px, 8vw, 110px) 0; }
.grad-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 1040px; margin: 0 auto; }
.grad-stat { background: #131316; border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius-lg); padding: clamp(32px, 4vw, 52px); }
.grad-stat-num {
  font-size: clamp(2.8rem, 6vw, 4.6rem); font-weight: 800; letter-spacing: -.04em; line-height: .95;
  background: linear-gradient(100deg, #8b7bff 0%, #ff8a4c 42%, #ff4d8d 72%, #b04dff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  margin-bottom: 22px;
}
.grad-stat-label { font-size: clamp(1.1rem, 1.6vw, 1.45rem); font-weight: 600; color: #fff; line-height: 1.25; }
@media (max-width: 600px) { .grad-stats-grid { grid-template-columns: 1fr; } }

/* Occasion cards — 3 columns with larger images */
.pfeat-formats-cards-3 { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; }
.pfeat-formats-cards-3 > .pfeat-formats-card { flex: 0 1 calc(33.333% - 22px); min-width: 280px; }
.pfeat-formats-cards-3 .pfeat-formats-card-img { aspect-ratio: 4 / 5; margin-bottom: 20px; }
.pfeat-formats-cards-3 .pfeat-formats-card p { font-size: 15px; }
@media (max-width: 860px) { .pfeat-formats-cards-3 > .pfeat-formats-card { flex: 0 1 calc(50% - 16px); } }
@media (max-width: 560px) { .pfeat-formats-cards-3 > .pfeat-formats-card { flex: 0 1 100%; } }
