*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0 }

:root {
    --blue: #0052e0; --blue-d: #003bb5; --blue-l: #dbeafe; --blue-xl: #eff6ff;
    --teal: #00bfa8; --green: #16a34a; --red: #dc2626;
    --text: #0a0e1a; --sub: #374151; --muted: #6b7280; --light: #9ca3af;
    --border: #e5e7eb; --off: #f9fafb; --white: #fff;
    --display: "Plus Jakarta Sans", sans-serif;
    --body: "Plus Jakarta Sans", sans-serif;
    --r-md: 14px; --r-lg: 20px; --r-xl: 24px;
    --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 16px 48px rgba(0,0,0,.05);
}
html { scroll-behavior: smooth }
body { font-family: var(--body); color: var(--text); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased }
a { text-decoration: none; color: inherit }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4.5vw, 52px) }

/* ─── ANIMATIONS ───── */
@keyframes blink { 0%,100% { opacity:1 } 50% { opacity:.18 } }
@keyframes ticker { from { transform:translateX(0) } to { transform:translateX(-50%) } }

/* ═══════════════════════════════════════════════════════════
   HERO — Split: Copy left, Form right, all above the fold
   ═══════════════════════════════════════════════════════════ */
.rd-hero {
    position: relative;
    background: #060d1a;
    padding: 2.5rem 0 3rem;
    overflow: hidden;
    min-height: calc(100vh - 110px);
    display: flex;
    align-items: center;
}
.rd-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}
.rd-orb { position: absolute; border-radius: 50%; pointer-events: none }
.rd-orb-1 { top: -200px; right: -150px; width: 800px; height: 800px; background: radial-gradient(circle, rgba(0, 82, 224, 0.22) 0%, rgba(99, 102, 241, 0.1) 40%, transparent 70%) }
.rd-orb-2 { bottom: -200px; left: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 65%) }
.rd-orb-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); width: 900px; height: 400px; background: radial-gradient(ellipse, rgba(0, 82, 224, 0.07) 0%, transparent 65%) }


.rd-split {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 3.5rem;
    align-items: center;
}

/* ── Left Copy ── */
.rd-copy { color: #fff }

.rd-pill {
    display: inline-flex; align-items: center; gap: .4rem;
    background: rgba(0,82,224,.16); border: 1px solid rgba(0,82,224,.35);
    color: rgba(148,196,255,.85); border-radius: 100px;
    padding: .28rem .95rem; font-size: .66rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; margin-bottom: .9rem;
}
.rd-pill-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: blink 2s infinite }

.rd-copy h1 {
    font-family: var(--display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800; line-height: 1.05; letter-spacing: -.05em;
    margin-bottom: 1rem;
}
.rd-copy h1 em {
    font-style: normal;
    background: linear-gradient(130deg, #60a5fa 0%, #a78bfa 48%, #00e5cc 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.rd-copy > p {
    font-size: .95rem; color: rgba(255,255,255,.42); line-height: 1.8;
    max-width: 44ch; margin-bottom: 1.5rem;
}

/* Features mini pills */
.rd-features { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.25rem }
.rd-feat {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .35rem .85rem; border-radius: 10px; font-size: .75rem; font-weight: 600;
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.65);
}
.rd-feat-icon { font-size: .85rem }

/* Proof */
.rd-proof {
    display: flex; align-items: center; gap: .65rem;
    padding: .6rem 1rem; border-radius: 12px;
    background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06);
    max-width: 440px;
}
.rd-stars { color: #f59e0b; font-size: .85rem; flex-shrink: 0; letter-spacing: 1px }
.rd-proof-txt { font-size: .76rem; color: rgba(255,255,255,.45); font-style: italic; line-height: 1.5 }

/* ── Right Form Card ── */
.rd-form-wrap { position: relative; z-index: 3 }

.rd-card {
    background: var(--white); border-radius: var(--r-xl);
    box-shadow: 0 8px 40px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.08);
    overflow: hidden;
}
.rd-card-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 1.5rem; border-bottom: 1px solid var(--border);
    background: var(--off);
}
.rd-card-title { font-family: var(--display); font-size: 1.05rem; font-weight: 800; color: var(--text); letter-spacing: -.02em }
.rd-card-sub { font-size: .7rem; color: var(--muted); margin-top: .1rem }

.rd-avail {
    display: inline-flex; align-items: center; gap: .3rem;
    background: rgba(22,163,74,.08); border: 1px solid rgba(22,163,74,.2);
    color: #15803d; border-radius: 100px; padding: .2rem .6rem;
    font-size: .6rem; font-weight: 700;
}
.rd-avail-dot { width: 5px; height: 5px; border-radius: 50%; background: #22c55e; animation: blink 1.8s infinite }

/* Error box */
.rd-err {
    background: #fff1f2; border-bottom: 1px solid #fecdd3;
    padding: .6rem 1.5rem; font-size: .8rem; color: #be123c;
}

/* Form */
.rd-form { padding: 1.25rem 1.5rem 1.5rem }

.rd-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-bottom: .75rem }
.rd-field { display: flex; flex-direction: column; gap: .3rem }
.rd-field.rd-full { margin-bottom: .75rem }

.rd-field label {
    font-size: .7rem; font-weight: 700; color: var(--sub); letter-spacing: -.005em;
}
.rd-field label sup { color: var(--blue); font-size: .75em }

.rd-field input,
.rd-field select,
.rd-field textarea {
    font-family: var(--body); font-size: .82rem; color: var(--text);
    background: var(--off); border: 1.5px solid var(--border);
    border-radius: var(--r-md); padding: .6rem .85rem; width: 100%;
    outline: none; transition: border-color .18s, box-shadow .18s;
    -webkit-appearance: none; appearance: none;
}
.rd-field textarea { resize: vertical; min-height: 80px; line-height: 1.5; }
.rd-field input:focus,
.rd-field select:focus,
.rd-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,82,224,.08);
    background: var(--white);
}
.rd-field input::placeholder,
.rd-field textarea::placeholder { color: #c0cad6 }
.rd-field input.err,
.rd-field select.err,
.rd-field textarea.err { border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,38,38,.08) }

.rd-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right .8rem center;
    padding-right: 2rem; cursor: pointer;
}

/* Consent */
.rd-consent {
    display: flex; align-items: flex-start; gap: .5rem;
    margin-bottom: 1rem; padding: 0;
}
.rd-consent input[type="checkbox"] {
    width: 15px; height: 15px; border-radius: 4px;
    border: 1.5px solid var(--border); flex-shrink: 0;
    cursor: pointer; margin-top: 1px; accent-color: var(--blue);
}
.rd-consent label {
    font-size: .72rem; color: var(--muted); line-height: 1.55; cursor: pointer;
}
.rd-consent label a { color: var(--blue); font-weight: 600 }

/* Submit */
.rd-submit {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: .5rem;
    font-family: var(--body); font-size: .88rem; font-weight: 700;
    color: #fff; background: linear-gradient(135deg, #0040cc 0%, #3730d4 52%, #5758f0 100%);
    border: none; border-radius: var(--r-md); padding: .85rem 1.5rem;
    cursor: pointer; transition: transform .14s, box-shadow .18s;
    box-shadow: 0 6px 24px rgba(0,64,204,.4), inset 0 1px 0 rgba(255,255,255,.12);
}
.rd-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,64,204,.55) }
.rd-submit:active { transform: none }
.rd-submit:disabled { opacity: .7; cursor: wait }
.rd-arrow { display: inline-block; transition: transform .2s }
.rd-submit:hover .rd-arrow { transform: translateX(3px) }

.rd-note {
    text-align: center; font-size: .66rem; color: var(--light);
    margin-top: .6rem;
}

/* ═══ TRUST STRIP ═══ */
.rd-trust {
    background: var(--off); border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .9rem 0; overflow: hidden; position: relative;
}
.rd-trust::before, .rd-trust::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none;
}
.rd-trust::before { left: 0; background: linear-gradient(90deg, var(--off), transparent) }
.rd-trust::after  { right: 0; background: linear-gradient(-90deg, var(--off), transparent) }

.rd-ticker {
    display: flex; align-items: center; gap: .5rem;
    white-space: nowrap; animation: ticker 26s linear infinite;
}
.rd-tick-item {
    display: inline-flex; align-items: center; gap: .4rem;
    font-size: .78rem; font-weight: 600; color: var(--muted);
}
.rd-tick-item svg {
    width: 15px; height: 15px; fill: none; stroke: var(--blue);
    stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0;
}
.rd-tick-sep { padding: 0 .8rem; color: var(--border) }

/* ═══ DETAILS SECTION ═══ */
.rd-details { padding: 4rem 0 4.5rem; background: var(--white) }

.rd-details-head { text-align: center; max-width: 560px; margin: 0 auto 2.5rem }
.rd-details-eyebrow {
    display: inline-flex; padding: .25rem .85rem; border-radius: 100px;
    background: var(--blue-xl); color: var(--blue);
    font-size: .65rem; font-weight: 800; letter-spacing: .1em;
    text-transform: uppercase; margin-bottom: .75rem;
}
.rd-details-head h2 {
    font-family: var(--display); font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800; letter-spacing: -.04em; color: var(--text);
    margin-bottom: .6rem; line-height: 1.15;
}
.rd-details-head h2 em { font-style: normal; color: var(--blue) }
.rd-details-head p { font-size: .88rem; color: var(--muted); line-height: 1.75 }

.rd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem }

.rd-grid-card {
    background: var(--white); border: 1.5px solid var(--border);
    border-radius: 18px; padding: 1.75rem 1.5rem;
    transition: box-shadow .25s, transform .25s, border-color .25s;
}
.rd-grid-card:hover {
    box-shadow: 0 8px 32px rgba(0,82,224,.08);
    transform: translateY(-4px);
    border-color: rgba(0,82,224,.2);
}
.rd-gc-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 1rem;
}
.rd-gc-title { font-size: .88rem; font-weight: 800; color: var(--text); margin-bottom: .4rem }
.rd-gc-desc { font-size: .78rem; color: var(--muted); line-height: 1.6 }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
    .rd-split { grid-template-columns: 1fr; gap: 2rem }
    .rd-copy { text-align: center }
    .rd-copy > p { margin-left: auto; margin-right: auto }
    .rd-features { justify-content: center }
    .rd-proof { margin: 0 auto }
    .rd-form-wrap { max-width: 480px; margin: 0 auto }
    .rd-grid { grid-template-columns: repeat(2, 1fr) }
}

@media (max-width: 600px) {
    .rd-hero { padding: 1.5rem 0 2rem }
    .rd-row { grid-template-columns: 1fr }
    .rd-grid { grid-template-columns: 1fr }
    .rd-form { padding: 1rem 1.25rem 1.25rem }
}
