:root {
--navy: #0b1728;
--navy-light: #12243b;
--blue: #2d8cff;
--blue-light: #67b3ff;
--text: #182333;
--muted: #637083;
--light: #f5f8fc;
--white: #ffffff;
--border: #dce4ee;
--success: #42d392;
}
* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
color: var(--text);
background: var(--white);
line-height: 1.6;
}
a {
color: inherit;
text-decoration: none;
}
.container {
width: min(1180px, calc(100% - 48px));
margin: 0 auto;
}
/* HEADER */
header {
background: var(--navy);
color: var(--white);
padding: 22px 0;
}
header .container {
display: flex;
align-items: center;
justify-content: space-between;
}
.logo {
color: white;
font-size: 16px;
font-weight: 800;
letter-spacing: .04em;
}
nav {
display: flex;
align-items: center;
gap: 28px;
font-size: 14px;
}
nav a {
color: #b7c5d6;
transition: color .2s ease;
}
nav a:hover {
color: white;
}
.nav-button {
padding: 9px 16px;
border: 1px solid rgba(255,255,255,.25);
border-radius: 6px;
}
/* BUTTONS */
.button {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 12px 20px;
border-radius: 6px;
font-size: 14px;
font-weight: 700;
transition: transform .2s ease, background .2s ease;
}
.button:hover {
transform: translateY(-1px);
}
.button.primary {
color: white;
background: var(--blue);
}
.button.primary:hover {
background: #2180ed;
}
.button.secondary {
color: white;
border: 1px solid rgba(255,255,255,.25);
}
.button.secondary:hover {
background: rgba(255,255,255,.06);
}
/* HERO */
.hero {
background: var(--navy);
color: white;
padding: 90px 0 110px;
}
.hero .container {
display: grid;
grid-template-columns: 1.1fr .9fr;
align-items: center;
gap: 70px;
}
.hero h1 {
margin: 0;
max-width: 720px;
font-size: clamp(48px, 6vw, 76px);
line-height: 1.03;
letter-spacing: -.045em;
}
.hero h1 span {
display: block;
color: var(--blue-light);
}
.hero-description {
max-width: 650px;
margin: 28px 0;
color: #9dafc3;
font-size: 19px;
}
.hero-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.hero-note {
display: grid;
gap: 9px;
margin-top: 24px;
color: #9dafc3;
font-size: 13px;
}
.hero-note > div {
display: flex;
align-items: center;
gap: 9px;
}
.status-dot {
width: 8px;
height: 8px;
border-radius: 50%;
background: var(--success);
box-shadow: 0 0 0 4px rgba(66,211,146,.12);
}
/* TERMINAL CARD */
.hero-card {
position: relative;
padding: 26px;
border: 1px solid rgba(255,255,255,.1);
border-radius: 14px;
background: #101f33;
box-shadow: 0 30px 80px rgba(0,0,0,.25);
overflow: hidden;
}
.card-glow {
position: absolute;
width: 180px;
height: 180px;
right: -70px;
top: -70px;
border-radius: 50%;
background: rgba(45,140,255,.18);
filter: blur(35px);
}
.terminal-header {
display: flex;
gap: 7px;
margin-bottom: 24px;
}
.terminal-header span {
width: 9px;
height: 9px;
border-radius: 50%;
background: #52657b;
}
.terminal-content {
position: relative;
color: #d7e3ef;
font-family: "SFMono-Regular", Consolas, monospace;
font-size: 14px;
line-height: 2;
}
.prompt {
color: var(--blue-light);
}
.terminal-muted {
color: #71859b;
}
.terminal-success {
color: var(--success);
}
/* INFO STRIP */
.info-strip {
background: #101f33;
color: white;
padding: 28px 0;
}
section.info-strip {
padding: 28px 0;
}
.info-strip .container {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}
.info-strip strong,
.info-strip span {
display: block;
}
.info-strip strong {
font-size: 14px;
}
.info-strip span {
margin-top: 3px;
color: #8396ac;
font-size: 13px;
}
/* GENERAL SECTIONS */
section {
padding: 100px 0;
}
#services {
padding-top: 60px;
padding-bottom: 15px;
}
#how-it-works {
    padding-top: 30px;
    padding-bottom: 60px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
#about {
padding-top: 60px;
padding-bottom: 70px;
}
.trust-bar {
padding: 28px 0;
background: #101f33;
color: white;
}
.trust-bar .container {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 0;
}
.trust-bar .container > div:nth-child(3) {
justify-self: end;
}
.section-heading {
max-width: 720px;
margin-bottom: 55px;
}
.eyebrow {
margin-bottom: 12px;
color: var(--blue);
font-size: 12px;
font-weight: 800;
letter-spacing: .2em;
}
.section-heading h2,
.contact-intro h2,
#about h2 {
margin: 0;
font-size: clamp(34px, 4vw, 52px);
line-height: 1.08;
letter-spacing: -.035em;
}
.section-heading p {
margin: 22px 0 0;
color: var(--muted);
font-size: 17px;
}
/* SERVICES */
.services {
background: var(--light);
}
.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.service-card {
padding: 30px;
border: 1px solid var(--border);
border-radius: 10px;
background: white;
transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
transform: translateY(-3px);
box-shadow: 0 15px 35px rgba(24,35,51,.08);
}
.service-icon {
display: flex;
align-items: center;
justify-content: center;
width: 42px;
height: 42px;
margin-bottom: 22px;
border-radius: 8px;
background: #eaf4ff;
color: var(--blue);
font-size: 20px;
}
.service-card h3 {
margin: 0 0 10px;
font-size: 19px;
}
.service-card p {
margin: 0;
color: var(--muted);
font-size: 14px;
}
/* HOW IT WORKS */

.how-it-works-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 90px;
    align-items: start;
}

.steps {
    display: flex;
    flex-direction: column;
}

.step {
    position: relative;
    padding: 20px 0;
    padding-left: 0;
}

.step:first-child {
    padding-top: 0;
}

.step + .step {
    border-top: 1px solid var(--border);
}

.step-number {
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
}

.step h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.step p {
    max-width: 500px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.how-it-works-intro {
    max-width: 600px;
    padding-top: 8px;
}

.how-it-works-intro h2 {
    margin: 0;
    font-size: clamp(40px, 4.2vw, 52px);
    line-height: 1.05;
    letter-spacing: -.045em;
}
/* ABOUT */
#about {
background: var(--light);
}
#about .about-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
}
.about-text {
color: var(--muted);
font-size: 16px;
}
.about-text p {
margin: 0 0 22px;
}
/* CONTACT */
.contact-section {
background: var(--navy);
color: white;
}
.contact-container {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 70px;
align-items: center;
}
.contact-intro {
max-width: 540px;
}
.contact-intro h2 {
color: white;
}
.contact-intro > p {
color: #9dafc3;
font-size: 17px;
margin: 22px 0;
}
.contact-details {
display: grid;
gap: 18px;
margin-top: 32px;
}
.contact-details > div {
padding-left: 18px;
border-left: 2px solid var(--blue);
}
.contact-details strong,
.contact-details span {
display: block;
}
.contact-details strong {
color: white;
font-size: 14px;
}
.contact-details span {
color: #8799ae;
font-size: 12px;
margin-top: 2px;
}
/* FORM */
.contact-card {
padding: 36px;
border-radius: 14px;
background: white;
color: var(--text);
box-shadow: 0 25px 70px rgba(0,0,0,.2);
}
.contact-card form {
display: flex;
flex-direction: column;
gap: 20px;
}
.form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 18px;
}
.form-field {
display: flex;
flex-direction: column;
width: 100%;
gap: 7px;
}
.form-field label {
display: block;
color: #3d4c5f;
font-size: 12px;
font-weight: 700;
}
.form-field input,
.form-field select,
.form-field textarea {
display: block;
width: 100%;
min-width: 0;
min-height: 44px;
padding: 11px 13px;
border: 1px solid var(--border);
border-radius: 7px;
background: #f9fbfd;
color: var(--text);
font-family: inherit;
font-size: 14px;
outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
border-color: var(--blue);
box-shadow: 0 0 0 3px rgba(45,140,255,.12);
}
.form-field textarea {
min-height: 125px;
resize: vertical;
}
.form-field textarea::placeholder {
color: #9aa8b8;
}
.radio-group {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.radio-option {
display: flex;
flex-direction: row;
align-items: center;
width: auto;
gap: 7px;
padding: 9px 12px;
border: 1px solid var(--border);
border-radius: 7px;
background: #f9fbfd;
color: #536174;
font-size: 12px;
cursor: pointer;
}
.radio-option input {
accent-color: var(--blue);
}
.radio-option:has(input:checked) {
border-color: var(--blue);
background: #eef6ff;
color: #216fca;
}
.form-message {
display: none;
padding: 12px;
border-radius: 6px;
font-size: 13px;
text-align: center;
}
.form-message.success {
display: block;
background: #e9f9f1;
color: #18744b;
border: 1px solid #bdebd3;
}
.form-message.error {
display: block;
background: #fff0f0;
color: #a33a3a;
border: 1px solid #f0caca;
}
/* FOOTER */
footer {
padding: 30px 0;
background: #071221;
color: #8496aa;
font-size: 13px;
}
footer .container {
display: flex;
justify-content: space-between;
gap: 30px;
}
/* MOBILE */
@media (max-width: 900px) {
.hero .container,
.contact-container,
#about .about-grid {
grid-template-columns: 1fr;
}
.services-grid {
grid-template-columns: repeat(2, 1fr);
}
.hero-card {
max-width: 600px;
}
.contact-intro {
max-width: none;
}
}
@media (max-width: 600px) {
.container {
width: min(100% - 32px, 1180px);
}
header .container {
align-items: flex-start;
}
nav {
display: none;
}
.how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 50px;
}

.how-it-works-intro {
    order: -1;
}

.how-it-works-intro h2 {
    font-size: 42px;
}
.hero {
padding: 65px 0 75px;
}
.hero h1 {
font-size: 46px;
}
.hero-description {
font-size: 16px;
}
.hero-actions {
flex-direction: column;
align-items: stretch;
}
.info-strip .container,
.services-grid,
.steps {
grid-template-columns: 1fr;
}
section {
padding: 70px 0;
}
#services,
#how-it-works,
#about {
padding-top: 70px;
padding-bottom: 70px;
}
.form-row {
grid-template-columns: 1fr;
}
.contact-card {
padding: 24px;
}
footer .container {
flex-direction: column;
}
@media (max-width: 600px) {
    .trust-bar .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
@media (max-width: 600px) {
    .info-strip .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
@media (max-width: 600px) {
    .trust-bar .container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trust-bar strong,
    .trust-bar span {
        display: block;
    }

    .trust-bar .container > div:nth-child(3) {
        justify-self: start;
    }
}

}