:root {
--bg: #eff4ff;
--bg-soft: #f8fbff;
--surface: #ffffff;
--surface-dark: #07111f;
--text: #0f172a;
--muted: #64748b;
--border: #dbe5f4;
--primary: #2563eb;
--primary-strong: #1d4ed8;
--primary-soft: rgba(37, 99, 235, 0.12);
--success: #16a34a;
--danger: #dc2626;
--shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
--shadow-soft: 0 16px 40px rgba(15, 23, 42, 0.06);
--radius-xl: 28px;
--radius-lg: 22px;
--radius-md: 16px;
--radius-sm: 12px;
}
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
min-height: 100%;
font-family: Inter, system-ui, sans-serif;
background:
radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 28%),
linear-gradient(180deg, #f6f9ff 0%, #eef4ff 100%);
color: var(--text);
}
body {
min-height: 100vh;
}
button,
input {
font: inherit;
}
img {
display: block;
max-width: 100%;
}
#app {
min-height: 100vh;
}
.app-shell {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.topbar {
position: sticky;
top: 0;
z-index: 30;
backdrop-filter: blur(18px);
background: rgba(255, 255, 255, 0.82);
border-bottom: 1px solid rgba(219, 229, 244, 0.95);
}
.topbar-inner {
max-width: 560px;
margin: 0 auto;
padding: 20px 20px 16px;
}
.topbar-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: 14px;
}
.brand {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 6px;
text-align: center;
font-size: 15px;
letter-spacing: -0.02em;
line-height: 1;
white-space: nowrap;
}
.brand strong {
font-weight: 900;
color: #0f172a;
}
.brand span {
color: #7c8aa5;
}
.icon-btn {
width: 42px;
height: 42px;
border-radius: 999px;
border: 1px solid var(--border);
background: var(--surface);
color: var(--text);
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.icon-btn:hover {
transform: translateY(-1px);
box-shadow: var(--shadow-soft);
border-color: #bcd0f6;
}
.icon-btn.is-hidden {
visibility: hidden;
}
.progress {
width: 100%;
height: 8px;
border-radius: 999px;
background: #eaf0f8;
overflow: hidden;
}
.progress-bar {
height: 100%;
border-radius: inherit;
background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
transition: width 0.35s ease;
}
.screen {
width: 100%;
max-width: 560px;
margin: 0 auto;
padding: 24px 20px 48px;
flex: 1;
display: flex;
flex-direction: column;
}
.screen.with-sticky-actions {
padding-bottom: 18px;
}
.screen-center {
justify-content: center;
}
.hero-screen {
justify-content: flex-start;
padding-top: 28px;
}
.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(255, 255, 255, 0.9);
border: 1px solid var(--border);
border-radius: 999px;
padding: 10px 14px;
font-size: 14px;
font-weight: 700;
color: #334155;
box-shadow: var(--shadow-soft);
}
.hero-title,
.screen-title {
margin: 0;
font-weight: 900;
letter-spacing: -0.04em;
line-height: 1.05;
}
.hero-title {
font-size: clamp(30px, 6vw, 40px);
margin-top: 18px;
}
.hero-title span {
color: #e11d48;
}
.screen-title {
font-size: clamp(28px, 6vw, 36px);
}
.screen-subtitle {
margin: 10px 0 0;
color: var(--muted);
font-size: 16px;
line-height: 1.6;
}
.screen-header {
margin-bottom: 24px;
}
.hero-center {
text-align: center;
}
.hero-center .eyebrow {
margin: 0 auto;
}
.grid-2 {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
}
.stack {
display: grid;
gap: 12px;
}
.card-btn {
width: 100%;
border: 0;
border-radius: var(--radius-lg);
background: var(--surface);
color: inherit;
text-align: left;
cursor: pointer;
overflow: hidden;
transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card-btn:hover {
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.choice-tile {
border: 2px solid var(--border);
padding: 18px;
display: flex;
align-items: center;
gap: 16px;
min-height: 102px;
}
.choice-tile.is-selected {
border-color: var(--primary);
background: rgba(255, 255, 255, 0.96);
box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}
.choice-media {
font-size: 34px;
flex: 0 0 auto;
}
.choice-copy {
flex: 1;
min-width: 0;
}
.choice-title {
font-size: 18px;
font-weight: 800;
line-height: 1.2;
}
.choice-subtitle {
margin-top: 6px;
font-size: 14px;
color: var(--muted);
line-height: 1.45;
}
.choice-arrow {
font-size: 22px;
color: var(--primary);
}
.role-card {
position: relative;
display: flex;
flex-direction: column;
min-height: 320px;
background: #ffffff;
border-radius: 32px;
border: 3px solid var(--primary);
box-shadow: var(--shadow-soft);
}
.role-card::after {
content: "";
position: absolute;
right: 0;
bottom: 0;
left: 0;
height: 90px;
background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
z-index: 0;
}
.role-top {
position: relative;
z-index: 1;
flex: 1;
min-height: 230px;
background: transparent;
display: flex;
align-items: center;
justify-content: center;
font-size: 68px;
padding: 24px 24px 16px;
}
.role-bottom {
position: relative;
z-index: 1;
display: flex;
align-items: center;
justify-content: space-between;
gap: 10px;
padding: 18px 20px 20px;
background: transparent;
color: #fff;
margin-top: auto;
border-radius: 0;
}
.role-title {
font-size: 22px;
font-weight: 900;
line-height: 1.1;
}
.about-card,
.capture-card,
.results-card,
.white-card,
.dark-card {
border-radius: var(--radius-xl);
background: var(--surface);
box-shadow: var(--shadow);
}
.about-card,
.capture-card,
.white-card {
border: 1px solid rgba(219, 229, 244, 0.95);
}
.about-card {
padding: 24px;
}
.about-stat {
font-size: clamp(44px, 9vw, 62px);
line-height: 0.95;
font-weight: 900;
color: var(--primary);
letter-spacing: -0.06em;
}
.about-lead {
font-size: 18px;
font-weight: 800;
line-height: 1.35;
margin-top: 8px;
}
.about-photo {
position: relative;
margin: 22px 0;
border-radius: var(--radius-lg);
overflow: hidden;
}
.about-photo img {
width: 100%;
height: 300px;
object-fit: cover;
}
.photo-tag {
position: absolute;
right: 14px;
bottom: 18px;
background: rgba(255, 255, 255, 0.95);
border-radius: 999px;
padding: 10px 14px;
font-size: 12px;
font-weight: 900;
box-shadow: var(--shadow-soft);
}
.metrics-line {
font-size: 16px;
color: #334155;
line-height: 1.7;
}
.primary-btn,
.secondary-btn,
.ghost-btn {
border: 0;
cursor: pointer;
border-radius: 16px;
transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.primary-btn {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-strong) 100%);
color: #fff;
padding: 16px 18px;
font-size: 17px;
font-weight: 900;
box-shadow: 0 18px 40px rgba(37, 99, 235, 0.28);
}
.primary-btn:hover {
transform: translateY(-1px);
}
.primary-btn:disabled {
cursor: not-allowed;
background: #cbd5e1;
box-shadow: none;
transform: none;
}
.secondary-btn {
background: #eef4ff;
color: var(--text);
border: 1px solid var(--border);
padding: 14px 18px;
font-size: 15px;
font-weight: 800;
}
.ghost-btn {
background: transparent;
color: var(--muted);
width: 36px;
height: 36px;
border-radius: 999px;
}
.actions {
margin-top: 24px;
width: 100%;
display: flex;
justify-content: center;
}
.actions .primary-btn,
.actions .secondary-btn {
width: min(100%, 420px);
}
.sticky-actions {
position: sticky;
bottom: 0;
z-index: 10;
margin-top: auto;
padding-top: 16px;
padding-bottom: max(10px, env(safe-area-inset-bottom));
display: flex;
justify-content: center;
background: linear-gradient(
180deg,
rgba(238, 244, 255, 0) 0%,
rgba(238, 244, 255, 0.92) 34%,
rgba(238, 244, 255, 1) 100%
);
}
.sticky-actions.surface {
background: linear-gradient(
180deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.92) 34%,
rgba(255, 255, 255, 1) 100%
);
}
.sticky-actions .primary-btn,
.sticky-actions .secondary-btn {
width: min(100%, 420px);
}
.image-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
}
.image-tile {
position: relative;
aspect-ratio: 4 / 3;
border-radius: 22px;
overflow: hidden;
border: 2px solid transparent;
cursor: pointer;
box-shadow: var(--shadow-soft);
background: linear-gradient(180deg, #bfd7ff 0%, #5b84d9 100%);
transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.image-tile:hover {
transform: translateY(-2px);
box-shadow: var(--shadow);
}
.image-photo {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
}
.image-fallback {
position: absolute;
inset: 0;
z-index: 1;
display: none;
align-items: center;
justify-content: center;
font-size: 56px;
text-shadow: 0 10px 24px rgba(15, 23, 42, 0.24);
}
.image-tile::after {
content: "";
position: absolute;
inset: 0;
z-index: 1;
background: linear-gradient(180deg, rgba(7, 17, 31, 0.05) 0%, rgba(7, 17, 31, 0.78) 100%);
}
.image-tile.is-selected {
border-color: var(--primary);
}
.image-tile.is-selected::after {
background: linear-gradient(180deg, rgba(37, 99, 235, 0.12) 0%, rgba(29, 78, 216, 0.6) 100%);
}
.image-label,
.image-check {
position: absolute;
z-index: 3;
}
.image-label {
left: 14px;
right: 14px;
bottom: 14px;
color: #fff;
font-size: 14px;
font-weight: 800;
line-height: 1.2;
}
.image-check {
top: 12px;
right: 12px;
width: 30px;
height: 30px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.24);
backdrop-filter: blur(10px);
color: #fff;
display: flex;
align-items: center;
justify-content: center;
font-size: 16px;
}
.image-tile.is-fallback .image-photo {
display: none;
}
.image-tile.is-fallback .image-fallback {
display: flex;
}
.image-tile.theme-usa {
background:
radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.35), transparent 20%),
linear-gradient(180deg, #8ec5ff 0%, #2f6edc 100%);
}
.image-tile.theme-uk {
background:
radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.22), transparent 18%),
linear-gradient(180deg, #d8d0cb 0%, #5b7aa3 100%);
}
.image-tile.theme-europe {
background:
radial-gradient(circle at 24% 28%, rgba(255, 255, 255, 0.22), transparent 18%),
linear-gradient(180deg, #61a5ff 0%, #1d4ed8 100%);
}
.image-tile.theme-canada {
background:
radial-gradient(circle at 72% 26%, rgba(255, 255, 255, 0.2), transparent 18%),
linear-gradient(180deg, #f7b267 0%, #c2410c 100%);
}
.image-tile.theme-asia {
background:
radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.18), transparent 16%),
linear-gradient(180deg, #c084fc 0%, #2563eb 100%);
}
.image-tile.theme-china {
background:
radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.16), transparent 16%),
linear-gradient(180deg, #fb7185 0%, #7c2d12 100%);
}
.loading-wrap,
.insight-wrap,
.compare-wrap,
.capture-card,
.results-layout {
padding: 26px 22px;
}
.loading-wrap,
.insight-wrap,
.compare-wrap,
.capture-card {
background: rgba(255, 255, 255, 0.92);
border: 1px solid rgba(219, 229, 244, 0.95);
border-radius: var(--radius-xl);
box-shadow: var(--shadow);
}
.loading-wrap,
.insight-wrap {
text-align: center;
}
.loading-wrap {
min-height: 560px;
display: flex;
flex-direction: column;
justify-content: center;
}
.loading-ring {
width: 132px;
height: 132px;
margin: 0 auto 24px;
position: relative;
}
.loading-ring svg {
width: 100%;
height: 100%;
transform: rotate(-90deg);
}
.loading-ring span {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
font-size: 34px;
font-weight: 900;
}
.testimonial {
margin: 28px auto 0;
max-width: 340px;
padding: 18px 18px 16px;
border-radius: 22px;
background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
border: 1px solid var(--border);
box-shadow: var(--shadow-soft);
text-align: left;
}
.stars {
color: #f59e0b;
letter-spacing: 0.15em;
font-size: 12px;
font-weight: 900;
}
.testimonial p {
margin: 12px 0;
font-style: italic;
color: #334155;
line-height: 1.6;
}
.testimonial small {
color: var(--muted);
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.08em;
}
.insight-icon {
width: 92px;
height: 92px;
margin: 0 auto 20px;
border-radius: 999px;
display: flex;
align-items: center;
justify-content: center;
font-size: 44px;
background: #e7f0ff;
border: 4px solid #d7e7ff;
}
.compare-grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 14px;
}
.compare-box {
display: flex;
flex-direction: column;
border-radius: 22px;
padding: 18px;
min-height: 100%;
}
.compare-box.light {
background: #fff;
border: 1px solid var(--border);
}
.compare-box.dark {
background: linear-gradient(180deg, #07111f 0%, #111827 100%);
color: #fff;
}
.compare-box h3 {
margin: 0 0 14px;
font-size: 13px;
text-transform: uppercase;
letter-spacing: 0.12em;
}
.compare-list {
display: grid;
gap: 12px;
margin: 0;
padding: 0;
list-style: none;
flex: 1;
}
.compare-list li {
display: flex;
gap: 10px;
line-height: 1.45;
font-size: 14px;
}
.compare-mark.bad {
color: #94a3b8;
}
.compare-mark.good {
color: #60a5fa;
}
.compare-outcome {
margin-top: 18px;
padding-top: 14px;
border-top: 1px solid rgba(148, 163, 184, 0.26);
font-weight: 900;
}
.compare-outcome.bad {
color: var(--danger);
}
.compare-outcome.good {
color: #60a5fa;
}
.notice {
display: flex;
gap: 12px;
background: #ebf3ff;
border: 1px solid #d9e8ff;
color: #1d4ed8;
padding: 16px;
border-radius: 18px;
margin-bottom: 22px;
line-height: 1.55;
}
.notice-badge {
flex: 0 0 auto;
width: 32px;
height: 32px;
border-radius: 999px;
background: rgba(37, 99, 235, 0.15);
display: flex;
align-items: center;
justify-content: center;
}
.field {
display: grid;
gap: 8px;
}
.field label {
font-size: 13px;
font-weight: 800;
color: #334155;
}
.field input {
width: 100%;
padding: 16px 18px;
border-radius: 16px;
border: 2px solid #dbe5f4;
background: #f8fbff;
color: var(--text);
outline: none;
}
.field input:focus {
background: #fff;
border-color: var(--primary);
}
.secure-note {
margin-top: 18px;
font-size: 12px;
color: var(--muted);
text-align: center;
font-weight: 700;
}
.results-topbar {
position: sticky;
top: 0;
z-index: 40;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(18px);
border-bottom: 1px solid rgba(219, 229, 244, 0.95);
}
.results-topbar-inner {
max-width: 520px;
margin: 0 auto;
padding: 12px 16px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.slot-meta {
min-width: 0;
}
.slot-label {
font-size: 11px;
font-weight: 900;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--muted);
}
.slot-label.is-urgent {
color: var(--success);
}
.slot-time {
font-size: 24px;
font-weight: 900;
letter-spacing: 0.04em;
}
.slot-time.is-urgent {
color: var(--success);
}
.urgent-dot {
display: inline-block;
margin-right: 6px;
animation: pulse 1s infinite;
}
.results-shell {
width: 100%;
max-width: 520px;
margin: 0 auto;
padding: 20px 16px 28px;
}
.results-shell .brand {
font-size: 12px;
}
.dark-card {
background:
radial-gradient(circle at top right, rgba(37, 99, 235, 0.22), transparent 28%),
linear-gradient(180deg, #07111f 0%, #0f172a 100%);
color: #fff;
border-radius: 30px;
padding: 28px 22px;
box-shadow: 0 30px 80px rgba(2, 6, 23, 0.4);
}
.results-caption {
text-transform: uppercase;
letter-spacing: 0.18em;
font-size: 11px;
color: rgba(255, 255, 255, 0.5);
text-align: center;
}
.results-greeting {
margin: 10px 0 24px;
text-align: center;
font-size: 28px;
font-weight: 900;
letter-spacing: -0.04em;
}
.results-greeting span {
color: #60a5fa;
}
.score-ring {
width: 170px;
height: 170px;
margin: 0 auto 24px;
position: relative;
}
.score-ring svg {
width: 100%;
height: 100%;
transform: rotate(-90deg);
}
.score-center {
position: absolute;
inset: 0;
display: block;
}
.score-overline {
display: block;
margin: 0 auto 12px;
line-height: 1;
text-align: center;
font-size: 12px;
font-weight: 800;
letter-spacing: 0.14em;
text-transform: uppercase;
color: rgba(226, 232, 240, 0.72);
white-space: nowrap;
}
.score-main {
position: absolute;
left: 50%;
top: 54%;
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.score-main strong {
font-size: 52px;
line-height: 1;
font-weight: 900;
}
.score-main span {
font-size: 12px;
font-weight: 800;
color: rgba(255, 255, 255, 0.62);
letter-spacing: 0.18em;
}
.score-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 10px;
}
.score-chip {
background: #fff;
border-radius: 18px;
color: var(--text);
padding: 14px 10px;
text-align: center;
}
.score-chip label {
display: block;
font-size: 10px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #64748b;
margin-bottom: 6px;
}
.score-chip strong {
display: block;
font-size: 28px;
font-weight: 900;
line-height: 1;
}
.score-chip span {
font-size: 14px;
font-weight: 800;
}
.strategy-banner {
margin-top: 16px;
background: rgba(37, 99, 235, 0.12);
border: 1px solid rgba(96, 165, 250, 0.35);
border-radius: 18px;
padding: 16px;
text-align: center;
line-height: 1.65;
color: #dbeafe;
}
.strategy-current {
color: #ffffff;
font-size: 20px;
font-weight: 900;
line-height: 1.45;
}
.strategy-divider {
width: 100%;
height: 1px;
margin: 14px 0;
background: linear-gradient(
90deg,
rgba(147, 197, 253, 0) 0%,
rgba(147, 197, 253, 0.34) 20%,
rgba(147, 197, 253, 0.34) 80%,
rgba(147, 197, 253, 0) 100%
);
}
.strategy-message {
color: #93c5fd;
font-weight: 800;
font-size: 16px;
}
.countdown-card {
margin-top: 16px;
margin-bottom: 18px;
border-radius: 22px;
padding: 16px 18px;
background: linear-gradient(135deg, rgba(239, 68, 68, 0.18) 0%, rgba(153, 27, 27, 0.12) 100%);
border: 1px solid rgba(248, 113, 113, 0.22);
display: flex;
align-items: center;
justify-content: space-between;
gap: 14px;
}
.countdown-copy {
min-width: 0;
}
.countdown-copy strong {
display: block;
font-size: 12px;
font-weight: 900;
letter-spacing: 0.14em;
text-transform: uppercase;
color: #fecaca;
margin-bottom: 6px;
}
.countdown-copy span {
color: #fff1f2;
line-height: 1.5;
font-size: 14px;
font-weight: 700;
}
.countdown-badge {
flex: 0 0 auto;
min-width: 120px;
text-align: center;
padding: 14px 16px;
border-radius: 18px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.14);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.countdown-badge strong {
display: block;
font-size: 28px;
line-height: 1;
font-weight: 900;
letter-spacing: 0.08em;
color: #fff;
}
.countdown-badge span {
display: block;
margin-top: 6px;
font-size: 10px;
letter-spacing: 0.16em;
text-transform: uppercase;
font-weight: 800;
color: #fecaca;
}
.white-card {
padding: 22px 20px;
margin-top: 14px;
}
.section-label {
margin: 0 0 14px;
font-size: 12px;
text-transform: uppercase;
letter-spacing: 0.16em;
font-weight: 900;
}
.fact-list {
display: grid;
gap: 12px;
}
.fact-item {
display: flex;
gap: 12px;
padding: 12px 14px;
border-radius: 16px;
border: 1px solid #edf2f7;
background: #f8fbff;
}
.fact-item strong {
display: block;
margin-bottom: 4px;
font-size: 11px;
color: #64748b;
text-transform: uppercase;
letter-spacing: 0.12em;
}
.fact-item span {
font-size: 15px;
font-weight: 800;
line-height: 1.4;
}
.metric {
margin-bottom: 18px;
}
.metric-head {
display: flex;
justify-content: space-between;
gap: 10px;
margin-bottom: 8px;
align-items: flex-start;
}
.metric-head strong {
font-size: 14px;
line-height: 1.35;
}
.metric-values {
white-space: nowrap;
font-size: 14px;
font-weight: 900;
}
.metric-values .target {
color: var(--primary);
}
.metric-track {
height: 9px;
border-radius: 999px;
background: #edf2f7;
overflow: hidden;
}
.metric-fill {
height: 100%;
border-radius: inherit;
background: linear-gradient(90deg, #2563eb 0%, #3b82f6 100%);
}
.metric-boost {
margin-top: 6px;
color: var(--success);
font-size: 12px;
font-weight: 800;
}
.metric-locked .metric-fill {
width: 50%;
background:
repeating-linear-gradient(
90deg,
#dbe5f4 0,
#dbe5f4 12px,
#eef4ff 12px,
#eef4ff 24px
);
}
.blur-block {
position: relative;
}
.blur-stack {
filter: blur(2.5px);
opacity: 0.52;
pointer-events: none;
user-select: none;
}
.blur-overlay-light,
.blur-overlay-dark {
position: absolute;
inset: 0;
pointer-events: none;
}
.blur-overlay-light {
background: linear-gradient(
180deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.94) 72%,
rgba(255, 255, 255, 1) 100%
);
}
.blur-overlay-dark {
background: linear-gradient(
180deg,
rgba(7, 17, 31, 0) 0%,
rgba(7, 17, 31, 0.86) 70%,
rgba(7, 17, 31, 1) 100%
);
}
.blur-badge {
position: absolute;
left: 50%;
bottom: 20px;
transform: translateX(-50%);
display: inline-flex;
align-items: center;
gap: 10px;
white-space: nowrap;
color: #64748b;
font-size: 16px;
font-weight: 900;
}
.blur-badge.dark {
color: #cbd5e1;
}
.timeline-card {
margin-top: 14px;
background:
radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.22), transparent 30%),
linear-gradient(180deg, #07111f 0%, #111827 100%);
color: #fff;
border-radius: 30px;
padding: 24px 22px;
box-shadow: 0 26px 70px rgba(2, 6, 23, 0.34);
}
.timeline-blur .blur-stack {
filter: blur(3px);
opacity: 0.44;
}
.timeline {
display: grid;
gap: 16px;
margin: 20px 0 26px;
}
.timeline-item {
display: grid;
grid-template-columns: 32px 1fr;
gap: 14px;
align-items: start;
}
.timeline-num {
width: 32px;
height: 32px;
border-radius: 999px;
border: 2px solid #60a5fa;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
color: #07111f;
font-weight: 900;
}
.timeline-copy strong {
display: block;
margin-bottom: 4px;
font-size: 16px;
font-weight: 800;
}
.timeline-copy span {
color: #94a3b8;
line-height: 1.6;
}
.cta-lock {
width: 54px;
height: 54px;
margin: 0 auto 16px;
border-radius: 999px;
display: flex;
align-items: center;
justify-content: center;
background: #fff;
color: var(--primary);
font-size: 24px;
box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.16);
}
.cta-subtext {
color: #94a3b8;
text-align: center;
line-height: 1.65;
margin: 3px 0 20px;
}
.price-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 8px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.18);
margin-left: 8px;
font-size: 12px;
}
.price-badge s {
color: rgba(255, 255, 255, 0.6);
}
.results-cta {
position: relative;
overflow: hidden;
background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
color: #fff;
border: 1px solid rgba(255, 255, 255, 0.12);
box-shadow:
0 18px 44px rgba(220, 38, 38, 0.34),
inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.results-cta:hover {
transform: translateY(-1px);
box-shadow:
0 22px 52px rgba(220, 38, 38, 0.42),
inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.results-cta::before {
content: "";
position: absolute;
top: -40%;
left: -25%;
width: 44%;
height: 180%;
transform: rotate(18deg);
background: linear-gradient(
90deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.32) 50%,
rgba(255, 255, 255, 0) 100%
);
animation: ctaSweep 2.8s linear infinite;
}
.results-cta::after {
content: "✦";
position: absolute;
top: 10px;
right: 14px;
font-size: 12px;
color: rgba(255, 255, 255, 0.92);
text-shadow:
0 0 8px rgba(255, 255, 255, 0.8),
18px 12px 0 rgba(255, 255, 255, 0.4),
-150px 24px 0 rgba(255, 255, 255, 0.28);
animation: sparklePulse 1.8s ease-in-out infinite;
}
.results-cta-label,
.results-cta-badge {
position: relative;
z-index: 1;
}
.results-cta-label {
font-weight: 900;
}
.results-cta-badge {
display: inline-flex;
align-items: center;
gap: 6px;
margin-left: 8px;
padding: 5px 9px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.14);
font-size: 11px;
text-transform: uppercase;
letter-spacing: 0.08em;
font-weight: 900;
}
.results-cta-badge s {
color: rgba(255, 255, 255, 0.7);
}
.results-cta-top {
padding: 12px 14px;
font-size: 13px;
font-weight: 900;
letter-spacing: 0.02em;
white-space: nowrap;
}
.results-cta-main {
width: 100%;
padding: 18px 20px;
font-size: 18px;
font-weight: 900;
border-radius: 18px;
}
.results-cta-gold {
background: linear-gradient(135deg, #f8d56b 0%, #eab308 48%, #b45309 100%);
color: #1f2937;
border: 1px solid rgba(255, 255, 255, 0.24);
box-shadow:
0 18px 44px rgba(234, 179, 8, 0.28),
inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.results-cta-gold:hover {
box-shadow:
0 22px 52px rgba(234, 179, 8, 0.34),
inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.results-cta-gold::before {
background: linear-gradient(
90deg,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 0.42) 50%,
rgba(255, 255, 255, 0) 100%
);
}
.results-cta-gold::after {
color: rgba(255, 250, 230, 0.96);
text-shadow:
0 0 8px rgba(255, 250, 230, 0.9),
18px 12px 0 rgba(255, 250, 230, 0.45),
-150px 24px 0 rgba(255, 250, 230, 0.3);
}
.results-cta-gold .results-cta-label {
color: #1f2937;
}
.results-cta-gold .results-cta-badge {
background: rgba(255, 255, 255, 0.22);
color: #4b2e05;
}
.results-cta-gold .results-cta-badge s {
color: rgba(75, 46, 5, 0.55);
}
.expert {
display: grid;
grid-template-columns: 64px 1fr;
gap: 16px;
align-items: center;
}
.expert img {
width: 64px;
height: 64px;
border-radius: 999px;
object-fit: cover;
}
.expert h4 {
margin: 0 0 4px;
font-size: 18px;
}
.expert small {
color: var(--muted);
font-weight: 800;
text-transform: uppercase;
letter-spacing: 0.08em;
}
.reviews {
display: grid;
gap: 10px;
}
.review {
display: flex;
gap: 10px;
border: 1px solid #edf2f7;
background: #f8fbff;
border-radius: 14px;
padding: 10px 12px;
align-items: center;
}
.ticker {
margin-top: 14px;
overflow: hidden;
white-space: nowrap;
padding: 6px 0 20px;
}
.ticker-track {
display: inline-block;
min-width: 100%;
animation: ticker 26s linear infinite;
color: #475569;
font-size: 12px;
font-weight: 800;
}
.modal-backdrop {
position: fixed;
inset: 0;
z-index: 80;
background: rgba(2, 6, 23, 0.72);
display: flex;
align-items: center;
justify-content: center;
padding: 18px;
backdrop-filter: blur(10px);
}
.modal {
width: 100%;
max-width: 420px;
background: #fff;
border-radius: 28px;
padding: 26px;
box-shadow: 0 30px 80px rgba(2, 6, 23, 0.32);
}
.modal h2 {
margin: 0 0 8px;
font-size: 24px;
font-weight: 900;
}
.modal p {
margin: 0 0 18px;
color: var(--muted);
line-height: 1.6;
}
.modal-success {
text-align: center;
}
.modal-success .party {
font-size: 58px;
margin-bottom: 14px;
}
.modal .field + .field {
margin-top: 12px;
}
.muted-link {
color: var(--muted);
font-size: 12px;
text-align: center;
margin-top: 12px;
font-weight: 700;
}
.fade-in {
animation: fadeIn 0.28s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(8px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes ticker {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
@keyframes pulse {
0%,
100% {
opacity: 1;
}
50% {
opacity: 0.3;
}
}
@keyframes ctaSweep {
0% {
transform: translateX(-180%) rotate(18deg);
}
100% {
transform: translateX(520%) rotate(18deg);
}
}
@keyframes sparklePulse {
0%,
100% {
opacity: 0.65;
transform: scale(0.96);
}
50% {
opacity: 1;
transform: scale(1.08);
}
}
@media (max-width: 640px) {
.screen,
.results-shell {
padding-left: 16px;
padding-right: 16px;
}
.compare-grid,
.score-grid {
grid-template-columns: 1fr;
}
.role-top {
min-height: 210px;
}
.role-card {
min-height: 300px;
}
.about-photo img {
height: 240px;
}
.score-ring {
width: 156px;
height: 156px;
}
.results-topbar-inner {
gap: 8px;
}
.secondary-btn {
padding-left: 14px;
padding-right: 14px;
font-size: 14px;
}
.countdown-card {
flex-direction: column;
align-items: stretch;
}
.countdown-badge {
min-width: 0;
}
.results-cta-top {
font-size: 12px;
padding: 11px 12px;
}
.results-cta-main {
font-size: 17px;
}
.results-cta-badge {
display: inline-flex;
margin-top: 8px;
margin-left: 0;
}
}