:root {
    --navy-950: #04142f;
    --navy-900: #071d40;
    --navy-800: #0b2c5b;
    --blue-700: #0b56d8;
    --blue-600: #1377f4;
    --blue-500: #2f8cff;
    --cyan-400: #4fc8ff;
    --gold-500: #f7c600;
    --gold-400: #ffd84a;
    --red-500: #d71e3c;
    --green-500: #16a66a;
    --ink: #10233f;
    --muted: #66758b;
    --muted-2: #8a98aa;
    --line: rgba(17, 44, 83, 0.10);
    --line-strong: rgba(17, 44, 83, 0.16);
    --white: #ffffff;
    --pearl: #f6f8fc;
    --pearl-blue: #f0f5ff;
    --glass: rgba(255, 255, 255, 0.78);
    --shadow-xs: 0 4px 14px rgba(10, 39, 83, 0.06);
    --shadow-sm: 0 12px 28px rgba(10, 39, 83, 0.09);
    --shadow-md: 0 24px 60px rgba(10, 39, 83, 0.13);
    --shadow-lg: 0 34px 100px rgba(4, 20, 47, 0.18);
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 10% -5%, rgba(47, 140, 255, 0.08), transparent 24%),
        radial-gradient(circle at 92% 8%, rgba(247, 198, 0, 0.05), transparent 18%),
        #ffffff;
    font-family:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "SF Pro Display",
        "SF Pro Text",
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.nav-open {
    overflow: hidden;
}

::selection {
    color: #ffffff;
    background: var(--blue-700);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
p {
    text-wrap: pretty;
}

.container {
    width: min(1220px, calc(100% - 40px));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: -10000px;
    z-index: 9999;
    padding: 12px 16px;
    color: var(--navy-950);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.skip-link:focus {
    left: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 0 0;
    pointer-events: none;
}

.nav-shell {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 8px 10px 8px 16px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.94);
    border-radius: 22px;
    box-shadow:
        0 8px 30px rgba(5, 31, 74, 0.08),
        inset 0 0 0 1px rgba(7, 29, 64, 0.04);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    pointer-events: auto;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: auto;
    height: 46px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-left: auto;
}

.main-nav a {
    position: relative;
    padding: 11px 14px;
    color: #43546c;
    font-size: 0.92rem;
    font-weight: 760;
    border-radius: 12px;
    transition:
        color 0.18s ease,
        background 0.18s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
    color: var(--navy-950);
    background: rgba(19, 119, 244, 0.07);
}

.main-nav a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 18px;
    height: 2px;
    background: var(--blue-600);
    border-radius: 999px;
    transform: translateX(-50%);
}

.nav-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 17px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--navy-900), var(--blue-700));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(11, 86, 216, 0.18);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.nav-contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(11, 86, 216, 0.24);
}

.nav-toggle {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 0 21px;
    border: 1px solid transparent;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 820;
    letter-spacing: -0.01em;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700) 68%, #0744af);
    box-shadow: 0 13px 30px rgba(19, 119, 244, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 18px 36px rgba(19, 119, 244, 0.31);
}

.btn-glass,
.btn-outline {
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(9, 55, 119, 0.16);
    box-shadow: var(--shadow-xs);
    backdrop-filter: blur(12px);
}

.btn-glass:hover,
.btn-outline:hover {
    background: #ffffff;
    border-color: rgba(19, 119, 244, 0.28);
    box-shadow: var(--shadow-sm);
}

.btn-soft {
    min-height: 42px;
    color: var(--blue-700);
    background: #eef5ff;
    border-color: #deebff;
}

.text-link {
    color: var(--blue-700);
    font-weight: 800;
    white-space: nowrap;
}

.section-kicker,
.origin-pill,
.window-kicker,
.bento-label {
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.section-kicker {
    color: var(--blue-700);
}

.section-kicker-light {
    color: #9fc8ff;
}

.hero-premium {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    padding: 112px 0 74px;
}

.hero-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(180deg, rgba(246, 249, 255, 0.72), rgba(255, 255, 255, 0.98)),
        radial-gradient(circle at 65% 16%, rgba(19, 119, 244, 0.12), transparent 29%),
        radial-gradient(circle at 95% 48%, rgba(247, 198, 0, 0.08), transparent 18%);
}

.hero-premium::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: 18px;
    width: 520px;
    height: 84px;
    z-index: -1;
    opacity: 0.95;
    background:
        linear-gradient(
            170deg,
            transparent 0 34%,
            var(--gold-500) 35% 49%,
            #073a9b 50% 65%,
            var(--red-500) 66% 81%,
            transparent 82%
        );
    transform: rotate(-3deg);
    filter: saturate(1.08);
}

.hero-orb {
    position: absolute;
    z-index: -2;
    border-radius: 999px;
    filter: blur(10px);
    pointer-events: none;
}

.hero-orb-blue {
    top: 80px;
    right: 14%;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(62, 154, 255, 0.16), rgba(62, 154, 255, 0));
}

.hero-orb-gold {
    top: 300px;
    right: 3%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(247, 198, 0, 0.12), rgba(247, 198, 0, 0));
}

.hero-premium-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 1.08fr);
    gap: 54px;
    align-items: center;
}

.hero-copy-premium {
    position: relative;
    z-index: 2;
}

.origin-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    color: #8a5a00;
    background: rgba(255, 247, 216, 0.88);
    border: 1px solid rgba(220, 169, 0, 0.20);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(148, 101, 0, 0.06);
}

.origin-dot {
    width: 9px;
    height: 9px;
    background: linear-gradient(180deg, var(--gold-500) 0 33%, #073a9b 33% 66%, var(--red-500) 66%);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(247, 198, 0, 0.12);
}

.hero-copy-premium h1 {
    max-width: 720px;
    margin: 24px 0 20px;
    color: var(--navy-950);
    font-size: clamp(3.35rem, 6vw, 6.6rem);
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.hero-copy-premium h1 span {
    display: block;
    color: var(--blue-700);
}

.lead-premium {
    max-width: 680px;
    margin: 0;
    color: #53647c;
    font-size: clamp(1.05rem, 1.8vw, 1.26rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 38px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

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

.trust-item strong {
    color: var(--navy-900);
    font-size: 1rem;
}

.trust-item span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.78rem;
}

.trust-divider {
    width: 1px;
    height: 34px;
    background: var(--line-strong);
}

.hero-stage {
    position: relative;
    min-height: 610px;
}

.brand-sculpture {
    position: absolute;
    top: -24px;
    right: 20px;
    z-index: 3;
    width: 440px;
    pointer-events: none;
}

.brand-sculpture img {
    position: relative;
    z-index: 2;
    width: 100%;
    filter: drop-shadow(0 28px 34px rgba(6, 30, 75, 0.22));
}

.brand-sculpture-glow {
    position: absolute;
    inset: 20% 14% 6%;
    z-index: 1;
    background:
        radial-gradient(circle at 25% 20%, rgba(247, 198, 0, 0.28), transparent 30%),
        radial-gradient(circle at 65% 40%, rgba(47, 140, 255, 0.32), transparent 38%),
        radial-gradient(circle at 78% 80%, rgba(215, 30, 60, 0.18), transparent 34%);
    filter: blur(36px);
}

.ios-window {
    position: absolute;
    left: 0;
    right: 90px;
    bottom: 6px;
    z-index: 2;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.98);
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(26px) saturate(160%);
    -webkit-backdrop-filter: blur(26px) saturate(160%);
}

.ios-window-bar {
    min-height: 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
    padding: 0 18px;
    color: #718097;
    background: rgba(247, 249, 253, 0.86);
    border-bottom: 1px solid var(--line);
    font-size: 0.72rem;
}

.traffic-lights {
    display: flex;
    gap: 6px;
}

.traffic-lights i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.traffic-lights i:nth-child(1) {
    background: #ff5f57;
}

.traffic-lights i:nth-child(2) {
    background: #febc2e;
}

.traffic-lights i:nth-child(3) {
    background: #28c840;
}

.window-status {
    justify-self: end;
    color: #4a5d78;
}

.ios-window-content {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 22px;
    padding: 25px;
}

.window-copy {
    padding: 10px 0;
}

.window-kicker {
    color: var(--blue-700);
}

.window-copy strong {
    display: block;
    margin: 8px 0 8px;
    color: var(--navy-950);
    font-size: 1.32rem;
    line-height: 1.12;
}

.window-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 0.83rem;
}

.mini-app-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.mini-app {
    min-width: 0;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow-xs);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.mini-app:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.mini-app img {
    width: 38px;
    height: 38px;
    margin-bottom: 7px;
    object-fit: cover;
    border-radius: 10px;
}

.mini-app span {
    display: block;
    overflow: hidden;
    color: var(--navy-900);
    font-size: 0.66rem;
    font-weight: 800;
    line-height: 1.2;
    text-overflow: ellipsis;
}

.floating-chip {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.98);
    border-radius: 17px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
}

.floating-chip strong,
.floating-chip small {
    display: block;
}

.floating-chip strong {
    color: var(--navy-900);
    font-size: 0.78rem;
}

.floating-chip small {
    margin-top: 1px;
    color: var(--muted);
    font-size: 0.65rem;
}

.chip-secure {
    top: 170px;
    left: -32px;
}

.chip-venezuela {
    right: 4px;
    bottom: 128px;
}

.chip-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    border-radius: 11px;
    font-weight: 900;
}

.venezuela-stripe {
    width: 38px;
    height: 28px;
    background: linear-gradient(180deg, var(--gold-500) 0 33%, #073a9b 33% 66%, var(--red-500) 66%);
    border-radius: 8px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.section {
    padding: 92px 0;
}

.section-soft {
    background: var(--pearl);
}

.apps-showcase-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff, #f8faff 68%, #ffffff);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 34px;
}

.section-head h2,
.page-hero h1,
.contact-topics h2 {
    margin: 6px 0 0;
    color: var(--navy-950);
    font-size: clamp(2.25rem, 4vw, 4.2rem);
    line-height: 1.02;
    letter-spacing: -0.05em;
}

.section-head p,
.page-hero p {
    max-width: 760px;
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 1.03rem;
}

.premium-head > div {
    max-width: 820px;
}

.app-store-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.store-app-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(10, 45, 97, 0.10);
    border-radius: 24px;
    box-shadow: var(--shadow-xs);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}

.store-app-card:hover {
    transform: translateY(-5px);
    border-color: rgba(19, 119, 244, 0.20);
    box-shadow: var(--shadow-md);
}

.store-app-card-featured {
    background:
        radial-gradient(circle at 100% 0%, rgba(79, 200, 255, 0.15), transparent 32%),
        linear-gradient(145deg, #ffffff, #f2f7ff);
    border-color: rgba(19, 119, 244, 0.16);
}

.store-app-head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.store-app-icon,
.app-icon {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 9px 22px rgba(10, 39, 83, 0.13);
}

.store-app-title {
    min-width: 0;
}

.store-app-title > span {
    display: block;
    margin-bottom: 4px;
    color: var(--blue-700);
    font-size: 0.68rem;
    font-weight: 850;
    text-transform: uppercase;
}

.store-app-title h3,
.app-card h3 {
    margin: 0;
    color: var(--navy-950);
    font-size: 1.02rem;
    line-height: 1.18;
    letter-spacing: -0.02em;
}

.store-app-title p {
    display: -webkit-box;
    margin: 6px 0 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.8rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.store-app-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 18px 0;
}

.store-app-meta span,
.badge,
.legal-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    color: #53647a;
    background: #f3f6fb;
    border: 1px solid #e8eef7;
    border-radius: 999px;
    font-size: 0.69rem;
    font-weight: 750;
}

.store-app-actions {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
}

.store-app-actions .btn {
    flex: 1;
}

.icon-link {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--navy-900);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 13px;
    box-shadow: var(--shadow-xs);
    font-size: 1.08rem;
    font-weight: 900;
}

.bento-section {
    background: #f6f8fc;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1.16fr 0.84fr;
    gap: 18px;
}

.bento-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 30px;
    box-shadow: var(--shadow-xs);
}

.bento-card-large {
    grid-row: span 2;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background:
        radial-gradient(circle at 90% 8%, rgba(47, 140, 255, 0.13), transparent 30%),
        #ffffff;
}

.bento-card h3 {
    max-width: 560px;
    margin: 7px 0 10px;
    color: var(--navy-950);
    font-size: clamp(1.8rem, 3vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.bento-card p {
    max-width: 600px;
    margin: 0;
    color: var(--muted);
}

.bento-number {
    position: absolute;
    top: 24px;
    right: 28px;
    color: rgba(7, 29, 64, 0.20);
    font-size: 0.8rem;
    font-weight: 900;
}

.bento-label {
    color: var(--blue-700);
}

.bento-dark {
    color: #dbe8fb;
    background:
        radial-gradient(circle at 100% 0%, rgba(47, 140, 255, 0.25), transparent 33%),
        linear-gradient(145deg, #071d40, #0a2e64);
    border-color: rgba(255, 255, 255, 0.08);
}

.bento-dark h3,
.bento-dark .bento-label {
    color: #ffffff;
}

.bento-dark p {
    color: #b7c7dd;
}

.bento-dark a {
    display: inline-flex;
    margin-top: 18px;
    color: #8ec1ff;
    font-weight: 800;
}

.bento-gold {
    background:
        radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.64), transparent 32%),
        linear-gradient(145deg, #fff8d9, #fffdf4);
    border-color: rgba(206, 159, 0, 0.16);
}

.bento-wide {
    grid-column: 1 / -1;
    min-height: 260px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    background:
        linear-gradient(120deg, rgba(240, 245, 255, 0.75), rgba(255, 255, 255, 1));
}

.bento-phone {
    position: relative;
    width: 260px;
    height: 350px;
    align-self: center;
    margin-top: 28px;
    background: linear-gradient(160deg, #0b2c5b, #071d40);
    border: 7px solid #0a1934;
    border-radius: 42px;
    box-shadow: 0 30px 70px rgba(7, 29, 64, 0.25);
    transform: rotate(6deg);
}

.phone-notch {
    width: 88px;
    height: 22px;
    margin: 9px auto 22px;
    background: #020a18;
    border-radius: 999px;
}

.phone-card {
    width: calc(100% - 34px);
    height: 92px;
    margin: 14px auto;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(235, 244, 255, 0.95));
    border-radius: 20px;
}

.phone-card-short {
    height: 62px;
}

.ve-lines {
    position: absolute;
    right: 30px;
    bottom: 28px;
    width: 160px;
    display: grid;
    gap: 8px;
    transform: rotate(-8deg);
}

.ve-lines i {
    height: 9px;
    border-radius: 999px;
}

.ve-lines i:nth-child(1) {
    background: var(--gold-500);
}

.ve-lines i:nth-child(2) {
    background: #073a9b;
}

.ve-lines i:nth-child(3) {
    background: var(--red-500);
}

.transparency-stack {
    position: relative;
    min-height: 170px;
}

.transparency-stack span {
    position: absolute;
    width: 180px;
    min-height: 58px;
    display: grid;
    place-items: center;
    padding: 0 18px;
    color: var(--navy-900);
    background: rgba(255, 255, 255, 0.90);
    border: 1px solid var(--line);
    border-radius: 17px;
    box-shadow: var(--shadow-sm);
    font-weight: 850;
}

.transparency-stack span:nth-child(1) {
    top: 8px;
    right: 98px;
}

.transparency-stack span:nth-child(2) {
    top: 56px;
    right: 48px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
}

.transparency-stack span:nth-child(3) {
    top: 104px;
    right: 0;
}

.legal-preview-section {
    padding-top: 0;
}

.legal-preview {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    padding: 42px;
    color: #ffffff;
    background:
        radial-gradient(circle at 95% 8%, rgba(47, 140, 255, 0.30), transparent 28%),
        linear-gradient(135deg, #061b3a, #0a2f66);
    border-radius: 34px;
    box-shadow: var(--shadow-lg);
}

.legal-preview-copy h2 {
    margin: 8px 0 12px;
    font-size: clamp(2rem, 3.8vw, 3.8rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.legal-preview-copy p {
    margin: 0;
    color: #c0d0e6;
}

.legal-preview-actions {
    display: grid;
    gap: 10px;
}

.legal-preview-actions a {
    position: relative;
    display: grid;
    grid-template-columns: 0.55fr 1fr auto;
    gap: 14px;
    align-items: center;
    min-height: 74px;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 17px;
    transition:
        background 0.18s ease,
        transform 0.18s ease;
}

.legal-preview-actions a:hover {
    background: rgba(255, 255, 255, 0.13);
    transform: translateX(3px);
}

.legal-preview-actions strong {
    font-size: 0.95rem;
}

.legal-preview-actions span {
    color: #b9c9df;
    font-size: 0.79rem;
}

.legal-preview-actions i {
    color: #8fc1ff;
    font-style: normal;
    font-size: 1.1rem;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0 72px;
    background:
        radial-gradient(circle at 85% 0%, rgba(47, 140, 255, 0.12), transparent 30%),
        linear-gradient(180deg, #f6f9ff, #ffffff);
    border-bottom: 1px solid var(--line);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: 0;
    width: 320px;
    height: 46px;
    background: linear-gradient(170deg, transparent 0 28%, var(--gold-500) 29% 47%, #073a9b 48% 66%, var(--red-500) 67% 84%, transparent 85%);
    opacity: 0.92;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 34px;
    align-items: center;
}

.page-hero h1 {
    max-width: 920px;
}

.page-hero p {
    max-width: 820px;
    line-height: 1.7;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.apps-grid,
.feature-grid,
.support-grid {
    display: grid;
    gap: 18px;
}

.apps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid,
.support-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.app-card,
.feature,
.support-card {
    min-width: 0;
    padding: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-xs);
}

.app-card {
    display: flex;
    flex-direction: column;
}

.app-card-top,
.app-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.app-card p,
.feature p,
.support-card p {
    color: var(--muted);
}

.app-meta {
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.78rem;
}

.app-card-actions {
    display: flex;
    gap: 9px;
    margin-top: auto;
    padding-top: 18px;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 5px;
}

.feature .ico {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: var(--blue-700);
    background: #eef5ff;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 900;
}

.feature h3,
.support-card h3 {
    margin: 0;
    color: var(--navy-950);
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.prose {
    max-width: 820px;
}

.prose-card {
    max-width: none;
    padding: 34px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-xs);
}

.prose h2 {
    margin: 2.2rem 0 0.7rem;
    color: var(--navy-950);
    font-size: 1.55rem;
    letter-spacing: -0.025em;
}

.prose h2:first-child {
    margin-top: 0;
}

.prose p,
.prose li {
    color: #52637a;
    line-height: 1.75;
}

.prose a {
    color: #ffffff;
    font-weight: 750;
}

.prose ul {
    padding-left: 1.25rem;
}

.notice {
    margin: 28px 0;
    padding: 18px 20px;
    color: #654d00;
    background: #fff9df;
    border: 1px solid #f3df8c;
    border-radius: 17px;
}

.side-card {
    padding: 24px;
    background:
        radial-gradient(circle at 100% 0%, rgba(47, 140, 255, 0.10), transparent 36%),
        #ffffff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.side-card-sticky {
    position: sticky;
    top: 100px;
}

.side-card h3 {
    margin: 0 0 10px;
    color: var(--navy-950);
}

.side-card p {
    color: var(--muted);
}

.side-card a {
    display: block;
    padding: 10px 0;
    color: var(--blue-700);
    border-top: 1px solid var(--line);
    font-weight: 760;
}

.side-card-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 900;
}

.metric-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.metric {
    min-width: 140px;
    padding: 13px 15px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: var(--shadow-xs);
}

.metric b,
.metric span {
    display: block;
}

.metric b {
    color: var(--navy-900);
}

.metric span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.72rem;
}

.contact-security-note {
    width: min(390px, 100%);
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(15px);
}

.contact-security-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: #ffffff;
    background: linear-gradient(135deg, #14a66a, #07814f);
    border-radius: 12px;
    font-weight: 900;
}

.contact-security-note strong {
    color: var(--navy-950);
}

.contact-security-note p {
    margin: 4px 0 0;
    font-size: 0.82rem;
    line-height: 1.55;
}

.contact-layout {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 26px;
    align-items: start;
}

.contact-topics {
    position: sticky;
    top: 100px;
}

.contact-topics h2 {
    margin-bottom: 24px;
    font-size: 2.2rem;
}

.contact-topic {
    display: block;
    margin-bottom: 9px;
    padding: 15px 16px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-xs);
    transition:
        border-color 0.18s ease,
        transform 0.18s ease,
        box-shadow 0.18s ease;
}

.contact-topic:hover,
.contact-topic.is-active {
    transform: translateX(3px);
    border-color: rgba(19, 119, 244, 0.28);
    box-shadow: var(--shadow-sm);
}

.contact-topic.is-active {
    background: #f1f6ff;
}

.contact-topic strong,
.contact-topic span {
    display: block;
}

.contact-topic strong {
    color: var(--navy-950);
}

.contact-topic span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.77rem;
}

.contact-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    gap: 16px;
}

.form-row-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
    display: grid;
    gap: 7px;
    color: var(--navy-900);
    font-size: 0.82rem;
    font-weight: 800;
}

.contact-form label small {
    color: var(--muted-2);
    font-weight: 650;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: var(--ink);
    background: #f8faff;
    border: 1px solid #dfe7f2;
    border-radius: 14px;
    outline: none;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

.contact-form textarea {
    min-height: 190px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: #ffffff;
    border-color: rgba(19, 119, 244, 0.55);
    box-shadow: 0 0 0 4px rgba(19, 119, 244, 0.10);
}

.form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 6px;
}

.form-submit-row p {
    max-width: 570px;
    margin: 0;
    color: var(--muted);
    font-size: 0.76rem;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.form-alert {
    margin-bottom: 20px;
    padding: 15px 17px;
    border-radius: 15px;
    font-size: 0.88rem;
}

.form-alert-success {
    color: #0b6843;
    background: #eaf9f2;
    border: 1px solid #bdebd6;
}

.form-alert-error {
    color: #8a2131;
    background: #fff0f2;
    border: 1px solid #f3c4cc;
}

.form-alert ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.site-footer {
    padding: 22px 0 26px;
    background: #ffffff;
}

.footer-panel {
    overflow: hidden;
    color: #d7e4f7;
    background:
        radial-gradient(circle at 96% 5%, rgba(47, 140, 255, 0.22), transparent 24%),
        linear-gradient(135deg, #04142f, #082b5c);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.25fr repeat(3, 0.75fr);
    gap: 34px;
    padding: 42px;
}

.footer-brand img {
    width: 210px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 310px;
    margin: 16px 0;
    color: #aebfd6;
    font-size: 0.88rem;
}

.made-in-ve {
    display: inline-flex;
    padding: 6px 9px;
    color: #ffec9f;
    background: rgba(247, 198, 0, 0.10);
    border: 1px solid rgba(247, 198, 0, 0.20);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.footer-column h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 0.82rem;
}

.footer-column a {
    display: block;
    width: fit-content;
    padding: 4px 0;
    color: #aebfd6;
    font-size: 0.8rem;
    transition: color 0.18s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 15px 42px;
    color: #8498b4;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.55s ease,
        transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1080px) {
    .hero-premium-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy-premium {
        max-width: 820px;
    }

    .hero-stage {
        min-height: 590px;
    }

    .brand-sculpture {
        right: 8%;
        width: 420px;
    }

    .ios-window {
        right: 8%;
    }

    .app-store-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .apps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-grid,
    .support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-top {
        grid-template-columns: 1.2fr repeat(2, 0.8fr);
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 860px) {
    .site-header {
        padding-top: 8px;
    }

    .nav-shell {
        min-height: 62px;
        padding-inline: 13px;
    }

    .brand img {
        height: 40px;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
        display: grid;
        place-content: center;
        gap: 4px;
        margin-left: auto;
        padding: 0;
        background: #f3f6fb;
        border: 1px solid var(--line);
        border-radius: 13px;
    }

    .nav-toggle span:not(.sr-only) {
        width: 18px;
        height: 2px;
        background: var(--navy-900);
        border-radius: 999px;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 8px);
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 3px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid var(--line);
        border-radius: 20px;
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(20px);
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a {
        padding: 12px 14px;
    }

    .main-nav a[aria-current="page"]::after {
        display: none;
    }

    .nav-contact {
        display: none;
    }

    .hero-premium {
        min-height: auto;
        padding: 92px 0 52px;
    }

    .hero-copy-premium h1 {
        font-size: clamp(3.1rem, 12vw, 5rem);
    }

    .hero-stage {
        min-height: 540px;
    }

    .brand-sculpture {
        top: 0;
        right: 50%;
        width: min(390px, 76vw);
        transform: translateX(50%);
    }

    .ios-window {
        right: 0;
        bottom: 6px;
    }

    .chip-secure {
        top: 175px;
        left: 4px;
    }

    .chip-venezuela {
        right: 5px;
        bottom: 122px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card-large {
        grid-row: auto;
        min-height: 590px;
    }

    .bento-wide {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .transparency-stack {
        min-height: 185px;
    }

    .legal-preview,
    .page-hero-inner,
    .contact-layout,
    .content-grid {
        grid-template-columns: 1fr;
    }

    .contact-topics,
    .side-card-sticky {
        position: static;
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1220px);
    }

    .site-header .container {
        width: min(100% - 16px, 1220px);
    }

    .hero-premium {
        padding-top: 82px;
    }

    .origin-pill {
        font-size: 0.66rem;
    }

    .hero-copy-premium h1 {
        margin-top: 18px;
        font-size: clamp(2.9rem, 16vw, 4.3rem);
    }

    .lead-premium {
        font-size: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .trust-divider {
        display: none;
    }

    .trust-item strong {
        font-size: 0.88rem;
    }

    .trust-item span {
        font-size: 0.64rem;
    }

    .hero-stage {
        min-height: 510px;
    }

    .brand-sculpture {
        width: min(340px, 82vw);
    }

    .ios-window {
        left: 0;
        right: 0;
    }

    .ios-window-content {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .window-copy {
        display: none;
    }

    .mini-app-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .floating-chip {
        padding: 9px 10px;
    }

    .floating-chip strong {
        font-size: 0.68rem;
    }

    .floating-chip small {
        font-size: 0.57rem;
    }

    .chip-secure {
        top: 168px;
        left: 0;
    }

    .chip-venezuela {
        right: 0;
        bottom: 148px;
    }

    .section {
        padding: 68px 0;
    }

    .section-head {
        display: block;
    }

    .section-head .text-link,
    .section-head > .btn {
        display: inline-flex;
        margin-top: 18px;
    }

    .app-store-rail,
    .apps-grid,
    .feature-grid,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .store-app-card {
        padding: 17px;
    }

    .bento-card {
        min-height: 270px;
        padding: 24px;
        border-radius: 25px;
    }

    .bento-card-large {
        min-height: 520px;
    }

    .bento-phone {
        width: 220px;
        height: 300px;
    }

    .legal-preview {
        gap: 24px;
        padding: 27px;
        border-radius: 27px;
    }

    .legal-preview-actions a {
        grid-template-columns: 1fr auto;
    }

    .legal-preview-actions span {
        grid-column: 1 / -1;
    }

    .page-hero {
        padding: 96px 0 56px;
    }

    .page-hero h1,
    .section-head h2 {
        font-size: clamp(2.3rem, 11vw, 3.5rem);
    }

    .app-detail {
        flex-direction: column;
    }

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

    .contact-card,
    .prose-card {
        padding: 22px;
        border-radius: 23px;
    }

    .form-submit-row {
        align-items: stretch;
        flex-direction: column;
    }

    .form-submit-row .btn {
        width: 100%;
    }

    .footer-panel {
        border-radius: 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px 24px;
    }

    .footer-brand,
    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
        padding: 16px 24px 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
