:root {
    --black: #050505;
    --black-soft: #09090b;
    --panel: #0e0e11;
    --panel-light: #151519;
    --gold-deep: #9c7326;
    --gold: #c9a34f;
    --gold-light: #f0d27a;
    --cream: #f6f1e6;
    --white: #ffffff;
    --muted: #aaa7a0;
    --border: rgba(240, 210, 122, 0.17);
    --border-soft: rgba(255, 255, 255, 0.09);
    --container: 1200px;
    --header-height: 88px;
    --radius-large: 30px;
    --radius-medium: 20px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    color-scheme: dark;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 75% 10%, rgba(201, 163, 79, 0.08), transparent 30%),
        linear-gradient(180deg, #050505 0%, #08080a 48%, #050505 100%);
    color: var(--white);
    font-family:
        Inter, "SF Pro Display", "SF Pro Text", -apple-system,
        BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: pan-y pinch-zoom;
    overscroll-behavior-x: none;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

button,
a,
input,
select,
textarea,
summary {
    -webkit-tap-highlight-color: transparent;
}

button,
.button,
summary {
    touch-action: manipulation;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

.container {
    position: relative;
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    border-radius: 10px;
    background: var(--gold-light);
    color: var(--black);
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.technology-canvas,
.aqua-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.technology-canvas {
    z-index: 0;
    opacity: 0.52;
}

.aqua-canvas {
    z-index: 80;
}

.liquid-lens {
    position: fixed;
    z-index: 79;
    top: 0;
    left: 0;
    width: 82px;
    height: 82px;
    border: 1px solid rgba(240, 210, 122, 0.13);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 42% 38%,
            rgba(255, 255, 255, 0.055),
            rgba(201, 163, 79, 0.025) 38%,
            transparent 70%
        );
    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, 0.025),
        0 0 28px rgba(201, 163, 79, 0.035);
    backdrop-filter: blur(1.2px) saturate(1.08);
    -webkit-backdrop-filter: blur(1.2px) saturate(1.08);
    transform: translate3d(-100px, -100px, 0) scale(0.86);
    transition:
        opacity 280ms ease,
        transform 130ms linear;
    will-change: transform, opacity;
}

.liquid-lens.active {
    opacity: 0.72;
}

.ambient {
    position: fixed;
    z-index: 0;
    width: 42vw;
    aspect-ratio: 1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(110px);
    opacity: 0.07;
}

.ambient-one {
    top: 18%;
    right: -20%;
    background: var(--gold);
}

.ambient-two {
    bottom: 4%;
    left: -24%;
    background: var(--gold-deep);
}

.site-header,
main,
.site-footer {
    position: relative;
    z-index: 2;
}

.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    height: var(--header-height);
    padding-top: env(safe-area-inset-top, 0);
    border-bottom: 1px solid transparent;
    transition:
        background-color 300ms ease,
        border-color 300ms ease,
        backdrop-filter 300ms ease;
}

.site-header.scrolled {
    border-bottom-color: var(--border-soft);
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}

.brand {
    width: min(260px, 43vw);
}

.brand img {
    width: 100%;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.4vw, 36px);
}

.main-navigation > a {
    position: relative;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 200ms ease;
}

.main-navigation > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 250ms var(--ease);
}

.main-navigation > a:hover,
.main-navigation > a:focus-visible {
    color: var(--white);
}

.main-navigation > a:hover::after,
.main-navigation > a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.main-navigation .nav-cta {
    min-height: 44px;
    padding: 11px 18px;
    border: 1px solid rgba(240, 210, 122, 0.42);
    border-radius: 999px;
    color: var(--gold-light);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.025);
    color: var(--white);
}

.nav-toggle span {
    display: block;
    width: 19px;
    height: 1px;
    margin: 6px auto;
    background: currentColor;
    transition: transform 250ms var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    padding:
        calc(var(--header-height) + 70px)
        0
        76px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--gold-light);
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.19em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-light);
    box-shadow: 0 0 18px rgba(240, 210, 122, 0.8);
    animation: breathe 2.8s ease-in-out infinite;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

h1 {
    max-width: 780px;
    margin-bottom: 26px;
    color: var(--white);
    font-size: clamp(3rem, 6.4vw, 6.4rem);
    font-weight: 690;
    letter-spacing: -0.057em;
    line-height: 0.98;
}

h1 span {
    display: block;
    color: var(--gold-light);
}

.hero-description {
    max-width: 650px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.67);
    font-size: clamp(1.05rem, 1.45vw, 1.22rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 760;
    line-height: 1.2;
    transition:
        transform 220ms var(--ease),
        border-color 220ms ease,
        background-color 220ms ease,
        box-shadow 220ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-gold {
    background:
        linear-gradient(125deg, var(--gold-deep), var(--gold-light));
    color: var(--black);
    box-shadow: 0 14px 44px rgba(156, 115, 38, 0.2);
}

.button-gold:hover,
.button-gold:focus-visible {
    box-shadow: 0 18px 54px rgba(201, 163, 79, 0.3);
}

.button-ghost {
    border-color: var(--border-soft);
    background: rgba(255, 255, 255, 0.025);
    color: var(--white);
}

.button-ghost:hover,
.button-ghost:focus-visible {
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.055);
}

.button-black {
    background: var(--black);
    color: var(--white);
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 26px;
    margin: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.9rem;
    list-style: none;
}

.hero-benefits span {
    margin-right: 7px;
    color: var(--gold-light);
}

.hero-visual {
    position: relative;
    display: grid;
    min-height: 530px;
    place-items: center;
    isolation: isolate;
}

.hero-visual::before {
    position: absolute;
    z-index: -2;
    width: 78%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(201, 163, 79, 0.16),
            rgba(201, 163, 79, 0.035) 42%,
            transparent 69%
        );
    content: "";
    filter: blur(8px);
}

.hero-visual img {
    position: relative;
    z-index: 2;
    width: min(100%, 690px);
    filter:
        drop-shadow(0 34px 60px rgba(0, 0, 0, 0.55))
        drop-shadow(0 0 24px rgba(201, 163, 79, 0.06));
    transform: translate3d(0, var(--parallax-y, 0), 0);
    transition: transform 100ms linear;
}

.hero-orbit {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(240, 210, 122, 0.14);
    border-radius: 50%;
}

.orbit-one {
    width: 79%;
    aspect-ratio: 1;
    animation: orbit 28s linear infinite;
}

.orbit-two {
    width: 58%;
    aspect-ratio: 1;
    border-style: dashed;
    animation: orbit 20s linear infinite reverse;
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    min-width: 112px;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(10, 10, 12, 0.72);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.floating-card strong {
    color: var(--gold-light);
    font-size: 0.72rem;
}

.floating-card span {
    color: rgba(255, 255, 255, 0.79);
    font-size: 0.78rem;
    font-weight: 650;
}

.floating-card-one {
    top: 17%;
    left: 1%;
}

.floating-card-two {
    top: 42%;
    right: -3%;
}

.floating-card-three {
    right: 10%;
    bottom: 11%;
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-scroll span {
    position: relative;
    width: 1px;
    height: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.12);
}

.hero-scroll span::after {
    position: absolute;
    top: -50%;
    width: 100%;
    height: 50%;
    background: var(--gold-light);
    content: "";
    animation: scroll-line 2.2s ease-in-out infinite;
}

.trust-strip {
    border-block: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.018);
}

.trust-grid {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.trust-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.78rem;
    font-weight: 680;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.trust-grid > span {
    width: 4px;
    height: 4px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--gold);
}

.section {
    padding: clamp(92px, 11vw, 160px) 0;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 58px;
}

.section-heading.centered {
    margin-inline: auto;
    text-align: center;
}

.section h2 {
    margin-bottom: 24px;
    font-size: clamp(2.35rem, 4.5vw, 4.7rem);
    font-weight: 670;
    letter-spacing: -0.05em;
    line-height: 1.03;
}

.section-heading p,
.split-copy > p,
.business-copy > p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.process-card {
    position: relative;
    min-height: 310px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-medium);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.045), transparent 55%),
        var(--panel);
}

.process-number {
    display: block;
    margin-bottom: 42px;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.process-line {
    width: 52px;
    height: 1px;
    margin-bottom: 26px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.process-card h3 {
    margin-bottom: 15px;
    font-size: 1.35rem;
}

.process-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.product-section {
    overflow: hidden;
}

.split-layout,
.business-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(52px, 8vw, 110px);
    align-items: center;
}

.product-visual,
.profiles-visual {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background:
        radial-gradient(circle at 50% 42%, rgba(201, 163, 79, 0.14), transparent 48%),
        var(--panel);
}

.product-visual::after,
.profiles-visual::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.24);
    content: "";
    pointer-events: none;
}

.product-visual img,
.profiles-visual img {
    width: 100%;
}

.gold-corner {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 38px;
    height: 38px;
    border-right: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
}

.split-copy h2,
.business-copy h2 {
    margin-bottom: 26px;
}

.product-details {
    display: grid;
    gap: 0;
    margin: 38px 0 0;
}

.product-details > div {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid var(--border-soft);
}

.product-details dt {
    color: var(--gold-light);
    font-weight: 700;
}

.product-details dd {
    margin: 0;
    color: var(--muted);
}

.features-section {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(201, 163, 79, 0.027) 50%,
            transparent
        );
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    position: relative;
    min-height: 250px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-medium);
    background: rgba(13, 13, 16, 0.85);
    transition:
        transform 350ms var(--ease),
        border-color 350ms ease,
        background-color 350ms ease;
}

.feature-card::before {
    position: absolute;
    top: 0;
    left: 30px;
    width: 54px;
    height: 1px;
    background: var(--gold-light);
    content: "";
    transform: scaleX(0.22);
    transform-origin: left;
    transition: transform 350ms var(--ease);
}

.feature-card:hover {
    border-color: rgba(240, 210, 122, 0.28);
    background: rgba(18, 18, 21, 0.96);
    transform: translateY(-5px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card > span {
    display: block;
    margin-bottom: 45px;
    color: var(--gold);
    font-size: 0.71rem;
    font-weight: 850;
    letter-spacing: 0.18em;
}

.feature-card h3 {
    margin-bottom: 13px;
    font-size: 1.18rem;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.business-section {
    overflow: hidden;
}

.business-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
    border-top: 1px solid var(--border-soft);
    border-left: 1px solid var(--border-soft);
}

.business-list > div {
    padding: 20px;
    border-right: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.business-list strong,
.business-list span {
    display: block;
}

.business-list strong {
    margin-bottom: 5px;
    color: var(--cream);
    font-size: 0.93rem;
}

.business-list span {
    color: var(--muted);
    font-size: 0.82rem;
}

.gold-statement {
    position: relative;
    display: grid;
    min-height: 440px;
    align-content: center;
    justify-items: start;
    padding: clamp(38px, 7vw, 90px);
    overflow: hidden;
    border-radius: var(--radius-large);
    background:
        radial-gradient(circle at 87% 20%, rgba(255, 255, 255, 0.42), transparent 22%),
        linear-gradient(125deg, #9e7424, #efcf73 52%, #b48731);
    color: var(--black);
    box-shadow: 0 35px 90px rgba(116, 80, 16, 0.16);
}

.gold-statement::after {
    position: absolute;
    top: -34%;
    right: -8%;
    width: 48%;
    aspect-ratio: 1;
    border: 1px solid rgba(5, 5, 5, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 50px rgba(5, 5, 5, 0.035),
        0 0 0 100px rgba(5, 5, 5, 0.025);
    content: "";
}

.statement-label {
    margin-bottom: 32px;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.gold-statement h2 {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin-bottom: 36px;
    color: var(--black);
}

.gold-statement .button {
    position: relative;
    z-index: 1;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(50px, 8vw, 110px);
}

.faq-list {
    border-top: 1px solid var(--border-soft);
}

.faq-list details {
    border-bottom: 1px solid var(--border-soft);
}

.faq-list summary {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    color: var(--cream);
    font-size: 1.05rem;
    font-weight: 650;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    color: var(--gold-light);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 250ms var(--ease);
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list details p {
    max-width: 690px;
    padding: 0 42px 28px 0;
    color: var(--muted);
}

.contact-section {
    padding-top: 80px;
}

.contact-shell {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(30px, 5vw, 72px);
    padding: clamp(28px, 5vw, 70px);
    border-radius: var(--radius-large);
    background:
        radial-gradient(circle at 10% 15%, rgba(255, 255, 255, 0.35), transparent 24%),
        linear-gradient(130deg, #a47a2e, #eed078 55%, #b88d3d);
    color: var(--black);
}

.dark-eyebrow {
    color: rgba(5, 5, 5, 0.65);
}

.contact-intro h2 {
    color: var(--black);
}

.contact-intro > p {
    color: rgba(5, 5, 5, 0.72);
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 38px;
}

.contact-note > span {
    display: grid;
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(5, 5, 5, 0.25);
    border-radius: 50%;
    font-weight: 850;
}

.contact-note p {
    margin: 0;
    color: rgba(5, 5, 5, 0.72);
    font-size: 0.87rem;
}

.contact-form-card {
    padding: clamp(24px, 4vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    background: rgba(5, 5, 5, 0.96);
    box-shadow: 0 28px 70px rgba(34, 22, 3, 0.26);
    color: var(--white);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
}

.form-grid label {
    display: grid;
    gap: 8px;
}

.form-grid label > span {
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.full-field {
    grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
    outline: none;
    background: rgba(255, 255, 255, 0.045);
    color: var(--white);
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        background-color 180ms ease;
}

.form-grid input,
.form-grid select {
    padding: 0 15px;
}

.form-grid textarea {
    min-height: 118px;
    padding: 13px 15px;
    resize: vertical;
}

.form-grid select {
    color-scheme: dark;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.065);
    box-shadow: 0 0 0 3px rgba(201, 163, 79, 0.12);
}

.form-submit {
    width: 100%;
    margin-top: 22px;
    border: 0;
}

.form-privacy {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    text-align: center;
}

.form-messages {
    display: grid;
    gap: 8px;
    margin-bottom: 20px;
}

.form-message {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.86rem;
}

.form-message.success {
    border: 1px solid rgba(118, 211, 149, 0.28);
    background: rgba(68, 165, 103, 0.12);
    color: #a8e5ba;
}

.form-message.error {
    border: 1px solid rgba(239, 117, 117, 0.28);
    background: rgba(204, 73, 73, 0.12);
    color: #ffc0c0;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.site-footer {
    padding: 58px 0 calc(38px + env(safe-area-inset-bottom, 0px));
}

.footer-grid {
    display: grid;
    grid-template-columns: 250px 1fr auto;
    gap: 40px;
    align-items: center;
}

.footer-brand img {
    width: 100%;
}

.footer-grid > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.82rem;
}

.footer-grid .copyright {
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 850ms var(--ease),
        transform 850ms var(--ease);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.error-page {
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    place-items: center;
}

.error-content {
    position: relative;
    z-index: 2;
    width: min(90%, 650px);
    text-align: center;
}

.error-content img {
    width: min(330px, 80%);
    margin: 0 auto 60px;
}

.error-content > span {
    display: block;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 850;
    letter-spacing: 0.25em;
}

.error-content h1 {
    margin: 18px auto;
    font-size: clamp(2.5rem, 8vw, 5rem);
}

.error-content p {
    margin-bottom: 30px;
    color: var(--muted);
}

@keyframes breathe {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(0.86);
    }

    50% {
        opacity: 1;
        transform: scale(1.18);
    }
}

@keyframes orbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes scroll-line {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(300%);
    }
}

@media (max-width: 1050px) {
    :root {
        --header-height: 78px;
    }

    .nav-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: calc(var(--header-height) + env(safe-area-inset-top, 0px));
        right: 18px;
        left: 18px;
        display: grid;
        max-height: calc(100svh - var(--header-height) - 36px);
        gap: 0;
        padding: 16px;
        overflow-y: auto;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: rgba(8, 8, 10, 0.97);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-14px) scale(0.98);
        transition:
            opacity 220ms ease,
            visibility 220ms ease,
            transform 220ms var(--ease);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
    }

    .main-navigation.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }

    .main-navigation > a {
        display: flex;
        min-height: 52px;
        align-items: center;
        padding: 0 14px;
        border-bottom: 1px solid var(--border-soft);
        font-size: 0.96rem;
    }

    .main-navigation > a::after {
        display: none;
    }

    .main-navigation .nav-cta {
        margin-top: 12px;
        border: 1px solid var(--border);
        border-radius: 12px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(370px, 0.9fr);
        gap: 30px;
    }

    .floating-card {
        display: none;
    }

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

    .contact-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 72px);
    }

    .hero-grid,
    .split-layout,
    .business-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-copy .eyebrow {
        justify-content: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-actions,
    .hero-benefits {
        justify-content: center;
    }

    .hero-visual {
        min-height: auto;
        margin-top: 15px;
    }

    .hero-visual img {
        width: min(100%, 610px);
    }

    .hero-scroll {
        display: none;
    }

    .trust-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
        padding: 18px 0;
    }

    .trust-grid p {
        min-height: 54px;
        padding: 15px 12px;
    }

    .trust-grid > span {
        display: none;
    }

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

    .process-card {
        min-height: auto;
    }

    .business-copy {
        order: 2;
    }

    .profiles-visual {
        order: 1;
    }

    .faq-layout .section-heading {
        margin-bottom: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-brand {
        width: 250px;
    }

    .footer-grid .copyright {
        text-align: center;
    }
}

@media (max-width: 600px) {
    :root {
        --radius-large: 22px;
        --radius-medium: 17px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .brand {
        width: min(220px, 62vw);
    }

    .hero {
        padding-top: calc(var(--header-height) + 50px);
        padding-bottom: 58px;
    }

    .eyebrow {
        margin-bottom: 18px;
        font-size: 0.66rem;
        letter-spacing: 0.14em;
    }

    h1 {
        font-size: clamp(2.7rem, 13vw, 4.4rem);
        line-height: 1;
    }

    h1 span {
        display: inline;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero-actions {
        display: grid;
    }

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

    .hero-benefits {
        display: grid;
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .hero-visual {
        margin-inline: -7px;
    }

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

    .trust-grid p {
        min-height: 46px;
    }

    .section {
        padding: 88px 0;
    }

    .section h2 {
        font-size: clamp(2.25rem, 11vw, 3.5rem);
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .process-card,
    .feature-card {
        padding: 25px;
    }

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

    .feature-card {
        min-height: 220px;
    }

    .product-details > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .business-list {
        grid-template-columns: 1fr;
    }

    .gold-statement {
        min-height: 400px;
        padding: 34px 25px;
    }

    .faq-list summary {
        min-height: 80px;
        font-size: 0.96rem;
    }

    .contact-shell {
        width: calc(100% - 20px);
        padding: 26px 14px 14px;
    }

    .contact-intro {
        padding: 12px;
    }

    .contact-form-card {
        padding: 24px 17px;
    }

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

    .full-field {
        grid-column: auto;
    }
}

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

    .brand {
        width: 190px;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }
}

@media (hover: none), (pointer: coarse) {
    .feature-card:hover,
    .button:hover {
        transform: none;
    }
}

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

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

    .technology-canvas,
    .aqua-canvas,
    .liquid-lens {
        display: none;
    }

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

/* MV COMPACT CONTACT BEGIN */

#contacto.contact-section {
    box-sizing: border-box !important;
    width: 100% !important;
    min-height: 0 !important;
    height: auto !important;
    padding: clamp(18px, 3vh, 30px) 0 !important;
    overflow-x: clip !important;
}

#contacto .contact-shell {
    box-sizing: border-box !important;
    width: min(1120px, calc(100% - 64px)) !important;
    max-width: 1120px !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: clamp(20px, 2.2vw, 30px) !important;
    gap: clamp(22px, 2.8vw, 38px) !important;
    grid-template-columns:
        minmax(0, 0.76fr)
        minmax(0, 1.24fr) !important;
    align-items: center !important;
    border-radius: 24px !important;
}

#contacto .contact-intro {
    min-width: 0 !important;
    padding: 0 !important;
}

#contacto .contact-intro h2 {
    max-width: 410px !important;
    margin: 0 0 14px !important;
    font-size: clamp(2.05rem, 2.8vw, 2.85rem) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.04em !important;
}

#contacto .contact-intro > p {
    max-width: 420px !important;
    margin: 0 !important;
    font-size: clamp(0.84rem, 1vw, 0.94rem) !important;
    line-height: 1.45 !important;
}

#contacto .contact-note {
    gap: 12px !important;
    margin-top: 18px !important;
}

#contacto .contact-note > span {
    width: 44px !important;
    height: 44px !important;
    font-size: 0.84rem !important;
}

#contacto .contact-note p {
    font-size: 0.73rem !important;
    line-height: 1.4 !important;
}

#contacto .contact-form-card {
    box-sizing: border-box !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: clamp(18px, 1.8vw, 24px) !important;
    border-radius: 17px !important;
}

#contacto .form-grid {
    gap: 10px 12px !important;
}

#contacto .form-grid label {
    min-width: 0 !important;
    gap: 4px !important;
}

#contacto .form-grid label > span {
    font-size: 0.68rem !important;
    line-height: 1.2 !important;
}

#contacto .form-grid input,
#contacto .form-grid select {
    box-sizing: border-box !important;
    min-height: 40px !important;
    height: 40px !important;
    padding: 0 12px !important;
    border-radius: 8px !important;
    font-size: 0.86rem !important;
}

#contacto .form-grid textarea {
    box-sizing: border-box !important;
    min-height: 68px !important;
    height: 68px !important;
    padding: 9px 12px !important;
    border-radius: 8px !important;
    font-size: 0.86rem !important;
    line-height: 1.35 !important;
}

/*
 * El control cerrado permanece oscuro.
 * La lista nativa de Chrome utiliza fondo blanco y texto oscuro.
 */
#contacto .form-grid select {
    color: #f8f4e8 !important;
    color-scheme: light !important;
}

#contacto .form-grid select option,
#contacto .form-grid select optgroup {
    background-color: #ffffff !important;
    color: #171714 !important;
    font-size: 0.92rem !important;
}

#contacto .form-submit {
    width: 100% !important;
    min-height: 42px !important;
    margin-top: 12px !important;
    padding: 9px 16px !important;
    font-size: 0.86rem !important;
}

#contacto .form-privacy {
    margin: 8px 0 0 !important;
    font-size: 0.64rem !important;
    line-height: 1.3 !important;
}

#contacto .form-messages {
    margin-bottom: 10px !important;
}

@media (max-width: 900px) {
    #contacto.contact-section {
        padding: 18px 0 !important;
    }

    #contacto .contact-shell {
        width: min(700px, calc(100% - 30px)) !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        padding: 20px !important;
    }

    #contacto .contact-intro h2,
    #contacto .contact-intro > p {
        max-width: none !important;
    }

    #contacto .contact-intro h2 {
        font-size: clamp(1.9rem, 6.8vw, 2.5rem) !important;
    }
}

@media (max-width: 560px) {
    #contacto.contact-section {
        padding: 12px 0 !important;
    }

    #contacto .contact-shell {
        width: calc(100% - 18px) !important;
        padding: 14px 11px !important;
        gap: 14px !important;
        border-radius: 18px !important;
    }

    #contacto .contact-intro h2 {
        margin-bottom: 10px !important;
        font-size: clamp(1.75rem, 9vw, 2.15rem) !important;
    }

    #contacto .contact-intro > p {
        font-size: 0.82rem !important;
    }

    #contacto .contact-note {
        margin-top: 12px !important;
    }

    #contacto .contact-note > span {
        width: 40px !important;
        height: 40px !important;
    }

    #contacto .contact-form-card {
        padding: 14px 11px !important;
    }

    #contacto .form-grid {
        grid-template-columns: 1fr !important;
        gap: 9px !important;
    }

    #contacto .form-grid input,
    #contacto .form-grid select {
        min-height: 39px !important;
        height: 39px !important;
    }

    #contacto .form-grid textarea {
        min-height: 64px !important;
        height: 64px !important;
    }
}

/* MV COMPACT CONTACT END */
