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

:root {
    --accent: #0a84ff;
    --accent-rgb: 10, 132, 255;
    --black: #030304;
    --surface: #0a0a0c;
    --surface-soft: #101014;
    --surface-high: #16161b;
    --white: #f5f5f7;
    --muted: #a1a1aa;
    --muted-dark: #71717a;
    --line: rgba(255, 255, 255, 0.09);
    --line-high: rgba(255, 255, 255, 0.16);
    --green: #31d158;
    --shell: min(1180px, calc(100% - 40px));
    --radius: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.nav-open {
    overflow: hidden;
}

::selection {
    background: rgba(var(--accent-rgb), 0.36);
    color: #fff;
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: #050506;
}

::-webkit-scrollbar-thumb {
    background: #2a2a30;
    border: 2px solid #050506;
    border-radius: 20px;
}

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

button,
input {
    font: inherit;
}

button {
    color: inherit;
}

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

svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.shell {
    margin-inline: auto;
    width: var(--shell);
}

.skip-link {
    background: #fff;
    color: #000;
    left: 16px;
    padding: 10px 16px;
    position: fixed;
    top: -100px;
    z-index: 9999;
}

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

.cursor-glow {
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1), transparent 68%);
    border-radius: 50%;
    height: 520px;
    left: 0;
    pointer-events: none;
    position: fixed;
    top: 0;
    transform: translate(-50%, -50%);
    width: 520px;
    z-index: 0;
}

.announcement {
    background: #f5f5f7;
    color: #1d1d1f;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    min-height: 36px;
    position: relative;
    z-index: 102;
}

.announcement__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 36px;
}

.announcement a {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    transition: opacity 180ms ease;
}

.announcement a:hover {
    opacity: 0.68;
}

.announcement__dot {
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(49, 209, 88, 0.15);
    height: 6px;
    width: 6px;
}

.announcement__arrow {
    width: 14px;
}

.announcement__support {
    color: #6e6e73;
}

.site-header {
    border-bottom: 1px solid transparent;
    left: 0;
    position: sticky;
    right: 0;
    top: 0;
    transition: background 240ms ease, border 240ms ease, backdrop-filter 240ms ease;
    z-index: 100;
}

.site-header.is-scrolled {
    background: rgba(5, 5, 7, 0.78);
    border-color: var(--line);
    backdrop-filter: saturate(160%) blur(24px);
}

.site-header__inner {
    align-items: center;
    display: flex;
    height: 72px;
    justify-content: space-between;
}

.brand {
    align-items: baseline;
    display: inline-flex;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.055em;
    position: relative;
    z-index: 2;
}

.brand__future {
    color: #fff;
}

.brand__cell {
    color: var(--accent);
}

.main-nav {
    align-items: center;
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: #b3b3bb;
    font-size: 13px;
    font-weight: 500;
    transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: #fff;
}

.button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-size: 14px;
    font-weight: 600;
    gap: 10px;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    position: relative;
    transition: transform 200ms ease, background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.button svg {
    height: 18px;
    transition: transform 200ms ease;
    width: 18px;
}

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

.button:hover svg {
    transform: translateX(3px);
}

.button--primary {
    background: var(--accent);
    box-shadow: 0 12px 36px rgba(var(--accent-rgb), 0.2);
    color: #fff;
}

.button--primary:hover {
    box-shadow: 0 16px 44px rgba(var(--accent-rgb), 0.33);
}

.button--ghost {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--line-high);
    color: #fff;
}

.button--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.28);
}

.button--small {
    font-size: 12px;
    min-height: 38px;
    padding-inline: 17px;
}

.button--large {
    min-height: 58px;
    padding-inline: 30px;
}

.button--large svg {
    fill: currentColor;
    height: 21px;
    stroke-width: 0;
    width: 21px;
}

.menu-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    height: 44px;
    justify-content: center;
    width: 44px;
    z-index: 2;
}

.menu-toggle svg {
    height: 24px;
    width: 24px;
}

.menu-close {
    display: none;
}

.hero {
    align-items: center;
    display: flex;
    min-height: calc(100svh - 108px);
    overflow: hidden;
    position: relative;
}

.hero::before {
    background-image: linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
    background-size: 64px 64px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 84%);
    pointer-events: none;
    position: absolute;
}

.hero__aura {
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.2) 0%, rgba(var(--accent-rgb), 0.06) 28%, transparent 67%);
    filter: blur(10px);
    height: 940px;
    position: absolute;
    right: -280px;
    top: -270px;
    width: 940px;
}

.hero__content {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 0.94fr) minmax(480px, 1.06fr);
    padding-block: 76px 90px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    align-items: center;
    color: var(--accent);
    display: flex;
    font-size: 11px;
    font-weight: 700;
    gap: 9px;
    letter-spacing: 0.16em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.eyebrow::before {
    background: currentColor;
    content: "";
    height: 1px;
    width: 24px;
}

.hero h1 {
    background: linear-gradient(135deg, #fff 10%, #e5e5e8 50%, #8d8d96 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: clamp(52px, 5.6vw, 82px);
    font-weight: 700;
    letter-spacing: -0.066em;
    line-height: 0.98;
    max-width: 690px;
}

.hero__subtitle {
    color: #aaaab3;
    font-size: clamp(17px, 1.55vw, 20px);
    letter-spacing: -0.025em;
    line-height: 1.62;
    margin-top: 28px;
    max-width: 620px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero__microcopy {
    color: #85858e;
    display: flex;
    flex-wrap: wrap;
    font-size: 11px;
    gap: 20px;
    margin-top: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__microcopy span {
    align-items: center;
    display: flex;
    gap: 6px;
}

.hero__microcopy svg {
    color: var(--green);
    height: 14px;
    width: 14px;
}

.hero__visual {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 620px;
    perspective: 1000px;
    position: relative;
}

.hero__orb {
    border: 1px solid rgba(var(--accent-rgb), 0.22);
    border-radius: 50%;
    position: absolute;
}

.hero__orb--one {
    height: 480px;
    width: 480px;
}

.hero__orb--two {
    border-color: rgba(255, 255, 255, 0.05);
    height: 620px;
    width: 620px;
}

.device-stage {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
    border: 1px solid var(--line-high);
    border-radius: 42px;
    box-shadow: 0 60px 100px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    height: 510px;
    overflow: hidden;
    position: relative;
    transform: rotateY(-3deg) rotateX(1deg);
    transition: transform 250ms ease-out;
    width: 430px;
}

.device-stage::after {
    background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.08), transparent 55%);
    content: "";
    inset: 0;
    position: absolute;
    transform: translateX(-100%);
    animation: sheen 8s ease-in-out infinite;
}

@keyframes sheen {
    0%, 60% { transform: translateX(-110%); }
    82%, 100% { transform: translateX(110%); }
}

.device-stage__ring {
    background: rgba(var(--accent-rgb), 0.25);
    border-radius: 50%;
    filter: blur(80px);
    height: 300px;
    left: 50%;
    position: absolute;
    top: 48%;
    transform: translate(-50%, -50%);
    width: 300px;
}

.device-stage img {
    height: 100%;
    object-fit: cover;
    opacity: 0.96;
    position: relative;
    width: 100%;
}

.floating-note {
    align-items: center;
    backdrop-filter: blur(18px);
    background: rgba(18, 18, 22, 0.8);
    border: 1px solid var(--line-high);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
    display: flex;
    font-size: 11px;
    gap: 10px;
    padding: 11px 14px;
    position: absolute;
    z-index: 3;
}

.floating-note strong,
.floating-note span {
    display: block;
}

.floating-note strong {
    color: #fff;
    font-size: 12px;
}

.floating-note span span,
.floating-note > span:last-child {
    color: #85858f;
}

.floating-note--top {
    right: -8px;
    top: 112px;
}

.floating-note--bottom {
    bottom: 122px;
    left: -2px;
}

.floating-note__icon {
    align-items: center;
    background: rgba(var(--accent-rgb), 0.16);
    border-radius: 11px;
    color: var(--accent);
    display: flex !important;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.floating-note__icon--green {
    background: rgba(49, 209, 88, 0.13);
    color: var(--green);
}

.floating-note__icon svg {
    height: 17px;
    width: 17px;
}

.hero__scroll {
    bottom: 24px;
    height: 32px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 20px;
}

.hero__scroll span {
    background: #616168;
    border-radius: 50%;
    height: 4px;
    left: 8px;
    position: absolute;
    top: 3px;
    width: 4px;
    animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
    0% { opacity: 0; transform: translateY(0); }
    35% { opacity: 1; }
    100% { opacity: 0; transform: translateY(18px); }
}

.proof-strip {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.015);
    position: relative;
}

.proof-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 0.7fr) 1.5fr;
}

.stat,
.proof-promise {
    align-items: center;
    border-right: 1px solid var(--line);
    display: flex;
    min-height: 118px;
    padding: 24px 30px;
}

.stat {
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.stat strong {
    font-size: 25px;
    letter-spacing: -0.055em;
    line-height: 1.15;
}

.stat > span {
    color: #777780;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.proof-promise {
    border-right: 0;
    gap: 14px;
}

.proof-promise__icon {
    align-items: center;
    background: rgba(var(--accent-rgb), 0.12);
    border-radius: 50%;
    color: var(--accent);
    display: flex;
    flex: 0 0 42px;
    height: 42px;
    justify-content: center;
}

.proof-promise svg {
    height: 20px;
    width: 20px;
}

.proof-promise p {
    color: #7f7f87;
    font-size: 12px;
    line-height: 1.5;
}

.proof-promise strong {
    color: #d4d4d8;
    display: block;
    font-size: 13px;
}

.section {
    padding-block: 132px;
    position: relative;
}

.section-heading h2,
.experience__intro h2,
.reviews__top h2,
.faq__intro h2 {
    font-size: clamp(38px, 4.4vw, 60px);
    font-weight: 650;
    letter-spacing: -0.058em;
    line-height: 1.05;
}

.section-heading > p:last-child,
.experience__intro > p:last-child,
.faq__intro > p {
    color: var(--muted);
    font-size: 16px;
    letter-spacing: -0.02em;
    line-height: 1.7;
    margin-top: 22px;
    max-width: 690px;
}

.section-heading--center {
    margin-inline: auto;
    max-width: 830px;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.consultation {
    background: linear-gradient(180deg, #030304, #09090b 58%, #030304);
    overflow: hidden;
}

.consultation::before {
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.09), transparent 70%);
    content: "";
    height: 700px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 1000px;
}

.consultation-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 66px;
    position: relative;
}

[data-spotlight]::before {
    background: radial-gradient(360px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(var(--accent-rgb), 0.12), transparent 42%);
    content: "";
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 250ms ease;
    z-index: 0;
}

[data-spotlight]:hover::before {
    opacity: 1;
}

.consult-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-height: 430px;
    overflow: hidden;
    padding: 34px;
    position: relative;
    transition: transform 300ms ease, border-color 300ms ease, background 300ms ease;
}

.consult-card > * {
    position: relative;
    z-index: 1;
}

.consult-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-7px);
}

.consult-card--featured {
    background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.14), rgba(255, 255, 255, 0.025));
    border-color: rgba(var(--accent-rgb), 0.45);
}

.consult-card__featured {
    background: var(--accent);
    border-radius: 999px;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 10px;
    position: absolute;
    right: 22px;
    text-transform: uppercase;
    top: 22px;
}

.consult-card__icon {
    align-items: center;
    background: rgba(var(--accent-rgb), 0.12);
    border: 1px solid rgba(var(--accent-rgb), 0.2);
    border-radius: 16px;
    color: var(--accent);
    display: flex;
    height: 52px;
    justify-content: center;
    margin-bottom: 45px;
    width: 52px;
}

.consult-card__icon svg {
    height: 25px;
    width: 25px;
}

.consult-card__label {
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.consult-card h3 {
    font-size: 25px;
    letter-spacing: -0.045em;
    line-height: 1.2;
}

.consult-card__description {
    color: #92929b;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 14px;
    min-height: 68px;
}

.consult-card__models {
    border-top: 1px solid var(--line);
    margin-top: 22px;
    padding-top: 18px;
}

.consult-card__models span,
.consult-card__models strong {
    display: block;
}

.consult-card__models span {
    color: #66666f;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.consult-card__models strong {
    font-size: 12px;
    margin-top: 3px;
}

.consult-card > a {
    align-items: center;
    color: #e6e6e9;
    display: flex;
    font-size: 12px;
    font-weight: 600;
    gap: 8px;
    margin-top: 23px;
}

.consult-card > a svg {
    height: 16px;
    transition: transform 180ms ease;
    width: 16px;
}

.consult-card > a:hover svg {
    transform: translateX(4px);
}

.products-section {
    overflow: hidden;
}

.products-heading {
    align-items: end;
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.products-heading .section-heading {
    max-width: 690px;
}

.filters {
    background: #0c0c0f;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: flex;
    flex-shrink: 0;
    padding: 4px;
}

.filter {
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: #7f7f88;
    cursor: pointer;
    font-size: 11px;
    font-weight: 600;
    min-height: 34px;
    padding: 0 14px;
    transition: background 180ms ease, color 180ms ease;
}

.filter.is-active {
    background: #f5f5f7;
    color: #111;
}

.product-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 56px;
}

.product-card {
    background: #0a0a0d;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    min-width: 0;
    overflow: hidden;
    position: relative;
    transition: border-color 250ms ease, transform 250ms ease, opacity 220ms ease;
}

.product-card.is-hidden {
    display: none;
}

.product-card:hover {
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-6px);
}

.product-card > * {
    position: relative;
    z-index: 1;
}

.product-card__media {
    background: linear-gradient(140deg, #141419, #08080a);
    height: 330px;
    overflow: hidden;
    position: relative;
}

.product-card__media::after {
    background: linear-gradient(to top, #0a0a0d, transparent 40%);
    bottom: 0;
    content: "";
    height: 80px;
    left: 0;
    position: absolute;
    right: 0;
}

.product-card__media img {
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
    width: 100%;
}

.product-card:hover .product-card__media img {
    transform: scale(1.045);
}

.product-card__badge {
    backdrop-filter: blur(14px);
    background: rgba(6, 6, 8, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 999px;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    left: 18px;
    letter-spacing: 0.08em;
    padding: 7px 10px;
    position: absolute;
    text-transform: uppercase;
    top: 18px;
    z-index: 2;
}

.product-card__quick {
    backdrop-filter: blur(14px);
    background: rgba(10, 10, 13, 0.74);
    border: 1px solid var(--line-high);
    border-radius: 999px;
    bottom: 20px;
    cursor: pointer;
    font-size: 10px;
    font-weight: 600;
    left: 50%;
    opacity: 0;
    padding: 9px 15px;
    position: absolute;
    transform: translate(-50%, 12px);
    transition: opacity 200ms ease, transform 200ms ease, background 200ms ease;
    white-space: nowrap;
    z-index: 3;
}

.product-card:hover .product-card__quick,
.product-card__quick:focus-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

.product-card__quick:hover {
    background: #fff;
    color: #111;
}

.product-card__body {
    padding: 25px;
}

.product-card__meta {
    color: #6d6d76;
    display: flex;
    font-size: 9px;
    font-weight: 600;
    justify-content: space-between;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.product-card h3 {
    font-size: 24px;
    letter-spacing: -0.045em;
    margin-top: 13px;
}

.product-card__storage {
    color: #d4d4d8;
    font-size: 13px;
    font-weight: 600;
}

.product-card__description {
    color: #7f7f87;
    font-size: 12px;
    line-height: 1.6;
    margin-top: 14px;
    min-height: 58px;
}

.product-card__footer {
    align-items: end;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
}

.product-card__price del,
.product-card__price strong {
    display: block;
}

.product-card__price del {
    color: #5e5e67;
    font-size: 10px;
}

.product-card__price strong {
    font-size: 16px;
    letter-spacing: -0.025em;
}

.round-link {
    align-items: center;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    height: 38px;
    justify-content: center;
    transition: transform 200ms ease, box-shadow 200ms ease;
    width: 38px;
}

.round-link:hover {
    box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.32);
    transform: scale(1.08);
}

.round-link svg {
    height: 17px;
    width: 17px;
}

.experience {
    background: #f5f5f7;
    color: #1d1d1f;
}

.experience .eyebrow {
    color: #0071e3;
}

.experience__intro {
    display: grid;
    gap: 0 70px;
    grid-template-columns: 1fr 0.8fr;
}

.experience__intro .eyebrow {
    grid-column: 1 / -1;
}

.experience__intro > p:last-child {
    color: #6e6e73;
    margin-top: 0;
}

.bento-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: 1.25fr 0.75fr;
    margin-top: 66px;
}

.bento-card {
    background: #fff;
    border: 1px solid #e5e5e8;
    border-radius: 30px;
    min-height: 260px;
    overflow: hidden;
    padding: 34px;
    position: relative;
}

.bento-card--large {
    background: #08080a;
    border: 0;
    color: #fff;
    grid-row: span 2;
    min-height: 540px;
}

.bento-card__glow {
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.42), transparent 70%);
    filter: blur(10px);
    height: 500px;
    position: absolute;
    right: -250px;
    top: -150px;
    width: 500px;
}

.bento-card__number {
    color: #c7c7cc;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    position: absolute;
    right: 28px;
    top: 26px;
}

.bento-card--large .bento-card__number {
    color: #56565e;
}

.bento-card__content {
    max-width: 430px;
    position: relative;
}

.bento-card--large .bento-card__content {
    left: 40px;
    position: absolute;
    top: 60px;
}

.bento-card__icon {
    align-items: center;
    background: rgba(var(--accent-rgb), 0.1);
    border-radius: 15px;
    color: #0071e3;
    display: flex;
    height: 50px;
    justify-content: center;
    margin-bottom: 30px;
    width: 50px;
}

.bento-card--large .bento-card__icon {
    background: rgba(var(--accent-rgb), 0.16);
    color: var(--accent);
}

.bento-card__icon svg {
    height: 24px;
    width: 24px;
}

.bento-card h3 {
    font-size: 27px;
    letter-spacing: -0.045em;
    line-height: 1.15;
}

.bento-card p {
    color: #6e6e73;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 13px;
}

.bento-card--large p {
    color: #8d8d96;
}

.quality-seal {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    bottom: 48px;
    display: grid;
    gap: 0 12px;
    grid-template-columns: 46px 1fr;
    left: 74px;
    padding: 17px;
    position: absolute;
    right: 74px;
}

.quality-seal > span {
    align-items: center;
    background: var(--accent);
    border-radius: 14px;
    display: flex;
    grid-row: 1 / 3;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.quality-seal svg {
    height: 22px;
    width: 22px;
}

.quality-seal strong {
    align-self: end;
    font-size: 13px;
}

.quality-seal small {
    color: #7d7d86;
    font-size: 10px;
}

.reviews {
    background: #070708;
}

.reviews__top {
    align-items: end;
    display: flex;
    justify-content: space-between;
}

.reviews__top > div:first-child {
    max-width: 640px;
}

.rating {
    text-align: right;
}

.rating strong,
.rating span,
.rating small {
    display: block;
}

.rating strong {
    font-size: 38px;
    letter-spacing: -0.06em;
    line-height: 1;
}

.rating span {
    color: #ffd60a;
    font-size: 12px;
    letter-spacing: 0.12em;
    margin-top: 7px;
}

.rating small {
    color: #686870;
    font-size: 9px;
    margin-top: 3px;
    text-transform: uppercase;
}

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

.review-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid var(--line);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 30px;
}

.review-card__stars {
    color: #ffd60a;
    font-size: 10px;
    letter-spacing: 0.12em;
}

.review-card > p {
    color: #c0c0c6;
    font-size: 14px;
    line-height: 1.75;
    margin-top: 28px;
}

.review-card footer {
    align-items: center;
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 25px;
}

.review-card__avatar {
    align-items: center;
    background: linear-gradient(145deg, var(--accent), #4b5bdc);
    border-radius: 50%;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.review-card footer > span:last-child strong,
.review-card footer > span:last-child small {
    display: block;
}

.review-card footer strong {
    font-size: 11px;
}

.review-card footer small {
    color: #696971;
    font-size: 9px;
}

.faq {
    background: #f5f5f7;
    color: #1d1d1f;
}

.faq .eyebrow {
    color: #0071e3;
}

.faq__layout {
    display: grid;
    gap: 90px;
    grid-template-columns: 0.75fr 1.25fr;
}

.faq__intro {
    position: sticky;
    top: 130px;
}

.faq__intro > p {
    color: #6e6e73;
}

.faq__intro > a {
    align-items: center;
    color: #0071e3;
    display: inline-flex;
    font-size: 13px;
    font-weight: 600;
    gap: 8px;
    margin-top: 25px;
}

.faq__intro > a svg {
    height: 16px;
    width: 16px;
}

.accordion {
    border-top: 1px solid #d6d6da;
}

.accordion__item {
    border-bottom: 1px solid #d6d6da;
}

.accordion__item button {
    align-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: flex;
    font-size: 16px;
    font-weight: 600;
    justify-content: space-between;
    min-height: 84px;
    text-align: left;
    width: 100%;
}

.accordion__item i {
    flex: 0 0 18px;
    height: 18px;
    margin-left: 30px;
    position: relative;
    width: 18px;
}

.accordion__item i::before,
.accordion__item i::after {
    background: #1d1d1f;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 8px;
    transition: transform 200ms ease;
    width: 18px;
}

.accordion__item i::after {
    transform: rotate(90deg);
}

.accordion__item button[aria-expanded="true"] i::after {
    transform: rotate(0);
}

.accordion__answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 260ms ease;
}

.accordion__answer p {
    color: #6e6e73;
    font-size: 13px;
    line-height: 1.75;
    max-width: 650px;
    overflow: hidden;
}

.accordion__item button[aria-expanded="true"] + .accordion__answer {
    grid-template-rows: 1fr;
}

.accordion__item button[aria-expanded="true"] + .accordion__answer p {
    padding-bottom: 28px;
}

.final-cta {
    align-items: center;
    background: #020203;
    display: flex;
    min-height: 600px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

.final-cta::before {
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 22px 22px;
    content: "";
    inset: 0;
    mask-image: radial-gradient(circle, black, transparent 70%);
    opacity: 0.35;
    position: absolute;
}

.final-cta__glow {
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.22), transparent 67%);
    height: 800px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
}

.final-cta__inner {
    position: relative;
}

.final-cta .eyebrow {
    justify-content: center;
}

.final-cta h2 {
    font-size: clamp(54px, 7vw, 90px);
    letter-spacing: -0.07em;
    line-height: 0.95;
}

.final-cta__inner > p:not(.eyebrow) {
    color: #95959e;
    font-size: 16px;
    margin: 26px auto 32px;
    max-width: 540px;
}

.site-footer {
    background: #050506;
    border-top: 1px solid var(--line);
    padding-block: 68px 26px;
}

.site-footer__grid {
    display: grid;
    gap: 60px;
    grid-template-columns: 2fr 0.7fr 0.7fr;
}

.brand--footer {
    font-size: 23px;
}

.site-footer__grid > div:first-child p {
    color: #6d6d75;
    font-size: 12px;
    margin-top: 18px;
    max-width: 400px;
}

.site-footer__nav,
.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__nav strong,
.site-footer__contact strong {
    font-size: 11px;
    margin-bottom: 7px;
}

.site-footer__nav a,
.site-footer__contact a,
.site-footer__contact span {
    color: #73737c;
    font-size: 11px;
    transition: color 180ms ease;
}

.site-footer__nav a:hover,
.site-footer__contact a:hover {
    color: #fff;
}

.site-footer__bottom {
    border-top: 1px solid var(--line);
    color: #505058;
    display: flex;
    font-size: 9px;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 24px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.whatsapp-float {
    align-items: center;
    background: #25d366;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    bottom: 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    color: #fff;
    display: flex;
    font-size: 11px;
    font-weight: 700;
    gap: 8px;
    min-height: 46px;
    padding: 0 17px;
    position: fixed;
    right: 22px;
    transition: transform 200ms ease, box-shadow 200ms ease;
    z-index: 90;
}

.whatsapp-float:hover {
    box-shadow: 0 18px 50px rgba(37, 211, 102, 0.22);
    transform: translateY(-3px);
}

.whatsapp-float svg {
    fill: currentColor;
    height: 20px;
    stroke: none;
    width: 20px;
}

.modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    transition: opacity 220ms ease;
    z-index: 1000;
}

.modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.modal__backdrop {
    backdrop-filter: blur(16px);
    background: rgba(0, 0, 0, 0.76);
    inset: 0;
    position: absolute;
}

.modal__panel {
    background: #0d0d10;
    border: 1px solid var(--line-high);
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-height: min(680px, calc(100vh - 50px));
    max-width: 900px;
    overflow: hidden;
    position: relative;
    transform: translateY(20px) scale(0.98);
    transition: transform 240ms ease;
    width: calc(100% - 36px);
    z-index: 1;
}

.modal.is-open .modal__panel {
    transform: translateY(0) scale(1);
}

.modal__close {
    align-items: center;
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid var(--line-high);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 38px;
    justify-content: center;
    position: absolute;
    right: 18px;
    top: 18px;
    width: 38px;
    z-index: 3;
}

.modal__close svg {
    height: 18px;
    width: 18px;
}

.modal__media {
    background: #17171b;
    min-height: 520px;
}

.modal__media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.modal__content {
    align-self: center;
    padding: 54px 46px;
}

.modal__content h2 {
    font-size: 38px;
    letter-spacing: -0.055em;
    line-height: 1;
}

.modal__storage {
    color: #d5d5d9 !important;
    font-size: 15px !important;
    font-weight: 600;
    margin-top: 8px !important;
}

.modal__content > p {
    color: #8d8d96;
    font-size: 13px;
    line-height: 1.7;
    margin-top: 20px;
}

.modal__content .eyebrow {
    color: var(--accent);
    font-size: 9px;
    margin-bottom: 16px;
}

.modal__details {
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.modal__content .button {
    margin-top: 28px;
    width: 100%;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 800ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 800ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal--delay-1 { transition-delay: 90ms; }
.reveal--delay-2 { transition-delay: 180ms; }
.reveal--delay-3 { transition-delay: 270ms; }

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

@media (max-width: 1020px) {
    :root {
        --shell: min(100% - 32px, 860px);
    }

    .main-nav {
        gap: 20px;
    }

    .hero__content {
        grid-template-columns: 1fr;
        padding-top: 80px;
        text-align: center;
    }

    .hero__copy {
        align-items: center;
        display: flex;
        flex-direction: column;
        z-index: 1;
    }

    .hero__visual {
        margin-top: -30px;
    }

    .proof-strip__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .proof-promise {
        border-top: 1px solid var(--line);
        grid-column: 1 / -1;
        justify-content: center;
    }

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

    .consult-card:last-child,
    .product-card:last-child,
    .review-card:last-child {
        grid-column: 1 / -1;
    }

    .products-heading {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    :root {
        --shell: calc(100% - 28px);
        --radius: 24px;
    }

    .cursor-glow {
        display: none;
    }

    .announcement__support {
        display: none !important;
    }

    .announcement__inner {
        justify-content: center;
    }

    .announcement__inner > a:first-child {
        justify-content: center;
        text-align: center;
    }

    .site-header__inner {
        height: 64px;
    }

    .main-nav {
        align-items: stretch;
        background: rgba(5, 5, 7, 0.98);
        display: flex;
        flex-direction: column;
        gap: 0;
        inset: 64px 0 auto;
        min-height: calc(100svh - 64px);
        opacity: 0;
        padding: 34px 22px;
        pointer-events: none;
        position: absolute;
        transform: translateY(-16px);
        transition: opacity 200ms ease, transform 200ms ease;
    }

    .main-nav a {
        border-bottom: 1px solid var(--line);
        color: #e3e3e7;
        font-size: 22px;
        padding: 18px 6px;
    }

    .nav-open .main-nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .header-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-open .menu-open {
        display: none;
    }

    .nav-open .menu-close {
        display: block;
    }

    .hero {
        min-height: auto;
    }

    .hero__content {
        gap: 30px;
        padding-block: 70px 80px;
    }

    .hero h1 {
        font-size: clamp(47px, 14vw, 65px);
    }

    .hero__subtitle {
        font-size: 16px;
        margin-top: 22px;
    }

    .hero__actions {
        justify-content: center;
        width: 100%;
    }

    .hero__actions .button {
        width: 100%;
    }

    .hero__microcopy {
        align-items: center;
        flex-direction: column;
        gap: 7px;
    }

    .hero__visual {
        min-height: 470px;
        width: 100%;
    }

    .hero__orb--one {
        height: 340px;
        width: 340px;
    }

    .hero__orb--two {
        height: 450px;
        width: 450px;
    }

    .device-stage {
        border-radius: 30px;
        height: 400px;
        transform: none !important;
        width: min(86vw, 350px);
    }

    .floating-note--top {
        right: -3px;
        top: 34px;
    }

    .floating-note--bottom {
        bottom: 34px;
        left: -4px;
    }

    .hero__scroll {
        display: none;
    }

    .proof-strip__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stat {
        min-height: 100px;
        padding: 18px 8px;
    }

    .stat strong {
        font-size: 21px;
    }

    .stat > span {
        font-size: 7px;
        line-height: 1.4;
    }

    .proof-promise {
        min-height: 100px;
    }

    .section {
        padding-block: 92px;
    }

    .section-heading h2,
    .experience__intro h2,
    .reviews__top h2,
    .faq__intro h2 {
        font-size: 39px;
    }

    .consultation-grid,
    .product-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        margin-top: 42px;
    }

    .consult-card:last-child,
    .product-card:last-child,
    .review-card:last-child {
        grid-column: auto;
    }

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

    .products-heading {
        gap: 28px;
    }

    .filters {
        max-width: 100%;
        overflow-x: auto;
    }

    .product-card__media {
        height: 360px;
    }

    .product-card__quick {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    .experience__intro {
        display: block;
    }

    .experience__intro > p:last-child {
        margin-top: 23px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        margin-top: 44px;
    }

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

    .bento-card--large .bento-card__content {
        left: 28px;
        right: 28px;
        top: 48px;
    }

    .quality-seal {
        bottom: 34px;
        left: 28px;
        right: 28px;
    }

    .reviews__top {
        align-items: start;
        flex-direction: column;
        gap: 28px;
    }

    .rating {
        text-align: left;
    }

    .review-card {
        min-height: 250px;
    }

    .faq__layout {
        gap: 48px;
        grid-template-columns: 1fr;
    }

    .faq__intro {
        position: static;
    }

    .final-cta {
        min-height: 540px;
    }

    .final-cta h2 {
        font-size: 58px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__grid > div:first-child {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        align-items: start;
        flex-direction: column;
        gap: 12px;
    }

    .whatsapp-float {
        border-radius: 50%;
        height: 52px;
        padding: 0;
        width: 52px;
    }

    .whatsapp-float span {
        display: none;
    }

    .modal__panel {
        display: block;
        overflow-y: auto;
    }

    .modal__media {
        height: 280px;
        min-height: 0;
    }

    .modal__content {
        padding: 34px 26px;
    }

    .modal__content h2 {
        font-size: 32px;
    }
}

@media (max-width: 420px) {
    .announcement {
        font-size: 10px;
    }

    .announcement__arrow,
    .announcement__dot {
        display: none;
    }

    .hero__visual {
        min-height: 420px;
    }

    .device-stage {
        height: 360px;
    }

    .floating-note {
        padding: 9px 10px;
        transform: scale(0.9);
    }

    .floating-note--top {
        transform-origin: top right;
    }

    .floating-note--bottom {
        transform-origin: bottom left;
    }
}

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

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