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

:root {
    --navy: #082a66;
    --navy-dark: #041d4d;

    --teal: #008d85;
    --teal-dark: #006e70;
    --teal-light: #10aaa0;

    --gold: #e6a400;
    --gold-light: #f7c844;

    --text: #23314c;
    --muted: #667087;

    --white: #ffffff;
    --border: #e9b844;

    --shadow:
            0 18px 50px rgba(7, 34, 77, 0.08);

    --content-width: 960px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background:
            radial-gradient(
                    circle at 0% 100%,
                    rgba(255, 199, 68, 0.25) 0,
                    rgba(255, 199, 68, 0.10) 18%,
                    transparent 50%
            ),
            radial-gradient(
                    circle at 100% 0%,
                    rgba(0, 163, 157, 0.20) 0,
                    rgba(0, 163, 157, 0.08) 20%,
                    transparent 50%
            ),
            #ffffff;
    font-family:
            Inter,
            Arial,
            Helvetica,
            sans-serif;
}

button,
input {
    font: inherit;
}

.coming-soon-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
}
/*
  Decorative background shapes
*/

.accent-line {
    position: absolute;
    z-index: -1;
    display: block;
    width: 620px;
    height: 620px;
    pointer-events: none;
    border-radius: 50%;
    border: 1px solid rgba(232, 170, 0, 0.3);
}

.accent-line--top {
    top: -335px;
    right: -365px;
}

.accent-line--bottom {
    bottom: -475px;
    left: -390px;
}

.page-container {
    width: min(calc(100% - 40px), var(--content-width));
    min-height: 100vh;
    margin: 0 auto;
    padding: 30px 0 46px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*
  Logo
*/

.brand {
    width: min(100%, 290px);
    margin-bottom: 30px;
    text-align: center;
}

.brand__logo {
    display: block;
    width: 100%;
    max-width: 290px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

/*
  Main heading
*/

.hero {
    width: 100%;
    text-align: center;
}

.hero__title {
    margin: 0;
    font-family:
            Georgia,
            "Times New Roman",
            serif;
    font-size: clamp(68px, 9vw, 118px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.hero__title-coming {
    color: var(--navy);
}

.hero__title-soon {
    color: var(--teal);
}

/*
  Gold divider with heart
*/

.heart-divider {
    width: min(100%, 470px);
    margin: 35px auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.heart-divider::before,
.heart-divider::after {
    height: 1px;
    content: "";
    flex: 1;
    background:
            linear-gradient(
                    90deg,
                    transparent,
                    var(--gold)
            );
}

.heart-divider::after {
    background:
            linear-gradient(
                    90deg,
                    var(--gold),
                    transparent
            );
}

.heart-divider__heart {
    position: relative;
    width: 19px;
    height: 19px;
    transform: rotate(45deg);
    border-radius: 3px 8px 3px 8px;
    background:
            linear-gradient(
                    135deg,
                    var(--gold-light),
                    #d88d00
            );
    box-shadow:
            0 2px 5px rgba(187, 117, 0, 0.25);
}

.heart-divider__heart::before,
.heart-divider__heart::after {
    position: absolute;
    width: 19px;
    height: 19px;
    content: "";
    border-radius: 50%;
    background: inherit;
}

.heart-divider__heart::before {
    left: -9px;
    top: 0;
}

.heart-divider__heart::after {
    left: 0;
    top: -9px;
}

/*
  Supporting text
*/

.hero__description {
    margin: 0 auto 36px;
    color: var(--text);
    font-size: clamp(19px, 2.1vw, 27px);
    font-weight: 400;
    line-height: 1.42;
}

.hero__description strong {
    color: var(--teal);
    font-weight: 600;
}

/*
  Secret-code form
*/

.secret-form {
    width: min(100%, 800px);
    margin: 0 auto;
}

.secret-form__group {
    min-height: 82px;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid rgba(230, 164, 0, 0.62);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.secret-form__field {
    position: relative;
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: center;
}

.secret-form__icon {
    position: absolute;
    left: 30px;
    width: 27px;
    height: 27px;
    color: var(--gold);
    pointer-events: none;
}

.secret-form__input {
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 0 28px 0 75px;
    border: 0;
    outline: 0;
    color: var(--navy-dark);
    background: transparent;
    font-size: 21px;
}

.secret-form__input::placeholder {
    color: #6f7787;
    opacity: 1;
}

.secret-form__input:focus {
    box-shadow:
            inset 0 0 0 2px rgba(0, 141, 133, 0.18);
}

.secret-form__button {
    min-width: 250px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    border: 0;
    border-left: 1px solid var(--gold);
    border-radius: 15px;
    color: var(--white);
    background:
            linear-gradient(
                    135deg,
                    var(--teal-light) 0%,
                    var(--teal) 46%,
                    var(--teal-dark) 100%
            );
    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.28);
    cursor: pointer;
    font-size: 23px;
    font-weight: 600;
    transition:
            transform 180ms ease,
            filter 180ms ease,
            box-shadow 180ms ease;
}

.secret-form__button:hover {
    filter: brightness(1.05);
    box-shadow:
            0 10px 28px rgba(0, 111, 106, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.secret-form__button:active {
    transform: scale(0.985);
}

.secret-form__button:focus-visible {
    outline: 3px solid rgba(230, 164, 0, 0.45);
    outline-offset: 3px;
}

.secret-form__arrow {
    width: 26px;
    height: 26px;
    transition: transform 180ms ease;
}

.secret-form__button:hover .secret-form__arrow {
    transform: translateX(4px);
}

.form-message {
    min-height: 24px;
    margin: 12px 0 0;
    color: var(--teal-dark);
    font-size: 15px;
    text-align: center;
}

.form-message--error {
    color: #b42318;
}

/*
  Feature row
*/

.features {
    width: min(100%, 820px);
    margin-top: 76px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.feature {
    min-width: 0;
    padding: 0 25px;
    display: grid;
    grid-template-columns: 76px 1fr;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.feature + .feature {
    border-left: 1px solid rgba(230, 164, 0, 0.55);
}

.feature__icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 141, 133, 0.12);
    border-radius: 50%;
    background: rgba(0, 141, 133, 0.055);
    color: var(--teal);
}

.feature:nth-child(2) .feature__icon {
    border-color: rgba(230, 164, 0, 0.16);
    background: rgba(230, 164, 0, 0.055);
    color: var(--gold);
}

.feature__icon svg {
    width: 42px;
    height: 42px;
}

.feature__title {
    margin: 0 0 7px;
    color: var(--navy);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.feature__text {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

/*
  Footer
*/

.footer {
    margin-top: 52px;
    color: #7c8495;
    font-size: 13px;
    text-align: center;
}

/*
  Tablet
*/

@media (max-width: 860px) {
    .page-container {
        padding-top: 45px;
    }

    .brand {
        width: min(100%, 650px);
        margin-bottom: 42px;
    }

    .features {
        gap: 0;
    }

    .feature {
        padding: 0 16px;
        grid-template-columns: 62px 1fr;
        gap: 13px;
    }

    .feature__icon {
        width: 62px;
        height: 62px;
    }

    .feature__icon svg {
        width: 35px;
        height: 35px;
    }
}

/*
  Mobile
*/

@media (max-width: 680px) {
    .page-container {
        width: min(calc(100% - 28px), 560px);
        padding: 35px 0 30px;
        justify-content: flex-start;
    }

    .brand {
        margin-bottom: 42px;
    }

    .hero__title {
        font-size: clamp(55px, 17vw, 82px);
        line-height: 0.96;
    }

    .hero__title-coming,
    .hero__title-soon {
        display: block;
    }

    .heart-divider {
        margin-top: 28px;
    }

    .hero__description {
        margin-bottom: 28px;
        font-size: 18px;
    }

    .secret-form__group {
        min-height: 0;
        overflow: visible;
        flex-direction: column;
        gap: 12px;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .secret-form__field {
        min-height: 66px;
        border: 1px solid rgba(230, 164, 0, 0.62);
        border-radius: 14px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .secret-form__icon {
        left: 22px;
        width: 24px;
        height: 24px;
    }

    .secret-form__input {
        min-height: 66px;
        padding-left: 62px;
        font-size: 18px;
    }

    .secret-form__button {
        width: 100%;
        min-width: 0;
        min-height: 64px;
        border: 1px solid rgba(230, 164, 0, 0.75);
        border-radius: 14px;
    }

    .features {
        margin-top: 55px;
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature {
        width: min(100%, 330px);
        margin: 0 auto;
        padding: 0;
        grid-template-columns: 68px 1fr;
    }

    .feature + .feature {
        padding-top: 24px;
        border-top: 1px solid rgba(230, 164, 0, 0.4);
        border-left: 0;
    }

    .feature__icon {
        width: 68px;
        height: 68px;
    }

    .footer {
        margin-top: 40px;
    }
}

/*
  Very small phones
*/

@media (max-width: 390px) {
    .hero__title {
        font-size: 52px;
    }

    .brand {
        margin-bottom: 34px;
    }

    .hero__description br {
        display: none;
    }
}

/*
  Reduced motion accessibility
*/

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}

/*
  Auth cards (Create Account / NDA / Confirmation)
*/

.auth-wrap {
    padding: 20px 0 0;
}

.auth-card {
    width: min(100%, 620px);
    margin: 0 auto;
    padding: 44px 48px 40px;
    position: relative;
    border: 1px solid rgba(230, 164, 0, 0.35);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
}

.auth-card--wide {
    width: min(100%, 700px);
}

.auth-card--center {
    text-align: center;
}

.auth-card__header {
    margin-bottom: 30px;
    text-align: center;
}

.auth-card--center .auth-card__header {
    margin-bottom: 18px;
}

.auth-card__title {
    margin: 0 0 10px;
    color: var(--navy);
    font-family:
            Georgia,
            "Times New Roman",
            serif;
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 600;
}

.auth-card__subtitle {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
}

.auth-card__icon {
    position: relative;
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 141, 133, 0.14);
    border-radius: 50%;
    background: rgba(0, 141, 133, 0.07);
    color: var(--teal);
}

.auth-card__icon svg {
    width: 34px;
    height: 34px;
}

.auth-card__icon-badge {
    position: absolute;
    right: -2px;
    bottom: -2px;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
}

.auth-card__icon-badge svg {
    width: 15px;
    height: 15px;
}

/*
  Signature block (read-only NDA parties)
*/

.signature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 18px;
    margin-bottom: 26px;
    padding: 20px 22px;
    border: 1px solid #e3e6ec;
    border-radius: 12px;
    background: #fafbfc;
}

.signature-row {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.signature-row--full {
    grid-column: 1 / -1;
}

.signature-row__label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.signature-row__caption {
    display: block;
    margin-top: 4px;
    color: #9aa2b2;
    font-size: 12px;
    font-style: italic;
}

/* read-only inputs styled to match the previous <span> look */

input.signature-row__value {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: default;
}

input.signature-row__value::placeholder {
    color: #9aa2b2;
}

input.signature-row__value:focus {
    box-shadow: none;
}

input.signature-row__value--tag {
    display: inline-block;
    width: auto;
    padding: 6px 20px;
    border-radius: 4px;
    background: rgba(0, 141, 133, 0.08);
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 600;
}

/*
  Mobile
*/

@media (max-width: 680px) {
    .signature-block {
        grid-template-columns: 1fr;
        padding: 16px 18px;
    }
}

/*
  Step progress indicator
*/

.steps {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 28px;
}

.steps__label {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

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

.steps__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #dfe3ea;
}

.steps__dot--active {
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(0, 141, 133, 0.15);
}

.steps__dot--done {
    background: var(--teal);
}

.steps__bar {
    width: 26px;
    height: 2px;
    background: #dfe3ea;
}

.steps__bar--done {
    background: var(--teal);
}

/*
  Form fields
*/

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 18px;
    margin-bottom: 28px;
}

.form-field {
    min-width: 0;
}

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

.form-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.required {
    color: #b42318;
}

.form-field__control {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #dfe3ea;
    border-radius: 12px;
    background: var(--white);
    transition:
            border-color 180ms ease,
            box-shadow 180ms ease;
}

.form-field__control:focus-within {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 141, 133, 0.12);
}

.form-field__icon {
    flex: none;
    width: 19px;
    height: 19px;
    margin-left: 14px;
    color: #9aa2b2;
    position: absolute;
}

.form-field__icon--end {
    margin-left: 0;
    margin-right: 16px;
}

.form-field__control input {
    width: 100%;
    min-width: 0;
    height: 50px;
    padding: 0 14px 0 46px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text);
    font-size: 15px;
}

.form-field__control input::placeholder {
    color: #9aa2b2;
}

input:-internal-autofill-selected {
    background-color: transparent !important;
}

.form-field__control input[readonly] {
    background: #fafbfc;
    color: var(--muted);
    cursor: default;
}



/*
  Buttons
*/

.btn-primary {
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    border: 0;
    border-radius: 13px;
    color: var(--white);
    background:
            linear-gradient(
                    135deg,
                    var(--teal-light) 0%,
                    var(--teal) 46%,
                    var(--teal-dark) 100%
            );
    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.28);
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    transition:
            transform 180ms ease,
            filter 180ms ease,
            box-shadow 180ms ease;
}

.btn-primary--block {
    width: 100%;
}

.btn-primary:hover {
    filter: brightness(1.05);
    box-shadow:
            0 10px 28px rgba(0, 111, 106, 0.22),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-primary:active {
    transform: scale(0.99);
}

.btn-secondary {
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    border: 1.5px solid var(--teal);
    border-radius: 12px;
    color: var(--teal-dark);
    background: var(--white);
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition:
            background 180ms ease,
            transform 180ms ease;
}

.btn-secondary:hover {
    background: rgba(0, 141, 133, 0.06);
}

.btn-secondary:active {
    transform: scale(0.99);
}

.btn-secondary__icon {
    width: 17px;
    height: 17px;
}

/*
  Footnotes / privacy notices
*/

.form-footnote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 0;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.form-footnote__icon {
    flex: none;
    width: 15px;
    height: 15px;
    color: var(--teal);
}

/*
  NDA agreement box
*/

.nda-box {
    max-height: 260px;
    margin-bottom: 22px;
    padding: 20px 22px;
    overflow-y: auto;
    border: 1px solid #e3e6ec;
    border-radius: 12px;
    background: #fafbfc;
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
}

.nda-box__title {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
}

.nda-box h3 {
    margin: 16px 0 6px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 700;
}

.nda-box p {
    margin: 0 0 10px;
}

.nda-box p:last-child {
    margin-bottom: 0;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 26px;
    cursor: pointer;
}

.checkbox-field input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.checkbox-field__box {
    flex: none;
    width: 19px;
    height: 19px;
    margin-top: 1px;
    border: 1.5px solid #c7cdd8;
    border-radius: 5px;
    background: var(--white);
    transition:
            background 150ms ease,
            border-color 150ms ease;
}

.checkbox-field input:checked + .checkbox-field__box {
    border-color: var(--teal);
    background-color: var(--teal);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px 12px;
}

.checkbox-field input:focus-visible + .checkbox-field__box {
    outline: 3px solid rgba(0, 141, 133, 0.25);
    outline-offset: 2px;
}

.checkbox-field__text {
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

.nda-box ol.clauses {
  list-style: none;
  counter-reset: clause;
  margin: 16px 0 0;
  padding: 0;
}
.nda-box ol.clauses > li {
  counter-increment: clause;
  position: relative;
  padding: 16px 0 16px 24px;
}


/*
  Confirmation page
*/

.confirmation-text {
    max-width: 460px;
    margin: 0 auto 26px;
    color: var(--text);
    font-size: 16px;
    line-height: 1.55;
}

.notice-box {
    margin: 0 auto 26px;
    padding: 18px 22px;
    border: 1px solid rgba(230, 164, 0, 0.4);
    border-radius: 12px;
    background: rgba(247, 200, 68, 0.12);
}

.notice-box__title {
    margin: 0 0 4px;
    color: var(--navy);
    font-size: 15px;
    font-weight: 700;
}

.notice-box__text {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

.confirmation-footnote {
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 13px;
}

/*
  Auth card responsive
*/

@media (max-width: 680px) {
    .auth-card {
        padding: 32px 22px 30px;
        border-radius: 16px;
    }

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

    .steps {
        justify-content: center;
        margin-bottom: 22px;
    }

    .nda-box {
        max-height: 220px;
        padding: 16px 18px;
    }
}

/*
  Login form (.optin)
*/

.optin {
    width: min(100%, 420px);
    margin: 0 auto;
}

.login-form .form-group,
.login-form .form-field {
    margin-bottom: 18px;
}

.form-field__input {
    width: 100%;
    height: 50px;
    padding: 0 16px;
    border: 1px solid #dfe3ea;
    border-radius: 12px;
    background: var(--white);
    color: var(--text);
    font-size: 15px;
    transition:
            border-color 180ms ease,
            box-shadow 180ms ease;
}

.form-field__input::placeholder {
    color: #9aa2b2;
}

/*.form-field__input:focus {*/
/*    outline: 0;*/
/*    border-color: var(--teal);*/
/*    box-shadow: 0 0 0 3px rgba(0, 141, 133, 0.12);*/
/*}*/

.remember_me.checkbox-field {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: var(--text);
    font-size: 14px;
    cursor: pointer;
}

.remember_me.checkbox-field b {
    font-weight: 500;
}

.checkbox-field__input {
    width: 17px;
    height: 17px;
    margin: 0;
    accent-color: var(--teal);
    cursor: pointer;
}

.auth-link {
    color: var(--teal-dark);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.auth-link:hover {
    text-decoration: underline;
}

.login-form .btn-primary,
.login-form input.btn-primary {
    text-align: center;
}

/*
  Optin widget (real account-creation form)
*/

.optin-message {
    margin: 0 0 18px;
    font-size: 14px;
    text-align: center;
}

.optin-message:empty {
    display: none;
}

.optin-message--error {
    color: #b42318;
}

.optin-message--success {
    color: var(--teal-dark);
}

.form-field__optional {
    color: var(--muted);
    font-weight: 400;
}

.form-field__hint {
    display: block;
    margin-top: 6px;
    font-size: 13px;
}

.form-field__hint:empty {
    display: none;
}

.form-sponsor-note {
    margin: 0 0 20px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.form-processing {
    display: block;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

/* Wrap video  <iframe> */

.ratio-16x9 {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.ratio-16x9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-box {
    width: min(100%, 620px);
    margin: 0 auto ;
}
.coming-soon-page .video-box {
    margin-bottom: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow);
    overflow: hidden;
}