:root {
    --ink: #2d2d2d;
    --teal: #12343b;
    --teal-light: #6f9192;
    --rust: #c45a2d;
    --cream: #f4efe3;
    --paper: #fbf8f1;
    --muted: #6f706a;
    --border: #d9d1c2;
    --success: #7d9a72;
    --white: #ffffff;

    /* compatibility aliases for the original FVTS styles */
    --navy: var(--teal);
    --navy-light: #0c272d;
    --blue: var(--rust);
    --blue-light: #df8a62;
    --text: var(--ink);
    --light: var(--cream);
}

* {
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}
a {
color: inherit;
text-decoration: none;
}
.container {
width: min(1180px, calc(100% - 48px));
margin: 0 auto;
}
/* HEADER */
header {
    background: var(--cream);
    color: var(--ink);
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 9px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.logo-rad {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--teal);
}

.logo-works {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .14em;
}

.logo-star {
    color: var(--rust);
    font-size: 20px;
    transform: translateY(-2px);
}

nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
}

nav a {
    color: var(--ink);
}

nav a:hover {
    color: var(--rust);
}

.nav-button {
    padding: 9px 16px;
    border: 1px solid var(--teal);
    border-radius: 4px;
}
/* BUTTONS */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    transition: transform .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    color: var(--cream);
    background: var(--rust);
}

.button.primary:hover {
    background: #a94725;
}

.button.secondary {
    color: var(--cream);
    border: 1px solid rgba(244,239,227,.5);
}

.button.secondary:hover {
    background: rgba(244,239,227,.08);
}
/* HERO */
.hero {
    background: var(--teal);
    color: var(--cream);
    padding: 70px 0 75px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 44px;
}

.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(--rust);
}

.hero-description {
    max-width: 650px;
    margin: 28px 0;
    color: #d8ded9;
    font-size: 19px;
}
.hero-actions {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.hero-note {
display: grid;
gap: 6px;
margin-top: 16px;
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(244,239,227,.15);
    border-radius: 6px;
    background: #0c272d;
    box-shadow: 12px 12px 0 rgba(196,90,45,.25);
    overflow: hidden;
}

.card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(196,90,45,.18);
    filter: blur(35px);
}

.prompt {
    color: var(--rust);
}

.terminal-muted {
    color: #91aaa7;
}

.terminal-success {
    color: #b6c89f;
}
/* INFO STRIP */
.info-strip {
background: #101f33;
color: white;
padding: 28px 0;
}
section.info-strip {
padding: 28px 0;
}
.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}
.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: 20px;
    padding-bottom: 35px;
    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: repeat(3, 1fr);
    gap: 0;
}

.trust-bar .container > div {
    text-align: center;
}


.section-heading {
max-width: 720px;
margin-bottom: 35px;
}
.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(2, 1fr);
    gap: 20px;
}
.service-card {
padding: 24px;
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: 16px;
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: 12px 0;
    padding-left: 0;
}

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

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

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

.step h3 {
    margin: 0 0 6px;
    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;
    }

    .hero {
        padding: 45px 0 50px;
    }

    .hero .container {
        gap: 30px;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-description {
        font-size: 16px;
        margin: 18px 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-note {
        margin-top: 16px;
        gap: 6px;
    }

    .terminal-content {
        font-size: 13px;
        line-height: 1.5;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .how-it-works-intro h2 {
        font-size: 42px;
    }

    .info-strip .container,
    .services-grid,
    .steps {
        grid-template-columns: 1fr;
    }

    .info-strip .container {
        gap: 24px;
    }

    .trust-bar .container {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
    }

    .trust-bar .container > div {
        text-align: center;
    }

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

    section {
        padding: 45px 0;
    }

    #services {
        padding-top: 45px;
        padding-bottom: 30px;
    }

    #how-it-works {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    #about {
        padding-top: 45px;
        padding-bottom: 45px;
    }
     #about .about-grid {
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    

    .contact-card {
        padding: 24px;
    }

    footer .container {
        flex-direction: column;
    }
    .contact-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

.contact-intro h2 {
    margin-bottom: 14px;
}

.contact-intro > p {
    margin: 14px 0;
}

.contact-container {
    gap: 30px;
    align-items: start;
}

.contact-details {
    gap: 14px;
    margin-top: 18px;
}

.contact-details > div {
    padding: 6px 0;
}
}
.logo strong,
.logo small {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .04em;
}

.logo small {
    color: inherit;
}


/* RAD IT WORKS LOGO */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    width: 190px;
    height: auto;
    max-height: 92px;
    object-fit: contain;
}

@media (max-width: 700px) {
    .logo img {
        width: 145px;
    }
}


/* RAD IT WORKS FOOTER */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-brand img {
    width: 120px;
    height: auto;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    font-size: 16px;
    letter-spacing: .04em;
}

.footer-tagline {
    color: var(--rust);
    font-weight: 700;
    margin: 2px 0;
}

.footer-copy {
    white-space: nowrap;
}

@media (max-width: 700px) {
    .footer-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand img {
        width: 105px;
    }
}
