@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
    --navy: #071f3d;
    --navy-2: #0b2b50;
    --blue: #155eef;
    --orange: #ff642b;
    --ink: #152238;
    --muted: #66758b;
    --line: #e3e9f0;
    --soft: #f5f7fa;
    --white: #fff;
    --green: #0b8f59;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "DM Sans", sans-serif; }
a { color: inherit; text-decoration: none; }
.site-wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.public-brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: white; background: linear-gradient(145deg, #2384ff, #1263de); font: 800 1.15rem Manrope, sans-serif; box-shadow: 0 7px 18px rgba(21,94,239,.22); }
.brand-mark.small { width: 36px; height: 36px; border-radius: 10px; font-size: 1rem; }
.public-brand strong, .public-brand small { display: block; }
.public-brand strong { font: 800 1.05rem Manrope, sans-serif; }
.public-brand small { color: var(--muted); font-size: .7rem; margin-top: 1px; }
.site-header nav { display: flex; align-items: center; gap: 23px; font-size: .9rem; font-weight: 600; }
.site-header nav a:not(.nav-login):hover { color: var(--blue); }
.nav-login, .cta { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 0 19px; border-radius: 10px; color: white; background: linear-gradient(135deg, var(--orange), #f45123); font-weight: 800; box-shadow: 0 8px 20px rgba(255,100,43,.18); }

.hero { position: relative; overflow: hidden; padding: 92px 0 84px; color: white; background: linear-gradient(130deg, #061b36 0%, #0a2f59 62%, #114879 100%); }
.hero::after { content: ""; position: absolute; width: 620px; height: 620px; border: 90px solid rgba(255,255,255,.035); border-radius: 50%; right: -250px; bottom: -380px; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.2fr) minmax(360px,.8fr); align-items: center; gap: 70px; }
.public-eyebrow { margin: 0 0 12px; color: var(--orange); font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero .public-eyebrow { color: #ffb08e; }
.hero h1 { max-width: 720px; margin: 0; font: 800 clamp(2.65rem,5vw,4.7rem)/1.02 Manrope, sans-serif; letter-spacing: -.055em; }
.hero-copy { max-width: 680px; color: #c5d6e7; font-size: 1.18rem; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 31px; }
.secondary-link { color: #e8f0f7; font-weight: 700; border-bottom: 1px solid #7995b0; padding: 9px 0; }
.trust-row { display: flex; flex-wrap: wrap; gap: 19px; margin-top: 36px; color: #a8bed2; font-size: .82rem; }
.flow-card { padding: 31px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); border-radius: 22px; box-shadow: 0 24px 60px rgba(0,0,0,.16); }
.flow-card ol { list-style: none; margin: 0; padding: 0; }
.flow-card li { display: flex; gap: 15px; align-items: center; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.12); }
.flow-card li > span { width: 35px; height: 35px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.11); color: #ffb08e; font-weight: 800; }
.flow-card strong, .flow-card small { display: block; }
.flow-card strong { font: 700 1rem Manrope, sans-serif; }
.flow-card small { color: #a9bfd3; margin-top: 3px; }

.public-section { padding: 88px 0; }
.public-section h2, .workflow-section h2, .security-section h2, .closing-section h2 { margin: 0; font: 800 clamp(2rem,3.5vw,3rem)/1.12 Manrope, sans-serif; letter-spacing: -.04em; }
.section-lead { max-width: 720px; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.feature-grid article { padding: 27px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 8px 25px rgba(27,48,78,.045); }
.feature-grid article > span { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; color: var(--blue); background: #eef5ff; font-weight: 800; }
.feature-grid h3 { margin: 19px 0 8px; font: 800 1.08rem Manrope, sans-serif; }
.feature-grid p { margin: 0; color: var(--muted); line-height: 1.58; font-size: .92rem; }

.workflow-section { padding: 82px 0; background: var(--soft); border-block: 1px solid var(--line); }
.split-panel { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; }
.split-panel > div > p:not(.public-eyebrow) { color: var(--muted); font-size: 1.03rem; line-height: 1.65; }
.check-list { padding: 0; margin: 26px 0 0; list-style: none; }
.check-list li { position: relative; margin: 13px 0; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 20px; height: 20px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: #e5f8ef; font-size: .72rem; font-weight: 800; }
.channel-cloud { display: flex; flex-wrap: wrap; gap: 11px; padding: 36px; border-radius: 20px; background: var(--navy); box-shadow: 0 20px 45px rgba(7,31,61,.18); }
.channel-cloud span { padding: 11px 15px; color: #dbe7f2; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.09); border-radius: 10px; font-weight: 700; }
.channel-cloud small { width: 100%; margin-top: 17px; color: #8facC6; line-height: 1.55; }

.security-section { background: #fff; }
.security-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 72px; }
.security-points { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.security-points article { padding: 22px; border-left: 3px solid var(--blue); background: #f6f9fd; border-radius: 4px 12px 12px 4px; }
.security-points strong { font: 800 .98rem Manrope, sans-serif; }
.security-points p { margin: 8px 0 0; color: var(--muted); font-size: .89rem; line-height: 1.55; }

.closing-section { padding: 0 0 84px; }
.closing-card { padding: 38px 42px; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-radius: 20px; background: #f0f6ff; border: 1px solid #d8e6fa; }
.closing-card h2 { font-size: clamp(1.6rem,3vw,2.3rem); max-width: 760px; }

.legal-hero { padding: 70px 0 44px; background: linear-gradient(180deg,#f3f7fc,#fff); border-bottom: 1px solid var(--line); }
.legal-hero h1 { margin: 0 0 12px; font: 800 clamp(2.35rem,5vw,3.8rem)/1.08 Manrope, sans-serif; letter-spacing: -.05em; }
.legal-hero p:last-child { color: var(--muted); }
.legal-section { padding: 60px 0 90px; }
.legal-layout { display: grid; grid-template-columns: 220px minmax(0,760px); gap: 65px; justify-content: center; align-items: start; }
.legal-layout aside { position: sticky; top: 100px; display: grid; gap: 5px; padding: 20px; border: 1px solid var(--line); border-radius: 13px; }
.legal-layout aside strong { margin-bottom: 8px; font: 800 .9rem Manrope, sans-serif; }
.legal-layout aside a { padding: 7px 0; color: var(--muted); font-size: .86rem; }
.legal-layout aside a:hover { color: var(--blue); }
.legal-content { color: #34425a; line-height: 1.75; }
.legal-content > p:first-child { margin-top: 0; font-size: 1.05rem; color: var(--ink); }
.legal-content h2 { margin: 38px 0 10px; color: var(--ink); font: 800 1.35rem Manrope, sans-serif; scroll-margin-top: 105px; }
.legal-content h3 { margin: 25px 0 7px; color: var(--ink); font: 800 1rem Manrope, sans-serif; }
.legal-content a { color: #0b5fc7; text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul { padding-left: 22px; }
.legal-content li { margin: 8px 0; }

.site-footer { padding: 40px 0; color: #c4d3e1; background: #061b35; }
.footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: center; }
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand strong { font: 800 1rem Manrope, sans-serif; }
.footer-brand p { margin: 3px 0 0; color: #879fb7; font-size: .76rem; }
.footer-links { display: flex; gap: 22px; font-size: .8rem; }
.footer-links a:hover { color: white; }
.copyright { grid-column: 1 / -1; padding-top: 20px; margin: 0; color: #718aa3; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }

@media (max-width: 900px) {
    .site-header nav a:not(.nav-login) { display: none; }
    .hero { padding: 65px 0; }
    .hero-grid, .split-panel, .security-grid { grid-template-columns: 1fr; gap: 42px; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .legal-layout { grid-template-columns: 1fr; gap: 25px; }
    .legal-layout aside { position: static; display: flex; flex-wrap: wrap; gap: 10px 18px; }
    .legal-layout aside strong { width: 100%; }
}

@media (max-width: 620px) {
    .site-wrap { width: min(100% - 28px,1180px); }
    .public-brand small { display: none; }
    .nav-login { padding: 0 13px; }
    .hero h1 { font-size: 2.65rem; }
    .hero-actions, .trust-row { align-items: flex-start; flex-direction: column; }
    .feature-grid, .security-points { grid-template-columns: 1fr; }
    .closing-card, .footer-inner { display: flex; flex-direction: column; align-items: flex-start; }
    .footer-links { flex-direction: column; gap: 10px; }
    .channel-cloud, .flow-card { padding: 24px; }
}
