:root {
--bg-dark: #0B0E14;
--bg-darker: #05070a;
--bg-mid: #0f1219;
--card-bg: #151820;
--card-hover: #1E222D;
--text-white: #FFFFFF;
--text-gray: #9CA3AF;
--text-muted: #6B7280;
--accent-blue: #3B82F6;
--accent-blue-dim: rgba(59, 130, 246, 0.1);
--accent-blue-border: rgba(59, 130, 246, 0.2);
--accent-purple: #8B5CF6;
--accent-green: #10B981;
--accent-red: #EF4444;
--accent-yellow: #F59E0B;
--accent-orange: #F97316;
--accent-pink: #EC4899;
--accent-gray: #9CA3AF;
--accent-gold: #D4A84B;
--accent-gold-light: #F0C87A;
--accent-gold-dim: rgba(212, 168, 75, 0.08);
--accent-gold-border: rgba(212, 168, 75, 0.2);
--border-light: rgba(255, 255, 255, 0.08);
--border-gold: rgba(212, 168, 75, 0.25);
--logo-sep: #333333;
--radius: 16px;
--radius-sm: 10px;
--font-body: 'Inter', system-ui, sans-serif;
--font-mono: 'Inter', system-ui, sans-serif;
--font-display: 'Inter', system-ui, sans-serif;
--navbar-h: 72px;
--navbar-offset: 80px; --accent-blue-border-led: #1e6fff;
--accent-purple-border: #bd00ff;
--accent-green-border: #00ff7f;
} *,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
scrollbar-width: none;
-ms-overflow-style: none;
width: 100%;
max-width: 100%;
overflow-x: clip;
}
html::-webkit-scrollbar {
width: 0;
display: none;
}
body {
font-family: var(--font-body);
background: var(--bg-dark);
color: var(--text-gray);
line-height: 1.6;
-webkit-font-smoothing: antialiased;
width: 100%;
max-width: 100%;
overflow-x: clip;
scrollbar-width: none;
}
body::-webkit-scrollbar {
width: 0;
}
img,
svg {
display: block;
max-width: 100%;
}
a {
color: inherit;
text-decoration: none;
}
button {
cursor: pointer;
border: none;
background: none;
font: inherit;
}
ul {
list-style: none;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
outline: 2px solid var(--accent-blue);
outline-offset: 2px;
} h2 {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 800;
letter-spacing: -1.5px;
background: linear-gradient(180deg, #fff 0%, #ccc 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1.1;
}
h3 {
font-size: 1.6rem;
font-weight: 700;
letter-spacing: -0.5px;
color: var(--text-white);
}
p {
color: var(--text-gray);
font-size: 1.05rem;
line-height: 1.7;
}
.label-upper {
font-size: 0.72rem;
font-weight: 700;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--text-muted);
}
.accent-blue {
color: var(--accent-blue);
} .container {
max-width: 1100px;
margin: 0 auto;
padding: 0 24px;
}
.container-wide {
max-width: 1450px;
margin: 0 auto;
padding: 0 24px;
}
section {
padding: 100px 0;
}  .sidenav {
position: fixed;
right: 12px;
top: 50%;
transform: translateY(-50%);
z-index: 1000;
display: flex;
flex-direction: column;
align-items: center;
gap: 2px;
background: rgba(11, 14, 20, 0.82);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 16px;
padding: 10px 6px;
}
.sn-item {
width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 10px;
color: rgba(255, 255, 255, 0.35);
transition: all 0.2s;
text-decoration: none;
position: relative;
cursor: pointer;
border: none;
background: none;
}
.sn-item:hover {
color: var(--accent-blue);
background: rgba(59, 130, 246, 0.08);
}
.sn-item.active {
color: var(--accent-blue);
background: rgba(59, 130, 246, 0.1);
}
.sn-item[data-page="surm"]:hover {
color: var(--accent-gold);
background: rgba(212, 168, 75, 0.08);
}
.sn-item::before {
content: attr(data-label);
position: absolute;
right: calc(100% + 10px);
top: 50%;
transform: translateY(-50%);
background: rgba(11, 14, 20, 0.96);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
padding: 5px 10px;
font-size: 0.7rem;
font-weight: 600;
color: #fff;
white-space: nowrap;
opacity: 0;
pointer-events: none;
transition: opacity 0.15s;
}
.sn-item:hover::before {
opacity: 1;
}
.sn-sep {
width: 22px;
height: 1px;
background: rgba(255, 255, 255, 0.07);
margin: 3px 0;
}
.sn-letter {
font-size: 15px;
font-weight: 700;
line-height: 1;
letter-spacing: -0.5px;
}
.sn-letter--sm {
font-size: 11px;
letter-spacing: 0.5px;
}
.sn-item[data-page="andrea"] {
color: var(--accent-blue);
}
.sn-item[data-page="andrea"]:hover {
color: var(--accent-blue);
background: rgba(59, 130, 246, 0.12);
} .mobile-topbar {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
height: 56px;
background: rgba(11, 14, 20, 0.92);
backdrop-filter: blur(20px);
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
align-items: center;
justify-content: space-between;
padding: 0 20px;
}
.mobile-brand {
font-size: 0.95rem;
font-weight: 800;
color: #fff;
letter-spacing: -0.3px;
}
.mobile-menu-btn {
font-size: 1.4rem;
color: var(--text-white);
padding: 6px;
background: none;
border: none;
cursor: pointer;
}
.mobile-nav-links {
display: none;
position: fixed;
top: 56px;
left: 0;
right: 0;
background: rgba(11, 14, 20, 0.98);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
flex-direction: column;
padding: 16px 20px;
gap: 4px;
}
.mobile-nav-links.active {
display: flex;
}
.mobile-nav-links a {
font-size: 0.92rem;
font-weight: 500;
color: rgba(255, 255, 255, 0.7);
padding: 10px 12px;
border-radius: 8px;
text-decoration: none;
}
.mobile-nav-links a:hover {
color: #fff;
background: rgba(255, 255, 255, 0.05);
}  .founder-ticker-wrap {
position: relative;
margin-top: 0;
background: rgba(59, 130, 246, 0.06);
border-bottom: 1px solid rgba(59, 130, 246, 0.15);
overflow: hidden;
height: 34px;
display: flex;
align-items: center;
}
.founder-ticker {
display: flex;
align-items: center;
white-space: nowrap;
font-size: 0.72rem;
font-weight: 600;
letter-spacing: 0.3px;
will-change: transform;
}
.founder-ticker>* {
padding-right: 20px;
}
.founder-ticker span:not(.ticker-dot) {
color: #fff;
}
.ticker-dot {
color: var(--accent-blue);
opacity: 0.6;
}
.andrea-hero {
position: relative;
min-height: calc(100vh - 34px);
display: grid;
grid-template-rows: 1fr 68px;
background: #000000; padding: 0;
z-index: 10; overflow: visible;
} .andrea-hero::before {
content: '';
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
background-size: 48px 48px;
background-attachment: fixed;
pointer-events: none;
z-index: 0;
-webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 90%);
mask-image: linear-gradient(to bottom, black 60%, transparent 90%);
}
.andrea-hero-glow {
position: absolute;
top: -200px;
left: -150px;
width: 800px;
height: 800px;
background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 65%);
pointer-events: none;
z-index: 0;
}
.andrea-hero-body {
grid-row: 1;
display: flex;
align-items: center;
padding: 24px 0 60px;
position: relative;
z-index: 1;
}
.andrea-hero-inner {
display: grid;
grid-template-columns: 1fr;
gap: 48px;
align-items: start;
width: 100%;
} .andrea-target-audience {
font-size: 1rem;
font-weight: 900;
letter-spacing: 3px;
text-transform: uppercase;
color: #fff; margin-bottom: 16px;
text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2); } .andrea-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 3.5px;
text-transform: uppercase;
color: #fff; margin-bottom: 24px;
padding: 7px 16px;
border: 1px solid rgba(255, 255, 255, 0.25);
border-radius: 20px;
background: rgba(255, 255, 255, 0.07);
}
.andrea-eyebrow-dot {
width: 5px;
height: 5px;
border-radius: 50%;
background: #fff;
box-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
0%,
100% {
opacity: 1
}
50% {
opacity: 0.35
}
} .andrea-hero h1 {
font-size: clamp(2.6rem, 5vw, 4rem);
font-weight: 900;
letter-spacing: -2.5px;
line-height: 1.05;
color: var(--text-white);
margin-bottom: 24px;
} .gshock-mini-bar {
position: relative;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 24px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 40px;
margin-bottom: 32px;
z-index: 1;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
}
.gshock-mini-bar::before {
display: none;
}
.gshock-mini-bar p {
margin: 0;
font-weight: 600;
font-size: 0.85rem;
letter-spacing: 0.5px;
text-transform: uppercase;
color: rgba(255, 255, 255, 0.85);
}  .andrea-hero .container {
max-width: 1640px;
padding: 0 40px;
}
.hero-stage {
position: relative;
display: grid;
grid-template-columns: 1fr;
justify-items: center;
align-items: start;
gap: 64px;
}
.hero-textblock {
grid-column: 1;
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 22px;
}
.hero-card-zone {
grid-column: 2;
position: relative;
z-index: 2;
justify-self: end;
align-self: start;
width: min(380px, 100%);
transform: translateX(24px);
display: flex;
flex-direction: column;
align-items: center;
} .hero-bottomrow {
display: flex;
align-items: center;
justify-content: center;
gap: 32px;
width: 100%;
}
.hero-bottomrow .hero-tagline {
margin: 0;
} .hero-leadin {
font-weight: 700;
text-transform: uppercase;
letter-spacing: 5px;
font-size: clamp(0.9rem, 1.7vw, 1.4rem);
color: #fff; }
.hero-monument {
display: flex;
flex-direction: column;
align-items: center;
gap: 6px;
text-align: center;
} .hero-stock-word {
display: block;
font-weight: 900;
font-size: clamp(4.5rem, 13vw, 13rem);
line-height: 0.82;
letter-spacing: -2px;
color: #fff; } .hero-tagline {
font-size: 1.05rem;
line-height: 1.6;
color: var(--text-white);
text-align: center;
margin: 0 auto;
max-width: none;
}
.hero-tagline-muted {
color: rgba(255, 255, 255, 0.7); }
.hero-card-zone .andrea-target {
margin-bottom: 12px;
}
.hero-card-zone .pred-card {
width: 100%;
}
@media (max-width: 900px) {
.andrea-hero .container {
padding: 0 16px;
}
.hero-stage {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
min-height: 80svh;
gap: 56px;
padding: 100px 0 60px;
width: 100%;
overflow: hidden;
box-sizing: border-box;
}
.hero-textblock {
align-items: center;
text-align: center;
gap: 32px;
width: 100%;
max-width: 100%;
box-sizing: border-box;
}
.hero-monument {
align-items: center;
text-align: center;
gap: 16px;
width: 100%;
box-sizing: border-box;
}
.hero-leadin,
.hero-tagline {
text-align: center;
width: 100%;
}
.hero-card-zone {
justify-self: center;
width: 100%;
max-width: 100%;
margin: 0 auto;
transform: none;
align-items: center;
}
.hero-bottomrow {
flex-direction: column;
align-items: center;
gap: 32px;
width: 100%;
}
.hero-stock-word {
font-size: clamp(3rem, 15vw, 6rem);
letter-spacing: -1px;
}
.hero-leadin {
font-size: 0.8rem;
letter-spacing: 1px;
line-height: 1.5;
white-space: normal;
display: block;
}
.andrea-eyebrow {
font-size: 0.7rem;
letter-spacing: 1px;
padding: 6px 12px;
white-space: normal;
max-width: 100%;
box-sizing: border-box;
}
.andrea-target-audience {
font-size: 0.85rem;
letter-spacing: 1.5px;
}
} .andrea-sub {
font-size: 1.05rem;
line-height: 1.75;
color: rgba(255, 255, 255, 0.5);
max-width: 500px;
margin-bottom: 36px;
} .andrea-cta-group {
display: flex;
align-items: center;
gap: 14px;
flex-wrap: wrap;
margin-bottom: 32px;
}
.btn-andrea-primary {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 32px;
border-radius: 10px;
font-size: 0.92rem;
font-weight: 700;
background: var(--accent-blue);
color: #fff;
transition: transform 0.2s, box-shadow 0.2s;
text-decoration: none;
}
.btn-andrea-primary:hover {
transform: translateY(-2px);
box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
}
.btn-andrea-ghost {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 24px;
border-radius: 10px;
font-size: 0.88rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.6);
border: 1px solid rgba(255, 255, 255, 0.12);
transition: all 0.2s;
text-decoration: none;
}
.btn-andrea-ghost:hover {
color: rgba(255, 255, 255, 0.9);
border-color: rgba(255, 255, 255, 0.25);
background: rgba(255, 255, 255, 0.04);
} .andrea-target {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.78rem;
font-weight: 600;
color: #93C5FD;
padding: 6px 12px;
border-radius: 7px;
background: rgba(59, 130, 246, 0.07);
border: 1px solid rgba(59, 130, 246, 0.15);
width: fit-content;
} .andrea-hero-visual {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
gap: 28px;
} .andrea-hero-stats {
grid-row: 2;
height: 100px;
background: rgba(11, 14, 20, 0.7);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-top: 1px solid rgba(255, 255, 255, 0.05);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
display: grid;
grid-template-columns: repeat(4, 1fr);
z-index: 20;
position: relative;
}
.andrea-hero-stats::before {
display: none;
}
.h-stat {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
position: relative;
z-index: 1;
height: 100%;
padding: 0 20px;
}
.h-stat:not(:last-child)::after {
content: '';
position: absolute;
right: 0;
top: 25%;
bottom: 25%;
width: 1px;
background: rgba(255, 255, 255, 0.08);
}
.andrea-hero-stats .h-stat-icon {
color: rgba(255, 255, 255, 0.85);
flex-shrink: 0;
display: flex;
align-items: center;
}
.h-stat-body {
display: flex;
flex-direction: column;
gap: 4px;
}
.andrea-hero-stats .h-stat-num {
font-size: 0.95rem;
font-weight: 700;
color: #fff;
letter-spacing: -0.2px;
line-height: 1;
white-space: nowrap;
}
.andrea-hero-stats .h-stat-lbl {
font-size: 0.65rem;
font-weight: 500;
color: rgba(255, 255, 255, 0.55);
letter-spacing: 0.4px;
line-height: 1;
text-transform: uppercase;
white-space: nowrap;
} .pred-card {
border-radius: 16px;
padding: 28px 24px 0;
border: 1px solid rgba(59, 130, 246, 0.3);
background: rgba(59, 130, 246, 0.05);
display: flex;
flex-direction: column;
gap: 20px;
box-shadow: 0 0 60px rgba(59, 130, 246, 0.08);
}
.pred-header {
display: flex;
align-items: center;
gap: 8px;
}
.pred-alert-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: #3B82F6;
box-shadow: 0 0 8px #3B82F6;
flex-shrink: 0;
animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
0%,
100% {
opacity: 1
}
50% {
opacity: 0.4
}
}
.pred-type {
font-family: var(--font-mono);
font-size: 0.65rem;
font-weight: 700;
color: #3B82F6;
text-transform: uppercase;
letter-spacing: 0.5px;
flex: 1;
}
.pred-time {
font-family: var(--font-mono);
font-size: 0.6rem;
color: var(--text-muted);
}
.pred-product {
display: flex;
flex-direction: column;
gap: 8px;
}
.pred-sku {
font-family: var(--font-mono);
font-size: 0.68rem;
color: var(--text-gray);
}
.pred-stock-row {
display: flex;
align-items: flex-start;
gap: 16px;
}
.pred-stat {
text-align: center;
}
.pred-stat-val {
font-family: var(--font-mono);
font-size: 1.6rem;
font-weight: 700;
color: #fff;
line-height: 1;
}
.pred-stat-val.danger {
color: #EF4444;
}
.pred-stat-lbl {
font-size: 0.6rem;
color: var(--text-muted);
margin-top: 3px;
}
.pred-arrow {
display: flex;
align-items: flex-start;
padding-top: 4px;
color: var(--text-muted);
flex-shrink: 0;
}
.pred-reco {
background: rgba(255, 255, 255, 0.04);
border-radius: 8px;
padding: 12px;
}
.pred-reco-label {
font-size: 0.6rem;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text-muted);
margin-bottom: 4px;
font-family: var(--font-mono);
}
.pred-reco-text {
font-size: 0.88rem;
color: #fff;
line-height: 1.4;
}
.pred-reco-text strong {
color: #3B82F6;
}
.pred-risk-bar {
display: flex;
align-items: center;
gap: 10px;
}
.pred-risk-label {
font-size: 0.6rem;
color: var(--text-muted);
flex: 1;
}
.pred-bar-track {
flex: 2;
height: 4px;
background: rgba(255, 255, 255, 0.08);
border-radius: 2px;
overflow: hidden;
}
.pred-bar-fill {
height: 100%;
background: linear-gradient(90deg, #3B82F6, #EF4444);
border-radius: 2px;
}
.pred-risk-pct {
font-family: var(--font-mono);
font-size: 0.72rem;
font-weight: 700;
color: #EF4444;
flex-shrink: 0;
}
.pred-sources {
display: flex;
align-items: center;
gap: 10px;
padding: 14px 0;
border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pred-sources-label {
font-family: var(--font-mono);
font-size: 0.58rem;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text-muted);
margin-right: 4px;
}  .section-revelation {
background: var(--bg-darker);
border-top: none;
position: relative;
z-index: 2;
padding: 180px 0 20px;
}
.section-revelation::before {
content: '';
position: absolute;
inset: 0;
pointer-events: none;
z-index: 0;
background-image:
linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
background-size: 48px 48px;
background-attachment: fixed;
}
.section-revelation .container {
max-width: 1400px; }
.rev-split-layout {
display: grid;
grid-template-columns: 1.4fr 1.1fr; gap: 80px;
align-items: start; position: relative;
z-index: 1;
}
.rev-col-left {
position: -webkit-sticky;
position: sticky;
top: 35vh; height: fit-content;
padding-bottom: 105px; }
.rev-sticky-title {
font-size: clamp(2.2rem, 4.5vw, 3.8rem);
font-weight: 800;
line-height: 1.1;
letter-spacing: -1.8px;
color: var(--text-white);
margin-bottom: 28px;
}
.rev-sticky-sub {
font-size: 1.15rem;
color: var(--text-gray);
line-height: 1.6;
max-width: 600px;
font-weight: 400;
}
.rev-col-right {
display: flex;
flex-direction: column;
gap: 100px; padding-top: 70px; padding-bottom: 65px; }
.rev-item {
display: flex;
flex-direction: column;
gap: 24px;
}
.rev-item-num {
font-family: var(--font-mono);
font-size: 0.85rem;
font-weight: 700;
color: var(--accent-blue);
text-transform: uppercase;
letter-spacing: 2px;
display: flex;
align-items: center;
gap: 12px;
}
.rev-item-num::after {
content: '';
width: 40px;
height: 1px;
background: rgba(59, 130, 246, 0.3);
}
.rev-item-title {
font-size: 1.9rem;
font-weight: 700;
color: var(--text-white);
letter-spacing: -0.5px;
line-height: 1.2;
}
.rev-item-text {
font-size: 1.05rem;
color: var(--text-gray);
line-height: 1.75;
margin: 0;
}
.rev-item-text strong {
color: #fff;
font-weight: 600;
}
@media (max-width: 1024px) {
.section-revelation {
padding: 100px 0 20px;
}
.rev-split-layout {
grid-template-columns: 1fr;
gap: 40px;
text-align: center;
align-items: center;
justify-items: center;
}
.rev-col-left {
position: relative;
top: 0;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 24px;
}
.rev-sticky-description {
text-align: center !important;
align-items: center;
}
.rev-sticky-title {
font-size: 2.5rem;
}
.gshock-mini-bar {
margin: 0 auto;
text-align: center;
}
.rev-col-right {
gap: 80px;
align-items: center;
text-align: center;
padding-top: 0;
padding-bottom: 0;
}
.rev-item {
align-items: center;
text-align: center;
}
.rev-item-title {
text-align: center;
}
.rev-item-text {
text-align: center !important;
}
.rev-integ > div {
justify-content: center;
}
} .section-solution {
padding: 140px 0 0; background: var(--bg-darker);
border-top: none;
position: relative;
}
.section-solution::before {
content: '';
position: absolute;
inset: 0;
pointer-events: none;
z-index: 0;
background-image:
linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
background-size: 48px 48px;
background-attachment: fixed;
opacity: 1; }
.section-solution .container {
max-width: 1450px; }
.solution-grid {
display: grid;
grid-template-columns: 1fr 1.1fr;
grid-template-rows: auto auto;
gap: 40px 100px;
align-items: stretch;
} .sol-intro {
grid-column: 1;
grid-row: 1;
margin-top: 40px;
}
.sol-eyebrow {
display: inline-flex;
align-items: center;
gap: 10px;
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--pk);
margin-bottom: 24px;
}
.sol-title {
font-size: clamp(2.5rem, 5vw, 4rem);
font-weight: 900;
color: #fff;
letter-spacing: -2px;
line-height: 1;
margin-bottom: 32px;
}
.sol-desc {
font-size: 1.15rem;
color: var(--text-gray);
line-height: 1.7;
max-width: 520px;
text-align: justify;
} .sol-modules {
grid-column: 2;
grid-row: 1;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 24px;
padding: 40px;
position: relative;
} .sol-connections {
grid-column: 1;
grid-row: 2;
align-self: stretch;
position: relative; background: linear-gradient(135deg, rgba(var(--pk-rgb), 0.35) 0%, rgba(var(--pk-rgb), 0.12) 100%);
padding: 6px;
border-radius: 0;
clip-path: polygon(14px 0, calc(100% - 14px) 0,
100% 14px, 100% calc(100% - 14px),
calc(100% - 14px) 100%, 14px 100%,
0 calc(100% - 14px), 0 14px);
filter: drop-shadow(0 8px 20px rgba(var(--pk-rgb), 0.15));
display: flex;
flex-direction: column;
justify-content: center;
} .sol-connections::before {
content: "";
position: absolute;
inset: 6px;
z-index: 0;
background: linear-gradient(160deg, #0d1220 0%, #111827 100%);
clip-path: polygon(10px 0, calc(100% - 10px) 0,
100% 10px, 100% calc(100% - 10px),
calc(100% - 10px) 100%, 10px 100%,
0 calc(100% - 10px), 0 10px);
}
.sol-conn-title {
position: relative;
z-index: 1;
font-size: 0.75rem;
font-weight: 700;
color: rgba(var(--pk-rgb), 0.95);
margin-bottom: 0;
text-transform: uppercase;
letter-spacing: 1.8px;
display: flex;
align-items: center;
justify-content: center;
gap: 14px;
padding: 18px 24px 14px;
border-bottom: 1px solid rgba(var(--pk-rgb), 0.15);
}
.sol-conn-title svg {
color: var(--pk);
opacity: 0.9;
flex-shrink: 0;
}
.sol-conn-list {
position: relative;
z-index: 1;
display: flex;
flex-direction: column;
gap: 12px;
padding: 16px 24px 20px;
}
.sol-conn-item {
display: flex;
gap: 14px;
align-items: flex-start;
padding: 12px 14px;
border-radius: 8px;
background: rgba(var(--pk-rgb), 0.06);
border: 1px solid rgba(var(--pk-rgb), 0.12);
transition: background 0.25s ease, border-color 0.25s ease;
}
.sol-conn-item:hover {
background: rgba(var(--pk-rgb), 0.1);
border-color: rgba(var(--pk-rgb), 0.25);
}
.sol-conn-icon {
width: 32px;
height: 32px;
border-radius: 8px;
background: rgba(var(--pk-rgb), 0.12);
display: flex;
align-items: center;
justify-content: center;
color: var(--pk);
flex-shrink: 0;
}
.sol-conn-text {
font-size: 0.88rem;
color: var(--text-gray);
line-height: 1.55;
}
.sol-conn-text strong {
color: #fff;
font-weight: 600;
} .sol-pricing {
grid-column: 2;
grid-row: 2;
align-self: stretch;
display: flex;
flex-direction: column;
justify-content: center;
}
.sol-pricing-card {
padding: 32px;
background: linear-gradient(145deg, rgba(var(--pk-rgb), 0.1) 0%, transparent 100%);
border: 1px solid rgba(var(--pk-rgb), 0.3);
border-radius: 20px;
display: flex;
justify-content: space-between;
align-items: center;
gap: 32px;
}
.sol-price-info {
display: flex;
flex-direction: column;
gap: 4px;
}
.sol-price-val {
display: flex;
align-items: center;
gap: 12px;
font-size: 2.2rem;
font-weight: 900;
color: #fff;
}
.sol-price-from {
font-size: 0.85rem;
font-weight: 600;
color: var(--text-gray);
text-transform: uppercase;
letter-spacing: 1px;
line-height: 1.2;
text-align: right;
margin-top: 10px;
}
.sol-price-setup {
font-size: 0.85rem;
color: var(--text-muted);
}
.sol-monthly-col {
display: flex;
flex-direction: column;
align-items: flex-end;
text-align: right;
gap: 16px;
}
@media (max-width: 1100px) {
.solution-grid {
grid-template-columns: 1fr !important;
grid-template-rows: auto !important;
gap: 48px !important;
text-align: center;
width: 100% !important;
}
.sol-intro {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100% !important;
max-width: none !important;
text-align: center;
}
.sol-title {
text-align: center;
width: 100%;
}
.sol-desc {
text-align: center !important;
margin-left: auto !important;
margin-right: auto !important;
width: 100%;
max-width: none !important;
}
.sol-modules {
grid-column: 1 !important;
grid-row: auto;
padding: 20px;
width: 100%;
box-sizing: border-box;
}
.sol-connections {
grid-column: 1;
grid-row: auto;
}
.eco-mtabs {
justify-content: center;
flex-wrap: wrap;
} #andrea-stock .eco-mtabs button:nth-child(1) { order: 1; } #andrea-stock .eco-mtabs button:nth-child(3) { order: 2; } #andrea-stock .eco-mtabs button:nth-child(2) { order: 3; flex-basis: 100%; text-align: center; margin-top: -10px; } #andrea-retention .eco-mtabs button:nth-child(1) { order: 1; } #andrea-retention .eco-mtabs button:nth-child(3) { order: 2; } #andrea-retention .eco-mtabs button:nth-child(2) { order: 3; flex-basis: 100%; text-align: center; margin-top: -10px; } #andrea-tresorerie .eco-mtabs button:nth-child(1) { order: 1; flex-basis: 100%; text-align: center; margin-bottom: -10px; } #andrea-tresorerie .eco-mtabs button:nth-child(2) { order: 2; } #andrea-tresorerie .eco-mtabs button:nth-child(3) { order: 3; } .eco-detail-desc {
text-align: center !important;
}
.sol-connections {
text-align: center;
grid-column: 1 !important;
grid-row: auto;
}
.sol-pricing {
grid-column: 1 !important;
grid-row: auto;
width: 100%;
box-sizing: border-box;
}
.sol-pricing-card {
flex-direction: column;
text-align: center;
gap: 16px;
padding: 24px;
width: 100%;
box-sizing: border-box;
}
.sol-setup-col {
display: none !important;
}
.sol-monthly-col {
align-items: center;
text-align: center;
}
.sol-price-val {
flex-direction: column;
gap: 4px;
}
.sol-price-from {
text-align: center;
margin-top: 0;
}
.sol-conn-title {
justify-content: center;
}
.sol-conn-list {
justify-content: center;
}
.sol-conn-item {
flex-direction: column;
align-items: center;
text-align: center;
}
}  .gshock-wrap {
position: relative;
margin-top: 50px;
filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.6));
}
@media (max-width: 991px) {
.gshock-wrap {
margin-left: 0 !important;
margin-right: 0 !important;
width: 100% !important;
max-width: 100vw !important;
box-sizing: border-box;
}
}
.gshock-tab {
position: absolute;
top: -16px;
left: 50%;
transform: translateX(-50%);
z-index: 3;
display: flex;
align-items: center;
justify-content: center;
}
.gshock-tab::before {
display: none;
} .gshock-tab .sol-eyebrow {
position: relative;
z-index: 1;
margin: 0;
color: color-mix(in srgb, var(--pk) 15%, white);
white-space: nowrap;
background: #0d1220;
padding: 4px 16px;
border: 1px solid var(--pk);
border-radius: 20px;
}
.gshock-frame {
position: relative;
padding: 0;
margin-top: 8px;
z-index: 1;
}
.gshock-frame::before {
display: none;
}
.gshock-screen {
position: relative;
z-index: 2;
padding: 44px;
background: linear-gradient(135deg, color-mix(in srgb, var(--pk) 60%, #111827) 0%, color-mix(in srgb, var(--pk) 40%, white) 100%);
clip-path: polygon(22px 0, calc(100% - 22px) 0,
100% 22px, 100% calc(100% - 22px),
calc(100% - 22px) 100%, 22px 100%,
0 calc(100% - 22px), 0 22px);
}
.gshock-screen::before {
content: "";
position: absolute;
inset: 6px;
z-index: -1;
background: #0d1220;
background-image: linear-gradient(135deg, color-mix(in srgb, var(--pk) 15%, transparent) 0%, rgba(0, 0, 0, 0.4) 100%);
clip-path: polygon(18px 0, calc(100% - 18px) 0,
100% 18px, 100% calc(100% - 18px),
calc(100% - 18px) 100%, 18px 100%,
0 calc(100% - 18px), 0 18px);
} .gshock-label {
display: none;
}
.gshock-screen-mini {
clip-path: polygon(10px 0, calc(100% - 10px) 0,
100% 10px, 100% calc(100% - 10px),
calc(100% - 10px) 100%, 10px 100%,
0 calc(100% - 10px), 0 10px);
}
.gshock-screen-mini::before {
clip-path: polygon(8px 0, calc(100% - 8px) 0,
100% 8px, 100% calc(100% - 8px),
calc(100% - 8px) 100%, 8px 100%,
0 calc(100% - 8px), 0 8px);
}
@media (max-width: 1100px) {
.gshock-frame {
padding: 0;
}
.gshock-screen {
padding: 24px;
}
.gshock-label {
display: none;
}
}
.gshock-launch {
--pk: #6B7280;
--pk-rgb: 107, 114, 128;
margin-top: 80px;
max-width: 1000px;
margin-left: auto;
margin-right: auto;
filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.6));
}
.gshock-launch .gshock-frame {
padding: 0;
}
.gshock-launch-inner {
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 40px;
padding: 24px 40px;
}
.gshock-launch-left {
display: flex;
flex-direction: column;
gap: 16px;
}
.gshock-launch-right {
display: flex;
flex-direction: column;
}
@media (max-width: 768px) {
.gshock-launch-inner {
grid-template-columns: 1fr;
padding: 32px 20px;
gap: 32px;
text-align: center;
}
.gshock-launch-left {
align-items: center;
text-align: center;
}
.gshock-launch-sub {
text-align: center !important;
}
.gshock-launch-right {
align-items: center;
}
.gshock-launch-perks li {
flex-direction: column;
align-items: center;
text-align: center;
gap: 8px;
}
}
.gshock-launch-title {
font-family: var(--font-display);
font-size: clamp(1.3rem, 2.5vw, 1.8rem);
font-weight: 800;
letter-spacing: -0.5px;
color: #fff;
line-height: 1.2;
}
.gshock-launch-title .launch-dot {
color: var(--accent-blue);
margin: 0 6px;
}
.gshock-launch-sub {
font-size: 0.9rem;
color: rgba(255, 255, 255, 0.5);
font-weight: 500;
max-width: 480px;
}
.gshock-launch-badge {
display: inline-flex;
align-items: center;
gap: 8px;
margin-top: 8px;
padding: 8px 20px;
border-radius: 8px;
background: rgba(59, 130, 246, 0.1);
border: 1px solid rgba(59, 130, 246, 0.25);
font-size: 0.82rem;
font-weight: 700;
color: #93C5FD;
letter-spacing: 0.5px;
}
.gshock-launch-badge .badge-pulse {
width: 6px;
height: 6px;
border-radius: 50%;
background: var(--accent-blue);
box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
animation: blink 2s ease-in-out infinite;
}
.gshock-launch-perks {
list-style: none;
width: 100%;
max-width: 520px;
margin-top: 12px;
}
.gshock-launch-perks li {
font-size: 0.88rem;
color: var(--text-gray);
display: flex;
align-items: center;
gap: 16px;
padding: 14px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.gshock-launch-perks li:first-child {
border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.gshock-launch-perks li strong {
font-size: 1.15rem;
color: #fff;
font-weight: 800;
letter-spacing: -0.5px;
min-width: 56px;
flex-shrink: 0;
}
.about-section {
background: var(--bg-dark);
border-top: 1px solid rgba(255, 255, 255, 0.08);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.about-section .container {
max-width: 1140px;
}
.about-layout {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
align-items: center;
}
.about-stats {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.stat-card {
background: rgba(59, 130, 246, 0.03);
border: 1px solid rgba(59, 130, 246, 0.18);
border-radius: 16px;
padding: 24px 18px;
position: relative;
overflow: hidden;
transition: border-color 0.3s;
}
.stat-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, var(--accent-blue), transparent);
}
.stat-value {
font-family: var(--font-mono);
font-size: 2.8rem;
font-weight: 700;
color: #fff;
letter-spacing: -1px;
}
.stat-label {
font-size: 0.72rem;
color: var(--text-muted);
margin-top: 6px;
line-height: 1.3;
}
.about-text {
display: flex;
flex-direction: column;
gap: 20px;
transform: translateX(-20px);
}
.about-text h2 {
text-align: left;
}
.about-integ-label {
font-family: var(--font-mono);
font-size: 0.62rem;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--text-muted);
display: block;
margin-bottom: 14px;
}
.about-integ-logos {
display: flex;
align-items: center;
gap: 12px 16px;
flex-wrap: wrap;
}
.integ-item {
display: flex;
align-items: center;
gap: 6px;
opacity: 0.45;
transition: opacity 0.2s;
}
.integ-item:hover {
opacity: 1;
}
.integ-name {
font-size: 0.75rem;
font-weight: 600;
color: var(--text-gray);
white-space: nowrap;
} .section-services {
padding: 100px 0;
position: relative;
z-index: 2;
overflow: hidden;
background: #07090E;
}
.section-services::before {
content: '';
position: absolute;
inset: 0;
pointer-events: none;
z-index: 0;
background-image:
linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
background-size: 48px 48px;
background-attachment: fixed;
-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}
.section-services .container {
position: relative;
z-index: 1;
}
.section-header {
text-align: center;
max-width: 700px;
margin: 0 auto 50px;
}
.section-header .label-upper-sm {
font-size: 13px;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--text-gray);
margin-bottom: 10px;
font-weight: 600;
display: block;
}
.section-header .section-title {
font-size: clamp(2rem, 4vw, 2.5rem);
font-weight: 700;
margin-bottom: 15px;
color: #FFFFFF;
}
.suites-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
align-items: stretch;
}
.suite-card-outer {
position: relative;
border-radius: 16px;
overflow: hidden;
height: 100%;
transition: transform 0.4s ease, box-shadow 0.3s;
}
.suite-card-outer:not(.open):hover {
transform: translateY(-5px);
}
.suite-card-outer:has(.saas-supply):not(.open):hover {
box-shadow: 0 2px 100px rgba(30, 111, 255, 0.15);
}
.suite-card-outer:has(.saas-growth):not(.open):hover {
box-shadow: 0 2px 100px rgba(189, 0, 255, 0.15);
}
.suite-card-outer:has(.saas-cfo):not(.open):hover {
box-shadow: 0 2px 100px rgba(0, 255, 127, 0.15);
}
.suite-card {
position: relative;
border-radius: 16px;
overflow: hidden;
display: flex;
flex-direction: column;
text-align: left;
transition: border-color 0.3s;
height: 100%;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.07);
}
.saas-supply {
--cluster-color: #3B82F6;
--cluster-rgb: 59, 130, 246;
}
.saas-growth {
--cluster-color: #8B5CF6;
--cluster-rgb: 139, 92, 246;
}
.saas-cfo {
--cluster-color: #10B981;
--cluster-rgb: 16, 185, 129;
}
.suite-card-outer:hover .suite-card {
border-color: rgba(255, 255, 255, 0.14);
} .sc-header {
padding: 22px 24px 20px;
background: linear-gradient(135deg, rgba(var(--cluster-rgb), 0.18) 0%, rgba(var(--cluster-rgb), 0.04) 100%);
border-bottom: 1px solid rgba(var(--cluster-rgb), 0.2);
}
.sc-category {
font-size: 0.62rem;
text-transform: uppercase;
letter-spacing: 2px;
color: rgb(var(--cluster-rgb));
font-weight: 700;
display: block;
margin-bottom: 10px;
}
.sc-title {
font-size: 1.45rem;
font-weight: 700;
letter-spacing: -0.5px;
color: #fff;
margin-bottom: 8px;
}
.sc-tagline {
font-size: 0.82rem;
color: rgba(255, 255, 255, 0.55);
line-height: 1.5;
} .sc-body {
padding: 6px 24px 4px;
flex-grow: 1;
display: flex;
flex-direction: column;
}
.sc-feature {
display: flex;
flex-direction: column;
padding: 13px 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.sc-feature:last-child {
border-bottom: none;
}
.sc-feat-title {
font-size: 0.87rem;
font-weight: 700;
color: #fff;
margin-bottom: 6px;
}
.sc-feat-row {
display: flex;
align-items: flex-start;
gap: 0;
}
.sc-feat-left {
flex: 1;
min-width: 0;
padding-right: 14px;
}
.sc-feat-desc {
font-size: 0.78rem;
color: var(--text-gray);
line-height: 1.5;
}
.sc-feat-signals {
display: flex;
flex-direction: column;
gap: 7px;
padding-left: 14px;
border-left: 1px solid rgba(255, 255, 255, 0.08);
flex-shrink: 0;
width: 38%;
overflow: hidden;
}
.sc-feat-signal {
display: flex;
align-items: flex-start;
flex-wrap: nowrap;
gap: 7px;
font-size: 0.70rem;
color: #6B7280;
line-height: 1.35;
}
.sc-feat-signal svg {
color: rgb(var(--cluster-rgb));
flex-shrink: 0;
margin-top: 2px;
} .sc-footer {
padding: 0 24px 20px;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
}
.suite-included-badge {
position: absolute;
top: 14px;
right: 14px;
font-size: 0.58rem;
text-transform: uppercase;
letter-spacing: 0.8px;
color: rgba(255, 255, 255, 0.4);
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 4px 10px;
font-weight: 600;
display: flex;
align-items: center;
gap: 6px;
}
.suite-included-badge strong {
color: rgba(255, 255, 255, 0.7);
font-weight: 700;
}
.suite-badge-dot {
width: 6px;
height: 6px;
border-radius: 50%;
background: rgb(var(--cluster-rgb));
box-shadow: 0 0 6px rgb(var(--cluster-rgb));
flex-shrink: 0;
animation: pulse-dot 2s infinite;
}
.card-engines-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 10px 20px;
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.12);
color: var(--text-gray);
font-size: 0.78rem;
font-weight: 600;
cursor: pointer;
background: transparent;
transition: all .2s;
font-family: var(--font-body);
text-transform: uppercase;
letter-spacing: 1px;
}
.card-engines-btn:hover {
color: #fff;
border-color: rgba(255, 255, 255, 0.3);
background: rgba(255, 255, 255, 0.04);
} .engines-panel {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 16px;
padding: 28px 24px;
display: flex;
flex-direction: column;
transform: translateX(100%);
transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
z-index: 10;
background: #08090d;
border: 1px solid rgba(var(--cluster-rgb), 0.25);
}
.engines-panel::before {
content: '';
position: absolute;
inset: 0;
border-radius: 16px;
background: linear-gradient(160deg, rgba(var(--cluster-rgb), 0.18) 0%, transparent 55%);
pointer-events: none;
z-index: 0;
}
.engines-panel>* {
position: relative;
z-index: 1;
}
.suite-card-outer.open .engines-panel {
transform: translateX(0);
}
.suite-card-outer:has(.saas-supply) .engines-panel {
--cluster-rgb: 59, 130, 246;
}
.suite-card-outer:has(.saas-growth) .engines-panel {
--cluster-rgb: 139, 92, 246;
}
.suite-card-outer:has(.saas-cfo) .engines-panel {
--cluster-rgb: 16, 185, 129;
}
.engines-panel-header {
font-size: 0.62rem;
text-transform: uppercase;
letter-spacing: 2px;
color: rgba(255, 255, 255, 0.35);
margin-bottom: 18px;
padding-bottom: 12px;
border-bottom: 1px solid rgba(255, 255, 255, 0.07);
display: flex;
justify-content: space-between;
align-items: center;
}
.engine-close-btn {
background: transparent;
border: 1px solid rgba(255, 255, 255, 0.12);
color: rgba(255, 255, 255, 0.4);
cursor: pointer;
font-size: 0.72rem;
padding: 4px 10px;
border-radius: 6px;
transition: all .2s;
font-family: var(--font-body);
font-weight: 700;
}
.engine-close-btn:hover {
color: #fff;
border-color: rgba(255, 255, 255, 0.3);
}
.engine-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 8px;
flex: 1;
}
.engine-item {
border-left: 3px solid rgba(var(--cluster-rgb), 0.5);
border-radius: 0 10px 10px 0;
background: rgba(var(--cluster-rgb), 0.04);
padding: 13px 16px;
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
gap: 5px;
transition: background .2s;
}
.engine-item:hover {
background: rgba(var(--cluster-rgb), 0.09);
}
.engine-name {
font-size: 0.87rem;
font-weight: 700;
color: #fff;
display: flex;
align-items: center;
gap: 8px;
}
.engine-name::before {
content: '';
width: 5px;
height: 5px;
border-radius: 50%;
background: rgb(var(--cluster-rgb));
flex-shrink: 0;
}
.engine-desc {
font-size: 0.76rem;
color: var(--text-gray);
line-height: 1.5;
padding-left: 13px;
}
.engine-tags {
display: flex;
flex-wrap: wrap;
gap: 5px;
padding-left: 13px;
margin: 3px 0 2px;
}
.engine-tag {
font-size: 0.64rem;
font-weight: 600;
letter-spacing: 0.3px;
color: rgb(var(--cluster-rgb));
background: rgba(var(--cluster-rgb), 0.1);
border: 1px solid rgba(var(--cluster-rgb), 0.2);
border-radius: 20px;
padding: 2px 9px;
white-space: nowrap;
} .section-fondateur {
background: var(--bg-dark);
padding: 80px 0;
border-top: 1px solid rgba(255, 255, 255, 0.08);
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.contact-split {
display: grid;
grid-template-columns: 1fr 1.2fr;
gap: 60px;
align-items: center;
}
.contact-left {
display: flex;
flex-direction: column;
}
.contact-left h2 {
font-size: clamp(2.8rem, 5vw, 4.2rem);
font-weight: 800;
letter-spacing: -2.5px;
margin: 10px 0 20px;
background: linear-gradient(135deg, #fff 60%, rgba(255, 255, 255, 0.5));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1.05;
}
.contact-left>p {
font-size: 0.95rem;
color: var(--text-muted);
line-height: 1.7;
margin-bottom: 24px;
}
.contact-pills {
display: flex;
flex-direction: column;
gap: 10px;
}
.contact-pill {
display: flex;
align-items: center;
gap: 10px;
font-size: 0.82rem;
font-weight: 600;
color: #93C5FD;
background: rgba(59, 130, 246, 0.06);
border: 1px solid rgba(59, 130, 246, 0.2);
border-radius: 30px;
padding: 10px 18px;
width: fit-content;
}
.contact-pill svg {
color: var(--accent-blue);
flex-shrink: 0;
}
.contact-founder-col {
display: flex;
flex-direction: column;
align-self: center;
}
.contact-founder-eyebrow {
font-family: var(--font-mono);
font-size: 0.65rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2.5px;
color: var(--accent-blue);
display: block;
margin-bottom: 20px;
}
.contact-founder-intro {
font-size: 0.88rem;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 24px;
}
.contact-perks {
list-style: none;
}
.contact-perks li {
font-size: 0.85rem;
color: var(--text-gray);
display: flex;
align-items: center;
gap: 16px;
padding: 14px 0;
border-bottom: 1px solid var(--border-light);
}
.contact-perks li:first-child {
border-top: 1px solid var(--border-light);
}
.contact-perks li strong {
font-size: 1.25rem;
color: #fff;
font-weight: 800;
letter-spacing: -0.5px;
min-width: 56px;
flex-shrink: 0;
} .section-pricing {
padding: 100px 0;
background: linear-gradient(180deg, rgba(59, 130, 246, 0.07) 0%, var(--bg-dark) 220px);
position: relative;
overflow: hidden;
border-top: 1px solid rgba(59, 130, 246, 0.25);
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section-pricing::before {
content: '';
position: absolute;
inset: 0;
pointer-events: none;
z-index: 0;
background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
background-size: 48px 48px;
background-attachment: fixed;
-webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}
.section-pricing .container {
position: relative;
z-index: 1;
}
.pricing-intro {
text-align: center;
margin-bottom: 35px;
}
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 14px 32px;
border-radius: 50px;
font-weight: 700;
font-size: 0.88rem;
text-transform: uppercase;
letter-spacing: 1.5px;
text-decoration: none;
transition: all 0.25s ease;
cursor: pointer;
border: none;
}
.btn-primary {
background: var(--text-white);
color: var(--bg-dark);
}
.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 0 28px rgba(255, 255, 255, 0.25);
}
.btn-outline {
border: 1px solid rgba(255, 255, 255, 0.2);
color: var(--text-white);
background: transparent;
}
.btn-outline:hover {
border-color: rgba(255, 255, 255, 0.5);
background: rgba(255, 255, 255, 0.05);
} .journey-stepper {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 0;
max-width: 1000px;
margin: 0 auto 70px;
position: relative;
}
.journey-stepper::before {
content: '';
position: absolute;
top: 31px;
left: calc(16.66%);
right: calc(16.66%);
height: 1px;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent);
z-index: 0;
}
.journey-step {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 0 20px;
position: relative;
z-index: 1;
}
.journey-node {
width: 64px;
height: 64px;
border-radius: 50%;
background: var(--bg-dark);
border: 1px solid rgba(255, 255, 255, 0.12);
display: flex;
align-items: center;
justify-content: center;
font-size: 1.1rem;
font-weight: 800;
color: var(--text-gray);
margin-bottom: 20px;
flex-shrink: 0;
position: relative;
z-index: 1;
}
.step-monthly .journey-node {
background: var(--bg-dark);
border-color: rgba(59, 130, 246, 0.35);
color: var(--accent-blue);
}
.journey-label {
font-size: 1.1rem;
font-weight: 700;
color: var(--text-white);
margin-bottom: 8px;
}
.journey-desc {
font-size: 0.9rem;
color: var(--text-muted);
line-height: 1.6;
margin-bottom: 16px;
}
.journey-price-badge {
font-size: 1.4rem;
font-weight: 800;
color: var(--text-white);
line-height: 1.1;
}
.journey-price-badge.free {
color: var(--text-white);
}
.journey-time {
font-size: 0.8rem;
font-weight: 700;
color: var(--text-muted);
margin-top: 4px;
opacity: 0.7;
}
.pricing-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
align-items: center;
}
.price-card {
background: rgba(21, 24, 32, 0.85);
border-radius: 24px;
padding: 40px 30px;
text-align: center;
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
border: 1px solid rgba(255, 255, 255, 0.05);
transition: transform .4s, border-color .3s, box-shadow .3s;
}
.price-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--price-color), transparent);
opacity: 0.3;
transition: opacity .4s;
}
.price-card:hover::before {
opacity: 1;
}
.card-lite {
--price-color: #06B6D4;
padding: 24px 22px;
background: rgba(6, 182, 212, 0.03);
border-color: rgba(6, 182, 212, 0.12);
}
.card-lite:hover {
transform: translateY(-6px);
border-color: var(--price-color);
}
.card-lite .price-amount {
font-size: 2rem;
}
.card-supply {
--price-color: var(--accent-blue);
padding: 50px 36px;
background: linear-gradient(160deg, rgba(59, 130, 246, 0.08) 0%, rgba(21, 24, 32, 0.95) 100%);
border-color: rgba(59, 130, 246, 0.25);
box-shadow: 0 0 60px rgba(59, 130, 246, 0.08), 0 20px 40px rgba(0, 0, 0, 0.4);
}
.card-supply:hover {
transform: translateY(-6px);
border-color: var(--price-color);
}
.card-growth {
--price-color: var(--accent-gold);
padding: 50px 36px;
background: linear-gradient(160deg, rgba(212, 168, 75, 0.08) 0%, rgba(21, 24, 32, 0.95) 100%);
border-color: rgba(212, 168, 75, 0.25);
box-shadow: 0 0 60px rgba(212, 168, 75, 0.08), 0 20px 40px rgba(0, 0, 0, 0.4);
}
.card-growth:hover {
transform: translateY(-6px);
border-color: var(--price-color);
}
.price-card.featured {
--price-color: var(--accent-green);
padding: 50px 36px;
background: linear-gradient(160deg, rgba(16, 185, 129, 0.08) 0%, rgba(21, 24, 32, 0.95) 100%);
border-color: rgba(16, 185, 129, 0.25);
box-shadow: 0 0 60px rgba(16, 185, 129, 0.08), 0 20px 40px rgba(0, 0, 0, 0.4);
}
.price-card.featured:hover {
transform: translateY(-6px);
}
.price-badge-limit {
display: inline-block;
font-size: 0.68rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
padding: 3px 10px;
border-radius: 20px;
margin-bottom: 12px;
background: rgba(6, 182, 212, 0.1);
border: 1px solid rgba(6, 182, 212, 0.25);
color: #06B6D4;
}
.multipack-block {
margin-top: 48px;
padding: 32px 40px;
border-radius: 20px;
background: rgba(21, 24, 32, 0.6);
border: 1px solid rgba(255, 255, 255, 0.07);
text-align: center;
}
.multipack-title {
font-size: 0.72rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--text-gray);
font-family: var(--font-mono);
margin-bottom: 24px;
}
.multipack-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
max-width: 600px;
margin: 0 auto;
}
.multipack-option {
padding: 24px 20px;
border-radius: 14px;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.08);
}
.multipack-option.premium {
border-color: rgba(212, 168, 75, 0.2);
background: rgba(212, 168, 75, 0.03);
}
.multipack-price {
font-family: var(--font-mono);
font-size: 2rem;
font-weight: 800;
color: #fff;
display: block;
margin-bottom: 4px;
}
.multipack-label {
font-size: 0.8rem;
color: var(--text-muted);
display: block;
margin-bottom: 14px;
}
.multipack-saving {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 0.72rem;
font-weight: 700;
padding: 3px 10px;
border-radius: 20px;
background: rgba(16, 185, 129, 0.1);
border: 1px solid rgba(16, 185, 129, 0.2);
color: #10B981;
}
.price-ribbon {
position: absolute;
top: 22px;
left: -28px;
width: 108px;
background: #ef4444;
color: #fff;
font-size: 11px;
font-weight: 800;
text-align: center;
padding: 6px 0;
transform: rotate(-45deg);
letter-spacing: 0.08em;
z-index: 2;
box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}
.roi-module-header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 14px;
}
.roi-mode-switch {
display: flex;
border-radius: 20px;
border: 1px solid rgba(255, 255, 255, 0.1);
overflow: hidden;
}
.roi-mode-btn {
padding: 5px 16px;
border: none;
cursor: pointer;
font-family: var(--font-mono);
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
background: transparent;
color: var(--text-muted);
transition: all .2s;
white-space: nowrap;
}
.roi-mode-btn.active {
background: rgba(255, 255, 255, 0.08);
color: #fff;
}
.pricing-combo-hint {
text-align: center;
margin-top: 24px;
font-size: 0.82rem;
color: var(--text-gray);
letter-spacing: 0.01em;
}
.price-step {
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--text-gray);
margin-bottom: 12px;
display: block;
font-family: var(--font-mono);
}
.price-amount {
font-family: var(--font-mono);
font-size: 2.8rem;
font-weight: 800;
color: #fff;
margin-bottom: 4px;
display: block;
}
.price-sub {
font-size: 1rem;
font-weight: 700;
margin-bottom: 24px;
display: block;
}
.price-features {
list-style: none;
text-align: left;
margin-bottom: 28px;
flex: 1;
display: flex;
flex-direction: column;
gap: 10px;
}
.price-features li {
display: flex;
gap: 10px;
align-items: flex-start;
font-size: 0.85rem;
color: var(--text-gray);
}
.price-features li::before {
content: '✓';
color: var(--price-color);
flex-shrink: 0;
font-size: 0.75rem;
font-weight: 700;
margin-top: 2px;
}
.price-features li strong {
color: var(--text-white);
margin-right: 5px;
font-weight: 600;
}
.price-addon {
border: 1px solid rgba(255, 255, 255, 0.08);
border-radius: 8px;
padding: 12px 16px;
margin-bottom: 20px;
text-align: center;
}
.price-addon-title {
font-size: 0.8rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
font-family: var(--font-mono);
}
.section-reassurance {
background: var(--bg-darker);
position: relative;
z-index: 2;
padding: 90px 0 100px 0;
border-top: none;
}
.section-reassurance::before {
content: '';
position: absolute;
inset: 0;
pointer-events: none;
z-index: 0;
background-image:
linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
background-size: 48px 48px;
background-attachment: fixed;
}
.reassurance-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
}
.rc-item {
text-align: center;
padding: 0 40px;
position: relative;
} .rc-item:not(:last-child)::after {
content: '';
position: absolute;
right: 0;
top: 10%;
bottom: 10%;
width: 1px;
background: rgba(0, 0, 0, 0.5);
box-shadow: 1px 0 0 rgba(255, 255, 255, 0.1);
}
.rc-icon-box {
width: 48px;
height: 48px;
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 14px;
background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.15);
color: #9CA3AF; box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
}
.rc-blue .rc-icon-box {
background: rgba(59, 130, 246, 0.08);
border: 1px solid rgba(59, 130, 246, 0.2);
color: var(--accent-blue);
}
.rc-gold .rc-icon-box {
background: rgba(212, 168, 75, 0.08);
border: 1px solid rgba(212, 168, 75, 0.2);
color: var(--accent-gold);
}
.rc-green .rc-icon-box {
background: rgba(16, 185, 129, 0.08);
border: 1px solid rgba(16, 185, 129, 0.2);
color: var(--accent-green);
}
.rc-item h4 {
font-size: 1rem;
font-weight: 800;
color: #fff; margin-bottom: 6px;
}
.rc-metric {
font-size: 0.75rem;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-top: 2px;
margin-bottom: 8px;
color: #9CA3AF; }
.rc-item p {
font-size: 0.78rem;
color: var(--text-muted);
line-height: 1.5;
max-width: 220px;
margin: 0 auto;
} .tag-blue {
--tag-color: #3B82F6;
--tag-color-rgb: 59, 130, 246;
}
.tag-green {
--tag-color: #10B981;
--tag-color-rgb: 16, 185, 129;
}
.tag-purple {
--tag-color: #8B5CF6;
--tag-color-rgb: 139, 92, 246;
}
.tag-neon {
display: inline-flex;
align-items: center;
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1.5px;
padding: 4px 14px;
border-radius: 20px;
margin-bottom: 18px;
border: 1px solid rgba(var(--tag-color-rgb), 0.3);
background: rgba(var(--tag-color-rgb), 0.1);
color: var(--tag-color);
} .section-faq {
padding: 80px 0;
background: var(--bg-dark);
border-top: 1px solid rgba(255, 255, 255, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-wrapper {
max-width: 800px;
margin: 0 auto;
}
.faq-item {
border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-item:first-child {
border-top: 1px solid rgba(255, 255, 255, 0.06);
}
details {
width: 100%;
}
summary {
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
padding: 22px 0;
font-size: 0.95rem;
font-weight: 600;
color: var(--text-white);
cursor: pointer;
gap: 16px;
}
summary::-webkit-details-marker {
display: none;
}
summary::after {
content: '+';
font-size: 1.4rem;
font-weight: 300;
color: var(--text-gray);
flex-shrink: 0;
transition: transform 0.2s;
}
details[open] summary::after {
transform: rotate(45deg);
color: #EF4444;
}
.faq-answer {
padding: 0 0 22px;
font-size: 0.88rem;
color: var(--text-gray);
line-height: 1.75;
} .section-contact {
padding: 72px 0 90px;
background: #000000; position: relative;
overflow: hidden;
}
.section-contact::before {
content: '';
position: absolute;
inset: 0;
pointer-events: none;
z-index: 0;
background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
background-size: 48px 48px;
background-attachment: fixed;
-webkit-mask-image: linear-gradient(to bottom, black 0%, black 88%, transparent 100%);
mask-image: linear-gradient(to bottom, black 0%, black 88%, transparent 100%);
}
.section-contact .container-wide {
position: relative;
z-index: 1;
max-width: 1300px;
}
.contact-right {
position: relative;
z-index: 1;
width: 100%;
}
.a-form-group {
display: flex;
flex-direction: column;
gap: 6px;
margin-bottom: 16px;
}
.a-form-group label {
font-size: 0.78rem;
font-weight: 600;
color: var(--text-muted);
letter-spacing: 0.5px;
}
.a-form-input,
.a-form-select,
.a-form-textarea {
background: rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
border-bottom: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 0;
padding: 12px 16px;
color: var(--text-white);
font-family: var(--font-body);
font-size: 0.9rem;
transition: all 0.2s;
width: 100%;
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.a-form-input:focus,
.a-form-select:focus,
.a-form-textarea:focus {
outline: none;
background: rgba(0, 0, 0, 0.5);
border-bottom: 1px solid var(--accent-blue);
}
.a-form-input::placeholder,
.a-form-textarea::placeholder {
color: #4B5563;
}
.a-form-textarea {
resize: vertical;
min-height: 90px;
}
.a-form-select {
appearance: none;
cursor: pointer;
}
.a-form-select option {
background: #1a1d25;
}
.a-form-2col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 12px;
}
.a-form-submit {
width: 100%;
padding: 15px;
background: linear-gradient(135deg, #4B5563 0%, #1F2937 100%);
color: #fff;
font-weight: 800;
font-size: 0.95rem;
text-transform: uppercase;
letter-spacing: 1px;
border: 1px solid #6B7280;
clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.1), 0 4px 10px rgba(0, 0, 0, 0.4);
transition: all 0.2s;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}
.a-form-submit:hover {
transform: translateY(-2px);
background: linear-gradient(135deg, #6B7280 0%, #374151 100%);
box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.2), 0 6px 15px rgba(0, 0, 0, 0.6);
}
cursor: pointer;
transition: all 0.2s;
margin-top: 6px;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.a-form-submit:hover {
box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
opacity: 0.92;
}
.a-form-notice {
font-size: 0.74rem;
color: #4B5563;
text-align: center;
margin-top: 12px;
line-height: 1.5;
} .footer-v2 {
background: #000;
border-top: 1px solid var(--border-light);
padding: 70px 0 0;
position: relative;
z-index: 2;
}
.footer-v2 .container-wide {
max-width: 1200px;
margin: 0 auto;
padding: 0 40px;
}
.footer-main {
display: grid;
grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
gap: 48px;
padding-bottom: 56px;
}
.footer-brand .logo-container {
display: inline-flex;
align-items: center;
gap: 12px;
margin-bottom: 24px;
}
.logo-icon {
width: 60px;
height: 45px;
flex-shrink: 0;
}
.nn-line {
stroke: #FFFFFF;
stroke-width: 1px;
stroke-linecap: round;
fill: none;
}
.nn-node {
fill: #FFFFFF;
stroke: #FFFFFF;
stroke-width: 1.5px;
}
.logo-sep {
width: 1px;
height: 40px;
background: var(--logo-sep);
flex-shrink: 0;
margin: 0 10px 0 5px;
}
.logo-txt-block {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.logo-brand {
font-size: 18px;
font-weight: 800;
color: var(--text-white);
line-height: 1;
}
.logo-slogan {
font-size: 7px;
font-weight: 700;
color: var(--text-gray);
letter-spacing: 3px;
text-transform: uppercase;
line-height: 1.3;
margin-top: 6px;
}
.footer-contact-list {
display: flex;
flex-direction: column;
gap: 10px;
margin-bottom: 28px;
}
.footer-contact-list li {
display: flex;
align-items: center;
gap: 10px;
font-size: 0.875rem;
color: var(--text-gray);
}
.footer-contact-list svg {
flex-shrink: 0;
opacity: 0.6;
}
.footer-social {
display: flex;
gap: 10px;
}
.footer-social a {
width: 38px;
height: 38px;
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: var(--text-gray);
transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover {
color: var(--text-white);
border-color: rgba(255, 255, 255, 0.45);
}
.footer-col-title {
font-size: 0.8rem;
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--text-white);
margin-bottom: 20px;
}
.footer-col-links {
display: flex;
flex-direction: column;
gap: 12px;
}
.footer-col-links a {
font-size: 0.9rem;
color: var(--text-gray);
transition: color 0.2s;
}
.footer-col-links a:hover {
color: var(--text-white);
}
.footer-bottom {
border-top: 1px solid var(--border-light);
padding: 20px 0;
}
.footer-bottom p {
text-align: center;
color: var(--text-muted);
font-size: 0.82rem;
margin: 0;
}
.phrase-signature {
border-top: 1px solid rgba(255, 255, 255, 0.08);
border-bottom: 1px solid rgba(255, 255, 255, 0.08);
padding: 36px 24px;
text-align: center;
}
.phrase-signature p {
font-size: 1.05rem;
font-weight: 600;
color: rgba(255, 255, 255, 0.55);
letter-spacing: 0.12em;
text-transform: uppercase;
margin: 0;
} @media (max-width: 1200px) {
.suites-grid {
grid-template-columns: repeat(2, 1fr);
}
.suites-grid .suite-card-outer:has(.saas-cfo) {
grid-column: 1 / -1;
width: calc(50% - 15px);
justify-self: center;
}
.pricing-grid {
grid-template-columns: repeat(2, 1fr);
max-width: 800px;
margin: 40px auto 0;
}
.price-card.featured {
grid-column: 1 / -1;
max-width: 50%;
justify-self: center;
}
.reassurance-grid {
grid-template-columns: repeat(2, 1fr);
max-width: 800px;
margin: 0 auto;
gap: 24px;
}
.roi-layout-3col {
gap: 36px;
}
.andrea-hero-inner {
grid-template-columns: 1fr;
}
.andrea-hero-visual {
display: none;
}
}
@media (max-width: 1024px) {
.sidenav {
display: none;
}
.mobile-topbar {
display: flex;
}
.nav-item,
.nav-pill-andrea,
.nav-pill-surm {
width: 100%;
text-align: center;
}
.nav-cta-client {
margin: 4px 0 0;
display: inline-block;
width: 100%;
text-align: center;
}
.nav-sep {
display: none;
}
.about-layout {
grid-template-columns: 1fr;
}
.roi-layout-3col {
grid-template-columns: 1fr;
}
.footer-main {
grid-template-columns: 1fr 1fr;
}
.journey-stepper::before {
display: none;
}
}
@media (max-width: 768px) {
section {
padding: 60px 0;
}
.andrea-hero-stats {
display: none;
}
.klaviyo-sync-row {
display: flex !important;
flex-wrap: wrap;
justify-content: center;
gap: 16px;
}
.klaviyo-sync-pills {
display: flex !important;
flex-wrap: wrap;
justify-content: center;
width: 100%;
}
.klaviyo-logo-wrap {
padding-right: 0 !important;
}
.suites-grid,
.pricing-grid,
.reassurance-grid {
grid-template-columns: 1fr;
}
.rc-item:not(:last-child)::after {
width: 80%;
height: 1px;
right: auto;
left: 10%;
top: auto;
bottom: -16px;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
}
.suites-grid .suite-card-outer:has(.saas-cfo),
.price-card.featured {
width: 100%;
max-width: 100%;
}
.about-stats {
grid-template-columns: 1fr 1fr;
text-align: center;
}
.about-layout {
grid-template-columns: 1fr;
gap: 32px;
text-align: center;
}
.about-text {
align-items: center;
text-align: center;
transform: none;
}
.about-text h2 {
text-align: center;
}
.about-integ-logos {
justify-content: center;
}
.contact-split {
grid-template-columns: 1fr;
gap: 40px;
}
.footer-main {
grid-template-columns: 1fr;
gap: 28px;
}
.journey-stepper {
grid-template-columns: 1fr;
max-width: 300px;
margin-left: auto;
margin-right: auto;
gap: 40px;
}
.journey-stepper::before {
display: none;
}
.cal-ultimate-fix {
height: 850px;
}
.roi-metrics {
grid-template-columns: 1fr;
}
.andrea-hero h1 {
letter-spacing: -1.5px;
}
}
@media (max-width: 600px) {
.container, .container-wide {
padding: 0 16px;
}
.footer-v2 .container-wide {
padding: 0 16px;
}
} @media (max-width: 1024px) {
.section-contact .contact-split {
min-width: 0;
}
.section-contact .contact-left,
.section-contact .contact-right,
.section-contact .contact-founder-col {
min-width: 0;
max-width: 100%;
overflow-wrap: break-word;
word-wrap: break-word;
text-align: center !important;
align-items: center !important;
}
.section-contact .contact-left .hero-monument,
.section-contact .contact-left .hero-monument span,
.section-contact .contact-left p {
align-items: center !important;
align-self: center !important;
text-align: center !important;
margin-left: auto !important;
margin-right: auto !important;
}
.section-contact .contact-left h2 {
font-size: clamp(2rem, 7vw, 2.6rem);
letter-spacing: -1px;
}
.section-contact .contact-pills {
align-items: center;
}
.section-contact .contact-right {
padding: 24px;
}
.section-contact .contact-right input,
.section-contact .contact-right select,
.section-contact .contact-right textarea {
max-width: 100%;
width: 100%;
box-sizing: border-box;
text-align: center;
}
.section-contact .contact-right label,
.section-contact .a-form-group,
.section-contact .a-form-group label {
text-align: center;
}
.section-contact .a-form-2col {
grid-template-columns: 1fr;
justify-items: center;
width: 100%;
}
.section-contact .contact-founder-eyebrow,
.section-contact .contact-founder-intro {
text-align: center;
}
}  .eco-pane {
--pk: var(--accent-blue);
--pk-rgb: 59, 130, 246;
}
.eco-pane[data-pack="retention"] {
--pk: var(--accent-gold);
--pk-rgb: 212, 168, 75;
}
.eco-pane[data-pack="tresorerie"] {
--pk: var(--accent-green);
--pk-rgb: 16, 185, 129;
} .eco-tabs-wrap {
display: flex;
justify-content: center;
margin: 40px 0 28px;
}
.eco-tabs {
display: inline-flex;
gap: 4px;
padding: 5px;
background: rgba(255, 255, 255, 0.03);
border: 1px solid var(--border-light);
border-radius: 13px;
}
.eco-tab {
display: inline-flex;
align-items: center;
padding: 9px 22px;
border-radius: 9px;
background: transparent;
color: var(--text-gray);
font-weight: 600;
font-size: 0.88rem;
cursor: pointer;
transition: all .2s;
}
.eco-tab:hover {
color: #fff;
}
.eco-tab.is-active {
color: #fff;
}
.eco-tab[data-pack="stock"].is-active {
background: rgba(59, 130, 246, 0.16);
}
.eco-tab[data-pack="retention"].is-active {
background: rgba(139, 92, 246, 0.16);
}
.eco-tab[data-pack="tresorerie"].is-active {
background: rgba(16, 185, 129, 0.16);
} .eco-panel {
position: relative;
background: linear-gradient(160deg, #11151f 0%, #0c0f17 100%);
border: 1px solid var(--border-light);
border-radius: 24px;
padding: 48px;
overflow: hidden;
transition: border-color .4s, box-shadow .4s;
}
.eco-panel.glow-stock {
border-color: rgba(59, 130, 246, 0.40);
box-shadow: 0 0 70px rgba(59, 130, 246, 0.14);
}
.eco-panel.glow-retention {
border-color: rgba(139, 92, 246, 0.40);
box-shadow: 0 0 70px rgba(139, 92, 246, 0.14);
}
.eco-panel.glow-tresorerie {
border-color: rgba(16, 185, 129, 0.40);
box-shadow: 0 0 70px rgba(16, 185, 129, 0.14);
}
.eco-pane {
display: none;
}
.eco-pane.is-active {
display: block;
animation: eco-fade .35s ease;
}
@keyframes eco-fade {
from {
opacity: 0;
transform: translateY(8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.eco-pane-grid {
display: grid;
grid-template-columns: 1fr 1fr 1.1fr;
gap: 44px;
align-items: center;
} .eco-eyebrow {
display: inline-flex;
align-items: center;
gap: 9px;
font-size: 0.64rem;
font-weight: 700;
letter-spacing: 2.5px;
text-transform: uppercase;
color: var(--pk);
padding: 6px 13px;
border: 1px solid rgba(var(--pk-rgb), 0.25);
border-radius: 20px;
background: rgba(var(--pk-rgb), 0.07);
margin-bottom: 18px;
}
.eco-eyebrow-dot {
width: 5px;
height: 5px;
border-radius: 50%;
background: currentColor;
box-shadow: 0 0 8px currentColor;
}
.eco-title {
font-size: 1.85rem;
font-weight: 800;
color: #fff;
letter-spacing: -1px;
line-height: 1.1;
margin-bottom: 12px;
}
.eco-desc {
font-size: 0.95rem;
color: rgba(255, 255, 255, 0.55);
line-height: 1.7;
margin: 0;
} .eco-mtabs {
display: flex;
gap: 26px;
border-bottom: 1px solid var(--border-light);
margin-bottom: 22px;
}
.eco-mtab {
position: relative;
padding: 0 0 13px;
background: none;
border: none;
color: var(--text-muted);
font-size: 0.92rem;
font-weight: 600;
cursor: pointer;
transition: color .2s;
white-space: nowrap;
}
.eco-mtab:hover {
color: #fff;
}
.eco-mtab.is-active {
color: #fff;
}
.eco-mtab::after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: -1px;
height: 2px;
background: var(--pk);
border-radius: 2px;
transform: scaleX(0);
transform-origin: center;
transition: transform .2s;
}
.eco-mtab.is-active::after {
transform: scaleX(1);
}
.eco-detail {
display: none;
}
.eco-detail.is-active {
display: block;
animation: eco-fade .25s ease;
}
.eco-detail-desc {
font-size: 0.92rem;
color: var(--text-gray);
line-height: 1.7;
margin: 0 0 16px;
}
.eco-signals {
display: flex;
justify-content: flex-start;
flex-wrap: wrap;
gap: 9px;
}
.eco-signal {
display: inline-flex;
align-items: center;
gap: 7px;
font-size: 0.74rem;
color: var(--pk);
padding: 6px 12px;
border-radius: 7px;
background: rgba(var(--pk-rgb), 0.08);
border: 1px solid rgba(var(--pk-rgb), 0.18);
}
.eco-signal svg {
flex-shrink: 0;
} .eco-illu {
display: flex;
justify-content: center;
align-items: center;
}
.illu-card {
display: none;
width: 100%;
max-width: 360px;
}
.illu-card.is-active {
display: block;
animation: eco-fade .3s ease;
}
.ic-box {
background: rgba(var(--pk-rgb), 0.05);
border: 1px solid rgba(var(--pk-rgb), 0.3);
border-radius: 16px;
padding: 20px;
box-shadow: 0 0 60px rgba(var(--pk-rgb), 0.08);
min-height: 280px;
display: flex;
flex-direction: column;
justify-content: center;
}
.ic-head {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 14px;
}
.ic-dot {
width: 7px;
height: 7px;
border-radius: 50%;
background: var(--pk);
box-shadow: 0 0 8px var(--pk);
animation: eco-pulse 2s infinite;
flex-shrink: 0;
}
@keyframes eco-pulse {
0%,
100% {
opacity: 1
}
50% {
opacity: .4
}
}
.ic-label {
font-family: var(--font-mono);
font-size: 0.62rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--pk);
flex: 1;
}
.ic-time {
font-family: var(--font-mono);
font-size: 0.56rem;
color: var(--text-muted);
}
.ic-sku {
font-family: var(--font-mono);
font-size: 0.68rem;
color: var(--text-gray);
margin-bottom: 14px;
}
.ic-row {
display: flex;
align-items: center;
gap: 16px;
margin-bottom: 14px;
}
.ic-stat {
text-align: center;
}
.ic-stat-val {
font-family: var(--font-mono);
font-size: 1.5rem;
font-weight: 700;
color: #fff;
line-height: 1;
}
.ic-stat-val.ic-danger {
color: #EF4444;
}
.ic-stat-val.ic-small {
font-size: 1rem;
}
.ic-stat-lbl {
font-size: 0.58rem;
color: var(--text-muted);
margin-top: 4px;
}
.ic-arrow {
color: var(--text-muted);
align-self: flex-start;
padding-top: 4px;
}
.ic-reco {
background: rgba(255, 255, 255, 0.04);
border-radius: 9px;
padding: 11px 12px;
margin-top: 4px;
}
.ic-reco-lbl {
font-family: var(--font-mono);
font-size: 0.56rem;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text-muted);
margin-bottom: 4px;
}
.ic-reco-txt {
font-size: 0.84rem;
color: #fff;
line-height: 1.4;
}
.ic-reco-txt strong {
color: var(--pk);
}
.ic-bar-row {
display: flex;
align-items: center;
gap: 9px;
margin-top: 14px;
}
.ic-bar-lbl {
font-size: 0.58rem;
color: var(--text-muted);
white-space: nowrap;
}
.ic-bar {
flex: 1;
height: 5px;
background: rgba(255, 255, 255, 0.08);
border-radius: 3px;
overflow: hidden;
}
.ic-bar-fill {
height: 100%;
background: linear-gradient(90deg, var(--pk), #EF4444);
border-radius: 3px;
}
.ic-bar-pct {
font-family: var(--font-mono);
font-size: 0.7rem;
font-weight: 700;
color: #EF4444;
}
.ic-seg {
display: flex;
flex-direction: column;
gap: 13px;
margin-bottom: 6px;
}
.ic-seg-row {
display: grid;
grid-template-columns: 104px 1fr;
gap: 6px 12px;
align-items: center;
}
.ic-seg-name {
font-size: 0.8rem;
font-weight: 700;
color: #fff;
}
.ic-seg-bar {
height: 7px;
background: rgba(255, 255, 255, 0.08);
border-radius: 4px;
overflow: hidden;
}
.ic-seg-fill {
height: 100%;
border-radius: 4px;
}
.ic-seg-fill--star {
background: var(--pk);
}
.ic-seg-fill--std {
background: #6B7280;
}
.ic-seg-fill--dead {
background: #EF4444;
}
.ic-seg-note {
grid-column: 2;
font-family: var(--font-mono);
font-size: 0.6rem;
color: var(--text-muted);
margin-top: -4px;
}
.ic-cs-pills {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-bottom: 14px;
}
.ic-pill {
font-size: 0.7rem;
color: var(--text-gray);
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.06);
border-radius: 6px;
padding: 4px 9px;
white-space: nowrap;
}
.ic-pill b {
font-family: var(--font-mono);
color: var(--pk);
font-weight: 700;
}
.ic-curve {
margin: 0 0 12px;
}
.ic-flow {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
gap: 8px;
margin: 10px 0 16px;
}
.ic-node {
font-size: 0.76rem;
font-weight: 600;
color: #fff;
background: rgba(var(--pk-rgb), 0.1);
border: 1px solid rgba(var(--pk-rgb), 0.3);
border-radius: 8px;
padding: 7px 13px;
white-space: nowrap;
}
.ic-flow-arrow {
color: var(--pk);
line-height: 1;
display: flex;
}
@media (max-width: 900px) {
.eco-panel {
padding: 28px 20px;
}
.eco-pane-grid {
grid-template-columns: 1fr;
gap: 30px;
}
.ic-box {
padding: 12px;
overflow: hidden;
}
.ic-box > div[style*="display: flex"] {
flex-wrap: wrap;
flex-direction: column;
align-items: stretch !important;
}
.ic-box > div[style*="display: grid"] {
grid-template-columns: 1fr !important;
}
.ic-cs-pills[style*="grid"] {
grid-template-columns: 1fr 1fr !important;
}
.ic-pill {
white-space: normal;
text-align: center;
}
.ic-row {
flex-wrap: wrap;
justify-content: center;
}
}
.rev-sticky-description p,
.rev-item-text {
text-align: justify;
}