/*
 * Haxter Corporation Drive
 * H27-HX26 product experience
 * Page-scoped stylesheet for drive.haxtercorp.com
 */

.hxdrive_document {
    margin: 0;
    background: #ffffff;
    color: #15171a;
}

.hxdrive_page {
    --hxdrive_blue: #006fd6;
    --hxdrive_blue_dark: #0453a5;
    --hxdrive_blue_soft: #eaf4ff;
    --hxdrive_blue_mist: #f4f9ff;
    --hxdrive_navy: #07182c;
    --hxdrive_ink: #15171a;
    --hxdrive_muted: #5e6670;
    --hxdrive_line: #dfe3e7;
    --hxdrive_line_dark: #2b3b4e;
    --hxdrive_surface: #f6f7f8;
    --hxdrive_white: #ffffff;
    --hxdrive_content: 1460px;
    width: 100%;
    min-width: 0;
    overflow: clip;
    background: var(--hxdrive_white);
    color: var(--hxdrive_ink);
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
/*    font-family: "Elms Sans", "Segoe UI", Arial, Helvetica, sans-serif;*/

.hxdrive_page,
.hxdrive_page * {
    box-sizing: border-box;
}

.hxdrive_page a {
    color: inherit;
    font-family: inherit !important;
    text-decoration: none;
}

.hxdrive_page button,
.hxdrive_page input {
    font: inherit;
}

.hxdrive_page img,
.hxdrive_page svg {
    display: block;
    max-width: 100%;
}

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

.hxdrive_page a:focus-visible,
.hxdrive_page button:focus-visible {
    outline: 3px solid #67b5ff;
    outline-offset: 3px;
}

/* -------------------------------------------------------------------------- */
/* Fallback global shell                                                       */
/* -------------------------------------------------------------------------- */

.hxdrive_fallback_header,
.hxdrive_fallback_footer {
    box-sizing: border-box;
    width: 100%;
    color: #15171a;
    font-family: "Elms Sans", "Segoe UI", Arial, Helvetica, sans-serif;
}

.hxdrive_fallback_header {
    display: flex;
    min-height: 96px;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 18px clamp(24px, 4vw, 64px);
    border-bottom: 1px solid #e2e5e8;
    background: #ffffff;
}

.hxdrive_fallback_header > a {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #15171a;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.hxdrive_fallback_header img {
    display: block;
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.hxdrive_fallback_header nav,
.hxdrive_fallback_footer nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 26px;
}

.hxdrive_fallback_header nav a,
.hxdrive_fallback_footer nav a {
    color: inherit;
    font-size: 14px;
    text-decoration: none;
}

.hxdrive_fallback_header nav a:hover,
.hxdrive_fallback_footer nav a:hover {
    color: #006fd6;
}

.hxdrive_fallback_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 34px clamp(24px, 4vw, 64px);
    border-top: 1px solid #e2e5e8;
    background: #f6f7f8;
}

.hxdrive_fallback_footer > span {
    font-size: 14px;
    font-weight: 600;
}

/* -------------------------------------------------------------------------- */
/* Product header                                                              */
/* -------------------------------------------------------------------------- */

.hxdrive_header {
    position: relative;
    z-index: 20;
    min-height: 72px;
    border-bottom: 1px solid var(--hxdrive_line);
    background: rgba(255, 255, 255, .98);
}

.hxdrive_header_inner {
    display: grid;
    width: min(100%, var(--hxdrive_content));
    min-height: 72px;
    margin: 0 auto;
    padding: 0 32px;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 44px;
}

.hxdrive_brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
    font-size: 22px;
    font-weight: 560;
    letter-spacing: -.02em;
}

.hxdrive_brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.hxdrive_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 2.1vw, 36px);
}

.hxdrive_nav a,
.hxdrive_header_link {
    position: relative;
    color: #2b3036 !important;
    font-size: 14px;
    font-weight: 470;
    white-space: nowrap;
}

.hxdrive_nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    background: var(--hxdrive_blue);
    content: "";
    opacity: 0;
    transform: scaleX(.3);
    transition: opacity .18s ease, transform .18s ease;
}

.hxdrive_nav a:hover,
.hxdrive_header_link:hover {
    color: var(--hxdrive_blue) !important;
}

.hxdrive_nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.hxdrive_header_actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.hxdrive_header_primary {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 21px;
    border: 1px solid var(--hxdrive_ink);
    background: var(--hxdrive_ink);
    color: var(--hxdrive_white) !important;
    font-size: 14px;
    font-weight: 620;
    transition: background .18s ease, border-color .18s ease;
}

.hxdrive_header_primary:hover {
    border-color: var(--hxdrive_blue);
    background: var(--hxdrive_blue);
}

/* -------------------------------------------------------------------------- */
/* Shared elements                                                             */
/* -------------------------------------------------------------------------- */

.hxdrive_eyebrow,
.hxdrive_section_header > p,
.hxdrive_dark_label {
    margin-bottom: 24px;
    color: var(--hxdrive_blue);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: .14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.hxdrive_section_label {
    color: var(--hxdrive_blue);
    font-size: 14px;
    font-weight: 620;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.hxdrive_button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 1px solid transparent;
    font-size: 16px;
    font-weight: 630;
    line-height: 1.2;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.hxdrive_button_primary {
    border-color: var(--hxdrive_ink);
    background: var(--hxdrive_ink);
    color: var(--hxdrive_white) !important;
}

.hxdrive_button_primary:hover {
    border-color: var(--hxdrive_blue);
    background: var(--hxdrive_blue);
}

.hxdrive_button_secondary {
    border-color: #aeb5bc;
    background: transparent;
    color: var(--hxdrive_ink) !important;
}

.hxdrive_button_secondary:hover {
    border-color: var(--hxdrive_blue);
    color: var(--hxdrive_blue) !important;
}

.hxdrive_inline_link {
    display: inline-flex;
    align-items: center;
    color: var(--hxdrive_blue) !important;
    font-size: 16px;
    font-weight: 630;
    text-decoration: underline;
    text-decoration-color: transparent;
    text-underline-offset: 5px;
    transition: text-decoration-color .18s ease;
}

.hxdrive_inline_link:hover {
    text-decoration-color: currentColor;
}

/* -------------------------------------------------------------------------- */
/* Hero                                                                        */
/* -------------------------------------------------------------------------- */

.hxdrive_hero {
    position: relative;
    isolation: isolate;
    min-height: 760px;
    background:
        radial-gradient(circle at 88% 15%, rgba(0, 111, 214, .13), transparent 31%),
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.hxdrive_hero::after {
    position: absolute;
    z-index: -1;
    right: -180px;
    bottom: -360px;
    width: 720px;
    height: 720px;
    border: 1px solid rgba(0, 111, 214, .13);
    border-radius: 50%;
    content: "";
}

.hxdrive_hero_inner {
    display: grid;
    width: min(100%, var(--hxdrive_content));
    min-height: 760px;
    margin: 0 auto;
    padding: 82px 32px 92px;
    grid-template-columns: minmax(0, .82fr) minmax(600px, 1.18fr);
    align-items: center;
    gap: clamp(54px, 6vw, 110px);
}

.hxdrive_hero_content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.hxdrive_hero h1 {
    max-width: 610px;
    margin-bottom: 30px;
    color: var(--hxdrive_ink);
    font-size: clamp(70px, 6.1vw, 108px);
    font-weight: 260;
    letter-spacing: -.065em;
    line-height: .91;
}

.hxdrive_hero_lead {
    max-width: 610px;
    margin-bottom: 34px;
    color: #4f5862;
    font-size: clamp(18px, 1.35vw, 21px);
    font-weight: 370;
    line-height: 1.62;
}

.hxdrive_hero_actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.hxdrive_hero_note {
    margin: 22px 0 0;
    color: var(--hxdrive_muted);
    font-size: 14px;
}

/* Product preview */

.hxdrive_product_preview {
    position: relative;
    min-width: 0;
}

.hxdrive_product_preview::before {
    position: absolute;
    z-index: -1;
    top: -55px;
    right: -58px;
    width: 300px;
    height: 300px;
    background: rgba(0, 111, 214, .11);
    content: "";
}

.hxdrive_preview_window {
    overflow: hidden;
    width: 100%;
    min-width: 0;
    border: 1px solid #cfd8e1;
    border-radius: 10px;
    background: var(--hxdrive_white);
    box-shadow: 0 35px 90px rgba(13, 38, 66, .17), 0 8px 24px rgba(13, 38, 66, .08);
}

.hxdrive_preview_topbar {
    display: grid;
    min-height: 68px;
    padding: 12px 18px;
    border-bottom: 1px solid #e0e6ec;
    background: #ffffff;
    grid-template-columns: 126px minmax(160px, 1fr) 38px;
    align-items: center;
    gap: 16px;
}

.hxdrive_preview_identity {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #202a36;
    font-size: 15px;
}

.hxdrive_preview_mark {
    display: block;
    width: 21px;
    height: 21px;
    background:
        linear-gradient(90deg, transparent 42%, #ffffff 42%, #ffffff 58%, transparent 58%),
        linear-gradient(transparent 42%, #ffffff 42%, #ffffff 58%, transparent 58%),
        var(--hxdrive_blue);
}

.hxdrive_preview_search {
    display: flex;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 5px;
    background: #f1f4f7;
    color: #737b84;
    font-size: 13px;
}

.hxdrive_preview_search svg {
    width: 17px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.7;
}

.hxdrive_preview_search span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hxdrive_preview_account {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    background: #101d2c;
    color: #ffffff;
    font-size: 13px;
    font-weight: 680;
}

.hxdrive_preview_body {
    display: grid;
    min-height: 470px;
    grid-template-columns: 155px minmax(0, 1fr);
}

.hxdrive_preview_sidebar {
    display: flex;
    padding: 20px 14px 16px;
    border-right: 1px solid #e0e6ec;
    background: #f7f9fb;
    flex-direction: column;
    gap: 4px;
}

.hxdrive_preview_sidebar > span {
    display: flex;
    min-height: 35px;
    align-items: center;
    padding: 0 12px;
    border-radius: 4px;
    color: #56606b;
    font-size: 12px;
}

.hxdrive_preview_sidebar > span.is-active {
    background: #e5f1fc;
    color: var(--hxdrive_blue_dark);
    font-weight: 650;
}

.hxdrive_preview_sidebar .hxdrive_preview_new {
    min-height: 40px;
    margin-bottom: 11px;
    border: 1px solid #d7dfe7;
    background: #ffffff;
    color: #172536;
    font-weight: 620;
    box-shadow: 0 2px 7px rgba(22, 46, 70, .05);
}

.hxdrive_preview_quota {
    margin-top: auto;
    padding: 15px 10px 4px;
    border-top: 1px solid #dfe5ea;
}

.hxdrive_preview_quota > span,
.hxdrive_preview_quota small {
    display: block;
    color: #66717b;
    font-size: 10px;
}

.hxdrive_preview_quota i {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 4px;
    margin: 9px 0 8px;
    border-radius: 0;
    background: #d9e1e8;
}

.hxdrive_preview_quota b {
    display: block;
    width: 40%;
    height: 100%;
    background: var(--hxdrive_blue);
}

.hxdrive_preview_content {
    min-width: 0;
    padding: 24px 24px 20px;
    background: #ffffff;
}

.hxdrive_preview_heading {
    display: flex;
    min-height: 50px;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.hxdrive_preview_heading > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hxdrive_preview_heading span {
    color: #1b2632;
    font-size: 20px;
    font-weight: 540;
}

.hxdrive_preview_heading small {
    color: #76808b;
    font-size: 11px;
}

.hxdrive_preview_heading button {
    min-height: 31px;
    padding: 0 10px;
    border: 1px solid #d8e0e6;
    border-radius: 3px;
    background: #ffffff;
    color: #5f6974;
    font-size: 10px;
}

.hxdrive_preview_folders {
    display: grid;
    margin-bottom: 25px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.hxdrive_preview_folders article {
    display: flex;
    min-width: 0;
    min-height: 70px;
    align-items: center;
    gap: 9px;
    padding: 11px;
    border: 1px solid #e0e5ea;
    border-radius: 4px;
    background: #ffffff;
}

.hxdrive_preview_folders svg {
    width: 25px;
    flex: 0 0 auto;
    fill: #d9eafb;
    stroke: #2279c9;
    stroke-linejoin: round;
    stroke-width: 1.2;
}

.hxdrive_preview_folders div {
    min-width: 0;
}

.hxdrive_preview_folders strong,
.hxdrive_preview_folders span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hxdrive_preview_folders strong {
    color: #28323c;
    font-size: 11px;
    font-weight: 620;
}

.hxdrive_preview_folders span {
    margin-top: 3px;
    color: #7e8790;
    font-size: 9px;
}

.hxdrive_preview_recent > p {
    margin-bottom: 10px;
    color: #4c5660;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hxdrive_preview_recent article {
    display: grid;
    min-height: 53px;
    padding: 8px 3px;
    border-top: 1px solid #e5e9ed;
    grid-template-columns: 38px minmax(0, 1fr) 52px 22px;
    align-items: center;
    gap: 9px;
}

.hxdrive_preview_file_type {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    background: #edf4fb;
    color: #236aa9;
    font-size: 7px;
    font-weight: 750;
    letter-spacing: .04em;
}

.hxdrive_preview_recent strong {
    overflow: hidden;
    color: #303942;
    font-size: 10px;
    font-weight: 580;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hxdrive_preview_recent small {
    color: #7d858e;
    font-size: 9px;
    text-align: right;
}

.hxdrive_preview_recent button {
    padding: 0;
    border: 0;
    background: transparent;
    color: #7d858e;
    font-size: 10px;
}

/* -------------------------------------------------------------------------- */
/* Definition                                                                  */
/* -------------------------------------------------------------------------- */

.hxdrive_definition {
    border-top: 1px solid var(--hxdrive_line);
    border-bottom: 1px solid var(--hxdrive_line);
    background: var(--hxdrive_surface);
}

.hxdrive_definition_inner {
    display: grid;
    width: min(100%, var(--hxdrive_content));
    margin: 0 auto;
    padding: 105px 32px 112px;
    grid-template-columns: minmax(170px, .38fr) minmax(0, 1fr);
    gap: clamp(50px, 8vw, 150px);
}

.hxdrive_definition_content h2 {
    max-width: 1020px;
    margin-bottom: 38px;
    font-size: clamp(48px, 5.2vw, 82px);
    font-weight: 280;
    letter-spacing: -.055em;
    line-height: 1.02;
}

.hxdrive_definition_content p {
    max-width: 820px;
    margin-bottom: 0;
    color: var(--hxdrive_muted);
    font-size: clamp(18px, 1.45vw, 22px);
    font-weight: 370;
    line-height: 1.65;
}

/* -------------------------------------------------------------------------- */
/* Files                                                                       */
/* -------------------------------------------------------------------------- */

.hxdrive_files {
    background: var(--hxdrive_white);
}

.hxdrive_files_inner {
    width: min(100%, var(--hxdrive_content));
    margin: 0 auto;
    padding: 120px 32px 126px;
}

.hxdrive_section_header {
    display: grid;
    margin-bottom: 76px;
    grid-template-columns: minmax(170px, .38fr) minmax(0, 1fr);
    gap: clamp(50px, 8vw, 150px);
}

.hxdrive_section_header h2 {
    max-width: 980px;
    margin-bottom: 0;
    font-size: clamp(46px, 4.5vw, 72px);
    font-weight: 290;
    letter-spacing: -.052em;
    line-height: 1.04;
}

.hxdrive_action_list {
    display: grid;
    border-top: 1px solid var(--hxdrive_ink);
    border-bottom: 1px solid var(--hxdrive_line);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hxdrive_action {
    min-height: 300px;
    padding: 34px 34px 38px 0;
}

.hxdrive_action + .hxdrive_action {
    padding-left: 34px;
    border-left: 1px solid var(--hxdrive_line);
}

.hxdrive_action_number {
    display: block;
    margin-bottom: 72px;
    color: var(--hxdrive_blue);
    font-size: 13px;
    font-weight: 650;
    letter-spacing: .1em;
}

.hxdrive_action h3 {
    margin-bottom: 15px;
    font-size: clamp(30px, 2.6vw, 42px);
    font-weight: 360;
    letter-spacing: -.035em;
    line-height: 1.1;
}

.hxdrive_action p {
    max-width: 340px;
    margin-bottom: 0;
    color: var(--hxdrive_muted);
    font-size: 17px;
    line-height: 1.6;
}

.hxdrive_file_statement {
    display: grid;
    padding-top: 54px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 50px;
}

.hxdrive_file_statement p {
    max-width: 800px;
    margin-bottom: 0;
    color: #4f5862;
    font-size: clamp(20px, 1.7vw, 26px);
    font-weight: 360;
    line-height: 1.55;
}

.hxdrive_file_statement a {
    color: var(--hxdrive_blue) !important;
    font-size: 17px;
    font-weight: 640;
    white-space: nowrap;
}

.hxdrive_file_statement a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* -------------------------------------------------------------------------- */
/* Access                                                                      */
/* -------------------------------------------------------------------------- */

.hxdrive_access {
    border-top: 1px solid #cfe3f5;
    border-bottom: 1px solid #cfe3f5;
    background: var(--hxdrive_blue_mist);
}

.hxdrive_access_inner {
    display: grid;
    width: min(100%, var(--hxdrive_content));
    min-height: 720px;
    margin: 0 auto;
    padding: 95px 32px;
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
    align-items: center;
    gap: clamp(65px, 8vw, 140px);
}

.hxdrive_access_visual {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid #c4dcf1;
    background: linear-gradient(145deg, #ffffff 0%, #e9f4fe 100%);
}

.hxdrive_access_grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(39, 116, 184, .12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(39, 116, 184, .12) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: linear-gradient(to bottom right, #000 8%, transparent 78%);
    mask-image: linear-gradient(to bottom right, #000 8%, transparent 78%);
}

.hxdrive_access_device {
    position: absolute;
    border: 1px solid #8cb6da;
    background: #ffffff;
    box-shadow: 0 25px 60px rgba(15, 76, 130, .16);
}

.hxdrive_access_device_desktop {
    top: 80px;
    left: 9%;
    width: 68%;
    height: 315px;
    padding: 14px 14px 34px;
}

.hxdrive_access_device_desktop::before {
    position: absolute;
    bottom: -42px;
    left: calc(50% - 37px);
    width: 74px;
    height: 42px;
    border-right: 1px solid #8cb6da;
    border-left: 1px solid #8cb6da;
    background: #f8fbfe;
    content: "";
}

.hxdrive_access_device_desktop::after {
    position: absolute;
    bottom: -50px;
    left: calc(50% - 74px);
    width: 148px;
    height: 8px;
    border: 1px solid #8cb6da;
    background: #ffffff;
    content: "";
}

.hxdrive_access_device_mobile {
    right: 8%;
    bottom: 48px;
    width: 128px;
    height: 250px;
    padding: 10px;
    border-radius: 12px;
}

.hxdrive_access_device_mobile::after {
    position: absolute;
    bottom: 7px;
    left: calc(50% - 11px);
    width: 22px;
    height: 3px;
    background: #b5c9da;
    content: "";
}

.hxdrive_access_screen {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 16px;
    background: #edf6fe;
    flex-direction: column;
    gap: 12px;
}

.hxdrive_access_screen i {
    display: block;
    width: 100%;
    height: 38px;
    border: 1px solid #bad7ef;
    background: #ffffff;
}

.hxdrive_access_device_mobile .hxdrive_access_screen {
    padding: 11px;
    gap: 9px;
}

.hxdrive_access_device_mobile .hxdrive_access_screen i {
    height: 54px;
}

.hxdrive_access_file {
    position: absolute;
    z-index: 3;
    top: 38px;
    right: 5%;
    width: 112px;
    height: 138px;
    padding: 56px 18px 18px;
    border: 1px solid #78a9d3;
    background: var(--hxdrive_blue);
    box-shadow: 0 18px 45px rgba(0, 86, 165, .23);
}

.hxdrive_access_file::before {
    position: absolute;
    top: 0;
    right: 0;
    border-width: 0 0 26px 26px;
    border-style: solid;
    border-color: transparent transparent #9fd0fb transparent;
    content: "";
}

.hxdrive_access_file span {
    display: block;
    width: 100%;
    height: 3px;
    margin-bottom: 9px;
    background: rgba(255, 255, 255, .78);
}

.hxdrive_access_content h2 {
    max-width: 580px;
    margin-bottom: 30px;
    font-size: clamp(48px, 4.4vw, 72px);
    font-weight: 290;
    letter-spacing: -.055em;
    line-height: 1.03;
}

.hxdrive_access_content > p:not(.hxdrive_eyebrow) {
    max-width: 590px;
    margin-bottom: 30px;
    color: #53616e;
    font-size: 19px;
    line-height: 1.65;
}

/* -------------------------------------------------------------------------- */
/* Security                                                                    */
/* -------------------------------------------------------------------------- */

.hxdrive_security {
    background: var(--hxdrive_navy);
    color: var(--hxdrive_white);
}

.hxdrive_security_inner {
    display: grid;
    width: min(100%, var(--hxdrive_content));
    margin: 0 auto;
    padding: 120px 32px 128px;
    grid-template-columns: minmax(0, 1fr) minmax(400px, .78fr);
    gap: clamp(80px, 10vw, 175px);
}

.hxdrive_dark_label {
    color: #78bdff;
}

.hxdrive_security_heading h2 {
    max-width: 800px;
    margin-bottom: 0;
    font-size: clamp(50px, 5vw, 82px);
    font-weight: 270;
    letter-spacing: -.055em;
    line-height: 1.02;
}

.hxdrive_security_content > p {
    margin: 43px 0 52px;
    color: #bdc8d4;
    font-size: 19px;
    line-height: 1.68;
}

.hxdrive_security_list {
    margin-bottom: 42px;
    border-top: 1px solid var(--hxdrive_line_dark);
}

.hxdrive_security_list span {
    display: block;
    position: relative;
    padding: 19px 0 19px 30px;
    border-bottom: 1px solid var(--hxdrive_line_dark);
    color: #f0f4f7;
    font-size: 16px;
}

.hxdrive_security_list span::before {
    position: absolute;
    top: 27px;
    left: 2px;
    width: 10px;
    height: 1px;
    background: #78bdff;
    content: "";
}

.hxdrive_security_content > a {
    color: #78bdff !important;
    font-size: 16px;
    font-weight: 630;
}

.hxdrive_security_content > a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* -------------------------------------------------------------------------- */
/* Storage                                                                     */
/* -------------------------------------------------------------------------- */

.hxdrive_storage {
    border-bottom: 1px solid var(--hxdrive_line);
    background: var(--hxdrive_surface);
}

.hxdrive_storage_inner {
    display: grid;
    width: min(100%, var(--hxdrive_content));
    margin: 0 auto;
    padding: 120px 32px 128px;
    grid-template-columns: minmax(390px, .75fr) minmax(0, 1.25fr);
    gap: clamp(80px, 10vw, 170px);
}

.hxdrive_storage_heading {
    align-self: start;
}

.hxdrive_storage_heading h2 {
    max-width: 600px;
    margin-bottom: 28px;
    font-size: clamp(50px, 4.7vw, 76px);
    font-weight: 280;
    letter-spacing: -.055em;
    line-height: 1.02;
}

.hxdrive_storage_heading > p:not(.hxdrive_eyebrow) {
    max-width: 510px;
    margin-bottom: 38px;
    color: var(--hxdrive_muted);
    font-size: 19px;
    line-height: 1.65;
}

.hxdrive_capacity_list {
    display: grid;
    border-top: 1px solid var(--hxdrive_ink);
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hxdrive_capacity_list > span {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 20px 0 0;
    border-bottom: 1px solid #cfd4d9;
    color: #1e252d;
    font-size: clamp(25px, 2vw, 31px);
    font-weight: 360;
    letter-spacing: -.025em;
}

.hxdrive_capacity_list > span:nth-child(even) {
    padding-right: 0;
    padding-left: 20px;
    border-left: 1px solid #cfd4d9;
}

.hxdrive_capacity_list > span.is-included {
    color: var(--hxdrive_blue_dark);
}

.hxdrive_capacity_list small {
    color: var(--hxdrive_blue_dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

/* -------------------------------------------------------------------------- */
/* Cloud boundary                                                              */
/* -------------------------------------------------------------------------- */

.hxdrive_cloud {
    background: var(--hxdrive_white);
}

.hxdrive_cloud_inner {
    display: grid;
    width: min(100%, var(--hxdrive_content));
    margin: 0 auto;
    padding: 110px 32px 118px;
    grid-template-columns: minmax(0, 1fr) minmax(400px, .78fr);
    gap: clamp(80px, 10vw, 175px);
}

.hxdrive_cloud h2 {
    max-width: 730px;
    margin-bottom: 0;
    font-size: clamp(48px, 4.5vw, 72px);
    font-weight: 280;
    letter-spacing: -.052em;
    line-height: 1.04;
}

.hxdrive_cloud_content {
    align-self: end;
}

.hxdrive_cloud_content p {
    margin-bottom: 32px;
    color: var(--hxdrive_muted);
    font-size: 18px;
    line-height: 1.68;
}

/* -------------------------------------------------------------------------- */
/* Final call to action                                                        */
/* -------------------------------------------------------------------------- */

.hxdrive_final {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--hxdrive_blue);
    color: var(--hxdrive_white);
}

.hxdrive_final::before,
.hxdrive_final::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    content: "";
}

.hxdrive_final::before {
    top: -380px;
    right: -160px;
    width: 760px;
    height: 760px;
}

.hxdrive_final::after {
    bottom: -340px;
    left: -200px;
    width: 620px;
    height: 620px;
}

.hxdrive_final_inner {
    width: min(100%, 1120px);
    margin: 0 auto;
    padding: 122px 32px 130px;
    text-align: center;
}

.hxdrive_final .hxdrive_eyebrow {
    color: #dcedff;
}

.hxdrive_final h2 {
    max-width: 960px;
    margin: 0 auto 27px;
    font-size: clamp(54px, 6vw, 92px);
    font-weight: 270;
    letter-spacing: -.06em;
    line-height: .98;
}

.hxdrive_final_inner > p:not(.hxdrive_eyebrow) {
    margin-bottom: 38px;
    color: #e6f2fd;
    font-size: 19px;
}

.hxdrive_final_actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.hxdrive_final .hxdrive_button_primary {
    border-color: #ffffff;
    background: #ffffff;
    color: #0d4f8c !important;
}

.hxdrive_final .hxdrive_button_primary:hover {
    border-color: var(--hxdrive_navy);
    background: var(--hxdrive_navy);
    color: #ffffff !important;
}

.hxdrive_final .hxdrive_button_secondary {
    border-color: rgba(255, 255, 255, .72);
    color: #ffffff !important;
}

.hxdrive_final .hxdrive_button_secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, .1);
}

/* -------------------------------------------------------------------------- */
/* Responsive                                                                  */
/* -------------------------------------------------------------------------- */

@media (max-width: 1220px) {
    .hxdrive_header_inner {
        gap: 28px;
    }

    .hxdrive_nav {
        gap: 20px;
    }

    .hxdrive_hero_inner {
        grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr);
        gap: 54px;
    }

    .hxdrive_preview_body {
        grid-template-columns: 135px minmax(0, 1fr);
    }

    .hxdrive_preview_sidebar {
        padding-right: 10px;
        padding-left: 10px;
    }
}

@media (max-width: 1080px) {
    .hxdrive_nav a:nth-child(2),
    .hxdrive_nav a:nth-child(3) {
        display: none;
    }

    .hxdrive_hero_inner {
        min-height: auto;
        padding-top: 90px;
        grid-template-columns: 1fr;
    }

    .hxdrive_hero_content {
        max-width: 780px;
    }

    .hxdrive_hero h1 {
        max-width: 760px;
    }

    .hxdrive_product_preview {
        width: min(100%, 850px);
        margin-left: auto;
    }

    .hxdrive_definition_inner,
    .hxdrive_section_header {
        grid-template-columns: minmax(140px, .26fr) minmax(0, 1fr);
        gap: 55px;
    }

    .hxdrive_access_inner,
    .hxdrive_security_inner,
    .hxdrive_storage_inner,
    .hxdrive_cloud_inner {
        gap: 70px;
    }
}

@media (max-width: 900px) {
    .hxdrive_header_inner {
        min-height: 68px;
        padding: 0 24px;
        grid-template-columns: auto 1fr;
    }

    .hxdrive_nav {
        display: none;
    }

    .hxdrive_header_actions {
        justify-content: flex-end;
    }

    .hxdrive_hero_inner,
    .hxdrive_files_inner,
    .hxdrive_access_inner,
    .hxdrive_security_inner,
    .hxdrive_storage_inner,
    .hxdrive_cloud_inner,
    .hxdrive_final_inner {
        padding-right: 24px;
        padding-left: 24px;
    }

    .hxdrive_definition_inner,
    .hxdrive_section_header,
    .hxdrive_access_inner,
    .hxdrive_security_inner,
    .hxdrive_storage_inner,
    .hxdrive_cloud_inner {
        grid-template-columns: 1fr;
    }

    .hxdrive_definition_inner,
    .hxdrive_section_header {
        gap: 28px;
    }

    .hxdrive_definition_inner {
        padding: 88px 24px 94px;
    }

    .hxdrive_files_inner {
        padding-top: 94px;
        padding-bottom: 100px;
    }

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

    .hxdrive_action {
        display: grid;
        min-height: auto;
        padding: 30px 0 34px;
        grid-template-columns: 75px minmax(150px, .42fr) minmax(0, 1fr);
        align-items: start;
        gap: 24px;
    }

    .hxdrive_action + .hxdrive_action {
        padding-left: 0;
        border-top: 1px solid var(--hxdrive_line);
        border-left: 0;
    }

    .hxdrive_action_number,
    .hxdrive_action h3,
    .hxdrive_action p {
        margin-bottom: 0;
    }

    .hxdrive_access_inner {
        padding-top: 82px;
        padding-bottom: 90px;
        grid-template-areas: "content" "visual";
        gap: 60px;
    }

    .hxdrive_access_visual {
        grid-area: visual;
    }

    .hxdrive_access_content {
        grid-area: content;
        max-width: 700px;
    }

    .hxdrive_security_inner,
    .hxdrive_storage_inner,
    .hxdrive_cloud_inner {
        padding-top: 94px;
        padding-bottom: 100px;
        gap: 46px;
    }

    .hxdrive_security_content > p {
        margin-top: 0;
    }

    .hxdrive_storage_heading,
    .hxdrive_cloud > div > div:first-child {
        max-width: 760px;
    }
}

@media (max-width: 680px) {
    .hxdrive_fallback_header,
    .hxdrive_fallback_footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .hxdrive_fallback_header nav,
    .hxdrive_fallback_footer nav {
        gap: 18px;
    }

    .hxdrive_header_link {
        display: none;
    }

    .hxdrive_header_actions {
        gap: 0;
    }

    .hxdrive_hero_inner {
        padding-top: 68px;
        padding-bottom: 72px;
        gap: 56px;
    }

    .hxdrive_hero h1 {
        font-size: clamp(56px, 16vw, 78px);
    }

    .hxdrive_hero_actions,
    .hxdrive_final_actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hxdrive_hero_actions .hxdrive_button,
    .hxdrive_final_actions .hxdrive_button {
        width: 100%;
    }

    .hxdrive_product_preview {
        width: 780px;
        transform: scale(.72);
        transform-origin: top left;
    }

    .hxdrive_hero .hxdrive_product_preview {
        margin-bottom: -132px;
    }

    .hxdrive_definition_inner {
        padding-top: 72px;
        padding-bottom: 78px;
    }

    .hxdrive_definition_content h2,
    .hxdrive_section_header h2,
    .hxdrive_access_content h2,
    .hxdrive_security_heading h2,
    .hxdrive_storage_heading h2,
    .hxdrive_cloud h2 {
        font-size: clamp(40px, 12vw, 56px);
    }

    .hxdrive_files_inner {
        padding-top: 78px;
        padding-bottom: 82px;
    }

    .hxdrive_section_header {
        margin-bottom: 50px;
    }

    .hxdrive_action {
        padding: 27px 0 30px;
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 8px 18px;
    }

    .hxdrive_action p {
        grid-column: 2;
    }

    .hxdrive_file_statement {
        padding-top: 38px;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 26px;
    }

    .hxdrive_access_inner {
        min-height: 0;
        padding-top: 72px;
        padding-bottom: 78px;
    }

    .hxdrive_access_visual {
        min-height: 390px;
    }

    .hxdrive_access_device_desktop {
        top: 64px;
        left: 5%;
        width: 74%;
        height: 245px;
    }

    .hxdrive_access_device_mobile {
        right: 5%;
        bottom: 35px;
        width: 98px;
        height: 192px;
    }

    .hxdrive_access_file {
        top: 25px;
        width: 82px;
        height: 108px;
        padding: 46px 13px 13px;
    }

    .hxdrive_security_inner,
    .hxdrive_storage_inner,
    .hxdrive_cloud_inner {
        padding-top: 76px;
        padding-bottom: 82px;
    }

    .hxdrive_capacity_list > span {
        min-height: 76px;
        font-size: 24px;
    }

    .hxdrive_final_inner {
        padding-top: 86px;
        padding-bottom: 92px;
    }

    .hxdrive_final h2 {
        font-size: clamp(48px, 14vw, 70px);
    }
}

@media (max-width: 460px) {
    .hxdrive_header_inner {
        padding: 0 18px;
    }

    .hxdrive_brand img {
        width: 30px;
        height: 30px;
    }

    .hxdrive_header_primary {
        min-height: 38px;
        padding: 0 15px;
    }

    .hxdrive_hero_inner,
    .hxdrive_files_inner,
    .hxdrive_access_inner,
    .hxdrive_security_inner,
    .hxdrive_storage_inner,
    .hxdrive_cloud_inner,
    .hxdrive_final_inner {
        padding-right: 18px;
        padding-left: 18px;
    }

    .hxdrive_definition_inner {
        padding-right: 18px;
        padding-left: 18px;
    }

    .hxdrive_product_preview {
        transform: scale(.57);
    }

    .hxdrive_hero .hxdrive_product_preview {
        margin-bottom: -205px;
    }

    .hxdrive_action {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .hxdrive_capacity_list > span {
        min-height: 72px;
        padding-right: 12px;
        font-size: 21px;
    }

    .hxdrive_capacity_list > span:nth-child(even) {
        padding-left: 12px;
    }

    .hxdrive_capacity_list small {
        font-size: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hxdrive_page *,
    .hxdrive_page *::before,
    .hxdrive_page *::after {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
}
