*{margin:0;padding:0;box-sizing:border-box}
html.landing-page {
overflow-x: hidden;
overflow-y: scroll !important;
height: auto !important;
-webkit-overflow-scrolling: touch;
overscroll-behavior-y: auto;
touch-action: pan-y pinch-zoom;
}
:root {
--coral: var(--c-coral, #FF6B6B);
--coral-soft: var(--c-coral-light, #FF8A80);
--coral-pale: #FFB5B5;
--amber: var(--c-amber, #FF9F43);
--gold: var(--c-gold, #F7B731);
--cream: #FFFAF5;
--white: var(--c-white, #FFFFFF);
--dark: #1A1A2E;
--dark-soft: #2D2D44;
--gray: var(--c-gray-600, #6B7280);
--gray-light: var(--c-gray-100, #F3F4F6);
--radius: var(--radius-lg, 16px);
--safe-top: env(safe-area-inset-top, 0px);
}
body.landing-page {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--cream);
color: var(--dark);
overflow-x: hidden !important;
overflow-y: visible !important;
min-height: 100%;
height: auto !important;
position: relative !important;
overscroll-behavior-y: auto !important;
-webkit-overflow-scrolling: touch;
touch-action: pan-y pinch-zoom !important;
line-height: 1.6;
-webkit-font-smoothing: antialiased;
}
/* ═══════════ NAVBAR ═══════════ */
.navbar {
position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
padding: calc(0.75rem + var(--safe-top)) 1.5rem 0.8rem;
background: rgba(255, 250, 245, 0.65);
backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
border-bottom: 1px solid rgba(255, 107, 107, 0.06);
transition: all 0.3s ease;
}
.navbar.scrolled { padding: calc(0.55rem + var(--safe-top)) 1.5rem 0.6rem; background: rgba(255, 250, 245, 0.94); box-shadow: 0 1px 8px rgba(0,0,0,0.04); }
.nav-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 0.6rem; font-size: 1.3rem; font-weight: 800; color: var(--coral); letter-spacing: -0.5px; text-decoration: none; }
.logo-img { width: 2.2rem; height: 2.2rem; filter: drop-shadow(0 2px 6px rgba(255, 107, 107, 0.2)); }
.nav-cta { padding: 0.7rem 1.6rem; min-height: 44px; background: var(--dark); color: white; border: none; border-radius: 100px; font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: all 0.25s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(26,26,46,0.2); }
/* ═══════════ HERO ═══════════ */
.hero {
min-height: 100vh; min-height: 100dvh;
display: flex; flex-direction: column; align-items: center; justify-content: center;
padding: calc(var(--safe-top) + 7rem) 1.5rem 3rem;
position: relative; overflow: hidden; text-align: center;
}
.hero-bg {
position: absolute; inset: 0;
background:
radial-gradient(ellipse 80% 60% at 50% 20%, rgba(255,107,107,0.06) 0%, transparent 60%),
radial-gradient(ellipse 60% 50% at 80% 80%, rgba(255,165,0,0.04) 0%, transparent 50%),
var(--cream);
z-index: 0;
}
.hero-glow {
position: absolute; bottom: -80px; left: 50%; transform: translateX(-50%);
width: 500px; height: 200px;
background: radial-gradient(ellipse, rgba(255,107,107,0.12) 0%, rgba(255,165,0,0.06) 40%, transparent 70%);
filter: blur(40px); z-index: 0;
animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe { 0%,100%{opacity:0.7;transform:translateX(-50%) scale(1)} 50%{opacity:1;transform:translateX(-50%) scale(1.1)} }
.hero-content { position: relative; z-index: 1; max-width: 720px; }
.hero-badge {
display: inline-flex; align-items: center; gap: 0.5rem;
padding: 0.45rem 1rem; background: white;
border: 1px solid rgba(255,107,107,0.15); border-radius: 100px;
font-size: 0.8rem; color: var(--coral); font-weight: 600;
margin-bottom: 2rem; box-shadow: 0 2px 12px rgba(255,107,107,0.08);
animation: fadeUp 0.8s ease 0.1s backwards;
}
.hero-title {
font-size: clamp(2.8rem, 7vw, 4.5rem); font-weight: 900; line-height: 1.05;
letter-spacing: -0.04em; margin-bottom: 1.5rem; color: var(--dark);
animation: fadeUp 0.8s ease 0.2s backwards;
}
.gradient-text {
background: linear-gradient(135deg, var(--coral) 0%, var(--amber) 100%);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-subtitle {
font-size: clamp(1.05rem, 2.5vw, 1.25rem); color: var(--gray);
margin-bottom: 2.5rem; line-height: 1.7; max-width: 580px; margin-left: auto; margin-right: auto;
animation: fadeUp 0.8s ease 0.3s backwards;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.4s backwards; }
.btn-primary { padding: 1rem 2.4rem; background: var(--dark); color: white; border: none; border-radius: 100px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(26,26,46,0.2); }
.btn-ghost { padding: 1rem 2.4rem; background: transparent; color: var(--dark); border: 1.5px solid rgba(26,26,46,0.15); border-radius: 100px; font-weight: 600; font-size: 1rem; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-ghost:hover { border-color: var(--coral); color: var(--coral); transform: translateY(-2px); }
/* ═══════════ PROOF BAR ═══════════ */
.proof-bar {
display: flex; justify-content: center; align-items: center; gap: 2rem; padding: 2.5rem 1.5rem;
background: white; border-top: 1px solid rgba(0,0,0,0.04); border-bottom: 1px solid rgba(0,0,0,0.04);
animation: fadeUp 0.8s ease 0.5s backwards;
}
.proof-item { text-align: center; }
.proof-num { font-size: 1.6rem; font-weight: 800; color: var(--dark); letter-spacing: -0.03em; }
.proof-label { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.8px; font-weight: 600; margin-top: 0.2rem; }
.proof-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--coral-pale); }
/* ═══════════ SECTION UTILS ═══════════ */
.section-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--coral); margin-bottom: 1rem; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: var(--dark); letter-spacing: -0.03em; margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--gray); max-width: 550px; line-height: 1.7; }
.section-label--c, .section-title--c, .section-sub--c { text-align: center; }
.section-sub--c { margin: 0 auto 3rem; }
/* ═══════════ LIVE DEMO ═══════════ */
.demo-section { padding: 6rem 1.5rem; background: var(--cream); }
.demo-inner { max-width: 1140px; margin: 0 auto; }
.demo-split {
display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: center;
}
/* Left: sales copy */
.demo-copy { display: flex; flex-direction: column; gap: 1.5rem; }
.demo-copy .section-label { margin-bottom: 0; }
.demo-copy .section-title { margin-bottom: 0.5rem; }
.demo-copy .section-sub { margin-bottom: 0; }
.demo-copy-cta {
display: inline-flex; align-items: center; gap: 0.5rem;
padding: 0.85rem 2rem; background: var(--dark); color: white;
border-radius: 100px; font-weight: 700; font-size: 0.92rem;
text-decoration: none; transition: all 0.3s; width: fit-content;
}
.demo-copy-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,26,46,0.2); }
.demo-hint { font-size: 0.8rem; color: var(--gray); opacity: 0.7; font-style: italic; }
/* Right: app card */
.demo-card {
background: white; border-radius: 20px; overflow: hidden;
box-shadow: 0 14px 48px rgba(26,26,46,0.12), 0 1px 3px rgba(0,0,0,0.06);
border: 1px solid rgba(0,0,0,0.04);
transform: translateZ(0);
}
/* Map panel inside card */
.demo-map { position: relative; background: #e8e0d0; aspect-ratio: 16/9; overflow: hidden; }
.demo-map::after {
content: "";
position: absolute;
inset: 0;
pointer-events: none;
background: radial-gradient(circle at 65% 8%, rgba(255,255,255,0.24), transparent 40%);
}
.demo-map svg { width: 100%; height: 100%; display: block; }
.ray-line { stroke-linecap: round; transition: all 0.12s ease; }
/* Score + probs row */
.demo-results { display: grid; grid-template-columns: auto 1fr; gap: 0; }
.demo-sc {
background: linear-gradient(135deg, var(--coral) 0%, #FF8A80 100%);
padding: 20px 24px; color: white; text-align: center;
display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.demo-sc-row { display: flex; align-items: baseline; gap: 3px; margin-bottom: 6px; }
.demo-sc-num { font-size: 2.8rem; font-weight: 700; line-height: 1; }
.demo-sc-max { font-size: 1.1rem; font-weight: 500; opacity: 0.6; }
.demo-sc-label { font-size: 0.78rem; opacity: 0.85; font-weight: 500; margin-bottom: 8px; }
.demo-sc-badge { display: inline-block; padding: 6px 14px; background: rgba(255,255,255,0.2); border-radius: 20px; font-weight: 600; font-size: 0.8rem; backdrop-filter: blur(10px); }
.demo-probs { padding: 16px 20px; border-left: 1px solid rgba(0,0,0,0.05); }
.demo-probs-title { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--coral); margin-bottom: 12px; }
.prob-row { margin-bottom: 10px; }
.prob-row:last-child { margin-bottom: 0; }
.prob-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; font-size: 0.8rem; }
.prob-name { color: var(--dark); font-weight: 500; }
.prob-value { color: var(--gray); font-weight: 600; }
.prob-bar { height: 7px; background: rgba(0,0,0,0.05); border-radius: 999px; overflow: hidden; }
.prob-fill { height: 100%; border-radius: 999px; transition: width 0.35s ease; }
.fill-arrebol { background: linear-gradient(90deg, #FF6B6B, #FF8A80); }
.fill-dorado { background: linear-gradient(90deg, #FFB347, #FFD700); }
.fill-frio { background: linear-gradient(90deg, #A8D8EA, #B8E6F5); }
.fill-gris { background: linear-gradient(90deg, #6C757D, #495057); }
/* Solar timeline inside card */
.demo-tl { padding: 14px 20px 16px; border-top: 1px solid rgba(0,0,0,0.05); }
.tl-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.tl-title {
font-size: 0.6rem; font-weight: 700;
background: linear-gradient(135deg, #FF6B6B, #FFB347);
-webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
text-transform: uppercase; letter-spacing: 1.2px;
}
.tl-time-pill {
background: linear-gradient(135deg, var(--coral), #FF8A80); color: white;
padding: 4px 10px; border-radius: 12px;
font-size: 0.72rem; font-weight: 700;
box-shadow: 0 2px 6px rgba(255,107,107,0.3);
border: 2px solid white;
min-width: 50px; text-align: center;
font-variant-numeric: tabular-nums;
}
.tl-track { position: relative; height: 28px; display: flex; align-items: center; }
.tl-gradient {
position: absolute; top: 50%; transform: translateY(-50%);
left: 0; right: 0; height: 6px; border-radius: 3px;
background: linear-gradient(to right, #2c3e50 0%, #FF6B6B 10%, #FF6B6B 25%, #FF8A80 40%, #FF8A80 55%, #FF6B6B 70%, #FF6B6B 85%, #2c3e50 100%);
box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.tl-slider {
position: absolute; top: 50%; left: 0; width: 100%; height: 6px;
transform: translateY(-50%);
background: transparent; -webkit-appearance: none; appearance: none;
cursor: pointer; z-index: 3; margin: 0; padding: 0;
}
.tl-slider::-webkit-slider-runnable-track {
height: 6px; background: transparent; border-radius: 3px;
}
.tl-slider::-webkit-slider-thumb {
-webkit-appearance: none; width: 22px; height: 22px;
background: linear-gradient(135deg, var(--coral), #ff5555);
border-radius: 50%; border: 3px solid white;
box-shadow: 0 2px 8px rgba(255,107,107,0.5);
cursor: grab; transition: transform 0.15s;
box-sizing: content-box;
margin-top: -11px;
}
.tl-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.tl-slider::-webkit-slider-thumb:active { cursor: grabbing; }
.tl-slider::-moz-range-track {
height: 6px; background: transparent; border-radius: 3px;
}
.tl-slider::-moz-range-thumb {
width: 22px; height: 22px;
background: linear-gradient(135deg, var(--coral), #ff5555);
border-radius: 50%; border: 3px solid white;
box-shadow: 0 2px 8px rgba(255,107,107,0.5); cursor: grab;
box-sizing: content-box;
}
.tl-city { font-size: 0.72rem; color: var(--gray); text-align: center; margin-top: 8px; }
/* ═══════════ TAGLINE ═══════════ */
.tagline { padding: 5rem 1.5rem; text-align: center; background: var(--cream); }
.tagline-text {
font-size: clamp(1.3rem, 3.5vw, 2rem); font-weight: 700; color: var(--dark);
max-width: 700px; margin: 0 auto; line-height: 1.5; letter-spacing: -0.02em;
}
.tagline-text .accent { color: var(--coral); }
/* ═══════════ FEATURES ═══════════ */
.features { padding: 5rem 1.5rem; background: white; overflow: visible; }
.features-inner { max-width: 1080px; margin: 0 auto; overflow: visible; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feat-card { padding: 2rem 1.8rem; background: var(--cream); border-radius: var(--radius); border: 1px solid transparent; transition: all 0.3s ease; }
.feat-card:hover { background: white; border-color: rgba(255,107,107,0.12); box-shadow: 0 12px 40px rgba(255,107,107,0.08); transform: translateY(-4px); }
.feat-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, rgba(255,107,107,0.08), rgba(255,138,128,0.06)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.feat-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark); }
.feat-card p { font-size: 0.92rem; color: var(--gray); line-height: 1.65; }
/* ═══════════ SALES / MUNICIPALITIES ═══════════ */
.sales-section {
padding: 5.5rem 1.5rem;
background:
radial-gradient(circle at top left, rgba(255,107,107,0.10), transparent 32%),
radial-gradient(circle at bottom right, rgba(255,179,71,0.10), transparent 28%),
linear-gradient(180deg, #fff8f2 0%, #ffffff 100%);
}
.sales-inner { max-width: 1140px; margin: 0 auto; }
.sales-shell {
background: rgba(255,255,255,0.86);
border: 1px solid rgba(255,107,107,0.10);
border-radius: 28px;
padding: 2.2rem;
box-shadow: 0 16px 60px rgba(26,26,46,0.08);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
}
.sales-head { max-width: 780px; margin: 0 auto 2.5rem; text-align: center; }
.sales-grid {
display: grid;
grid-template-columns: 1.1fr 0.9fr;
gap: 1.4rem;
align-items: stretch;
}
.sales-story {
background: linear-gradient(180deg, rgba(255,250,245,0.98), rgba(255,255,255,0.98));
border: 1px solid rgba(255,107,107,0.10);
border-radius: 24px;
padding: 2rem;
}
.sales-pill {
display: inline-flex;
align-items: center;
gap: 0.45rem;
padding: 0.45rem 0.8rem;
border-radius: 999px;
background: rgba(255,107,107,0.10);
color: var(--coral);
font-size: 0.74rem;
font-weight: 800;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 1rem;
}
.sales-story-title {
font-size: clamp(1.55rem, 3vw, 2.25rem);
line-height: 1.15;
letter-spacing: -0.03em;
margin-bottom: 1rem;
color: var(--dark);
}
.sales-story-copy {
font-size: 1rem;
color: var(--gray);
line-height: 1.75;
margin-bottom: 1.4rem;
max-width: 58ch;
}
.sales-inline-cta {
display: flex;
align-items: center;
justify-content: space-between;
gap: 0.8rem;
padding: 0.9rem 1rem;
border-radius: 14px;
border: 1px solid rgba(255,107,107,0.14);
background: rgba(255,107,107,0.04);
margin-bottom: 1.2rem;
}
.sales-inline-cta a {
display: inline-flex;
align-items: center;
gap: 0.4rem;
text-decoration: none;
color: white;
background: linear-gradient(135deg, var(--coral), var(--amber));
padding: 0.6rem 1rem;
border-radius: 999px;
font-size: 0.8rem;
font-weight: 700;
white-space: nowrap;
}
.sales-inline-cta p {
margin: 0;
font-size: 0.82rem;
color: var(--dark-soft);
line-height: 1.45;
}
.sales-benefits {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.9rem;
}
.sales-benefit {
background: white;
border: 1px solid rgba(26,26,46,0.06);
border-radius: 20px;
padding: 1.05rem;
}
.sales-benefit h3 {
font-size: 0.95rem;
font-weight: 800;
color: var(--dark);
margin-bottom: 0.45rem;
letter-spacing: -0.02em;
}
.sales-benefit p {
font-size: 0.88rem;
color: var(--gray);
line-height: 1.65;
}
.sales-stats {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.9rem;
}
.sales-stat {
min-height: 185px;
background: white;
border: 1px solid rgba(26,26,46,0.06);
border-radius: 22px;
padding: 1.25rem;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.sales-stat--accent {
background: linear-gradient(180deg, rgba(255,107,107,0.96), rgba(255,142,83,0.96));
color: white;
border-color: transparent;
box-shadow: 0 14px 36px rgba(255,107,107,0.22);
}
.sales-stat-label {
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 0.09em;
text-transform: uppercase;
opacity: 0.8;
}
.sales-stat-value {
font-size: clamp(2rem, 4vw, 2.8rem);
font-weight: 900;
line-height: 1;
letter-spacing: -0.05em;
margin: 0.45rem 0 0.6rem;
}
.sales-stat-text {
font-size: 0.9rem;
line-height: 1.6;
color: var(--gray);
}
.sales-stat--accent .sales-stat-text,
.sales-stat--accent .sales-stat-label { color: rgba(255,255,255,0.84); }
.sales-sources {
display: flex;
flex-wrap: wrap;
gap: 0.75rem;
margin-top: 1.25rem;
}
.sales-source {
display: inline-flex;
align-items: center;
gap: 0.45rem;
padding: 0.7rem 0.95rem;
border-radius: 999px;
text-decoration: none;
background: rgba(26,26,46,0.04);
border: 1px solid rgba(26,26,46,0.06);
color: var(--dark);
font-size: 0.8rem;
font-weight: 600;
transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.sales-source:hover {
transform: translateY(-1px);
border-color: rgba(255,107,107,0.18);
background: rgba(255,107,107,0.06);
}
.sales-source-note {
margin-top: 1rem;
font-size: 0.78rem;
color: var(--gray);
line-height: 1.6;
}
/* ═══════════ HOW IT WORKS ═══════════ */
.how { padding: 5rem 1.5rem; background: var(--cream); overflow: visible; }
.how-inner { max-width: 960px; margin: 0 auto; overflow: visible; }
.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,107,107,0.08); border-radius: var(--radius); overflow: hidden; margin-top: 3rem; }
.step { background: white; padding: 2.5rem 2rem; text-align: center; }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: var(--coral); color: white; font-weight: 800; font-size: 0.85rem; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.step-emoji { font-size: 1.6rem; margin-bottom: 0.8rem; display: block; }
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--dark); }
.step p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }
/* ═══════════ CTA ═══════════ */
.cta { padding: 6rem 1.5rem; background: var(--dark); text-align: center; position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 300px; background: radial-gradient(ellipse, rgba(255,107,107,0.15) 0%, transparent 60%); filter: blur(50px); }
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta h2 { font-size: clamp(1.8rem, 5vw, 3rem); font-weight: 900; color: white; margin-bottom: 1rem; letter-spacing: -0.03em; line-height: 1.1; }
.cta p { font-size: 1.1rem; color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; line-height: 1.6; }
.btn-coral { padding: 1.1rem 3rem; background: linear-gradient(135deg, var(--coral), var(--amber)); color: white; border: none; border-radius: 100px; font-weight: 700; font-size: 1.05rem; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; box-shadow: 0 8px 30px rgba(255,107,107,0.3); }
.btn-coral:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255,107,107,0.4); }
/* ═══════════ FOOTER ═══════════ */
footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); padding: 2rem 1.5rem 2.5rem; }
.footer-inner { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-brand { font-size: 1.1rem; font-weight: 800; color: var(--coral); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--coral); }
.footer-bottom { max-width: 1080px; margin: 1.5rem auto 0; text-align: center; color: rgba(255,255,255,0.3); font-size: 0.82rem; }
.footer-heart { color: var(--coral); display: inline; }
.footer-credit-link { color: rgba(255,255,255,0.42); text-decoration: none; font-weight: 600; transition: color 0.2s ease; }
.footer-credit-link:hover { color: var(--coral); }
/* ═══════════ ANIMATIONS ═══════════ */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 768px) {
.navbar { padding: calc(0.6rem + var(--safe-top)) 1rem 0.55rem; }
.nav-cta { padding: 0.6rem 1.2rem; font-size: 0.82rem; }
.hero { padding: calc(var(--safe-top) + 5.8rem) 1.25rem 2.5rem; }
.hero-actions { flex-direction: column; width: 100%; }
.btn-primary, .btn-ghost { width: 100%; justify-content: center; }
.proof-bar { gap: 1.2rem; padding: 2rem 1rem; flex-wrap: wrap; }
.proof-num { font-size: 1.3rem; }
.proof-label { font-size: 0.65rem; }
.demo-split { grid-template-columns: 1fr; gap: 2.5rem; }
.demo-copy { text-align: center; align-items: center; }
.demo-sc-num { font-size: 2.4rem; }
.demo-results { grid-template-columns: 1fr; }
.sales-section { padding: 3.25rem 0.9rem; }
.sales-inner { max-width: 100%; }
.sales-shell { padding: 1rem 0.85rem 1.15rem; border-radius: 18px; }
.sales-head { margin: 0 auto 1.3rem; text-align: left; }
.sales-grid { grid-template-columns: 1fr; gap: 0.9rem; }
.sales-story { padding: 1.1rem 0.95rem; border-radius: 16px; }
.sales-stat { min-height: 0; }
.sales-inline-cta { flex-direction: column; align-items: flex-start; }
.sales-benefits,
.sales-stats {
display: flex;
gap: 0.7rem;
overflow-x: auto;
overflow-y: hidden;
padding: 0.12rem 0.06rem 0.7rem;
scroll-snap-type: x mandatory;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
overscroll-behavior-x: contain;
}
.sales-benefits::-webkit-scrollbar,
.sales-stats::-webkit-scrollbar { display: none; }
.sales-benefit,
.sales-stat {
min-width: 86%;
max-width: 88%;
flex: 0 0 auto;
scroll-snap-align: start;
}
.sales-story-copy { margin-bottom: 0.9rem; font-size: 0.95rem; line-height: 1.6; }
.sales-story-title {
font-size: clamp(1.28rem, 6vw, 1.62rem);
line-height: 1.2;
}
.sales-inline-cta a { width: 100%; justify-content: center; }
.sales-sources { display: grid; grid-template-columns: 1fr; gap: 0.55rem; }
.feat-grid {
display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
gap: 1rem; padding-bottom: 0.5rem;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}
.feat-grid::-webkit-scrollbar { display: none; }
.feat-card {
min-width: 75vw; max-width: 80vw; flex-shrink: 0;
scroll-snap-align: center;
}
.steps-row {
display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
gap: 1px; padding-bottom: 0.5rem; margin-top: 2rem;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}
.steps-row::-webkit-scrollbar { display: none; }
.step {
min-width: 75vw; max-width: 80vw; flex-shrink: 0;
scroll-snap-align: center; padding: 2rem 1.5rem;
}
.footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
.footer-links { gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
.features, .how, .tagline, .demo-section { padding: 3.5rem 1.25rem; }
.cta { padding: 4.5rem 1.25rem; }
}
@media (max-width: 380px) {
.hero-title { font-size: 2.2rem; }
.proof-bar { gap: 0.8rem; }
.sales-section { padding: 3rem 0.6rem; }
.sales-shell { padding: 0.9rem 0.7rem 1rem; }
.sales-benefit,
.sales-stat {
min-width: 92%;
max-width: 92%;
}
}
@media (display-mode: standalone) {
footer { padding-bottom: calc(env(safe-area-inset-bottom) + 2rem); }
}
