:root {
    --blue: #ff6a00;
    --blue-dark: #c84f00;
    --blue-deep: #8f3600;
    --green: #9bd420;
    --ink: #14212d;
    --muted: #657482;
    --bg: #f4f7fa;
    --panel: #ffffff;
    --border: #dfe7ee;
    --shadow: 0 14px 40px rgba(14, 44, 76, .09);
    --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--bg); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; }
a { color: var(--blue); }
.site-shell { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 36px)); }
.centered { text-align: center; }

.site-header { position: sticky; top: 0; z-index: 1000; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); box-shadow: 0 2px 12px rgba(0,0,0,.12); }
.site-header-inner { min-height: 74px; display: flex; align-items: center; gap: 24px; }
.site-logo { display: flex; align-items: center; flex: 0 0 auto; }
.site-logo img { display: block; width: 150px; max-width: 22vw; height: auto; }
.site-nav { margin-left: auto; display: flex; gap: 5px; align-items: center; }
.site-nav a { padding: 10px 11px; border-radius: 8px; color: #fff; text-decoration: none; font-size: 14px; font-weight: 750; }
.site-nav a:hover, .site-nav a.active { background: rgba(255,255,255,.13); }
.site-menu-toggle { display: none; margin-left: auto; border: 1px solid rgba(255,255,255,.45); border-radius: 9px; padding: 9px 13px; background: transparent; color: #fff; font-weight: 800; }
.header-login { flex: 0 0 auto; }

.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border: 1px solid transparent; border-radius: 10px; padding: 0 19px; text-decoration: none; font-size: 15px; font-weight: 800; transition: .15s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--blue); color: #fff; }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { background: #fff; border-color: var(--border); color: var(--blue-dark); }
.button-light { background: #fff; color: var(--blue-dark); }
.button-outline-light { border-color: rgba(255,255,255,.5); color: #fff; }
.button.full { width: 100%; }

.hero { overflow: hidden; background: linear-gradient(150deg, #f7fbff 0%, #edf5fd 62%, #eef7e6 100%); padding: 86px 0 90px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(480px, 1.05fr); gap: 58px; align-items: center; }
.eyebrow { margin-bottom: 14px; color: var(--blue); font-size: 13px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.hero h1, .page-hero h1 { margin: 0; max-width: 760px; font-size: clamp(42px, 6vw, 68px); line-height: 1.01; letter-spacing: -.045em; }
.hero-lead { max-width: 680px; margin: 25px 0 0; color: #536575; font-size: 20px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-note { margin: 16px 0 0; color: var(--muted); font-size: 13px; }

.product-preview { border: 1px solid rgba(255,255,255,.9); border-radius: 24px; background: rgba(255,255,255,.92); box-shadow: 0 28px 65px rgba(12,58,105,.17); padding: 18px; transform: rotate(1deg); }
.preview-topbar { display: flex; gap: 6px; padding-bottom: 16px; }
.preview-topbar span { width: 9px; height: 9px; border-radius: 50%; background: #c7d3df; }
.preview-heading small { display: block; color: var(--muted); font-weight: 700; }
.preview-heading strong { display: block; margin-top: 4px; font-size: 25px; }
.preview-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 17px; }
.preview-cards div { border: 1px solid var(--border); border-radius: 12px; padding: 14px; background: #fff; }
.preview-cards small, .preview-cards span { display: block; color: var(--muted); font-size: 11px; }
.preview-cards strong { display: block; margin: 7px 0 3px; font-size: 23px; }
.preview-chart { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.chart-bars, .preview-map { position: relative; height: 190px; overflow: hidden; border: 1px solid var(--border); border-radius: 12px; background: #f8fbfd; }
.chart-bars { display: flex; align-items: flex-end; justify-content: space-around; gap: 6px; padding: 22px 18px; }
.chart-bars i { width: 10%; border-radius: 5px 5px 0 0; background: linear-gradient(#ffad66, #ff6a00); }
.preview-map { background: radial-gradient(circle at 55% 48%, rgba(255,106,0,.15), transparent 40%), linear-gradient(45deg, #eef5ec 25%, transparent 25%), linear-gradient(-45deg, #eef5ec 25%, transparent 25%), #e7f1f6; background-size: auto, 24px 24px, 24px 24px; }
.preview-map span { position: absolute; width: 11px; height: 11px; border: 2px solid #fff; border-radius: 50%; background: var(--blue); box-shadow: 0 2px 6px rgba(0,0,0,.15); }
.preview-map span:nth-child(1){left:28%;top:35%}.preview-map span:nth-child(2){left:46%;top:25%;background:#2e7d32}.preview-map span:nth-child(3){left:62%;top:46%;background:#ef6c00}.preview-map span:nth-child(4){left:37%;top:61%;background:#c62828}.preview-map span:nth-child(5){left:72%;top:66%;background:#2e7d32}.preview-map span:nth-child(6){left:53%;top:75%}.preview-map span:nth-child(7){left:18%;top:72%;background:#ef6c00}

.trust-strip { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { padding: 25px 22px; border-right: 1px solid var(--border); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { font-size: 17px; }
.trust-grid span { margin-top: 5px; color: var(--muted); font-size: 13px; }

.section { padding: 84px 0; }
.section-soft { background: #eef3f7; }
.section-dark { background: linear-gradient(145deg, var(--blue-deep), var(--blue-dark)); color: #fff; }
.section-heading { max-width: 720px; margin-bottom: 40px; }
.section-heading.centered { margin-left: auto; margin-right: auto; }
.section-heading h2, .split-section h2, .cta-box h2, .faq-grid h2 { margin: 0; font-size: clamp(32px, 4vw, 46px); letter-spacing: -.035em; line-height: 1.08; }
.section-heading p { margin: 16px 0 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.section-heading.light p { color: rgba(255,255,255,.72); }
.section-dark .eyebrow, .cta-section .eyebrow { color: #b6ea58; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; padding: 26px; box-shadow: var(--shadow); }
.feature-icon { width: 45px; height: 45px; display: grid; place-items: center; border-radius: 12px; background: #eaf3fd; color: var(--blue); font-size: 23px; font-weight: 900; }
.feature-card h3 { margin: 19px 0 9px; font-size: 20px; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.6; }

.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { border: 1px solid rgba(255,255,255,.14); border-radius: 16px; background: rgba(255,255,255,.07); padding: 25px; }
.step > span { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--green); color: #17330a; font-weight: 900; }
.step h3 { margin: 18px 0 9px; }
.step p { margin: 0; color: rgba(255,255,255,.72); line-height: 1.55; }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.large-copy { color: var(--muted); font-size: 18px; line-height: 1.7; }
.use-list { display: grid; gap: 12px; }
.use-list div { border: 1px solid var(--border); border-radius: 13px; background: #fff; padding: 18px 20px; box-shadow: 0 8px 25px rgba(14,44,76,.05); }
.use-list strong, .use-list span { display: block; }
.use-list span { margin-top: 5px; color: var(--muted); line-height: 1.5; }

.cta-section { padding: 0 0 80px; }
.cta-box { display: flex; justify-content: space-between; align-items: center; gap: 35px; border-radius: 22px; background: linear-gradient(135deg, var(--blue-dark), var(--blue)); color: #fff; padding: 40px 44px; box-shadow: 0 18px 48px rgba(200,79,0,.20); }
.cta-box h2 { max-width: 760px; }
.cta-actions { display: flex; flex: 0 0 auto; gap: 10px; }

.page-hero { padding: 74px 0 70px; background: linear-gradient(150deg, #f7fbff, #edf5fd); }
.page-hero.compact h1 { font-size: clamp(38px, 5vw, 58px); }
.page-hero p { max-width: 700px; margin: 18px auto 0; color: var(--muted); font-size: 18px; line-height: 1.6; }
.page-hero .narrow p { margin-left: 0; }

.pricing-section { padding-top: 60px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pricing-card { position: relative; display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 20px; background: #fff; padding: 30px; box-shadow: var(--shadow); }
.pricing-card.featured { border: 2px solid var(--blue); transform: translateY(-8px); }
.popular-badge { position: absolute; top: -14px; right: 24px; border-radius: 999px; background: var(--green); padding: 7px 11px; color: #24420b; font-size: 12px; font-weight: 900; }
.pricing-card h2 { margin: 0; font-size: 25px; }
.pricing-card > p { min-height: 66px; color: var(--muted); line-height: 1.5; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 22px; }
.price-row strong { font-size: 46px; letter-spacing: -.04em; }
.price-row span { color: var(--muted); }
.pricing-card ul { flex: 1; margin: 0 0 28px; padding: 0; list-style: none; }
.pricing-card li { position: relative; margin: 11px 0; padding-left: 25px; color: #445566; line-height: 1.45; }
.pricing-card li:before { content: '✓'; position: absolute; left: 0; color: #4c9408; font-weight: 900; }
.pricing-note { margin-top: 28px; text-align: center; color: var(--muted); }

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 65px; }
.faq-list details { border-bottom: 1px solid #cad6df; padding: 18px 0; }
.faq-list summary { cursor: pointer; font-weight: 800; font-size: 17px; }
.faq-list p { color: var(--muted); line-height: 1.6; }

.legal-section { padding-top: 55px; }
.legal-copy { border: 1px solid var(--border); border-radius: 18px; background: #fff; padding: 38px 44px; box-shadow: var(--shadow); }
.legal-copy h2 { margin: 31px 0 10px; font-size: 22px; }
.legal-copy p { color: #526474; line-height: 1.72; }
.legal-notice { border-left: 4px solid #e1a500; border-radius: 8px; background: #fff8dc; padding: 16px 18px; line-height: 1.55; }

.site-footer { border-top: 1px solid var(--border); background: #fff; padding: 55px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, .7fr); gap: 45px; }
.footer-logo img { width: 265px; max-width: 100%; }
.footer-grid p { max-width: 390px; color: var(--muted); line-height: 1.6; }
.footer-grid h3 { margin: 4px 0 14px; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer-grid > div > a:not(.footer-logo) { display: block; margin: 9px 0; color: #536575; text-decoration: none; }
.footer-grid a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 40px; border-top: 1px solid var(--border); padding-top: 20px; color: var(--muted); font-size: 12px; }

@media (max-width: 1000px) {
    .site-logo img { width: 125px; max-width: none; }
    .site-nav a { font-size: 13px; padding: 9px 8px; }
    .hero-grid { grid-template-columns: 1fr; }
    .product-preview { max-width: 760px; transform: none; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .site-header-inner { flex-wrap: wrap; padding: 12px 0; }
    .site-menu-toggle { display: inline-flex; }
    .header-login { margin-left: 0; }
    .site-nav { display: none; order: 10; width: 100%; margin: 0; flex-direction: column; align-items: stretch; padding: 5px 0; }
    .site-nav.open { display: flex; }
    .site-nav a { text-align: center; }
    .hero { padding-top: 60px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid div:nth-child(2) { border-right: 0; }
    .split-section, .faq-grid { grid-template-columns: 1fr; gap: 35px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 620px; }
    .pricing-card.featured { transform: none; }
    .cta-box { display: block; }
    .cta-actions { margin-top: 25px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .site-shell { width: min(100% - 24px, 1180px); }
    .site-logo img { width: 105px; }
    .header-login { padding: 0 12px; font-size: 13px; }
    .hero h1 { font-size: 43px; }
    .hero-lead { font-size: 18px; }
    .preview-cards, .preview-chart { grid-template-columns: 1fr; }
    .feature-grid, .steps-grid, .trust-grid { grid-template-columns: 1fr; }
    .trust-grid div { border-right: 0; border-bottom: 1px solid var(--border); }
    .cta-actions { flex-direction: column; }
    .legal-copy { padding: 26px 22px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
}

/* Clockwork orange brand refresh */
.site-logo {
    background: #fff;
    border-radius: 10px;
    padding: 5px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.site-logo img { max-height: 52px; width: auto; max-width: 190px; }
.hero { background: linear-gradient(150deg, #fffaf6 0%, #fff1e6 62%, #f8f5f1 100%); }
.page-hero { background: linear-gradient(150deg, #fffaf6, #fff1e6); }
.feature-icon { background: #fff0e5; }
