All checks were successful
Mirror to GitHub / mirror (push) Successful in 6s
Recover and commit the landing-page redesign that had been sitting uncommitted in the working tree: refreshed dark palette (adjusted --lp-bg-alt, electric-blue accent), Atkinson Hyperlegible Next display + body type, and editorial hero/section layout in LandingPage.tsx, with the matching font preload in index.html. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1864 lines
36 KiB
CSS
1864 lines
36 KiB
CSS
/* ============================================
|
|
RESOLUTIONFLOW LANDING PAGE
|
|
Self-contained styles. No dependency on theme
|
|
variables that may resolve incorrectly.
|
|
============================================ */
|
|
|
|
/* ---- LANDING COLOR PALETTE ---- */
|
|
.landing-page {
|
|
--lp-bg: #14161d;
|
|
--lp-bg-alt: #1c1f2a;
|
|
--lp-card: #1e2028;
|
|
--lp-elevated: #262830;
|
|
--lp-border: #2a2e3a;
|
|
--lp-border-hover: #3a3f4e;
|
|
--lp-text-heading: #f0f2f5;
|
|
--lp-text-body: #d0d4dc;
|
|
--lp-text-secondary: #9198a8;
|
|
--lp-text-dim: #636b7e;
|
|
--lp-accent: #60a5fa;
|
|
--lp-accent-soft: rgba(96, 165, 250, 0.10);
|
|
--lp-accent-text: #93bbfc;
|
|
--lp-btn: #60a5fa;
|
|
--lp-success: #34d399;
|
|
--lp-danger: #f87171;
|
|
--lp-warning: #fbbf24;
|
|
|
|
/* Typeset: a single hyperlegibility-engineered family across the page.
|
|
Atkinson Hyperlegible Next (Braille Institute, 2024) — designed for
|
|
low-vision readers. Picked here because MSP engineers read this page
|
|
mid-ticket, under pressure, often glancing. Hyperlegibility IS the
|
|
brand value, not decoration. Mono sibling pairs naturally for
|
|
timestamps and ticket IDs. */
|
|
--lp-font-display: 'Atkinson Hyperlegible Next', system-ui, sans-serif;
|
|
--lp-font-body: 'Atkinson Hyperlegible Next', system-ui, sans-serif;
|
|
--lp-font-mono: 'Atkinson Hyperlegible Mono', ui-monospace, monospace;
|
|
}
|
|
|
|
/* ---- BASE ---- */
|
|
.landing-page {
|
|
font-family: var(--lp-font-body);
|
|
background: var(--lp-bg);
|
|
color: var(--lp-text-body);
|
|
line-height: 1.55;
|
|
overflow-x: hidden;
|
|
-webkit-font-smoothing: antialiased;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.landing-main {
|
|
position: relative;
|
|
z-index: 1;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* ---- SKIP LINK ---- */
|
|
.landing-skip-link {
|
|
position: absolute;
|
|
top: -100px;
|
|
left: 16px;
|
|
z-index: 200;
|
|
padding: 8px 16px;
|
|
background: var(--lp-accent);
|
|
color: #fff;
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
border-radius: 0 0 8px 8px;
|
|
text-decoration: none;
|
|
transition: top 0.2s;
|
|
}
|
|
|
|
.landing-skip-link:focus {
|
|
top: 0;
|
|
}
|
|
|
|
/* ---- NAVIGATION ---- */
|
|
.landing-nav {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 100;
|
|
padding: 0 2rem;
|
|
transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
|
|
}
|
|
|
|
.landing-nav.scrolled {
|
|
background: #0d0f15;
|
|
border-bottom: 1px solid var(--lp-border);
|
|
}
|
|
|
|
.landing-nav-inner {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 72px;
|
|
}
|
|
|
|
.landing-nav-logo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.landing-nav-logo-icon {
|
|
width: 36px;
|
|
height: 36px;
|
|
background: var(--lp-btn);
|
|
border-radius: 8px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.landing-nav-logo-icon svg {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.landing-nav-wordmark {
|
|
font-family: var(--lp-font-display);
|
|
font-size: 1.25rem;
|
|
font-weight: 700;
|
|
color: var(--lp-text-heading);
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.landing-nav-wordmark span {
|
|
color: var(--lp-accent-text);
|
|
}
|
|
|
|
.landing-nav-links {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 2rem;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.landing-nav-links a {
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
color: var(--lp-text-secondary);
|
|
text-decoration: none;
|
|
transition: color 0.2s;
|
|
letter-spacing: 0.01em;
|
|
padding: 0.75rem 0.5rem;
|
|
}
|
|
|
|
.landing-nav-links a:hover {
|
|
color: var(--lp-text-heading);
|
|
}
|
|
|
|
.landing-nav-cta {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.landing-btn-ghost {
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
color: var(--lp-text-secondary);
|
|
text-decoration: none;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 8px;
|
|
transition: color 0.2s, background 0.2s;
|
|
}
|
|
|
|
.landing-btn-ghost:hover {
|
|
color: var(--lp-text-heading);
|
|
background: rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.landing-btn-primary {
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
padding: 0.55rem 1.25rem;
|
|
border-radius: 8px;
|
|
background: var(--lp-btn);
|
|
transition: opacity 0.25s, transform 0.25s;
|
|
letter-spacing: -0.01em;
|
|
border: none;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.landing-btn-primary:hover {
|
|
opacity: 0.9;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
/* ---- SECTIONS ---- */
|
|
.landing-section {
|
|
padding: 5rem 2rem;
|
|
}
|
|
|
|
.landing-section-tight {
|
|
padding: 4rem 2rem 5rem;
|
|
}
|
|
|
|
.landing-section-generous {
|
|
padding: 7rem 2rem 6rem;
|
|
}
|
|
|
|
.landing-section-alt {
|
|
background: var(--lp-bg-alt);
|
|
}
|
|
|
|
.landing-section-inner {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.landing-section-label {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.9rem;
|
|
font-family: var(--lp-font-display);
|
|
font-size: 0.9rem;
|
|
font-weight: 700;
|
|
color: var(--lp-accent);
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
.landing-section-label::before {
|
|
content: '';
|
|
width: 40px;
|
|
height: 2px;
|
|
background: var(--lp-accent);
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.landing-section-title {
|
|
font-family: var(--lp-font-display);
|
|
font-size: clamp(2rem, 4.5vw, 3.25rem);
|
|
font-weight: 800;
|
|
color: var(--lp-text-heading);
|
|
letter-spacing: -0.035em;
|
|
line-height: 1.05;
|
|
margin-top: 0;
|
|
margin-bottom: 1rem;
|
|
max-width: 22ch;
|
|
}
|
|
|
|
.landing-section-desc {
|
|
font-size: 1.05rem;
|
|
color: var(--lp-text-secondary);
|
|
line-height: 1.7;
|
|
max-width: 520px;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
/* ---- HERO ---- */
|
|
.landing-hero {
|
|
padding: 10rem 2rem 8rem;
|
|
position: relative;
|
|
overflow: hidden;
|
|
min-height: 580px;
|
|
}
|
|
|
|
/* Full-bleed image layer — positioned lower so terrain fills, hub upper-right */
|
|
.landing-hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background: url('/images/hero_001.jpg') 58% 38% / cover no-repeat;
|
|
opacity: 0.72;
|
|
z-index: 0;
|
|
}
|
|
|
|
/* Left-to-right bleed: solid dark where text lives, dissolves into raw image on the right */
|
|
.landing-hero::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background:
|
|
linear-gradient(to right, #14161d 0%, #14161d 38%, rgba(20, 22, 29, 0.92) 52%, rgba(20, 22, 29, 0.35) 72%, transparent 92%),
|
|
linear-gradient(to top, #14161d 0%, rgba(20, 22, 29, 0.4) 24%, rgba(20, 22, 29, 0) 48%);
|
|
z-index: 1;
|
|
}
|
|
|
|
.landing-hero-inner {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
|
|
.landing-hero-content {
|
|
max-width: 520px;
|
|
animation: landingFadeInUp 0.8s ease-out;
|
|
}
|
|
|
|
.landing-hero-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 5px 14px;
|
|
border-radius: 100px;
|
|
background: var(--lp-card);
|
|
border: 1px solid var(--lp-border);
|
|
font-size: 0.7rem;
|
|
font-weight: 500;
|
|
color: var(--lp-accent-text);
|
|
margin-bottom: 1.5rem;
|
|
letter-spacing: 0.03em;
|
|
}
|
|
|
|
.landing-hero-badge::before {
|
|
content: '';
|
|
width: 6px;
|
|
height: 6px;
|
|
border-radius: 50%;
|
|
background: var(--lp-accent);
|
|
animation: landingPulse 2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes landingPulse {
|
|
0%, 100% { opacity: 0.5; }
|
|
50% { opacity: 1; }
|
|
}
|
|
|
|
.landing-hero h1 {
|
|
font-family: var(--lp-font-display);
|
|
font-size: clamp(2.5rem, 5vw, 3.75rem);
|
|
font-weight: 800;
|
|
line-height: 1.08;
|
|
letter-spacing: -0.035em;
|
|
color: var(--lp-text-heading);
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
.landing-hero-accent {
|
|
color: var(--lp-accent);
|
|
}
|
|
|
|
.landing-hero-sub {
|
|
font-size: 1.1rem;
|
|
color: var(--lp-text-secondary);
|
|
line-height: 1.7;
|
|
max-width: 480px;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.landing-hero-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.landing-btn-hero-primary {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
padding: 0.8rem 1.75rem;
|
|
border-radius: 8px;
|
|
background: var(--lp-btn);
|
|
transition: opacity 0.3s, transform 0.3s;
|
|
letter-spacing: -0.01em;
|
|
border: none;
|
|
cursor: pointer;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.landing-btn-hero-primary:hover {
|
|
opacity: 0.9;
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
.landing-btn-hero-primary:disabled {
|
|
opacity: 0.5;
|
|
cursor: not-allowed;
|
|
transform: none;
|
|
}
|
|
|
|
.landing-btn-hero-secondary {
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
color: var(--lp-text-secondary);
|
|
text-decoration: none;
|
|
padding: 0.8rem 1.75rem;
|
|
border-radius: 8px;
|
|
border: 1px solid var(--lp-border);
|
|
transition: background 0.3s, border-color 0.3s, color 0.3s;
|
|
}
|
|
|
|
.landing-btn-hero-secondary:hover {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
border-color: var(--lp-border-hover);
|
|
color: var(--lp-text-heading);
|
|
}
|
|
|
|
.landing-hero-credibility {
|
|
font-size: 0.8rem;
|
|
color: var(--lp-text-dim);
|
|
font-style: italic;
|
|
margin: 0;
|
|
}
|
|
|
|
/* Hero visual */
|
|
.landing-hero-visual {
|
|
animation: landingPreviewEntrance 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
|
|
}
|
|
|
|
/* ---- TICKET COMPARISON (hero visual) ---- */
|
|
.landing-ticket-comparison {
|
|
display: flex;
|
|
align-items: stretch;
|
|
gap: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.landing-tc-col {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
min-width: 0;
|
|
}
|
|
|
|
.landing-tc-label {
|
|
font-size: 0.6rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
padding: 0 0.25rem;
|
|
}
|
|
|
|
.landing-tc-label.before-label {
|
|
color: var(--lp-text-dim);
|
|
}
|
|
|
|
.landing-tc-label.after-label {
|
|
color: var(--lp-accent);
|
|
}
|
|
|
|
.landing-tc-card {
|
|
border-radius: 8px;
|
|
border: 1px solid var(--lp-border);
|
|
background: var(--lp-card);
|
|
padding: 0.875rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
flex: 1;
|
|
}
|
|
|
|
.landing-tc-card.before-card {
|
|
opacity: 0.55;
|
|
}
|
|
|
|
.landing-tc-card.after-card {
|
|
border-color: rgba(96, 165, 250, 0.28);
|
|
box-shadow: 0 0 36px rgba(96, 165, 250, 0.10), 0 16px 48px rgba(0, 0, 0, 0.55);
|
|
}
|
|
|
|
.landing-tc-header {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding-bottom: 0.5rem;
|
|
border-bottom: 1px solid var(--lp-border);
|
|
}
|
|
|
|
.tc-ticket-id {
|
|
font-size: 0.65rem;
|
|
font-weight: 700;
|
|
color: var(--lp-text-secondary);
|
|
font-family: var(--lp-font-body);
|
|
}
|
|
|
|
.tc-status {
|
|
font-size: 0.58rem;
|
|
font-weight: 600;
|
|
padding: 2px 7px;
|
|
border-radius: 100px;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.tc-status.open {
|
|
background: rgba(248, 113, 113, 0.1);
|
|
color: #f87171;
|
|
border: 1px solid rgba(248, 113, 113, 0.2);
|
|
}
|
|
|
|
.tc-status.resolved {
|
|
background: rgba(52, 211, 153, 0.1);
|
|
color: var(--lp-success);
|
|
border: 1px solid rgba(52, 211, 153, 0.2);
|
|
}
|
|
|
|
.landing-tc-subject {
|
|
font-size: 0.7rem;
|
|
font-weight: 600;
|
|
color: var(--lp-text-heading);
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.landing-tc-notes-heading {
|
|
font-size: 0.58rem;
|
|
font-weight: 600;
|
|
color: var(--lp-text-dim);
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.landing-tc-notes {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.3rem;
|
|
flex: 1;
|
|
}
|
|
|
|
.landing-tc-notes.before-notes {
|
|
padding: 0.6rem 0.75rem;
|
|
border-radius: 5px;
|
|
background: rgba(255, 255, 255, 0.02);
|
|
border: 1px dashed rgba(255, 255, 255, 0.06);
|
|
font-size: 0.65rem;
|
|
color: var(--lp-text-dim);
|
|
font-style: italic;
|
|
min-height: 80px;
|
|
align-items: flex-start;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.tc-note {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 5px;
|
|
font-size: 0.62rem;
|
|
color: var(--lp-text-secondary);
|
|
line-height: 1.5;
|
|
animation: tcNoteIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
|
|
animation-delay: calc(1.2s + var(--note-i, 0) * 0.55s);
|
|
opacity: 0;
|
|
}
|
|
|
|
@keyframes tcNoteIn {
|
|
from { opacity: 0; transform: translateY(5px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
.tc-note.resolution-note {
|
|
margin-top: 0.15rem;
|
|
padding-top: 0.35rem;
|
|
border-top: 1px solid var(--lp-border);
|
|
}
|
|
|
|
.tc-time {
|
|
font-size: 0.55rem;
|
|
color: var(--lp-text-dim);
|
|
font-family: var(--lp-font-mono);
|
|
flex-shrink: 0;
|
|
min-width: 28px;
|
|
}
|
|
|
|
.tc-check {
|
|
color: var(--lp-success);
|
|
flex-shrink: 0;
|
|
font-size: 0.6rem;
|
|
}
|
|
|
|
.tc-resolution-tag {
|
|
font-size: 0.52rem;
|
|
font-weight: 700;
|
|
padding: 1px 5px;
|
|
border-radius: 3px;
|
|
background: rgba(96, 165, 250, 0.12);
|
|
color: var(--lp-accent-text);
|
|
flex-shrink: 0;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
|
|
.landing-tc-footer {
|
|
font-size: 0.58rem;
|
|
padding-top: 0.4rem;
|
|
border-top: 1px solid var(--lp-border);
|
|
line-height: 1.4;
|
|
}
|
|
|
|
.landing-tc-footer.before-footer {
|
|
color: var(--lp-text-dim);
|
|
}
|
|
|
|
.landing-tc-footer.after-footer {
|
|
color: var(--lp-accent-text);
|
|
font-weight: 500;
|
|
}
|
|
|
|
.landing-tc-divider {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-shrink: 0;
|
|
width: 32px;
|
|
padding-top: 1.4rem;
|
|
color: var(--lp-text-dim);
|
|
}
|
|
|
|
.landing-tc-divider svg {
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
|
|
/* ---- MOCK ELEMENTS ---- */
|
|
.landing-mock-session {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.4rem;
|
|
}
|
|
|
|
.landing-mock-session.compact {
|
|
gap: 0.35rem;
|
|
}
|
|
|
|
.landing-mock-chat-line {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
font-size: 0.65rem;
|
|
font-family: var(--lp-font-body);
|
|
padding: 6px 10px;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
.landing-mock-chat-line.user {
|
|
background: rgba(255, 255, 255, 0.03);
|
|
}
|
|
|
|
.landing-mock-chat-line.ai {
|
|
background: var(--lp-accent-soft);
|
|
}
|
|
|
|
.landing-mock-chat-line.doc {
|
|
background: rgba(52, 211, 153, 0.06);
|
|
border: 1px solid rgba(52, 211, 153, 0.1);
|
|
}
|
|
|
|
.landing-mock-chat-line .label {
|
|
font-weight: 700;
|
|
min-width: 52px;
|
|
flex-shrink: 0;
|
|
color: var(--lp-text-dim);
|
|
}
|
|
|
|
.landing-mock-chat-line.ai .label {
|
|
color: var(--lp-accent);
|
|
}
|
|
|
|
.landing-mock-chat-line.doc .label {
|
|
color: var(--lp-success);
|
|
}
|
|
|
|
.landing-mock-chat-line .text {
|
|
color: var(--lp-text-secondary);
|
|
overflow-wrap: anywhere;
|
|
min-width: 0;
|
|
}
|
|
|
|
.landing-mock-chat-line code {
|
|
font-family: var(--lp-font-mono);
|
|
font-size: 0.6rem;
|
|
padding: 1px 5px;
|
|
border-radius: 3px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
border: 1px solid rgba(255, 255, 255, 0.06);
|
|
color: var(--lp-accent-text);
|
|
}
|
|
|
|
/* Mock input */
|
|
.landing-mock-input {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
padding: 12px 14px;
|
|
border-radius: 8px;
|
|
background: var(--lp-card);
|
|
border: 1px solid var(--lp-border);
|
|
font-size: 0.7rem;
|
|
color: var(--lp-text-secondary);
|
|
line-height: 1.5;
|
|
width: 100%;
|
|
}
|
|
|
|
.landing-mock-input-icon {
|
|
font-size: 0.9rem;
|
|
flex-shrink: 0;
|
|
margin-top: -1px;
|
|
}
|
|
|
|
/* Mock ticket */
|
|
.landing-mock-ticket {
|
|
width: 100%;
|
|
padding: 12px 14px;
|
|
border-radius: 8px;
|
|
background: var(--lp-card);
|
|
border: 1px solid var(--lp-border);
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.4rem;
|
|
}
|
|
|
|
.landing-mock-ticket-header {
|
|
font-size: 0.65rem;
|
|
color: var(--lp-accent-text);
|
|
font-weight: 700;
|
|
padding-bottom: 0.4rem;
|
|
border-bottom: 1px solid var(--lp-border);
|
|
margin-bottom: 0.15rem;
|
|
}
|
|
|
|
.landing-mock-ticket-line {
|
|
font-size: 0.6rem;
|
|
color: var(--lp-text-secondary);
|
|
display: flex;
|
|
gap: 6px;
|
|
}
|
|
|
|
.landing-mock-ticket-line .time {
|
|
color: var(--lp-text-dim);
|
|
min-width: 30px;
|
|
}
|
|
|
|
.landing-mock-ticket-line .check {
|
|
color: var(--lp-success);
|
|
}
|
|
|
|
/* ---- PROBLEM SECTION (editorial, no cards) ---- */
|
|
.landing-problem-layout {
|
|
display: grid;
|
|
grid-template-columns: 5fr 7fr;
|
|
gap: clamp(2.5rem, 6vw, 6rem);
|
|
align-items: start;
|
|
}
|
|
|
|
.landing-problem-headline {
|
|
position: sticky;
|
|
top: 6rem;
|
|
}
|
|
|
|
.landing-problem-headline h2 {
|
|
font-family: var(--lp-font-display);
|
|
font-size: clamp(2rem, 4vw, 3rem);
|
|
font-weight: 800;
|
|
color: var(--lp-text-heading);
|
|
letter-spacing: -0.035em;
|
|
line-height: 1.05;
|
|
margin: 0 0 1.25rem;
|
|
}
|
|
|
|
.landing-problem-headline > p {
|
|
font-size: 1.05rem;
|
|
color: var(--lp-text-secondary);
|
|
line-height: 1.65;
|
|
max-width: 36ch;
|
|
}
|
|
|
|
.landing-problem-list {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.landing-problem-item {
|
|
display: grid;
|
|
grid-template-columns: 4.5rem 1fr;
|
|
column-gap: 1.25rem;
|
|
padding: 2rem 0;
|
|
border-top: 1px solid var(--lp-border);
|
|
}
|
|
|
|
.landing-problem-item:last-child {
|
|
border-bottom: 1px solid var(--lp-border);
|
|
}
|
|
|
|
.landing-problem-num {
|
|
font-family: var(--lp-font-display);
|
|
font-size: 0.85rem;
|
|
font-weight: 700;
|
|
color: var(--lp-accent);
|
|
letter-spacing: 0.08em;
|
|
padding-top: 0.65rem;
|
|
}
|
|
|
|
.landing-problem-body h3 {
|
|
font-family: var(--lp-font-display);
|
|
font-size: clamp(1.35rem, 2.5vw, 1.85rem);
|
|
font-weight: 700;
|
|
color: var(--lp-text-heading);
|
|
letter-spacing: -0.025em;
|
|
line-height: 1.15;
|
|
margin: 0 0 0.6rem;
|
|
}
|
|
|
|
.landing-problem-body p {
|
|
font-size: 0.95rem;
|
|
color: var(--lp-text-secondary);
|
|
line-height: 1.65;
|
|
margin: 0;
|
|
max-width: 52ch;
|
|
}
|
|
|
|
/* ---- EQUATION (hero-scale typographic moment) ---- */
|
|
.landing-equation-section {
|
|
text-align: left;
|
|
padding: 9rem 2rem 8rem;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.landing-equation-section::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background:
|
|
radial-gradient(60% 80% at 78% 30%, rgba(96, 165, 250, 0.10), transparent 70%);
|
|
pointer-events: none;
|
|
z-index: 0;
|
|
}
|
|
|
|
.landing-equation-inner {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.landing-brand-equation {
|
|
font-family: var(--lp-font-display);
|
|
font-weight: 800;
|
|
letter-spacing: -0.04em;
|
|
line-height: 0.95;
|
|
margin: 1.5rem 0 2rem;
|
|
}
|
|
|
|
.landing-eq-lhs {
|
|
display: flex;
|
|
align-items: baseline;
|
|
flex-wrap: wrap;
|
|
gap: 0.5em;
|
|
font-size: clamp(1.5rem, 4vw, 3rem);
|
|
color: var(--lp-text-secondary);
|
|
margin-bottom: 0.4rem;
|
|
}
|
|
|
|
.landing-eq-item {
|
|
color: var(--lp-text-heading);
|
|
}
|
|
|
|
.landing-eq-operator {
|
|
color: var(--lp-accent);
|
|
font-weight: 600;
|
|
}
|
|
|
|
.landing-eq-equals {
|
|
font-size: clamp(2rem, 5vw, 4rem);
|
|
color: var(--lp-accent);
|
|
line-height: 1;
|
|
margin: 0.1em 0 0.05em;
|
|
}
|
|
|
|
.landing-eq-operator-equals {
|
|
display: inline-block;
|
|
}
|
|
|
|
.landing-eq-result {
|
|
font-size: clamp(2.25rem, 11vw, 9.5rem);
|
|
font-weight: 800;
|
|
color: var(--lp-text-heading);
|
|
letter-spacing: -0.055em;
|
|
line-height: 0.92;
|
|
display: inline-block;
|
|
position: relative;
|
|
padding-bottom: 0.05em;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.landing-eq-result::after {
|
|
content: '';
|
|
position: absolute;
|
|
left: 0;
|
|
right: 14%;
|
|
bottom: 0.02em;
|
|
height: 0.12em;
|
|
background: linear-gradient(to right, var(--lp-accent), rgba(96, 165, 250, 0));
|
|
}
|
|
|
|
.landing-equation-desc {
|
|
font-size: 1.1rem;
|
|
color: var(--lp-text-secondary);
|
|
max-width: 520px;
|
|
margin: 2rem 0 0;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* ---- HOW IT WORKS (zigzag) ---- */
|
|
.landing-zigzag {
|
|
max-width: 1100px;
|
|
margin: 3rem auto 0;
|
|
padding: 0 2rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.landing-zigzag-step {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 3rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.landing-zigzag-step.reverse {
|
|
direction: rtl;
|
|
}
|
|
|
|
.landing-zigzag-step.reverse > * {
|
|
direction: ltr;
|
|
}
|
|
|
|
.landing-zigzag-number {
|
|
font-family: var(--lp-font-display);
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
color: var(--lp-accent);
|
|
letter-spacing: 0.05em;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.landing-zigzag-text h3 {
|
|
font-family: var(--lp-font-display);
|
|
font-size: 1.5rem;
|
|
font-weight: 700;
|
|
color: var(--lp-text-heading);
|
|
letter-spacing: -0.02em;
|
|
margin-bottom: 0.75rem;
|
|
}
|
|
|
|
.landing-zigzag-text p {
|
|
font-size: 0.95rem;
|
|
color: var(--lp-text-secondary);
|
|
line-height: 1.7;
|
|
margin: 0;
|
|
}
|
|
|
|
.landing-zigzag-visual {
|
|
padding: 1.5rem;
|
|
border-radius: 8px;
|
|
background: var(--lp-bg);
|
|
border: 1px solid var(--lp-border);
|
|
}
|
|
|
|
.landing-section-alt .landing-zigzag-visual {
|
|
background: var(--lp-bg-alt);
|
|
}
|
|
|
|
/* ---- FEATURES (editorial spec list) ---- */
|
|
.landing-feature-highlight {
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
align-items: center;
|
|
gap: 1.75rem;
|
|
padding: 2.25rem 2rem;
|
|
border-radius: 0;
|
|
background: transparent;
|
|
border: none;
|
|
border-top: 1px solid var(--lp-accent);
|
|
border-bottom: 1px solid var(--lp-border);
|
|
margin-top: 2.5rem;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.landing-feature-highlight-marker {
|
|
font-family: var(--lp-font-display);
|
|
font-size: 2.25rem;
|
|
font-weight: 800;
|
|
color: var(--lp-accent);
|
|
letter-spacing: -0.04em;
|
|
line-height: 1;
|
|
padding-right: 1.75rem;
|
|
border-right: 1px solid var(--lp-border);
|
|
}
|
|
|
|
.landing-feature-highlight-content h3 {
|
|
font-family: var(--lp-font-display);
|
|
font-size: clamp(1.35rem, 2.4vw, 1.65rem);
|
|
font-weight: 700;
|
|
color: var(--lp-text-heading);
|
|
letter-spacing: -0.02em;
|
|
margin: 0 0 0.4rem;
|
|
}
|
|
|
|
.landing-feature-highlight-content p {
|
|
font-size: 1rem;
|
|
color: var(--lp-text-secondary);
|
|
line-height: 1.65;
|
|
margin: 0;
|
|
max-width: 68ch;
|
|
}
|
|
|
|
.landing-feature-spec {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.landing-feature-row {
|
|
display: grid;
|
|
grid-template-columns: minmax(180px, 24%) 1fr;
|
|
column-gap: 3rem;
|
|
align-items: baseline;
|
|
padding: 1.75rem 0;
|
|
border-bottom: 1px solid var(--lp-border);
|
|
}
|
|
|
|
.landing-feature-row dt {
|
|
font-family: var(--lp-font-display);
|
|
font-size: clamp(1.15rem, 2vw, 1.5rem);
|
|
font-weight: 700;
|
|
color: var(--lp-text-heading);
|
|
letter-spacing: -0.02em;
|
|
line-height: 1.15;
|
|
}
|
|
|
|
.landing-feature-row dd {
|
|
font-size: 1rem;
|
|
color: var(--lp-text-secondary);
|
|
line-height: 1.65;
|
|
margin: 0;
|
|
max-width: 62ch;
|
|
}
|
|
|
|
/* ---- PRICING ---- */
|
|
.landing-pricing-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 1.5rem;
|
|
margin-top: 3rem;
|
|
align-items: start;
|
|
}
|
|
|
|
.landing-pricing-card {
|
|
padding: 2rem 1.75rem;
|
|
border-radius: 8px;
|
|
background: var(--lp-card);
|
|
border: 1px solid var(--lp-border);
|
|
transition: border-color 0.3s;
|
|
}
|
|
|
|
.landing-pricing-card:hover {
|
|
border-color: var(--lp-border-hover);
|
|
}
|
|
|
|
.landing-pricing-card.featured {
|
|
border-color: var(--lp-accent);
|
|
padding: 2.5rem 2rem;
|
|
position: relative;
|
|
box-shadow: 0 0 0 1px var(--lp-accent), 0 8px 32px rgba(96, 165, 250, 0.08);
|
|
}
|
|
|
|
.landing-pricing-badge {
|
|
position: absolute;
|
|
top: -11px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
padding: 3px 12px;
|
|
border-radius: 100px;
|
|
background: var(--lp-accent);
|
|
font-size: 0.6rem;
|
|
font-weight: 700;
|
|
color: #fff;
|
|
letter-spacing: 0.06em;
|
|
text-transform: uppercase;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.landing-pricing-plan-name {
|
|
font-family: var(--lp-font-display);
|
|
font-size: 1.1rem;
|
|
font-weight: 700;
|
|
color: var(--lp-text-heading);
|
|
margin-bottom: 0.35rem;
|
|
}
|
|
|
|
.landing-pricing-target {
|
|
font-size: 0.8rem;
|
|
color: var(--lp-text-dim);
|
|
margin-bottom: 1.25rem;
|
|
}
|
|
|
|
.landing-pricing-price {
|
|
display: flex;
|
|
align-items: baseline;
|
|
gap: 0.2rem;
|
|
margin-bottom: 0.2rem;
|
|
}
|
|
|
|
.landing-pricing-price .amount {
|
|
font-family: var(--lp-font-display);
|
|
font-size: 2.5rem;
|
|
font-weight: 800;
|
|
color: var(--lp-text-heading);
|
|
letter-spacing: -0.04em;
|
|
}
|
|
|
|
.landing-pricing-card.featured .landing-pricing-price .amount {
|
|
color: var(--lp-accent-text);
|
|
}
|
|
|
|
.landing-pricing-price .period {
|
|
font-size: 0.85rem;
|
|
color: var(--lp-text-dim);
|
|
}
|
|
|
|
.landing-pricing-note {
|
|
font-size: 0.75rem;
|
|
color: var(--lp-text-dim);
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.landing-pricing-features {
|
|
list-style: none;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.6rem;
|
|
margin-bottom: 1.75rem;
|
|
padding: 0;
|
|
}
|
|
|
|
.landing-pricing-features li {
|
|
font-size: 0.85rem;
|
|
color: var(--lp-text-secondary);
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.landing-pricing-features li::before {
|
|
content: '\2713';
|
|
color: var(--lp-accent);
|
|
font-weight: 700;
|
|
font-size: 0.75rem;
|
|
margin-top: 2px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.landing-pricing-btn {
|
|
display: block;
|
|
text-align: center;
|
|
padding: 0.7rem 1.25rem;
|
|
border-radius: 8px;
|
|
font-size: 0.875rem;
|
|
font-weight: 600;
|
|
text-decoration: none;
|
|
transition: opacity 0.3s, border-color 0.3s, background 0.3s, transform 0.3s;
|
|
width: 100%;
|
|
}
|
|
|
|
.landing-pricing-btn.outline {
|
|
color: var(--lp-text-heading);
|
|
border: 1px solid var(--lp-border);
|
|
background: transparent;
|
|
}
|
|
|
|
.landing-pricing-btn.outline:hover {
|
|
background: rgba(255, 255, 255, 0.04);
|
|
border-color: var(--lp-border-hover);
|
|
}
|
|
|
|
.landing-pricing-btn.filled {
|
|
color: #fff;
|
|
background: var(--lp-btn);
|
|
border: none;
|
|
}
|
|
|
|
.landing-pricing-btn.filled:hover {
|
|
opacity: 0.9;
|
|
transform: translateY(-1px);
|
|
}
|
|
|
|
.landing-pricing-session-note {
|
|
text-align: center;
|
|
margin-top: 1.5rem;
|
|
font-size: 0.8rem;
|
|
color: var(--lp-text-dim);
|
|
font-style: italic;
|
|
}
|
|
|
|
.landing-pricing-enterprise {
|
|
text-align: center;
|
|
margin-top: 0.75rem;
|
|
font-size: 0.85rem;
|
|
color: var(--lp-text-dim);
|
|
}
|
|
|
|
.landing-pricing-enterprise a {
|
|
color: var(--lp-accent-text);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.landing-pricing-enterprise a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* ---- FAQ ---- */
|
|
.landing-faq-list {
|
|
max-width: 680px;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.landing-faq-item {
|
|
border-bottom: 1px solid var(--lp-border);
|
|
}
|
|
|
|
.landing-faq-item:first-child {
|
|
border-top: 1px solid var(--lp-border);
|
|
}
|
|
|
|
.landing-faq-trigger {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
padding: 1.25rem 0;
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
font-family: var(--lp-font-body);
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: var(--lp-text-heading);
|
|
gap: 1rem;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.landing-faq-trigger:hover {
|
|
color: var(--lp-accent-text);
|
|
}
|
|
|
|
.landing-faq-icon {
|
|
font-size: 1.25rem;
|
|
color: var(--lp-text-dim);
|
|
flex-shrink: 0;
|
|
width: 24px;
|
|
text-align: center;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.landing-faq-item.open .landing-faq-icon {
|
|
color: var(--lp-accent);
|
|
}
|
|
|
|
/* Smooth height animation via grid-template-rows */
|
|
.landing-faq-answer {
|
|
display: grid;
|
|
grid-template-rows: 0fr;
|
|
transition: grid-template-rows 0.3s ease;
|
|
}
|
|
|
|
.landing-faq-item.open .landing-faq-answer {
|
|
grid-template-rows: 1fr;
|
|
}
|
|
|
|
.landing-faq-answer > p {
|
|
overflow: hidden;
|
|
margin: 0;
|
|
font-size: 0.9rem;
|
|
color: var(--lp-text-secondary);
|
|
line-height: 1.7;
|
|
padding: 0 0 1.25rem;
|
|
}
|
|
|
|
/* ---- FOUNDER ---- */
|
|
.landing-founder-section {
|
|
padding: 4rem 2rem;
|
|
}
|
|
|
|
.landing-founder-inner {
|
|
max-width: 640px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.landing-founder-section blockquote {
|
|
font-family: var(--lp-font-display);
|
|
font-size: 1.25rem;
|
|
font-weight: 500;
|
|
line-height: 1.6;
|
|
color: var(--lp-text-body);
|
|
margin: 0.75rem 0 1.25rem;
|
|
padding-left: 1.25rem;
|
|
border-left: 3px solid var(--lp-accent);
|
|
}
|
|
|
|
.landing-founder-name {
|
|
font-size: 0.85rem;
|
|
color: var(--lp-text-dim);
|
|
padding-left: 1.25rem;
|
|
}
|
|
|
|
/* ---- CTA (drenched) ---- */
|
|
.landing-cta-section {
|
|
padding: 6rem 2rem;
|
|
background: var(--lp-bg-alt);
|
|
}
|
|
|
|
.landing-cta-section.landing-cta-drench {
|
|
background: var(--lp-accent);
|
|
color: #0a1430;
|
|
padding: 7rem 2rem;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.landing-cta-section.landing-cta-drench::before {
|
|
content: '';
|
|
position: absolute;
|
|
inset: 0;
|
|
background:
|
|
radial-gradient(80% 60% at 100% 0%, rgba(255, 255, 255, 0.18), transparent 60%),
|
|
radial-gradient(60% 80% at 0% 100%, rgba(13, 15, 21, 0.18), transparent 60%);
|
|
pointer-events: none;
|
|
}
|
|
|
|
.landing-cta-inner {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.landing-cta-eyebrow {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.9rem;
|
|
font-family: var(--lp-font-display);
|
|
font-size: 0.9rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.08em;
|
|
text-transform: uppercase;
|
|
color: #0a1430;
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.landing-cta-eyebrow::before {
|
|
content: '';
|
|
width: 40px;
|
|
height: 2px;
|
|
background: #0a1430;
|
|
flex-shrink: 0;
|
|
opacity: 0.55;
|
|
}
|
|
|
|
.landing-cta-section h2 {
|
|
font-family: var(--lp-font-display);
|
|
font-size: clamp(2.25rem, 5vw, 4rem);
|
|
font-weight: 800;
|
|
color: #0a1430;
|
|
letter-spacing: -0.04em;
|
|
line-height: 1.02;
|
|
margin: 0 0 1.25rem;
|
|
max-width: 22ch;
|
|
}
|
|
|
|
.landing-cta-section h2 + p {
|
|
font-size: 1.15rem;
|
|
color: #0a1430;
|
|
opacity: 0.78;
|
|
margin-bottom: 2.5rem;
|
|
line-height: 1.55;
|
|
max-width: 44ch;
|
|
}
|
|
|
|
.landing-cta-actions {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.landing-btn-cta-invert {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: var(--lp-accent);
|
|
text-decoration: none;
|
|
padding: 0.95rem 2rem;
|
|
border-radius: 8px;
|
|
background: #ffffff;
|
|
transition: transform 0.25s ease-out, box-shadow 0.25s ease-out;
|
|
letter-spacing: -0.01em;
|
|
box-shadow: 0 1px 0 rgba(13, 15, 21, 0.08);
|
|
}
|
|
|
|
.landing-btn-cta-invert:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 12px 28px rgba(10, 20, 48, 0.25);
|
|
}
|
|
|
|
.landing-btn-cta-ghost {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: #0a1430;
|
|
text-decoration: none;
|
|
padding: 0.95rem 1.5rem;
|
|
border-radius: 8px;
|
|
border: 1px solid rgba(10, 20, 48, 0.35);
|
|
background: transparent;
|
|
transition: background 0.25s, border-color 0.25s;
|
|
}
|
|
|
|
.landing-btn-cta-ghost:hover {
|
|
background: rgba(10, 20, 48, 0.06);
|
|
border-color: rgba(10, 20, 48, 0.55);
|
|
}
|
|
|
|
.landing-cta-email-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
}
|
|
|
|
.landing-cta-input-wrap {
|
|
display: flex;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.landing-cta-email-input {
|
|
flex: 1;
|
|
padding: 0.8rem 1rem;
|
|
border-radius: 8px;
|
|
border: 1px solid var(--lp-border);
|
|
background: var(--lp-card);
|
|
color: var(--lp-text-heading);
|
|
font-family: var(--lp-font-body);
|
|
font-size: 0.9rem;
|
|
outline: none;
|
|
transition: border-color 0.3s, box-shadow 0.3s;
|
|
}
|
|
|
|
.landing-cta-email-input::placeholder {
|
|
color: var(--lp-text-dim);
|
|
}
|
|
|
|
.landing-cta-email-input:focus {
|
|
border-color: var(--lp-accent);
|
|
box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
|
|
}
|
|
|
|
.landing-cta-status {
|
|
min-height: 1.5rem;
|
|
margin-top: 0.5rem;
|
|
}
|
|
|
|
.landing-cta-success {
|
|
font-size: 0.85rem;
|
|
color: var(--lp-success);
|
|
margin: 0;
|
|
}
|
|
|
|
.landing-cta-error {
|
|
font-size: 0.85rem;
|
|
color: var(--lp-danger);
|
|
margin: 0;
|
|
}
|
|
|
|
.landing-cta-fine-print {
|
|
font-size: 0.7rem;
|
|
color: var(--lp-text-dim);
|
|
margin-top: 0.75rem;
|
|
}
|
|
|
|
/* ---- FOOTER ---- */
|
|
.landing-footer {
|
|
border-top: 1px solid var(--lp-border);
|
|
padding: 2.5rem 2rem;
|
|
}
|
|
|
|
.landing-footer-inner {
|
|
max-width: 1100px;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-wrap: wrap;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.landing-footer-left {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
}
|
|
|
|
.landing-footer-copy {
|
|
font-size: 0.75rem;
|
|
color: var(--lp-text-dim);
|
|
}
|
|
|
|
.landing-footer-links {
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.landing-footer-links a {
|
|
font-size: 0.75rem;
|
|
color: var(--lp-text-dim);
|
|
text-decoration: none;
|
|
transition: color 0.2s;
|
|
}
|
|
|
|
.landing-footer-links a:hover {
|
|
color: var(--lp-text-secondary);
|
|
}
|
|
|
|
/* ---- ANIMATIONS ---- */
|
|
@keyframes landingFadeInUp {
|
|
from { opacity: 0; transform: translateY(20px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
@keyframes landingPreviewEntrance {
|
|
from { opacity: 0; transform: translateY(30px) scale(0.97); }
|
|
to { opacity: 1; transform: translateY(0) scale(1); }
|
|
}
|
|
|
|
|
|
/* ---- SCROLL REVEAL ---- */
|
|
.landing-reveal {
|
|
opacity: 0;
|
|
transform: translateY(24px);
|
|
transition: opacity 0.7s ease, transform 0.7s ease;
|
|
}
|
|
|
|
.landing-reveal.visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
/* ---- Scroll-driven enhancements ---- */
|
|
@supports (animation-timeline: scroll()) {
|
|
.landing-reveal {
|
|
opacity: 0;
|
|
transform: translateY(32px);
|
|
animation: landingScrollReveal linear both;
|
|
animation-timeline: view();
|
|
animation-range: entry 0% entry 35%;
|
|
transition: none;
|
|
}
|
|
|
|
.landing-reveal.visible {
|
|
/* scroll-driven handles it */
|
|
}
|
|
|
|
@keyframes landingScrollReveal {
|
|
from { opacity: 0; transform: translateY(32px); }
|
|
to { opacity: 1; transform: translateY(0); }
|
|
}
|
|
|
|
.landing-problem-card {
|
|
opacity: 0;
|
|
transform: translateY(16px);
|
|
animation: landingScrollReveal linear both;
|
|
animation-timeline: view();
|
|
animation-range: entry 0% entry 40%;
|
|
}
|
|
|
|
.landing-problem-card:nth-child(1) { animation-range: entry 0% entry 35%; }
|
|
.landing-problem-card:nth-child(2) { animation-range: entry 5% entry 40%; }
|
|
.landing-problem-card:nth-child(3) { animation-range: entry 10% entry 45%; }
|
|
.landing-problem-card:nth-child(4) { animation-range: entry 15% entry 50%; }
|
|
|
|
.landing-feature-card {
|
|
opacity: 0;
|
|
transform: translateY(16px);
|
|
animation: landingScrollReveal linear both;
|
|
animation-timeline: view();
|
|
animation-range: entry 0% entry 40%;
|
|
}
|
|
|
|
.landing-feature-card:nth-child(1) { animation-range: entry 0% entry 30%; }
|
|
.landing-feature-card:nth-child(2) { animation-range: entry 3% entry 33%; }
|
|
.landing-feature-card:nth-child(3) { animation-range: entry 6% entry 36%; }
|
|
.landing-feature-card:nth-child(4) { animation-range: entry 9% entry 39%; }
|
|
.landing-feature-card:nth-child(5) { animation-range: entry 12% entry 42%; }
|
|
|
|
.landing-pricing-card {
|
|
opacity: 0;
|
|
transform: translateY(16px);
|
|
animation: landingScrollReveal linear both;
|
|
animation-timeline: view();
|
|
animation-range: entry 0% entry 40%;
|
|
}
|
|
|
|
.landing-pricing-card:nth-child(1) { animation-range: entry 0% entry 30%; }
|
|
.landing-pricing-card:nth-child(2) { animation-range: entry 5% entry 35%; }
|
|
.landing-pricing-card:nth-child(3) { animation-range: entry 10% entry 40%; }
|
|
|
|
.landing-zigzag-step {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
animation: landingScrollReveal linear both;
|
|
animation-timeline: view();
|
|
animation-range: entry 0% entry 35%;
|
|
}
|
|
}
|
|
|
|
/* ---- HAMBURGER ---- */
|
|
.landing-hamburger {
|
|
display: none;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
gap: 5px;
|
|
width: 44px;
|
|
height: 44px;
|
|
padding: 10px;
|
|
background: none;
|
|
border: none;
|
|
cursor: pointer;
|
|
z-index: 110;
|
|
}
|
|
|
|
.landing-hamburger span {
|
|
display: block;
|
|
width: 22px;
|
|
height: 2px;
|
|
background: var(--lp-text-secondary);
|
|
border-radius: 2px;
|
|
transition: transform 0.3s ease, opacity 0.3s ease;
|
|
}
|
|
|
|
.landing-hamburger:hover span {
|
|
background: var(--lp-text-heading);
|
|
}
|
|
|
|
.landing-hamburger.open span:nth-child(1) {
|
|
transform: translateY(7px) rotate(45deg);
|
|
}
|
|
|
|
.landing-hamburger.open span:nth-child(2) {
|
|
opacity: 0;
|
|
}
|
|
|
|
.landing-hamburger.open span:nth-child(3) {
|
|
transform: translateY(-7px) rotate(-45deg);
|
|
}
|
|
|
|
/* ---- MOBILE MENU ---- */
|
|
.landing-mobile-menu {
|
|
display: none;
|
|
flex-direction: column;
|
|
gap: 0;
|
|
padding: 0.5rem 1.5rem 1.5rem;
|
|
background: rgba(20, 22, 29, 0.98);
|
|
border-bottom: 1px solid var(--lp-border);
|
|
}
|
|
|
|
.landing-mobile-menu a {
|
|
display: block;
|
|
padding: 0.875rem 0;
|
|
font-size: 1rem;
|
|
font-weight: 500;
|
|
color: var(--lp-text-secondary);
|
|
text-decoration: none;
|
|
transition: color 0.2s;
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.04);
|
|
}
|
|
|
|
.landing-mobile-menu a:hover {
|
|
color: var(--lp-text-heading);
|
|
}
|
|
|
|
.landing-mobile-menu a:last-child {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.landing-mobile-menu-divider {
|
|
height: 1px;
|
|
background: rgba(255, 255, 255, 0.08);
|
|
margin: 0.5rem 0;
|
|
}
|
|
|
|
.landing-mobile-menu .landing-btn-primary {
|
|
margin-top: 0.5rem;
|
|
display: block;
|
|
}
|
|
|
|
/* ---- RESPONSIVE ---- */
|
|
@media (max-width: 900px) {
|
|
.landing-section {
|
|
padding: 3.5rem 1.25rem;
|
|
}
|
|
|
|
.landing-hero {
|
|
padding: 7rem 1.25rem 3rem;
|
|
}
|
|
|
|
.landing-hero-inner {
|
|
grid-template-columns: 1fr;
|
|
gap: 2.5rem;
|
|
}
|
|
|
|
.landing-hero h1 {
|
|
font-size: 2.25rem;
|
|
}
|
|
|
|
.landing-hero-sub {
|
|
max-width: 100%;
|
|
}
|
|
|
|
.landing-hero-actions {
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.landing-problem-layout {
|
|
grid-template-columns: 1fr;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.landing-problem-headline {
|
|
position: static;
|
|
}
|
|
|
|
.landing-problem-item {
|
|
grid-template-columns: 3rem 1fr;
|
|
column-gap: 1rem;
|
|
padding: 1.5rem 0;
|
|
}
|
|
|
|
.landing-problem-num {
|
|
padding-top: 0.5rem;
|
|
}
|
|
|
|
.landing-zigzag {
|
|
padding: 0 1.25rem;
|
|
}
|
|
|
|
.landing-zigzag-step,
|
|
.landing-zigzag-step.reverse {
|
|
grid-template-columns: 1fr;
|
|
direction: ltr;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.landing-zigzag-step.reverse > * {
|
|
direction: ltr;
|
|
}
|
|
|
|
.landing-zigzag-visual {
|
|
order: 2;
|
|
}
|
|
|
|
.landing-feature-highlight {
|
|
grid-template-columns: 1fr;
|
|
gap: 1rem;
|
|
padding: 1.5rem 0;
|
|
}
|
|
|
|
.landing-feature-highlight-marker {
|
|
padding-right: 0;
|
|
border-right: none;
|
|
font-size: 1.75rem;
|
|
}
|
|
|
|
.landing-feature-row {
|
|
grid-template-columns: 1fr;
|
|
row-gap: 0.6rem;
|
|
padding: 1.5rem 0;
|
|
}
|
|
|
|
.landing-pricing-grid {
|
|
grid-template-columns: 1fr;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.landing-pricing-card.featured {
|
|
order: -1;
|
|
}
|
|
|
|
.landing-nav-links {
|
|
display: none;
|
|
}
|
|
|
|
.landing-nav-cta {
|
|
display: none;
|
|
}
|
|
|
|
.landing-hamburger {
|
|
display: flex;
|
|
}
|
|
|
|
.landing-mobile-menu {
|
|
display: flex;
|
|
}
|
|
|
|
.landing-equation-section {
|
|
padding: 5rem 1.25rem 4.5rem;
|
|
text-align: left;
|
|
}
|
|
|
|
.landing-founder-section {
|
|
padding: 3rem 1.25rem;
|
|
}
|
|
|
|
.landing-cta-section {
|
|
padding: 3.5rem 1.25rem;
|
|
}
|
|
|
|
.landing-cta-input-wrap {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.landing-faq-trigger {
|
|
font-size: 0.9rem;
|
|
padding: 1rem 0;
|
|
}
|
|
}
|
|
|
|
/* ---- REDUCED MOTION ---- */
|
|
@media (prefers-reduced-motion: reduce) {
|
|
.landing-hero-visual,
|
|
.landing-hero-content {
|
|
opacity: 1;
|
|
transform: none;
|
|
animation: none;
|
|
}
|
|
|
|
.tc-note {
|
|
opacity: 1;
|
|
transform: none;
|
|
animation: none;
|
|
}
|
|
|
|
.landing-reveal {
|
|
opacity: 1;
|
|
transform: none;
|
|
transition: none;
|
|
}
|
|
|
|
.landing-faq-answer {
|
|
transition: none;
|
|
}
|
|
}
|