*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--bg: #050506;
--bg-s: #0a0a0c;
--bg-card: rgba(255,255,255,0.025);
--bg-card-hover: rgba(255,255,255,0.045);
--bg-glass: rgba(12,12,15,0.7);
--text: #edeef1;
--text-2: #8b8fa2;
--text-3: #52556a;
--gold: #d4a24c;
--gold-l: #f0c75e;
--gold-d: #a07828;
--cyan: #3ecfff;
--green: #34d399;
--red: #f87171;
--violet: #a78bfa;
--border: rgba(255,255,255,0.06);
--border-l: rgba(255,255,255,0.1);
--r-sm: 8px;
--r-md: 12px;
--r-lg: 20px;
--r-xl: 28px;
--font-d: 'Syne', system-ui, sans-serif;
--font-b: 'Outfit', system-ui, sans-serif;
--font-m: 'JetBrains Mono', ui-monospace, monospace;
--ease: cubic-bezier(0.16, 1, 0.3, 1);
}
html { scroll-behavior: smooth; }
body {
font-family: var(--font-b);
color: var(--text);
background: var(--bg);
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
code { font-family: var(--font-m); }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wrap--sm { max-width: 960px; }
.wrap--lg { max-width: 1400px; }
[data-reveal] {
opacity: 0;
transform: translateY(32px);
transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].in {
opacity: 1;
transform: none;
}
.gt {
background: linear-gradient(135deg, var(--gold-l) 0%, var(--gold) 40%, var(--cyan) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.gt--warm {
background: linear-gradient(135deg, #fde68a 0%, var(--gold) 50%, #f97316 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.glass {
position: relative;
background: var(--bg-card);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border-radius: var(--r-lg);
border: 1px solid var(--border);
transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.glass:hover {
background: var(--bg-card-hover);
border-color: var(--border-l);
transform: translateY(-4px);
box-shadow: 0 24px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}
.glass--glow { overflow: hidden; }
.glass--glow::after {
content: '';
position: absolute;
top: -1px; left: -1px; right: -1px; bottom: -1px;
border-radius: var(--r-lg);
background: linear-gradient(135deg, rgba(212,162,76,0.25), transparent 50%, rgba(62,207,255,0.15));
opacity: 0;
transition: opacity 0.4s;
z-index: -1;
}
.glass--glow:hover::after { opacity: 1; }
.noise {
position: fixed; inset: 0;
pointer-events: none;
z-index: 9999;
opacity: 0.018;
background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
background-size: 200px;
}
.orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb {
position: absolute;
border-radius: 50%;
filter: blur(120px);
will-change: transform;
}
.orb--gold {
width: 600px; height: 600px;
background: radial-gradient(circle, rgba(212,162,76,0.2), transparent 70%);
top: -20%; left: -5%;
animation: orb1 20s ease-in-out infinite;
}
.orb--cyan {
width: 500px; height: 500px;
background: radial-gradient(circle, rgba(62,207,255,0.1), transparent 70%);
bottom: -15%; right: -5%;
animation: orb2 25s ease-in-out infinite;
}
.orb--violet {
width: 350px; height: 350px;
background: radial-gradient(circle, rgba(167,139,250,0.08), transparent 70%);
top: 40%; right: 20%;
animation: orb3 18s ease-in-out infinite;
}
@keyframes orb1 {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(80px, 40px) scale(1.1); }
66% { transform: translate(-40px, 80px) scale(0.95); }
}
@keyframes orb2 {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(-60px, -30px) scale(1.05); }
66% { transform: translate(50px, -60px) scale(0.9); }
}
@keyframes orb3 {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(-40px, 30px); }
}
.nav {
position: fixed; top: 0; left: 0; right: 0;
z-index: 100;
padding: 0 32px;
transition: all 0.4s;
}
.nav::before {
content: '';
position: absolute; inset: 0;
background: rgba(5,5,6,0.6);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border-bottom: 1px solid transparent;
transition: border-color 0.4s, background 0.4s;
}
.nav.scrolled::before {
background: rgba(5,5,6,0.9);
border-bottom-color: var(--border);
}
.nav__in {
position: relative;
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
height: 72px;
}
.nav__logo {
display: flex; align-items: center; gap: 10px;
font-family: var(--font-d);
font-weight: 700;
font-size: 1.15rem;
color: var(--text);
z-index: 2;
}
.nav__logo-mark {
width: 30px; height: 30px;
background: var(--gold);
border-radius: 8px;
display: flex; align-items: center; justify-content: center;
font-family: var(--font-d);
font-weight: 900;
font-size: 0.7rem;
color: #050506;
letter-spacing: -0.03em;
}
.nav__links {
display: flex; align-items: center; gap: 36px;
list-style: none;
margin-left: auto;
margin-right: 24px;
}
.nav__links a {
font-size: 0.85rem;
font-weight: 500;
color: var(--text-2);
transition: color 0.2s;
position: relative;
}
.nav__links a:hover { color: var(--text); }
.nav__links a.active { color: var(--gold); }
.nav__cta {
display: inline-flex; align-items: center; gap: 8px;
padding: 8px 18px;
background: var(--gold);
color: #050506;
font-weight: 600;
font-size: 0.85rem;
border-radius: 8px;
transition: all 0.25s var(--ease);
}
.nav__cta:hover {
background: var(--gold-l);
transform: translateY(-1px);
box-shadow: 0 8px 20px rgba(212,162,76,0.3);
}
.nav__gh {
display: inline-flex; align-items: center; gap: 6px;
padding: 8px 14px;
color: var(--text-2);
border: 1px solid var(--border);
border-radius: 8px;
font-size: 0.85rem;
font-weight: 500;
margin-right: 10px;
transition: all 0.2s;
}
.nav__gh:hover { color: var(--text); border-color: var(--border-l); }
.nav__ham {
display: none;
background: none; border: none;
color: var(--text); cursor: pointer;
padding: 8px; z-index: 2;
margin-left: auto;
}
.nav__mobile-only { display: none; }
.nav__mobile-cta {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 20px;
background: var(--gold);
color: #050506 !important;
font-weight: 600;
font-size: 0.9rem;
border-radius: var(--r-md);
margin-top: 8px;
transition: background 0.2s;
-webkit-text-fill-color: #050506;
}
.nav__mobile-cta:hover { background: var(--gold-l); }
.hero {
position: relative;
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
padding: 140px 0 100px;
}
.hero__layout {
display: grid;
grid-template-columns: 1.1fr 1fr;
gap: 80px;
align-items: center;
}
.hero__pill {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 16px 6px 8px;
background: rgba(212,162,76,0.08);
border: 1px solid rgba(212,162,76,0.15);
border-radius: 100px;
font-size: 0.8rem;
font-weight: 600;
color: var(--gold);
margin-bottom: 28px;
width: fit-content;
}
.hero__pill-dot {
width: 8px; height: 8px;
border-radius: 50%;
background: var(--green);
animation: dot-pulse 2s ease-in-out infinite;
}
@keyframes dot-pulse {
0%, 100% { opacity: 1; transform: scale(1); }
50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__h1 {
font-family: var(--font-d);
font-weight: 800;
font-size: clamp(3.2rem, 5.5vw, 4.8rem);
line-height: 1.05;
letter-spacing: -0.04em;
margin-bottom: 24px;
}
.hero__sub {
font-size: 1.2rem;
color: var(--text-2);
line-height: 1.7;
max-width: 480px;
font-weight: 300;
margin-bottom: 40px;
}
.hero__sub strong {
color: var(--text);
font-weight: 500;
}
.hero__actions {
display: flex;
gap: 14px;
flex-wrap: wrap;
}
.btn {
display: inline-flex; align-items: center; gap: 8px;
padding: 12px 24px;
border-radius: var(--r-md);
font-weight: 600;
font-size: 0.9rem;
cursor: pointer;
border: none;
transition: all 0.3s var(--ease);
white-space: nowrap;
}
.btn--gold {
background: var(--gold);
color: #050506;
box-shadow: 0 0 0 0 rgba(212,162,76,0);
}
.btn--gold:hover {
background: var(--gold-l);
transform: translateY(-2px);
box-shadow: 0 12px 32px rgba(212,162,76,0.3);
}
.btn--outline {
background: transparent;
color: var(--text-2);
border: 1px solid var(--border);
}
.btn--outline:hover {
color: var(--text);
border-color: var(--border-l);
transform: translateY(-2px);
}
.btn--lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--r-lg); }
.hero__visual {
position: relative;
perspective: 1000px;
}
.term {
position: relative;
width: 100%;
background: #0a0b0e;
border: 1px solid rgba(255,255,255,0.08);
border-radius: var(--r-lg);
overflow: hidden;
transform: rotateY(-2deg) rotateX(1deg);
transition: transform 0.6s var(--ease);
box-shadow:
0 0 0 1px rgba(255,255,255,0.03),
0 4px 8px rgba(0,0,0,0.2),
0 12px 24px rgba(0,0,0,0.3),
0 32px 64px rgba(0,0,0,0.4),
inset 0 1px 0 rgba(255,255,255,0.04);
}
.term:hover { transform: rotateY(0) rotateX(0); }
.term__bar {
display: flex; align-items: center; gap: 8px;
padding: 14px 18px;
background: rgba(255,255,255,0.03);
border-bottom: 1px solid rgba(255,255,255,0.05);
}
.term__dots { display: flex; gap: 7px; }
.term__dot { width: 11px; height: 11px; border-radius: 50%; }
.term__dot--r { background: #ff5f57; }
.term__dot--y { background: #febc2e; }
.term__dot--g { background: #28c840; }
.term__title {
margin-left: auto;
font-family: var(--font-m);
font-size: 0.72rem;
color: var(--text-3);
}
.term__body {
padding: 22px 22px 26px;
font-family: var(--font-m);
font-size: 0.82rem;
line-height: 1.85;
min-height: 300px;
}
.t-prompt { color: var(--gold); }
.t-cmd { color: var(--text); }
.t-out { color: var(--text-2); }
.t-ok { color: var(--green); }
.t-info { color: var(--cyan); }
.t-dim { color: var(--text-3); }
.t-cursor {
display: inline-block;
width: 9px; height: 18px;
background: var(--gold);
vertical-align: text-bottom;
animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero__term-glow {
position: absolute;
width: 70%; height: 70%;
top: 15%; left: 15%;
border-radius: 50%;
background: radial-gradient(circle, rgba(212,162,76,0.12) 0%, transparent 70%);
filter: blur(60px);
animation: term-glow 4s ease-in-out infinite;
z-index: -1;
}
@keyframes term-glow {
0%,100% { opacity: 0.6; transform: scale(1); }
50% { opacity: 1; transform: scale(1.1); }
}
.marquee {
padding: 40px 0;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
overflow: hidden;
background: rgba(255,255,255,0.01);
}
.marquee__track {
display: flex;
animation: marquee 40s linear infinite;
width: max-content;
}
.marquee__item {
flex-shrink: 0;
display: flex;
align-items: center;
gap: 10px;
padding: 0 40px;
font-family: var(--font-m);
font-size: 0.8rem;
font-weight: 500;
color: var(--text-3);
white-space: nowrap;
}
.marquee__item .dot {
width: 4px; height: 4px;
border-radius: 50%;
background: var(--gold-d);
}
@keyframes marquee {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}
.problem {
padding: 140px 0;
position: relative;
}
.problem__head {
text-align: center;
margin-bottom: 72px;
}
.label {
font-family: var(--font-m);
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.18em;
color: var(--gold);
font-weight: 500;
margin-bottom: 16px;
}
.h2 {
font-family: var(--font-d);
font-weight: 700;
font-size: clamp(2rem, 3.5vw, 3rem);
line-height: 1.1;
letter-spacing: -0.03em;
}
.subtitle {
font-size: 1.1rem;
color: var(--text-2);
margin-top: 16px;
font-weight: 300;
max-width: 560px;
}
.subtitle--center { margin-left: auto; margin-right: auto; }
.problem__stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.stat-card {
padding: 48px 36px;
text-align: center;
position: relative;
}
.stat-card__num {
font-family: var(--font-d);
font-weight: 800;
font-size: 3.5rem;
letter-spacing: -0.03em;
line-height: 1;
margin-bottom: 12px;
}
.stat-card__num--danger { color: var(--red); }
.stat-card__num--warn { color: #fb923c; }
.stat-card__text {
font-size: 0.92rem;
color: var(--text-2);
line-height: 1.6;
}
.stat-card__src {
display: block;
font-size: 0.72rem;
color: var(--text-3);
margin-top: 10px;
font-style: italic;
}
.transform {
padding: 140px 0;
background: var(--bg-s);
position: relative;
overflow: hidden;
}
.transform__head {
margin-bottom: 64px;
}
.transform__grid {
display: grid;
grid-template-columns: 1fr 60px 1fr;
gap: 0;
align-items: stretch;
}
.code-panel {
border-radius: var(--r-lg);
overflow: hidden;
border: 1px solid var(--border);
background: #08090b;
}
.code-panel__top {
display: flex;
align-items: center;
justify-content: space-between;
padding: 14px 20px;
background: rgba(255,255,255,0.02);
border-bottom: 1px solid var(--border);
}
.code-panel__name {
font-family: var(--font-m);
font-size: 0.78rem;
color: var(--text-2);
}
.code-panel__tag {
font-size: 0.68rem;
font-weight: 700;
padding: 3px 10px;
border-radius: 6px;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.code-panel__tag--danger {
background: rgba(248,113,113,0.1);
color: var(--red);
border: 1px solid rgba(248,113,113,0.15);
}
.code-panel__tag--safe {
background: rgba(52,211,153,0.1);
color: var(--green);
border: 1px solid rgba(52,211,153,0.15);
}
.code-panel__body {
padding: 24px;
font-family: var(--font-m);
font-size: 0.82rem;
line-height: 2;
}
.code-panel__body .ck { color: var(--cyan); }
.code-panel__body .cv { color: var(--text-2); }
.code-panel__body .ce { color: var(--green); }
.code-panel__body .ceq { color: var(--text-3); }
.transform__arrow {
display: flex;
align-items: center;
justify-content: center;
color: var(--gold);
}
.transform__arrow svg {
filter: drop-shadow(0 0 8px rgba(212,162,76,0.3));
}
.features {
padding: 140px 0;
position: relative;
}
.features__head {
margin-bottom: 64px;
}
.bento {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-auto-rows: minmax(180px, auto);
gap: 16px;
}
.bento__item { padding: 36px; position: relative; z-index: 1; }
.bento__item--tall { grid-row: span 2; }
.bento__item--wide { grid-column: span 2; }
.bento__icon {
width: 48px; height: 48px;
border-radius: 12px;
background: rgba(212,162,76,0.07);
border: 1px solid rgba(212,162,76,0.1);
display: flex; align-items: center; justify-content: center;
color: var(--gold);
margin-bottom: 24px;
transition: background 0.3s, border-color 0.3s;
}
.glass:hover .bento__icon {
background: rgba(212,162,76,0.12);
border-color: rgba(212,162,76,0.2);
}
.bento__title {
font-family: var(--font-d);
font-weight: 700;
font-size: 1.15rem;
margin-bottom: 10px;
}
.bento__desc {
font-size: 0.88rem;
color: var(--text-2);
line-height: 1.65;
}
.bento__code {
margin-top: 20px;
background: rgba(0,0,0,0.3);
border: 1px solid var(--border);
border-radius: var(--r-md);
padding: 16px;
font-family: var(--font-m);
font-size: 0.78rem;
line-height: 1.8;
color: var(--text-2);
overflow: hidden;
}
.how {
padding: 140px 0;
background: var(--bg-s);
position: relative;
}
.how__grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin-top: 72px;
position: relative;
}
.how__grid::before {
content: '';
position: absolute;
top: 23px;
left: 60px;
right: 60px;
height: 2px;
background: linear-gradient(90deg, var(--gold-d), var(--gold), var(--cyan), var(--gold-d));
opacity: 0.15;
border-radius: 1px;
z-index: 1;
}
.how-step {
text-align: center;
padding: 0 8px;
position: relative;
}
.how-step__num {
display: inline-flex;
align-items: center;
justify-content: center;
width: 48px; height: 48px;
border-radius: 50%;
font-family: var(--font-d);
font-weight: 800;
font-size: 1rem;
margin-bottom: 20px;
position: relative;
z-index: 2;
background: var(--bg-s);
border: 2px solid var(--gold-d);
color: var(--gold);
transition: all 0.3s;
}
.how-step:hover .how-step__num {
background: var(--gold);
color: #050506;
box-shadow: 0 0 24px rgba(212,162,76,0.3);
}
.how-step__cmd {
display: block;
font-family: var(--font-m);
font-size: 0.72rem;
color: var(--cyan);
background: rgba(62,207,255,0.06);
border: 1px solid rgba(62,207,255,0.08);
padding: 5px 10px;
border-radius: 6px;
margin-bottom: 16px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.how-step__title {
font-family: var(--font-d);
font-weight: 700;
font-size: 1.05rem;
margin-bottom: 8px;
}
.how-step__desc {
font-size: 0.84rem;
color: var(--text-2);
line-height: 1.6;
}
.compare {
padding: 140px 0;
}
.compare__head {
margin-bottom: 56px;
}
.table-wrap {
overflow-x: auto;
border-radius: var(--r-lg);
border: 1px solid var(--border);
background: rgba(255,255,255,0.015);
}
.table-wrap table {
width: 100%;
border-collapse: collapse;
font-size: 0.86rem;
min-width: 850px;
}
.table-wrap thead { background: rgba(255,255,255,0.02); }
.table-wrap th {
padding: 18px 20px;
text-align: left;
font-family: var(--font-d);
font-weight: 600;
font-size: 0.82rem;
color: var(--text-2);
border-bottom: 1px solid var(--border);
}
.table-wrap th:last-child,
.table-wrap td:last-child {
background: rgba(212,162,76,0.03);
}
.table-wrap th:last-child {
color: var(--gold);
position: relative;
}
.table-wrap th:last-child::before {
content: '';
position: absolute;
top: 0; left: 0;
width: 100%; height: 3px;
background: linear-gradient(90deg, var(--gold), var(--gold-l));
border-radius: 0 0 2px 2px;
}
.table-wrap td {
padding: 14px 20px;
border-bottom: 1px solid var(--border);
color: var(--text-2);
}
.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap td:first-child { color: var(--text); font-weight: 500; }
.table-wrap td:last-child { color: var(--text); font-weight: 600; }
.ck-yes { color: var(--green); }
.ck-no { color: var(--text-3); }
.ck-mid { color: var(--gold); font-size: 0.8rem; }
.install {
padding: 140px 0;
background: var(--bg-s);
}
.install__head { margin-bottom: 56px; }
.tabs {
display: flex;
gap: 4px;
padding: 4px;
background: rgba(255,255,255,0.03);
border: 1px solid var(--border);
border-radius: var(--r-md);
width: fit-content;
margin-bottom: 24px;
}
.tab {
padding: 10px 22px;
background: none;
border: none;
border-radius: calc(var(--r-md) - 4px);
font-size: 0.85rem;
font-weight: 600;
color: var(--text-3);
cursor: pointer;
transition: all 0.25s;
}
.tab.on {
background: var(--gold);
color: #050506;
box-shadow: 0 2px 8px rgba(212,162,76,0.25);
}
.tab:not(.on):hover { color: var(--text-2); }
.panels .panel { display: none; }
.panels .panel.on { display: block; }
.code-box {
background: #08090b;
border: 1px solid var(--border);
border-radius: var(--r-lg);
padding: 28px;
font-family: var(--font-m);
font-size: 0.86rem;
line-height: 2;
position: relative;
overflow-x: auto;
}
.code-box code {
white-space: pre-wrap;
word-break: break-all;
}
.code-box .cmt { color: var(--text-3); }
.code-box .hl { color: var(--gold); }
.copy-btn {
position: absolute;
top: 16px; right: 16px;
background: rgba(255,255,255,0.05);
border: 1px solid var(--border);
color: var(--text-3);
padding: 6px 14px;
border-radius: 6px;
font-size: 0.75rem;
font-family: var(--font-b);
cursor: pointer;
transition: all 0.2s;
}
.copy-btn:hover { color: var(--text-2); border-color: var(--border-l); }
.copy-btn.ok { color: var(--green); border-color: rgba(52,211,153,0.3); }
.guide {
padding: 140px 0;
position: relative;
}
.guide__head { margin-bottom: 72px; }
.guide__list { position: relative; padding-left: 48px; }
.guide__list::before {
content: '';
position: absolute;
left: 15px; top: 0; bottom: 0;
width: 2px;
background: linear-gradient(to bottom, var(--gold), var(--border) 80%, transparent);
border-radius: 1px;
}
.guide-item {
position: relative;
margin-bottom: 48px;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 32px;
align-items: start;
}
.guide-item:last-child { margin-bottom: 0; }
.guide-item::before {
content: '';
position: absolute;
left: -48px;
top: 6px;
width: 32px; height: 32px;
border-radius: 50%;
background: var(--bg);
border: 2px solid var(--gold-d);
display: flex; align-items: center; justify-content: center;
}
.guide-item::after {
content: attr(data-step);
position: absolute;
left: -48px; top: 6px;
width: 32px; height: 32px;
display: flex; align-items: center; justify-content: center;
font-family: var(--font-d);
font-weight: 800;
font-size: 0.75rem;
color: var(--gold);
}
.guide-item__text h3 {
font-family: var(--font-d);
font-weight: 700;
font-size: 1.15rem;
margin-bottom: 8px;
}
.guide-item__text p {
font-size: 0.9rem;
color: var(--text-2);
line-height: 1.65;
}
.guide-item__code {
background: #08090b;
border: 1px solid var(--border);
border-radius: var(--r-md);
padding: 18px 22px;
font-family: var(--font-m);
font-size: 0.8rem;
line-height: 1.9;
}
.security {
padding: 140px 0;
background: var(--bg-s);
position: relative;
overflow: hidden;
}
.security::before {
content: '';
position: absolute;
inset: 0;
opacity: 0.02;
background-image:
radial-gradient(circle at 1px 1px, var(--gold) 1px, transparent 1px);
background-size: 32px 32px;
}
.security__head {
text-align: center;
margin-bottom: 64px;
position: relative;
}
.security__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
position: relative;
}
.sec-card { padding: 32px; }
.sec-card__icon {
width: 40px; height: 40px;
border-radius: 10px;
background: rgba(212,162,76,0.06);
border: 1px solid rgba(212,162,76,0.1);
display: flex; align-items: center; justify-content: center;
color: var(--gold);
margin-bottom: 18px;
}
.sec-card__title {
font-family: var(--font-d);
font-weight: 700;
font-size: 1rem;
margin-bottom: 6px;
}
.sec-card__desc {
font-size: 0.84rem;
color: var(--text-2);
line-height: 1.65;
}
.cta {
padding: 160px 0;
text-align: center;
position: relative;
overflow: hidden;
}
.cta__h2 {
font-family: var(--font-d);
font-weight: 800;
font-size: clamp(2.4rem, 4.5vw, 3.8rem);
letter-spacing: -0.03em;
line-height: 1.1;
margin-bottom: 20px;
}
.cta__sub {
font-size: 1.15rem;
color: var(--text-2);
max-width: 460px;
margin: 0 auto 44px;
font-weight: 300;
line-height: 1.7;
}
.cta__actions {
display: flex;
justify-content: center;
gap: 14px;
flex-wrap: wrap;
}
.footer {
padding: 48px 0;
border-top: 1px solid var(--border);
}
.footer__in {
display: flex;
justify-content: space-between;
align-items: center;
}
.footer__l {
display: flex;
align-items: center;
gap: 20px;
}
.footer__brand {
font-family: var(--font-d);
font-weight: 700;
font-size: 1rem;
color: var(--text-3);
}
.footer__copy {
font-size: 0.78rem;
color: var(--text-3);
}
.footer__links {
display: flex; gap: 28px; list-style: none;
}
.footer__links a { font-size: 0.85rem; color: var(--text-2); transition: color 0.2s; }
.footer__links a:hover { color: var(--text); }
.rm-hero {
padding: 180px 0 80px;
text-align: center;
position: relative;
}
.rm-hero__title {
font-family: var(--font-d);
font-weight: 800;
font-size: clamp(2.8rem, 5vw, 4.2rem);
letter-spacing: -0.04em;
margin-bottom: 20px;
line-height: 1.08;
}
.rm-hero__sub {
font-size: 1.15rem;
color: var(--text-2);
max-width: 560px;
margin: 0 auto;
font-weight: 300;
line-height: 1.7;
}
.rm-status {
padding: 60px 0 80px;
}
.rm-status__grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}
.rm-stat {
padding: 28px;
text-align: center;
}
.rm-stat__val {
font-family: var(--font-d);
font-weight: 800;
font-size: 2rem;
color: var(--gold);
}
.rm-stat__label {
font-size: 0.82rem;
color: var(--text-2);
margin-top: 4px;
}
.rm-tl {
padding: 80px 0;
}
.rm-tl--dark { background: var(--bg-s); }
.rail {
position: relative;
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
margin-top: 56px;
}
.rail__track { display: none; }
.rail__card {
position: relative;
padding: 28px 24px 24px;
border-radius: var(--r-lg);
border: 1px solid var(--border);
background: var(--bg-card);
transition: border-color 0.4s, transform 0.4s var(--ease), box-shadow 0.4s;
}
.rail__card:hover {
transform: translateY(-4px);
box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}
.rail__card::before { display: none; }
.rail__marker {
display: inline-flex;
width: 20px; height: 20px;
border-radius: 50%;
align-items: center; justify-content: center;
z-index: 3;
margin-bottom: 12px;
}
.rail__marker svg { width: 10px; height: 10px; }
.rail__marker--done {
background: var(--green);
box-shadow: 0 0 0 4px rgba(52,211,153,0.15);
}
.rail__marker--current {
background: var(--gold);
box-shadow: 0 0 0 4px rgba(212,162,76,0.2), 0 0 20px rgba(212,162,76,0.3);
}
.rail__marker--next {
background: transparent;
border: 2px solid var(--gold);
box-shadow: 0 0 0 4px rgba(212,162,76,0.1);
}
.rail__marker--planned {
background: transparent;
border: 2px solid var(--border-l);
}
.rail__marker--planned::after {
content: '';
width: 6px; height: 6px;
border-radius: 50%;
background: var(--text-3);
}
.rail__marker--v1 {
background: var(--gold);
width: 24px; height: 24px;
box-shadow: 0 0 0 4px rgba(212,162,76,0.2), 0 0 24px rgba(212,162,76,0.35);
}
.rail__marker--v1 svg { width: 11px; height: 11px; }
.rail__pulse {
width: 8px; height: 8px;
border-radius: 50%;
background: var(--gold);
animation: railpulse 2s ease-in-out infinite;
}
@keyframes railpulse {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(0.6); opacity: 0.5; }
}
.rail__card--done { border-color: rgba(52,211,153,0.12); }
.rail__card--done:hover { border-color: rgba(52,211,153,0.25); }
.rail__card--current {
border-color: rgba(212,162,76,0.2);
background: rgba(212,162,76,0.03);
}
.rail__card--current:hover { border-color: rgba(212,162,76,0.35); }
.rail__card--next { border-color: rgba(212,162,76,0.12); }
.rail__card--next:hover { border-color: rgba(212,162,76,0.25); }
.rail__card--v1 {
border-color: rgba(212,162,76,0.2);
background: rgba(212,162,76,0.03);
grid-column: 1 / -1;
}
.rail__card--v1:hover { border-color: rgba(212,162,76,0.35); }
.rail__badge {
display: inline-block;
font-family: var(--font-m);
font-size: 0.65rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.1em;
padding: 3px 10px;
border-radius: 6px;
margin-bottom: 14px;
}
.rail__badge--green {
background: rgba(52,211,153,0.1);
color: var(--green);
border: 1px solid rgba(52,211,153,0.15);
}
.rail__badge--gold {
background: rgba(212,162,76,0.1);
color: var(--gold);
border: 1px solid rgba(212,162,76,0.15);
}
.rail__badge--cyan {
background: rgba(62,207,255,0.08);
color: var(--cyan);
border: 1px solid rgba(62,207,255,0.12);
}
.rail__badge--dim {
background: rgba(255,255,255,0.03);
color: var(--text-3);
border: 1px solid var(--border);
}
.rail__ver {
font-family: var(--font-m);
font-size: 0.75rem;
font-weight: 600;
color: var(--gold);
margin-bottom: 6px;
}
.rail__title {
font-family: var(--font-d);
font-weight: 700;
font-size: 1.15rem;
margin-bottom: 4px;
line-height: 1.25;
}
.rail__theme {
font-size: 0.82rem;
color: var(--text-2);
font-style: italic;
margin-bottom: 16px;
line-height: 1.5;
}
.rail__list {
list-style: none;
display: grid;
gap: 6px;
}
.rail__list li {
position: relative;
padding-left: 18px;
font-size: 0.82rem;
color: var(--text-2);
line-height: 1.55;
}
.rail__list li::before {
content: '';
position: absolute;
left: 0; top: 8px;
width: 6px; height: 6px;
border-radius: 50%;
background: var(--green);
opacity: 0.6;
}
.rail__list--gold li::before {
background: var(--gold);
opacity: 0.8;
}
.rail__card--planned .rail__list li::before,
.rail__card--next .rail__list li::before {
background: var(--text-3);
opacity: 0.4;
}
.rail__card--next .rail__list li::before {
background: var(--gold);
opacity: 0.5;
}
.rail__card--v1 .rail__list li::before {
background: var(--gold);
opacity: 0.7;
}
.rail__card--v1 .rail__list {
grid-template-columns: repeat(2, 1fr);
}
.rail__card--v1 .rail__title {
font-size: 1.4rem;
}
.principles {
padding: 100px 0;
background: var(--bg-s);
}
.principles__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-top: 48px;
}
.principle { padding: 32px; }
.principle__num {
font-family: var(--font-d);
font-weight: 800;
font-size: 0.85rem;
color: var(--gold);
margin-bottom: 14px;
}
.principle__title {
font-family: var(--font-d);
font-weight: 700;
font-size: 1.05rem;
margin-bottom: 8px;
}
.principle__desc {
font-size: 0.85rem;
color: var(--text-2);
line-height: 1.65;
}
@media (max-width: 1024px) {
.hero__layout { grid-template-columns: 1fr; gap: 56px; }
.hero__visual { max-width: 600px; margin: 0 auto; }
.term { transform: none; }
.bento { grid-template-columns: repeat(2, 1fr); }
.bento__item--wide { grid-column: span 2; }
.bento__item--tall { grid-row: span 1; }
.how__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
.how__grid::before { display: none; }
.security__grid { grid-template-columns: repeat(2, 1fr); }
.guide-item { grid-template-columns: 1fr; }
.rm-status__grid { grid-template-columns: repeat(2, 1fr); }
.rail { grid-template-columns: repeat(2, 1fr); }
.rail__card--v1 .rail__list { grid-template-columns: 1fr; }
.problem, .transform, .features, .how, .compare, .install, .guide, .security { padding: 100px 0; }
.cta { padding: 120px 0; }
}
@media (max-width: 768px) {
.wrap { padding: 0 20px; }
.nav { padding: 0 16px; }
.nav__links, .nav__gh { display: none; }
.nav__cta { display: none; }
.nav__ham { display: block; }
.nav__links.open {
display: flex; flex-direction: column;
position: absolute; top: 72px; left: 0; right: 0;
background: rgba(5,5,6,0.98);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
padding: 24px 24px 32px;
gap: 8px;
border-bottom: 1px solid var(--border);
z-index: 10;
}
.nav__links.open a {
display: block;
padding: 12px 16px;
font-size: 1rem;
border-radius: var(--r-sm);
transition: background 0.2s;
}
.nav__links.open a:hover {
background: rgba(255,255,255,0.04);
}
.nav__links.open .nav__mobile-only { display: list-item; }
.hero { padding: 110px 0 60px; min-height: auto; }
.hero__h1 { font-size: clamp(2.2rem, 8vw, 2.8rem); }
.hero__sub { font-size: 1.05rem; max-width: 100%; }
.hero__visual { max-width: 100%; }
.term__body { padding: 16px; font-size: 0.75rem; min-height: 240px; line-height: 1.75; }
.term__bar { padding: 12px 14px; }
.term__title { font-size: 0.65rem; }
.problem, .transform, .features, .how, .compare, .install, .guide, .security { padding: 72px 0; }
.cta { padding: 100px 0; }
.problem__head, .features__head, .compare__head, .install__head, .guide__head, .security__head { margin-bottom: 48px; }
.bento, .problem__stats, .security__grid, .principles__grid { grid-template-columns: 1fr; }
.bento__item--wide { grid-column: span 1; }
.how__grid { grid-template-columns: 1fr; gap: 40px; }
.stat-card { padding: 32px 24px; }
.stat-card__num { font-size: 2.8rem; }
.transform__grid { grid-template-columns: 1fr; }
.transform__arrow { transform: rotate(90deg); padding: 20px 0; }
.code-panel__body { padding: 18px; font-size: 0.78rem; line-height: 1.85; }
.guide__list { padding-left: 40px; }
.guide-item::before, .guide-item::after { left: -40px; }
.guide-item { grid-template-columns: 1fr; gap: 16px; }
.guide-item__code { font-size: 0.75rem; padding: 14px 16px; }
.rail {
grid-template-columns: 1fr;
gap: 16px;
}
.rail__card--v1 { grid-column: 1; }
.rail__card--v1 .rail__list { grid-template-columns: 1fr; }
.stats__grid { grid-template-columns: 1fr; }
.rm-status__grid { grid-template-columns: repeat(2, 1fr); }
.footer__in { flex-direction: column; gap: 20px; text-align: center; }
.footer__l { flex-direction: column; gap: 8px; }
.footer__links { justify-content: center; flex-wrap: wrap; gap: 16px; }
.tabs { flex-wrap: wrap; width: 100%; justify-content: center; }
.tab { flex: 1; min-width: 80px; text-align: center; padding: 10px 14px; font-size: 0.82rem; }
.table-wrap {
font-size: 0.8rem;
position: relative;
}
.table-wrap::after {
content: 'Scroll \2192';
position: absolute;
top: 10px; right: 10px;
font-size: 0.65rem;
font-family: var(--font-m);
color: var(--text-3);
background: rgba(5,5,6,0.85);
padding: 4px 10px;
border-radius: 4px;
pointer-events: none;
opacity: 1;
transition: opacity 0.3s;
z-index: 2;
}
.table-wrap:hover::after { opacity: 0; }
.code-box { padding: 20px 16px; font-size: 0.8rem; }
.bento__code { font-size: 0.72rem; padding: 12px; }
.bento__item { padding: 28px; }
.bento__title { font-size: 1.05rem; }
.bento__desc { font-size: 0.85rem; }
.sec-card { padding: 24px; }
.principle { padding: 24px; }
.h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
.subtitle { font-size: 1rem; }
.marquee__item { padding: 0 24px; font-size: 0.72rem; }
.marquee { padding: 28px 0; }
.rm-hero { padding: 140px 0 60px; }
.rm-hero__title { font-size: clamp(2rem, 7vw, 2.8rem); }
.rm-hero__sub { font-size: 1rem; }
.rm-status { padding: 40px 0 60px; }
.how-step {
display: flex;
flex-direction: column;
align-items: flex-start;
text-align: left;
padding: 0;
}
.how-step__num { margin-bottom: 12px; }
.how-step__cmd { margin-bottom: 12px; }
.how-step__title { margin-bottom: 6px; }
}
@media (max-width: 600px) {
.rm-status__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
.rm-stat { padding: 20px 16px; }
.rm-stat__val { font-size: 1.6rem; }
.rm-stat__label { font-size: 0.75rem; }
.hero__pill { font-size: 0.72rem; padding: 5px 12px 5px 7px; }
.orb--gold { width: 300px; height: 300px; }
.orb--cyan { width: 250px; height: 250px; }
.orb--violet { width: 200px; height: 200px; }
}
@media (max-width: 480px) {
.wrap { padding: 0 16px; }
.hero { padding: 100px 0 48px; }
.hero__h1 { font-size: clamp(1.9rem, 9vw, 2.4rem); margin-bottom: 18px; }
.hero__sub { font-size: 0.95rem; margin-bottom: 28px; line-height: 1.65; }
.hero__actions { flex-direction: column; gap: 10px; }
.btn--lg { width: 100%; justify-content: center; padding: 14px 24px; font-size: 0.9rem; }
.cta { padding: 80px 0; }
.cta__h2 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
.cta__sub { font-size: 1rem; margin-bottom: 32px; }
.cta__actions { flex-direction: column; align-items: stretch; }
.cta__actions .btn--lg { width: 100%; }
.stat-card { padding: 28px 20px; }
.stat-card__num { font-size: 2.4rem; }
.stat-card__text { font-size: 0.85rem; }
.rail__card { padding: 22px 18px 18px; }
.rail__title { font-size: 1rem; }
.rail__list li { font-size: 0.8rem; }
.rail__theme { font-size: 0.78rem; }
.guide__list { padding-left: 32px; }
.guide__list::before { left: 10px; }
.guide-item::before, .guide-item::after { left: -32px; width: 24px; height: 24px; }
.guide-item__code { font-size: 0.72rem; padding: 12px 14px; word-break: break-all; }
.guide-item__text h3 { font-size: 1rem; }
.guide-item__text p { font-size: 0.85rem; }
.problem, .transform, .features, .how, .compare, .install, .guide, .security { padding: 56px 0; }
.term__body { padding: 14px; font-size: 0.68rem; min-height: 200px; line-height: 1.7; }
.term__dot { width: 9px; height: 9px; }
.term__bar { padding: 10px 12px; gap: 6px; }
.table-wrap table { min-width: 700px; }
.table-wrap th, .table-wrap td { padding: 10px 12px; font-size: 0.75rem; }
.code-panel__body { padding: 14px; font-size: 0.72rem; line-height: 1.75; }
.code-panel__top { padding: 10px 14px; }
.code-panel__name { font-size: 0.72rem; }
.code-panel__tag { font-size: 0.6rem; padding: 2px 8px; }
.rm-status__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
.rm-stat { padding: 18px 14px; }
.rm-stat__val { font-size: 1.5rem; }
.bento { gap: 12px; }
.bento__item { padding: 22px; }
.bento__icon { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 16px; }
.bento__icon svg { width: 18px; height: 18px; }
.bento__title { font-size: 1rem; margin-bottom: 8px; }
.bento__desc { font-size: 0.82rem; }
.bento__code { font-size: 0.68rem; margin-top: 14px; line-height: 1.7; }
.security__grid { gap: 12px; }
.sec-card { padding: 20px; }
.sec-card__title { font-size: 0.95rem; }
.sec-card__desc { font-size: 0.8rem; }
.principles { padding: 72px 0; }
.principles__grid { gap: 12px; }
.principle { padding: 20px; }
.principle__title { font-size: 0.95rem; }
.principle__desc { font-size: 0.82rem; }
.footer { padding: 32px 0; }
.footer__links { gap: 12px; }
.footer__links a { font-size: 0.8rem; }
.footer__copy { font-size: 0.72rem; }
.how__grid { gap: 32px; }
.how-step__cmd { font-size: 0.68rem; padding: 4px 8px; }
.how-step__title { font-size: 0.95rem; }
.how-step__desc { font-size: 0.8rem; }
.tab { padding: 8px 10px; font-size: 0.78rem; }
.code-box { padding: 16px 14px; font-size: 0.75rem; line-height: 1.8; }
.copy-btn { top: 10px; right: 10px; padding: 5px 10px; font-size: 0.68rem; }
.label { font-size: 0.7rem; letter-spacing: 0.14em; }
}
@media (max-width: 360px) {
.wrap { padding: 0 12px; }
.hero__h1 { font-size: 1.75rem; }
.hero__sub { font-size: 0.88rem; }
.h2 { font-size: 1.5rem; }
.nav__logo { font-size: 1rem; gap: 8px; }
.nav__logo-mark { width: 26px; height: 26px; font-size: 0.6rem; }
.btn--lg { padding: 12px 20px; font-size: 0.85rem; }
.term__body { font-size: 0.62rem; padding: 12px; min-height: 180px; }
.rm-status__grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
.marquee__track { animation: none; }
.orb { animation: none; }
.hero__term-glow { animation: none; }
[data-reveal] { transition: none; opacity: 1; transform: none; }
.rail__pulse { animation: none; }
.hero__pill-dot { animation: none; }
}
@media (hover: none) and (pointer: coarse) {
.glass:hover {
transform: none;
box-shadow: none;
background: var(--bg-card);
border-color: var(--border);
}
.glass--glow:hover::after { opacity: 0; }
.how-step:hover .how-step__num {
background: var(--bg-s);
color: var(--gold);
box-shadow: none;
}
.term:hover { transform: none; }
.rail__card:hover {
transform: none;
box-shadow: none;
}
.nav__ham { padding: 12px; min-width: 44px; min-height: 44px; }
.nav__links.open a { min-height: 44px; display: flex; align-items: center; }
.tab { min-height: 44px; }
.btn { min-height: 44px; }
.footer__links a { padding: 8px 4px; min-height: 44px; display: inline-flex; align-items: center; }
}