* {
    box-sizing: border-box;
}

/* =========================
   BASE
   ========================= */

body {
    font-family: sans-serif;
    background: #18191f;
    margin: 0;
}

p {
    color: #cddadc /*rgba(194, 211, 214, 0.65)*/;
}

h1 {
    color: #cddadc /*#c2d3d6*/;
}

h2, h3, h4, h5, h6 {
    color: #cddadc /*rgba(194, 211, 214, 0.65)*/;
}

/* =========================
   GLASS BARS
   ========================= */

html::before,
html::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;

    width: clamp(5px, 0.65vw, 18px);

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    z-index: 9999;
    pointer-events: none;
}

html::before {
    left: max(10px, calc((100vw - 1200px) / 2));
}

html::after {
    right: max(10px, calc((100vw - 1200px) / 2));
}

/* =========================
   MAIN FRAME
   ========================= */

main {
    width: min(1500px, calc(100% - 32px));
    margin: 0 auto;
    background: transparent;
    border: 0px solid #350000; /*was 1px*/
    position: relative;
    overflow: visible;
    z-index: 1;
}

/* =========================
   LAYERING SAFETY
   ========================= */

main > * {
    position: relative;
    z-index: 2;
}

.site-header {
    position: relative;
    z-index: 10;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.site-logo {
    display: block;
    line-height: 1;             /* Removes default line spacing */
}

.site-logo img {
    display: box;
    height: clamp(36px, 7.2vw, 680px);            /* ← Control size here */
    width: auto;
    max-width: 2440px;         /* Prevents it from becoming huge */
    margin: 0 auto;
}

/* =========================
   PANELS
   ========================= */

.introduction,
.table-of-contents,
.disclaimer {
    display: block;
    width: min(1000px, calc(100% - 34px));
    margin: 2px auto;
    padding: clamp(3px, 0.3vw, 24px); /*padding of invis box in glass box (that holds form, pic, etc)*/
    background: #18191f /*rgba(225,225,225,0.02);*/ /*rgba(255,255,255,0.02), was 0.08 earlier*/
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 0px solid #494c4e; /*#494c4e*/ /*was 2px*/
    position: relative;
    z-index: 5;
}

/* =========================
   INNER BOX
   ========================= */

body .table-of-contents .box .inner-box {
    background: #18191f;

    width: 100%;
    max-width: 700px;

    margin: 1px auto;
    padding: clamp(4px, 2.5vw, 20px);
    background: ##cddadc;

}

/* =========================
   LINKS
   ========================= */

a {
    color: #c2d3d6;
}

a.see-more {
    margin-left: 1.2em;
    font-size: 0.65em;
    color: #5ffba0;
    text-decoration: none;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.4s ease;
}

a.see-more:hover {
    text-decoration: underline;
    opacity: 0.15;
}

body.show-see-more a.see-more {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* =========================
   FORM (FIXED + CONSISTENT)
   ========================= */

#insiders-form {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

/* inputs */
#insiders-form input {
    width: 100%;
    display: block;
    margin: 0 0 12px 0;
    padding: 12px;
    background: rgba(10,10,10,0.72);
    border: 1px solid #3e4344;
    color: #ccc;
    transition: 0.3s ease;
}

#insiders-form input::placeholder {
    color: #777;
}

#insiders-form button {
    display: block;

    width: clamp(105px, 40%, 170px);

    margin-top: 4px;
    margin-left: auto;

    padding: 9px;

    background: transparent /*#cddadc*/; /*#494c4e*/
    color: #cddadc /*#222222*/;

    border: 1px solid #cddadc;

    cursor: pointer;

    transition: background 0.4s ease,
                box-shadow 0.4s ease,
                transform 0.4s ease;
}

#insiders-form button:hover {
    background: #6b6f72;
    border-color: #5ffba0;
    color: #5ffba0;
    box-shadow: 0 0 12px rgba(95,251,160,0.25);
}

.hero-image-row-asymmetric,
.hero-image-row-reverse-asymmetric {
    display: flex;
    gap: 2px;              /* horizontal gap between images */
    width: 100%;
    margin-bottom: 2px;    /* vertical gap between rows */
}

/* =========================
   INTL-TEL-INPUT (Phone Field)
   ========================= */
/*
#insiders-form .iti {
    width: 100%;
    margin-bottom: 6px;
    padding-left: 112px !important;
    
}*/

/* Flag container (this is the dropdown button area) *//*
#insiders-form .iti__flag-container {
    background: rgba(10,10,10,0.72);
    border: 1px solid #3e4344;
    border-right: none;

    position: relative;
    
}*/

/* Input field *//*
#insiders-form .iti input {
    width: 100% !important;
    padding-left: 10px !important;
    background: rgba(10,10,10,0.72);
    border: 1px solid #3e4344;
    color: #ccc;
}*/

/* === Country Code Toggle Box === *//*
#insiders-form .iti__selected-flag {
    background: rgba(10,10,10,0.72);
    border: 1px solid #3e4344;
    border-right: none;

    min-width: 78px;

    display: flex;
    align-items: center;
    gap: 6px;
}*/

/* Dial code text *//*
#insiders-form .iti__selected-dial-code {
    color: #ccc;
    font-size: 1em;*/
    /* cleaned up (removed duplicate/conflicting margins) *//*
    margin-top: -20px;
    margin-left: 30px;
}*/

/* Dropdown arrow *//*
#insiders-form .iti__arrow {
    border-top-color: #ccc;
}*/

/* Focus state *//*
#insiders-form .iti input:focus {
    border-color: #5ffba0;
    box-shadow: 0 0 0 2px rgba(95, 251, 160, 0.15);
}*/

/* Dropdown menu *//*
.iti__country-list {
    background: #18191f;
    border: 1px solid #3e4344;
    color: #ccc;
}

.iti__country {
    color: #ccc;
}

.iti__country:hover {
    background: #2a2d33;
}

.iti__highlight {
    background: #3e4344;
}*/

/* =========================
   INTL-TEL-INPUT (Phone Field)
   ========================= */

#insiders-form .iti {
    width: 100%;
    margin-bottom: 6px;
    padding-left: 112px !important;
    
}
/* Input field */
#insiders-form .iti input {
    width: 100% !important;
    padding-left: 10px !important;
    background: rgba(10,10,10,0.72);
    border: 1px solid #3e4344;
    color: #ccc;
}

#insiders-form .iti {
    width: 100%;
}

#insiders-form .iti input {
    width: 100%;
}
#insiders-form .iti__selected-country {
    transform: translateY(-4px);
}
/* Dial code text */
#insiders-form .iti__selected-country {
    display: flex;
    align-items: center;
    gap: 6px;
}
#insiders-form .iti__selected-dial-code {
    margin: 0;
    position: static;
}

.iti__country {
    color: #ccc;
}

.iti__country:hover {
    background: #2a2d33;
}

.iti__highlight {
    background: #3e4344;
}
/*drop-down menu*/
.iti__country-list {
    background: #18191f;
    border: 1px solid #3e4344;
    color: #ccc;
/* Ensure the dropdown always sits above everything */
    position: relative; /*was relative*/
    z-index: 100000 !important;
}

/*drop-down arrow*/
#insiders-form .iti__arrow {
    border-top-color: #ccc;
}
/* when input is focused */
#insiders-form input:focus {
    border-color: #5ffba0 !important;
    box-shadow: 0 0 0 2px rgba(95, 251, 160, 0.15) !important;
}

/* when intl-tel-input is active (important one) */
#insiders-form .iti.iti--allow-dropdown {
    border-color: transparent;
}

/* when flag dropdown is interacted with */
#insiders-form .iti__selected-country {
    outline: none;
}
/*increased the search box size for country code drop-down*/
.iti__country-list .iti__search-input {
    position: absolute;
    background: rgba(10,10,10,0.9);
    border: 1px solid #3e4344;
    color: #ccc;
    font-size: 16px;
    padding: 10px 12px;
}

.iti__country-list .iti__search-input::placeholder {
    color: #777;
}

