:root {
    --orange: #ff6600;
    --orange-dark: #e65c00;
    --orange-soft: #fff0e7;
    --teal: #005970;
    --teal-dark: #053744;
    --teal-deep: #062734;
    --teal-soft: #ccdee2;
    --page: #f2f6f7;
    --card: #ffffff;
    --line: #d5e3e6;
    --text: #082d38;
    --muted: #66828c;
    --shadow: 0 20px 55px rgba(6, 39, 52, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: var(--page);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.page-view { min-height: 60vh; }

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--teal);
    background: rgba(242, 246, 247, .98);
    transition: opacity .3s ease, visibility .3s ease;
}
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-mark {
    position: relative;
    width: 76px;
    height: 66px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--orange);
    background: var(--teal);
    font-size: 42px;
    font-weight: 900;
}
.loader-mark::after {
    content: "";
    position: absolute;
    left: 5px;
    bottom: -5px;
    width: 20px;
    height: 22px;
    background: var(--teal);
    clip-path: polygon(100% 0, 0 100%, 92% 72%);
}
.page-loader .spinner-border { width: 1.5rem; height: 1.5rem; color: var(--orange); }
.loader-label { font-size: .85rem; font-weight: 750; }

.site-header {
    color: #fff;
    background: rgba(5, 55, 68, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
}
.site-header .navbar { min-height: 74px; }
.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 850;
    letter-spacing: -.02em;
}
.navbar-brand:hover { color: #fff; }
.navbar-brand img { border-radius: 12px; }
.site-header .nav-link { color: rgba(255,255,255,.75); font-size: .9rem; font-weight: 700; }
.site-header .nav-link:hover, .site-header .nav-link:focus { color: #fff; }
.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    font-weight: 800;
}
.language-toggle:hover, .language-toggle:focus, .language-toggle.show { color: #fff; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.42); }
.language-dropdown .dropdown-menu {
    width: 290px;
    max-height: min(70vh, 530px);
    overflow-y: auto;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.language-search-item { position: sticky; top: -8px; z-index: 2; padding: 7px; background: #fff; }
.language-search-box { position: relative; }
.language-search-box i { position: absolute; top: 50%; left: 13px; transform: translateY(-50%); color: var(--muted); }
.language-search-box input { min-height: 42px; padding-left: 38px; border-color: var(--line); border-radius: 12px; }
.language-option { display: flex; align-items: center; gap: 12px; padding: 9px 11px; border-radius: 10px; }
.language-option strong { width: 32px; color: var(--teal); font-size: .72rem; }
.language-option.active { color: #fff; background: var(--teal); }
.language-option.active strong { color: var(--orange); }
.language-search-empty { padding: 18px; color: var(--muted); text-align: center; }
.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler-icon { filter: invert(1); }

.hero-section {
    position: relative;
    min-height: 760px;
    padding: 150px 0 55px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 90% 20%, rgba(255,102,0,.22), transparent 28%),
        linear-gradient(135deg, var(--teal-deep) 0%, var(--teal-dark) 48%, var(--teal) 100%);
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .15;
    background-image: radial-gradient(rgba(255,255,255,.75) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: linear-gradient(100deg, #000, transparent 75%);
}
.hero-orbit { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.hero-orbit-one { width: 540px; height: 540px; right: -210px; top: 90px; }
.hero-orbit-two { width: 340px; height: 340px; right: -100px; top: 190px; }
.eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.eyebrow { padding: 8px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(255,255,255,.08); }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgba(255,102,0,.15); }
.hero-section h1, .partner-hero h1 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: .98;
    letter-spacing: -.06em;
    font-weight: 900;
}
.hero-lead {
    max-width: 690px;
    margin: 28px 0;
    color: rgba(255,255,255,.76);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 12px; font-weight: 800; }
.btn-kom { color: #fff; background: var(--orange); border-color: var(--orange); }
.btn-kom:hover, .btn-kom:focus { color: #fff; background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); }
.store-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.store-button {
    min-width: 174px;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    padding: 9px 14px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 12px;
    background: rgba(0,0,0,.18);
}
.store-button:hover { color: #fff; background: rgba(0,0,0,.28); }
.store-button.disabled { cursor: default; opacity: .5; pointer-events: none; }
.store-button i { font-size: 1.6rem; }
.store-button span { display: flex; flex-direction: column; line-height: 1.05; }
.store-button small { margin-bottom: 4px; color: rgba(255,255,255,.64); font-size: .65rem; }
.store-button strong { font-size: 1rem; }
.store-note { margin: 9px 0 0; color: var(--teal-soft); font-size: .78rem; }

.phone-stage { position: relative; min-height: 555px; display: grid; place-items: center; }
.phone-shell {
    width: min(330px, 85vw);
    height: 620px;
    position: relative;
    z-index: 2;
    padding: 10px;
    border-radius: 44px;
    background: #071a20;
    box-shadow: 0 38px 80px rgba(0,0,0,.42), inset 0 0 0 1px rgba(255,255,255,.15);
    transform: rotate(2deg);
}
.phone-speaker { position: absolute; z-index: 3; width: 86px; height: 20px; top: 10px; left: 50%; transform: translateX(-50%); border-radius: 0 0 13px 13px; background: #071a20; }
.phone-screen { height: 100%; position: relative; overflow: hidden; color: var(--text); border-radius: 35px; background: #e7f0f2; }
.phone-topbar { min-height: 68px; display: flex; align-items: center; gap: 9px; padding: 13px 13px 8px; color: #fff; background: var(--teal); }
.phone-topbar img { width: 36px; height: 36px; border-radius: 10px; }
.phone-topbar div { flex: 1; display: flex; flex-direction: column; line-height: 1.1; }
.phone-topbar small { margin-top: 4px; color: var(--teal-soft); font-size: .66rem; }
.phone-tabs { display: flex; gap: 6px; overflow: hidden; padding: 9px; border-bottom: 1px solid var(--line); background: #f8fbfc; }
.phone-tabs span { padding: 5px 11px; color: var(--teal); white-space: nowrap; border: 1px solid var(--line); border-radius: 999px; font-size: .64rem; font-weight: 800; }
.phone-tabs .active { color: #fff; background: var(--orange); border-color: var(--orange); }
.chat-preview { display: flex; align-items: center; gap: 9px; padding: 12px 11px; border-bottom: 1px solid var(--line); background: #fff; }
.chat-avatar { width: 42px; height: 42px; flex: 0 0 auto; display: grid; place-items: center; color: #fff; border-radius: 50%; background: linear-gradient(135deg, var(--teal), #0085a0); font-size: .73rem; font-weight: 900; }
.chat-avatar.orange { background: linear-gradient(135deg, var(--orange), #ff9b55); }
.chat-preview > span:nth-child(2) { min-width: 0; flex: 1; display: flex; flex-direction: column; }
.chat-preview b { font-size: .82rem; }
.chat-preview small { overflow: hidden; color: var(--muted); font-size: .67rem; text-overflow: ellipsis; white-space: nowrap; }
.chat-preview time { align-self: flex-start; color: var(--muted); font-size: .61rem; }
.phone-fab { position: absolute; right: 16px; bottom: 72px; width: 50px; height: 50px; color: #fff; border: 0; border-radius: 50%; background: var(--orange); box-shadow: 0 10px 25px rgba(0,0,0,.24); }
.phone-nav { position: absolute; inset: auto 0 0; height: 62px; display: flex; background: #fff; border-top: 1px solid var(--line); }
.phone-nav span { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: var(--muted); }
.phone-nav .active { color: var(--orange); }
.phone-nav small { font-size: .58rem; font-weight: 800; }
.signal-card { position: absolute; z-index: 3; min-width: 170px; display: flex; align-items: center; gap: 8px; padding: 11px 13px; color: var(--text); border-radius: 14px; background: #fff; box-shadow: var(--shadow); font-size: .75rem; font-weight: 800; }
.signal-card i { color: var(--orange); font-size: 1.1rem; }
.signal-card b { margin-left: auto; color: var(--teal); }
.signal-card-top { top: 62px; right: -25px; }
.signal-card-bottom { left: -22px; bottom: 48px; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 55px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.12); }
.hero-metrics div { min-height: 92px; display: flex; align-items: baseline; justify-content: center; gap: 10px; padding: 22px; background: rgba(4,29,37,.42); }
.hero-metrics strong { color: var(--orange); font-size: 2rem; }
.hero-metrics span { color: rgba(255,255,255,.72); font-size: .8rem; font-weight: 700; }

.section { padding: 100px 0; }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading.mx-auto { max-width: 820px; }
.section-heading h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.06; letter-spacing: -.045em; font-weight: 900; }
.section-heading p { margin: 20px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.section-kicker { color: var(--teal); }
.ready-kicker { color: #087e5b; }
.plan-kicker { color: var(--orange-dark); }
.light-kicker { color: var(--teal-soft); }
.feature-card { height: 100%; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--card); box-shadow: 0 12px 35px rgba(6,39,52,.06); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-card > i, .partner-type-card > i { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 25px; color: #fff; border-radius: 16px; background: var(--teal); font-size: 1.4rem; }
.feature-grid > div:nth-child(2n) .feature-card > i { background: var(--orange); }
.feature-card h3, .partner-type-card h3 { margin: 0 0 10px; font-size: 1.05rem; font-weight: 850; }
.feature-card p, .partner-type-card p { margin: 0; color: var(--muted); font-size: .91rem; line-height: 1.62; }
.try-banner { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 45px; padding: 34px 38px; color: #fff; border-radius: 24px; background: var(--teal); box-shadow: var(--shadow); }
.try-banner .banner-label { color: var(--orange); font-size: .73rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.try-banner h3 { margin: 8px 0 5px; font-size: 1.5rem; font-weight: 850; }
.try-banner p { margin: 0; color: var(--teal-soft); }
.try-banner .btn { flex: 0 0 auto; color: var(--teal); }

.section-roadmap { background: #fff; }
.roadmap-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.roadmap-list article { display: grid; grid-template-columns: 48px 1fr 48px; align-items: center; gap: 16px; padding: 27px; border: 1px solid var(--line); border-radius: 20px; background: var(--page); }
.roadmap-list article > span { align-self: start; color: var(--orange); font-weight: 900; }
.roadmap-list article > i { width: 48px; height: 48px; display: grid; place-items: center; color: var(--teal); border-radius: 14px; background: var(--teal-soft); font-size: 1.25rem; }
.roadmap-list h3 { margin: 0 0 7px; font-size: 1.08rem; font-weight: 850; }
.roadmap-list p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }

.section-security { padding-bottom: 50px; background: #fff; }
.security-panel { padding: clamp(35px, 6vw, 75px); overflow: hidden; color: #fff; border-radius: 32px; background: radial-gradient(circle at 85% 20%, rgba(255,102,0,.2), transparent 32%), var(--teal-deep); }
.security-panel h2 { margin: 0 0 24px; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.04em; font-weight: 900; }
.security-panel p { color: rgba(255,255,255,.72); line-height: 1.7; }
.trust-list { display: grid; gap: 10px; }
.trust-list div { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 12px; padding: 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 15px; background: rgba(255,255,255,.07); }
.trust-list i { width: 34px; height: 34px; display: grid; place-items: center; color: var(--teal-deep); border-radius: 50%; background: #66e1b1; }
.trust-list span { font-weight: 750; }
.trust-list small { color: #66e1b1; font-weight: 850; }
.trust-list .planned i { color: #fff; background: var(--orange); }
.trust-list .planned small { color: #ffac74; }
.section-partner-cta { padding-top: 50px; background: #fff; }
.partner-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 55px; border: 1px solid var(--line); border-radius: 28px; background: linear-gradient(135deg, var(--orange-soft), #fff 58%); }
.partner-cta > div > span { color: var(--orange-dark); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.partner-cta h2 { max-width: 760px; margin: 12px 0; font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.1; letter-spacing: -.04em; font-weight: 900; }
.partner-cta p { max-width: 720px; margin: 0; color: var(--muted); }
.partner-cta .btn { flex: 0 0 auto; }

.partner-hero { padding: 145px 0 80px; color: #fff; background: radial-gradient(circle at 85% 25%, rgba(255,102,0,.23), transparent 25%), linear-gradient(135deg, var(--teal-deep), var(--teal)); }
.partner-hero h1 { font-size: clamp(2.7rem, 5vw, 5rem); }
.partner-hero p { max-width: 810px; margin: 26px 0 0; color: rgba(255,255,255,.76); font-size: 1.18rem; line-height: 1.7; }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 55px; color: var(--teal-soft); text-decoration: none; font-weight: 750; }
.back-link:hover { color: #fff; }
.investment-card { padding: 28px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.09); backdrop-filter: blur(12px); }
.investment-card small, .investment-card span { display: block; color: var(--teal-soft); }
.investment-card strong { display: block; margin: 10px 0; color: var(--orange); font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1; letter-spacing: -.06em; }
.investment-card span { font-size: .86rem; line-height: 1.5; }
.partner-proof { background: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 22px; }
.proof-grid article { min-height: 180px; display: flex; flex-direction: column; justify-content: center; padding: 28px; border-right: 1px solid var(--line); }
.proof-grid article:last-child { border-right: 0; }
.proof-grid strong { color: var(--orange); font-size: 2.5rem; line-height: 1; }
.proof-grid span { margin: 12px 0 5px; font-weight: 850; }
.proof-grid small { color: var(--muted); }
.partner-types { background: var(--page); }
.partner-type-card { height: 100%; padding: 34px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.partner-types .row > div:nth-child(2n) .partner-type-card > i { background: var(--orange); }
.funding-section { background: #fff; }
.funding-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.funding-list li { display: flex; align-items: flex-start; gap: 12px; padding: 16px; border-radius: 14px; background: var(--page); font-weight: 750; }
.funding-list i { color: #087e5b; font-size: 1.2rem; }
.boundary-card { display: flex; gap: 17px; padding: 30px; color: #fff; border-radius: 22px; background: var(--teal-deep); }
.boundary-card > i { color: var(--orange); font-size: 1.6rem; }
.boundary-card h3 { margin: 0 0 12px; font-weight: 850; }
.boundary-card p { margin: 0; color: var(--teal-soft); line-height: 1.7; }
.milestone-section { background: var(--page); }
.milestone-track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--line); }
.milestone-track article { min-height: 235px; padding: 25px 20px; background: #fff; }
.milestone-track span { color: var(--orange); font-size: .78rem; font-weight: 900; }
.milestone-track h3 { margin: 24px 0 10px; font-size: 1rem; font-weight: 850; }
.milestone-track p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.55; }
.contact-section { background: #fff; }
.contact-card { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: clamp(36px, 6vw, 68px); color: #fff; border-radius: 30px; background: linear-gradient(130deg, var(--teal-deep), var(--teal)); }
.contact-card > div:first-child > span { color: var(--orange); font-size: .75rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.contact-card h2 { max-width: 760px; margin: 12px 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.04em; font-weight: 900; }
.contact-card p { max-width: 700px; margin: 0; color: var(--teal-soft); }
.contact-actions { flex: 0 0 auto; display: grid; gap: 10px; }
.contact-actions .btn-light { color: var(--teal); }

.site-footer { padding: 32px 0; color: var(--teal-soft); background: #041d25; }
.site-footer .container { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand img { border-radius: 13px; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand b { color: #fff; }
.footer-brand span { font-size: .75rem; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.footer-links a { color: var(--teal-soft); text-decoration: none; font-size: .84rem; font-weight: 700; }
.footer-links a:hover { color: #fff; }
.footer-link-button { padding: 0; color: var(--teal-soft); border: 0; background: transparent; font-size: .84rem; font-weight: 700; }
.footer-link-button:hover { color: #fff; }
.footer-copy { color: rgba(204,222,226,.65); font-size: .78rem; }

.legal-hero { padding: 145px 0 72px; color: #fff; background: radial-gradient(circle at 86% 20%, rgba(255,102,0,.2), transparent 27%), linear-gradient(135deg, var(--teal-deep), var(--teal)); }
.legal-hero .back-link { margin-bottom: 46px; }
.legal-hero .section-kicker { color: var(--orange); }
.legal-hero h1 { max-width: 920px; margin: 18px 0; font-size: clamp(2.6rem, 5vw, 4.8rem); line-height: 1.02; letter-spacing: -.05em; font-weight: 900; }
.legal-hero p { max-width: 790px; margin: 0 0 24px; color: rgba(255,255,255,.78); font-size: 1.15rem; line-height: 1.7; }
.legal-hero small { color: var(--teal-soft); font-weight: 700; }
.legal-section { background: var(--page); }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 820px); justify-content: center; gap: clamp(32px, 6vw, 82px); align-items: start; }
.legal-toc { position: sticky; top: 105px; display: grid; gap: 6px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.legal-toc strong { margin-bottom: 8px; color: var(--teal-deep); }
.legal-toc a { padding: 8px 10px; color: var(--muted); border-radius: 9px; text-decoration: none; font-size: .85rem; font-weight: 700; }
.legal-toc a:hover { color: var(--teal); background: var(--teal-pale); }
.legal-content { min-width: 0; }
.legal-content .legal-lead { margin: 0 0 34px; color: var(--teal-deep); font-size: 1.18rem; line-height: 1.75; font-weight: 650; }
.legal-content section { scroll-margin-top: 105px; padding: 0 0 34px; margin: 0 0 34px; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: 0; }
.legal-content h2 { margin: 0 0 17px; color: var(--teal-deep); font-size: clamp(1.35rem, 3vw, 1.75rem); font-weight: 900; }
.legal-content p, .legal-content li, .legal-content dd { color: #455f67; line-height: 1.78; }
.legal-content ul { display: grid; gap: 10px; padding-left: 1.2rem; }
.legal-content dl { display: grid; grid-template-columns: minmax(110px, 180px) 1fr; gap: 10px 20px; margin: 22px 0 0; padding: 20px; border-radius: 16px; background: #fff; }
.legal-content dt { color: var(--teal-deep); }
.legal-content dd { margin: 0; overflow-wrap: anywhere; }
.legal-content a { color: var(--teal); font-weight: 750; }
.legal-setup-alert { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 28px; border-radius: 14px; }
.legal-table-wrap { overflow-x: auto; margin: 20px 0; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.legal-table { min-width: 640px; margin: 0; }
.legal-table th { padding: 15px; color: var(--teal-deep); background: var(--teal-pale); font-size: .82rem; }
.legal-table td { padding: 15px; color: #455f67; vertical-align: top; line-height: 1.55; }

.cookie-banner { position: fixed; z-index: 1090; right: 20px; bottom: 20px; left: 20px; display: flex; align-items: center; justify-content: space-between; gap: 28px; max-width: 1180px; margin: 0 auto; padding: 22px; color: #fff; border: 1px solid rgba(255,255,255,.14); border-radius: 22px; background: rgba(4,29,37,.97); box-shadow: 0 24px 70px rgba(0,0,0,.28); backdrop-filter: blur(16px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner-copy { display: flex; align-items: flex-start; gap: 16px; min-width: 0; }
.cookie-icon { flex: 0 0 46px; display: grid; place-items: center; width: 46px; height: 46px; color: #fff; border-radius: 14px; background: var(--orange); font-size: 1.3rem; }
.cookie-banner h2 { margin: 0 0 5px; font-size: 1.05rem; font-weight: 900; }
.cookie-banner p { max-width: 700px; margin: 0; color: var(--teal-soft); font-size: .86rem; line-height: 1.55; }
.cookie-banner a { display: inline-block; margin-top: 6px; color: #fff; font-size: .8rem; font-weight: 750; }
.cookie-banner-actions { flex: 0 0 auto; display: flex; gap: 9px; }
.cookie-banner-actions .btn { white-space: nowrap; }
.cookie-modal { overflow: hidden; border: 0; border-radius: 22px; }
.cookie-modal .modal-header { align-items: flex-start; padding: 22px 24px; color: #fff; border: 0; background: var(--teal-deep); }
.cookie-modal .modal-header small { color: var(--orange); font-size: .68rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.cookie-modal .modal-title { margin-top: 4px; font-size: 1.45rem; font-weight: 900; }
.cookie-modal .btn-close { filter: invert(1); }
.cookie-modal .modal-body { display: grid; gap: 12px; padding: 22px; background: var(--page); }
.cookie-category { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.cookie-category > div:first-child { display: flex; align-items: flex-start; gap: 13px; }
.cookie-category i { color: var(--orange); font-size: 1.35rem; }
.cookie-category span { display: grid; gap: 3px; }
.cookie-category strong { color: var(--teal-deep); }
.cookie-category small { color: var(--muted); line-height: 1.45; }
.cookie-category em { color: #9a5b00; font-size: .75rem; font-style: normal; font-weight: 700; }
.cookie-category .form-switch { flex: 0 0 auto; margin: 0; }
.cookie-category .form-check-input { width: 2.8em; height: 1.45em; cursor: pointer; }
.cookie-category .form-check-input:checked { border-color: var(--orange); background-color: var(--orange); }
.cookie-modal .modal-footer { padding: 15px 22px 22px; border: 0; }

html[dir="rtl"] .language-search-box i { left: auto; right: 13px; }
html[dir="rtl"] .language-search-box input { padding-left: .75rem; padding-right: 38px; }
html[dir="rtl"] .signal-card b { margin-right: auto; margin-left: 0; }
html[dir="rtl"] .roadmap-list article { grid-template-columns: 48px 1fr 48px; }

@media (max-width: 1199.98px) {
    .phone-shell { transform: scale(.9) rotate(2deg); }
    .milestone-track { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991.98px) {
    .site-header .navbar-collapse { padding: 12px 0 18px; }
    .hero-section { padding-top: 125px; }
    .phone-stage { margin-top: 10px; }
    .phone-shell { transform: none; }
    .signal-card-top { right: 3%; }
    .signal-card-bottom { left: 3%; }
    .roadmap-list { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-grid article:nth-child(2) { border-right: 0; }
    .proof-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .partner-cta, .contact-card { align-items: flex-start; flex-direction: column; }
    .contact-actions { width: 100%; display: flex; flex-wrap: wrap; }
    .legal-layout { grid-template-columns: 1fr; }
    .legal-toc { position: static; grid-template-columns: repeat(2, 1fr); }
    .legal-toc strong { grid-column: 1 / -1; }
    .cookie-banner { align-items: stretch; flex-direction: column; gap: 16px; }
    .cookie-banner-actions { justify-content: flex-end; }
}

@media (max-width: 767.98px) {
    .section { padding: 76px 0; }
    .hero-section h1, .partner-hero h1 { font-size: clamp(2.65rem, 13vw, 4.2rem); }
    .hero-metrics { grid-template-columns: 1fr; }
    .hero-metrics div { min-height: 70px; justify-content: flex-start; }
    .try-banner { align-items: flex-start; flex-direction: column; padding: 28px; }
    .partner-cta { padding: 34px 26px; }
    .milestone-track { grid-template-columns: repeat(2, 1fr); }
    .contact-actions { display: grid; }
    .site-footer .container { flex-direction: column; text-align: center; }
    .legal-hero { padding-top: 125px; }
    .cookie-banner { right: 10px; bottom: 10px; left: 10px; padding: 17px; border-radius: 17px; }
    .cookie-banner-actions { display: grid; grid-template-columns: 1fr 1fr; }
    .cookie-banner-actions .btn:last-child { grid-column: 1 / -1; grid-row: 1; }
}

@media (max-width: 575.98px) {
    .hero-section { padding-top: 116px; }
    .hero-actions .btn { width: 100%; }
    .store-row { display: grid; grid-template-columns: 1fr 1fr; }
    .store-button { min-width: 0; padding: 9px 10px; }
    .store-button i { font-size: 1.35rem; }
    .store-button strong { font-size: .84rem; }
    .phone-stage { min-height: 520px; }
    .phone-shell { width: 286px; height: 540px; }
    .signal-card { min-width: 145px; padding: 9px 10px; font-size: .68rem; }
    .signal-card-top { top: 30px; right: -5px; }
    .signal-card-bottom { left: -5px; bottom: 22px; }
    .roadmap-list article { grid-template-columns: 35px 1fr; }
    .roadmap-list article > i { display: none; }
    .trust-list div { grid-template-columns: 32px 1fr; }
    .trust-list small { grid-column: 2; }
    .proof-grid { grid-template-columns: 1fr; }
    .proof-grid article { min-height: 145px; border-right: 0; border-bottom: 1px solid var(--line); }
    .proof-grid article:last-child { border-bottom: 0; }
    .milestone-track { grid-template-columns: 1fr; }
    .milestone-track article { min-height: 175px; }
    .language-dropdown .dropdown-menu { position: fixed !important; inset: 76px 12px auto !important; width: auto; transform: none !important; }
    .legal-toc { grid-template-columns: 1fr; }
    .legal-content dl { grid-template-columns: 1fr; gap: 3px; }
    .legal-content dd { margin-bottom: 9px; }
    .cookie-banner-copy { gap: 11px; }
    .cookie-icon { flex-basis: 38px; width: 38px; height: 38px; }
    .cookie-category { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
