- Swap static dashboard card for 3-slide image carousel in hero section - Slides auto-advance every 4.5s, pause on hover, support manual prev/next and dot navigation - Add carousel CSS with fade transition, dot indicators, and glow border treatment - Add carousel JS with goTo/prev/next/auto-rotate logic - Images expected at img/screenshot-dashboard.png, img/screenshot-cashflow.png, img/screenshot-capital.png Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
789 lines
20 KiB
CSS
789 lines
20 KiB
CSS
/* =============================================
|
|
HOA LedgerIQ — Marketing Site Styles
|
|
============================================= */
|
|
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
|
|
:root {
|
|
--blue: #2563eb;
|
|
--blue-dark: #1d4ed8;
|
|
--blue-glow: rgba(37, 99, 235, 0.25);
|
|
--indigo: #4f46e5;
|
|
--teal: #0ea5e9;
|
|
--green: #22c55e;
|
|
--amber: #f59e0b;
|
|
--red: #ef4444;
|
|
--gray-50: #f8fafc;
|
|
--gray-100: #f1f5f9;
|
|
--gray-200: #e2e8f0;
|
|
--gray-400: #94a3b8;
|
|
--gray-600: #475569;
|
|
--gray-700: #334155;
|
|
--gray-800: #1e293b;
|
|
--gray-900: #0f172a;
|
|
--surface: #ffffff;
|
|
--radius: 12px;
|
|
--radius-lg: 20px;
|
|
--shadow: 0 4px 24px rgba(0,0,0,0.08);
|
|
--shadow-lg: 0 16px 64px rgba(0,0,0,0.14);
|
|
}
|
|
|
|
html { scroll-behavior: smooth; }
|
|
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
background: var(--gray-900);
|
|
color: var(--gray-100);
|
|
line-height: 1.65;
|
|
-webkit-font-smoothing: antialiased;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1120px;
|
|
margin: 0 auto;
|
|
padding: 0 24px;
|
|
}
|
|
|
|
/* ---- Buttons ---- */
|
|
.btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
padding: 12px 24px;
|
|
border-radius: 8px;
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
border: 2px solid transparent;
|
|
transition: all 0.18s ease;
|
|
white-space: nowrap;
|
|
}
|
|
.btn-primary {
|
|
background: var(--blue);
|
|
color: #fff;
|
|
border-color: var(--blue);
|
|
}
|
|
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 24px var(--blue-glow); }
|
|
.btn-outline {
|
|
background: transparent;
|
|
color: var(--gray-100);
|
|
border-color: var(--gray-600);
|
|
}
|
|
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
|
|
.btn-ghost {
|
|
background: transparent;
|
|
color: var(--gray-400);
|
|
border-color: transparent;
|
|
}
|
|
.btn-ghost:hover { color: var(--gray-100); }
|
|
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 10px; }
|
|
.hidden { display: none !important; }
|
|
|
|
/* ---- Coming Soon Banner ---- */
|
|
.coming-soon-banner {
|
|
background: linear-gradient(90deg, var(--indigo), var(--blue), var(--teal));
|
|
padding: 12px 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 16px;
|
|
flex-wrap: wrap;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
text-align: center;
|
|
}
|
|
.banner-badge {
|
|
background: rgba(255,255,255,0.2);
|
|
border: 1px solid rgba(255,255,255,0.35);
|
|
padding: 3px 10px;
|
|
border-radius: 99px;
|
|
font-size: 12px;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
color: #fff;
|
|
flex-shrink: 0;
|
|
}
|
|
.banner-text { color: rgba(255,255,255,0.9); }
|
|
.banner-cta {
|
|
background: #fff;
|
|
color: var(--indigo);
|
|
padding: 5px 14px;
|
|
border-radius: 6px;
|
|
font-weight: 700;
|
|
font-size: 13px;
|
|
text-decoration: none;
|
|
flex-shrink: 0;
|
|
transition: opacity 0.15s;
|
|
}
|
|
.banner-cta:hover { opacity: 0.9; }
|
|
|
|
/* ---- Nav ---- */
|
|
.nav {
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 100;
|
|
background: rgba(15, 23, 42, 0.85);
|
|
backdrop-filter: blur(16px);
|
|
border-bottom: 1px solid rgba(255,255,255,0.06);
|
|
}
|
|
.nav-inner {
|
|
max-width: 1120px;
|
|
margin: 0 auto;
|
|
padding: 0 24px;
|
|
height: 68px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 32px;
|
|
}
|
|
.nav-logo { display: flex; align-items: center; text-decoration: none; }
|
|
.logo-img { height: 36px; width: auto; }
|
|
.logo-img--footer { height: 30px; }
|
|
.nav-links {
|
|
display: flex;
|
|
gap: 28px;
|
|
list-style: none;
|
|
margin-left: auto;
|
|
}
|
|
.nav-links a {
|
|
color: var(--gray-400);
|
|
text-decoration: none;
|
|
font-size: 15px;
|
|
font-weight: 500;
|
|
transition: color 0.15s;
|
|
}
|
|
.nav-links a:hover { color: var(--gray-100); }
|
|
.nav-btn { margin-left: 16px; padding: 9px 20px; font-size: 14px; }
|
|
|
|
/* ---- Pulse dot ---- */
|
|
.pulse-dot {
|
|
display: inline-block;
|
|
width: 8px; height: 8px;
|
|
background: var(--green);
|
|
border-radius: 50%;
|
|
position: relative;
|
|
flex-shrink: 0;
|
|
}
|
|
.pulse-dot::after {
|
|
content: '';
|
|
position: absolute;
|
|
inset: -4px;
|
|
border-radius: 50%;
|
|
background: var(--green);
|
|
opacity: 0.4;
|
|
animation: pulse 1.8s infinite;
|
|
}
|
|
.pulse-dot--white { background: #fff; }
|
|
.pulse-dot--white::after { background: #fff; }
|
|
@keyframes pulse {
|
|
0% { transform: scale(1); opacity: 0.4; }
|
|
70% { transform: scale(2.2); opacity: 0; }
|
|
100% { transform: scale(1); opacity: 0; }
|
|
}
|
|
|
|
/* ---- Hero ---- */
|
|
.hero {
|
|
position: relative;
|
|
overflow: hidden;
|
|
padding: 100px 0 80px;
|
|
text-align: center;
|
|
}
|
|
.hero-glow {
|
|
position: absolute;
|
|
top: -200px; left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 900px; height: 600px;
|
|
background: radial-gradient(ellipse at center, rgba(79,70,229,0.35) 0%, transparent 70%);
|
|
pointer-events: none;
|
|
}
|
|
.hero-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
background: rgba(79,70,229,0.15);
|
|
border: 1px solid rgba(79,70,229,0.4);
|
|
color: #a5b4fc;
|
|
padding: 6px 16px;
|
|
border-radius: 99px;
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
letter-spacing: 0.02em;
|
|
margin-bottom: 28px;
|
|
}
|
|
.hero-headline {
|
|
font-size: clamp(40px, 7vw, 76px);
|
|
font-weight: 900;
|
|
line-height: 1.08;
|
|
letter-spacing: -0.03em;
|
|
color: #fff;
|
|
margin-bottom: 24px;
|
|
}
|
|
.gradient-text {
|
|
background: linear-gradient(135deg, #60a5fa, #a78bfa, #38bdf8);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
.hero-sub {
|
|
max-width: 620px;
|
|
margin: 0 auto 36px;
|
|
font-size: 18px;
|
|
color: var(--gray-400);
|
|
line-height: 1.7;
|
|
}
|
|
.hero-actions {
|
|
display: flex;
|
|
gap: 16px;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 20px;
|
|
}
|
|
.hero-trust {
|
|
font-size: 13px;
|
|
color: var(--gray-600);
|
|
margin-top: 8px;
|
|
}
|
|
|
|
/* ---- Dashboard card (hero visual) ---- */
|
|
.hero-visual {
|
|
margin: 60px auto 0;
|
|
max-width: 680px;
|
|
padding: 0 24px;
|
|
}
|
|
.dashboard-card {
|
|
background: var(--gray-800);
|
|
border: 1px solid rgba(255,255,255,0.08);
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
box-shadow: var(--shadow-lg), 0 0 80px rgba(79,70,229,0.18);
|
|
text-align: left;
|
|
}
|
|
.dash-header {
|
|
background: var(--gray-900);
|
|
padding: 12px 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 7px;
|
|
border-bottom: 1px solid rgba(255,255,255,0.06);
|
|
}
|
|
.dash-dot { width: 12px; height: 12px; border-radius: 50%; }
|
|
.dash-dot.red { background: #ff5f57; }
|
|
.dash-dot.yellow { background: #febc2e; }
|
|
.dash-dot.green { background: #28c840; }
|
|
.dash-title { margin-left: 8px; font-size: 12px; color: var(--gray-600); font-weight: 500; }
|
|
.dash-body { padding: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
|
|
.dash-stat { }
|
|
.stat-label { font-size: 11px; color: var(--gray-600); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
|
|
.stat-value { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
|
|
.stat-delta { font-size: 11px; color: var(--gray-600); margin-top: 3px; }
|
|
.green-text { color: var(--green); }
|
|
.amber-text { color: var(--amber); }
|
|
.dash-chart {
|
|
grid-column: 1 / -1;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
gap: 6px;
|
|
height: 72px;
|
|
background: rgba(255,255,255,0.02);
|
|
border-radius: 8px;
|
|
padding: 10px 12px 0;
|
|
}
|
|
.chart-bar {
|
|
flex: 1;
|
|
background: rgba(79,70,229,0.35);
|
|
border-radius: 4px 4px 0 0;
|
|
transition: background 0.2s;
|
|
}
|
|
.chart-bar.active { background: var(--blue); }
|
|
.dash-ai-chip {
|
|
grid-column: 1 / -1;
|
|
background: rgba(79,70,229,0.12);
|
|
border: 1px solid rgba(79,70,229,0.3);
|
|
border-radius: 8px;
|
|
padding: 10px 14px;
|
|
font-size: 12px;
|
|
color: #a5b4fc;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 8px;
|
|
}
|
|
.ai-icon { font-size: 14px; flex-shrink: 0; }
|
|
|
|
/* ---- Proof strip ---- */
|
|
.proof-strip {
|
|
border-top: 1px solid rgba(255,255,255,0.06);
|
|
border-bottom: 1px solid rgba(255,255,255,0.06);
|
|
padding: 20px 0;
|
|
background: rgba(255,255,255,0.02);
|
|
}
|
|
.proof-inner {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 20px;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
}
|
|
.proof-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-600); font-weight: 600; }
|
|
.proof-items { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; font-size: 14px; color: var(--gray-400); font-weight: 500; }
|
|
.sep { color: var(--gray-700); }
|
|
|
|
/* ---- Section shared ---- */
|
|
.section-label {
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
color: var(--blue);
|
|
font-weight: 700;
|
|
margin-bottom: 12px;
|
|
}
|
|
.section-title {
|
|
font-size: clamp(28px, 4vw, 46px);
|
|
font-weight: 800;
|
|
letter-spacing: -0.025em;
|
|
color: #fff;
|
|
line-height: 1.15;
|
|
margin-bottom: 16px;
|
|
}
|
|
.section-sub {
|
|
font-size: 17px;
|
|
color: var(--gray-400);
|
|
max-width: 560px;
|
|
margin-bottom: 56px;
|
|
}
|
|
|
|
/* ---- Features ---- */
|
|
.features { padding: 100px 0; }
|
|
.features-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 20px;
|
|
}
|
|
.feature-card {
|
|
background: var(--gray-800);
|
|
border: 1px solid rgba(255,255,255,0.07);
|
|
border-radius: var(--radius);
|
|
padding: 28px;
|
|
transition: transform 0.18s, box-shadow 0.18s;
|
|
}
|
|
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
|
|
.feature-card--highlight {
|
|
background: linear-gradient(135deg, rgba(79,70,229,0.2), rgba(37,99,235,0.15));
|
|
border-color: rgba(79,70,229,0.4);
|
|
}
|
|
.feature-icon { font-size: 24px; margin-bottom: 14px; }
|
|
.feature-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
|
|
.feature-card p { font-size: 14px; color: var(--gray-400); line-height: 1.65; }
|
|
.feature-tag {
|
|
display: inline-block;
|
|
background: rgba(79,70,229,0.18);
|
|
border: 1px solid rgba(79,70,229,0.35);
|
|
color: #a5b4fc;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
padding: 3px 10px;
|
|
border-radius: 99px;
|
|
margin-top: 14px;
|
|
letter-spacing: 0.04em;
|
|
}
|
|
|
|
/* ---- AI Section ---- */
|
|
.ai-section {
|
|
background: linear-gradient(180deg, rgba(79,70,229,0.07) 0%, transparent 100%);
|
|
border-top: 1px solid rgba(255,255,255,0.06);
|
|
border-bottom: 1px solid rgba(255,255,255,0.06);
|
|
padding: 100px 0;
|
|
}
|
|
.ai-inner {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 64px;
|
|
align-items: center;
|
|
}
|
|
.ai-text h2 {
|
|
font-size: clamp(26px, 3.5vw, 42px);
|
|
font-weight: 800;
|
|
color: #fff;
|
|
line-height: 1.15;
|
|
letter-spacing: -0.02em;
|
|
margin-bottom: 16px;
|
|
}
|
|
.ai-text p { font-size: 16px; color: var(--gray-400); margin-bottom: 28px; line-height: 1.7; }
|
|
.ai-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
|
|
.ai-bullets li { font-size: 15px; color: var(--gray-300); display: flex; gap: 10px; align-items: flex-start; }
|
|
.check { color: var(--green); font-weight: 700; flex-shrink: 0; }
|
|
.ai-visual { display: flex; flex-direction: column; gap: 14px; }
|
|
.chat-bubble {
|
|
padding: 14px 18px;
|
|
border-radius: 12px;
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
max-width: 90%;
|
|
}
|
|
.user-bubble {
|
|
background: var(--gray-700);
|
|
color: var(--gray-200);
|
|
align-self: flex-end;
|
|
border-bottom-right-radius: 4px;
|
|
}
|
|
.ai-bubble {
|
|
background: rgba(79,70,229,0.15);
|
|
border: 1px solid rgba(79,70,229,0.3);
|
|
color: var(--gray-200);
|
|
align-self: flex-start;
|
|
border-bottom-left-radius: 4px;
|
|
}
|
|
.ai-label {
|
|
display: block;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
color: #a5b4fc;
|
|
margin-bottom: 6px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.06em;
|
|
}
|
|
|
|
/* ---- Pricing ---- */
|
|
.pricing { padding: 100px 0; }
|
|
.pricing-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 20px;
|
|
align-items: stretch;
|
|
}
|
|
.pricing-card {
|
|
background: var(--gray-800);
|
|
border: 1px solid rgba(255,255,255,0.08);
|
|
border-radius: var(--radius-lg);
|
|
padding: 36px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
transition: transform 0.18s, box-shadow 0.18s;
|
|
}
|
|
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
|
|
.pricing-card--featured {
|
|
background: linear-gradient(160deg, rgba(79,70,229,0.25) 0%, rgba(37,99,235,0.15) 100%);
|
|
border-color: rgba(79,70,229,0.5);
|
|
box-shadow: 0 0 60px rgba(79,70,229,0.2);
|
|
}
|
|
.plan-badge {
|
|
position: absolute;
|
|
top: -14px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
background: linear-gradient(90deg, var(--indigo), var(--blue));
|
|
color: #fff;
|
|
font-size: 11px;
|
|
font-weight: 700;
|
|
padding: 4px 16px;
|
|
border-radius: 99px;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.07em;
|
|
white-space: nowrap;
|
|
}
|
|
.plan-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px; }
|
|
.plan-tagline { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
|
|
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
|
|
.price-amount { font-size: 46px; font-weight: 900; letter-spacing: -0.03em; color: #fff; }
|
|
.price-period { font-size: 16px; color: var(--gray-500); }
|
|
.plan-units { font-size: 13px; color: var(--gray-500); margin-bottom: 28px; }
|
|
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; margin-bottom: 32px; }
|
|
.plan-features li { font-size: 14px; color: var(--gray-400); display: flex; align-items: flex-start; gap: 9px; }
|
|
.plan-features li.dim { color: var(--gray-700); }
|
|
.plan-features .check { color: var(--green); font-weight: 700; flex-shrink: 0; }
|
|
.plan-btn { width: 100%; justify-content: center; margin-top: auto; }
|
|
|
|
/* ---- Signup Section ---- */
|
|
.signup-section {
|
|
position: relative;
|
|
overflow: hidden;
|
|
padding: 100px 0 120px;
|
|
}
|
|
.signup-glow {
|
|
position: absolute;
|
|
top: 50%; left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
width: 800px; height: 600px;
|
|
background: radial-gradient(ellipse, rgba(79,70,229,0.3) 0%, transparent 70%);
|
|
pointer-events: none;
|
|
}
|
|
.signup-card {
|
|
position: relative;
|
|
background: var(--gray-800);
|
|
border: 1px solid rgba(79,70,229,0.35);
|
|
border-radius: var(--radius-lg);
|
|
padding: 56px;
|
|
max-width: 760px;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
box-shadow: 0 0 80px rgba(79,70,229,0.2), var(--shadow-lg);
|
|
}
|
|
.countdown-badge {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
background: rgba(79,70,229,0.18);
|
|
border: 1px solid rgba(79,70,229,0.4);
|
|
color: #a5b4fc;
|
|
padding: 6px 16px;
|
|
border-radius: 99px;
|
|
font-size: 13px;
|
|
font-weight: 700;
|
|
margin-bottom: 20px;
|
|
letter-spacing: 0.02em;
|
|
}
|
|
.signup-card h2 {
|
|
font-size: clamp(24px, 3.5vw, 38px);
|
|
font-weight: 800;
|
|
color: #fff;
|
|
letter-spacing: -0.025em;
|
|
margin-bottom: 12px;
|
|
}
|
|
.signup-card > p {
|
|
color: var(--gray-400);
|
|
font-size: 16px;
|
|
margin-bottom: 40px;
|
|
max-width: 480px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
.signup-form { text-align: left; }
|
|
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
|
|
.form-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 6px;
|
|
margin-bottom: 16px;
|
|
}
|
|
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-400); }
|
|
.form-group input,
|
|
.form-group select {
|
|
background: var(--gray-900);
|
|
border: 1px solid rgba(255,255,255,0.1);
|
|
border-radius: 8px;
|
|
padding: 12px 14px;
|
|
color: var(--gray-100);
|
|
font-size: 15px;
|
|
font-family: inherit;
|
|
width: 100%;
|
|
outline: none;
|
|
transition: border-color 0.15s;
|
|
-webkit-appearance: none;
|
|
}
|
|
.form-group select {
|
|
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
|
|
background-repeat: no-repeat;
|
|
background-position: right 14px center;
|
|
padding-right: 36px;
|
|
}
|
|
.form-group input:focus,
|
|
.form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.2); }
|
|
.form-group input::placeholder { color: var(--gray-700); }
|
|
.form-group select option { background: var(--gray-800); color: var(--gray-100); }
|
|
.signup-btn { width: 100%; justify-content: center; margin-top: 8px; }
|
|
.form-fine { font-size: 12px; color: var(--gray-600); text-align: center; margin-top: 14px; }
|
|
|
|
/* ---- Success state ---- */
|
|
.signup-success { padding: 20px 0; }
|
|
.success-icon {
|
|
width: 64px; height: 64px;
|
|
background: rgba(34,197,94,0.15);
|
|
border: 2px solid var(--green);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 26px;
|
|
color: var(--green);
|
|
margin: 0 auto 20px;
|
|
font-weight: 700;
|
|
}
|
|
.signup-success h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 10px; }
|
|
.signup-success p { font-size: 16px; color: var(--gray-400); }
|
|
|
|
/* ---- Footer ---- */
|
|
.footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 0; }
|
|
.footer-inner {
|
|
display: grid;
|
|
grid-template-columns: 1.5fr 1fr;
|
|
gap: 48px;
|
|
padding-bottom: 48px;
|
|
border-bottom: 1px solid rgba(255,255,255,0.06);
|
|
}
|
|
.footer-logo p { font-size: 14px; color: var(--gray-600); margin-top: 12px; line-height: 1.6; }
|
|
.footer-links { display: flex; gap: 48px; }
|
|
.footer-col { display: flex; flex-direction: column; gap: 12px; }
|
|
.footer-col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-600); margin-bottom: 4px; }
|
|
.footer-col a { color: var(--gray-500); text-decoration: none; font-size: 14px; transition: color 0.15s; }
|
|
.footer-col a:hover { color: var(--gray-200); }
|
|
.footer-bottom {
|
|
padding: 20px 0;
|
|
font-size: 13px;
|
|
color: var(--gray-700);
|
|
}
|
|
|
|
/* ---- Screenshot Carousel ---- */
|
|
.screenshot-carousel {
|
|
width: 100%;
|
|
max-width: 900px;
|
|
margin: 60px auto 0;
|
|
padding: 0 24px;
|
|
}
|
|
.carousel-frame {
|
|
border-radius: var(--radius-lg);
|
|
overflow: hidden;
|
|
border: 1px solid rgba(255,255,255,0.1);
|
|
box-shadow: 0 0 80px rgba(79,70,229,0.25), var(--shadow-lg);
|
|
background: var(--gray-800);
|
|
position: relative;
|
|
}
|
|
.carousel-slides {
|
|
position: relative;
|
|
width: 100%;
|
|
}
|
|
.carousel-slide {
|
|
display: none;
|
|
flex-direction: column;
|
|
}
|
|
.carousel-slide.active {
|
|
display: flex;
|
|
}
|
|
.carousel-slide img {
|
|
width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
border-radius: var(--radius-lg) var(--radius-lg) 0 0;
|
|
}
|
|
.slide-caption {
|
|
padding: 12px 18px;
|
|
font-size: 12px;
|
|
font-weight: 600;
|
|
color: var(--gray-500);
|
|
letter-spacing: 0.04em;
|
|
text-align: center;
|
|
background: var(--gray-800);
|
|
border-top: 1px solid rgba(255,255,255,0.06);
|
|
}
|
|
.carousel-controls {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 16px;
|
|
margin-top: 18px;
|
|
}
|
|
.carousel-btn {
|
|
background: rgba(255,255,255,0.06);
|
|
border: 1px solid rgba(255,255,255,0.1);
|
|
color: var(--gray-400);
|
|
width: 36px;
|
|
height: 36px;
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
font-size: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transition: all 0.15s;
|
|
flex-shrink: 0;
|
|
}
|
|
.carousel-btn:hover {
|
|
background: rgba(79,70,229,0.25);
|
|
border-color: rgba(79,70,229,0.5);
|
|
color: #fff;
|
|
}
|
|
.carousel-dots {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
.carousel-dot {
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: var(--gray-700);
|
|
cursor: pointer;
|
|
transition: all 0.2s;
|
|
}
|
|
.carousel-dot.active {
|
|
background: var(--blue);
|
|
width: 22px;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
/* Fade transition */
|
|
.carousel-slide {
|
|
opacity: 0;
|
|
transition: opacity 0.4s ease;
|
|
}
|
|
.carousel-slide.active {
|
|
opacity: 1;
|
|
}
|
|
|
|
/* ---- Request Quote pricing ---- */
|
|
.price-amount--quote {
|
|
font-size: 32px;
|
|
background: linear-gradient(135deg, #60a5fa, #a78bfa);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
/* ---- Login nav button ---- */
|
|
.nav-login {
|
|
padding: 9px 20px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
/* ---- Beta checkbox group ---- */
|
|
.beta-group {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 10px;
|
|
margin: 20px 0 4px;
|
|
cursor: pointer;
|
|
}
|
|
.beta-group input[type="checkbox"] {
|
|
width: 18px;
|
|
height: 18px;
|
|
accent-color: var(--blue);
|
|
margin-top: 2px;
|
|
flex-shrink: 0;
|
|
cursor: pointer;
|
|
}
|
|
.beta-group label {
|
|
font-size: 14px;
|
|
color: var(--gray-200);
|
|
cursor: pointer;
|
|
font-weight: 500;
|
|
}
|
|
.beta-disclaimer {
|
|
font-size: 12px;
|
|
color: var(--gray-600);
|
|
line-height: 1.55;
|
|
margin-bottom: 16px;
|
|
padding-left: 28px;
|
|
}
|
|
|
|
/* ---- Responsive ---- */
|
|
@media (max-width: 900px) {
|
|
.features-grid { grid-template-columns: repeat(2, 1fr); }
|
|
.pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
|
|
.pricing-card--featured { order: -1; }
|
|
.ai-inner { grid-template-columns: 1fr; gap: 48px; }
|
|
.footer-inner { grid-template-columns: 1fr; }
|
|
.footer-links { flex-wrap: wrap; gap: 32px; }
|
|
.dash-body { grid-template-columns: 1fr 1fr; }
|
|
}
|
|
|
|
@media (max-width: 640px) {
|
|
.features-grid { grid-template-columns: 1fr; }
|
|
.form-row { grid-template-columns: 1fr; }
|
|
.signup-card { padding: 36px 24px; }
|
|
.nav-links { display: none; }
|
|
.hero-headline { font-size: 36px; }
|
|
.coming-soon-banner { gap: 10px; }
|
|
.banner-text { display: none; }
|
|
.dash-body { grid-template-columns: 1fr; }
|
|
}
|