/* Import */
@font-face {
  font-family: 'Space Grotesk';
  src: url('font/Space_Grotesk/SpaceGrotesk-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 300 700; /* a RANGE, not one number */
}


/* Style variables */
:root {
    --accent-color: #b44141;
    --background: #dad7cd;
    --second-background: #dad7cd;
    --dark-color: #484744;
    --light-dark: #a8a6a0;
    --section-text-color: #d1cec4;

    --shadow: 0px 8px 24px rgba(0, 0, 0, 0.2);

    --text-space: 0.05em;
}
/* ---------- Global Settings ----------- */
*{
    box-sizing: border-box;
    margin: 0;
    font-family: 'Space Grotesk',  sans-serif;
    font-feature-settings: "zero" 1, "ss04" 1, "case" 1;
}

body{
    /* margin: 0 32px; */
    background: var(--background);
}

.text{
    color: var(--dark-color);
}

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

/* Container class settings */

.container{
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    padding: 8px 32px 8px 32px;
}

.container.divider{
    letter-spacing: var(--text-space);
}

/* Reserve button Class settings */

.b-reserve{
    border-radius: 50px;
    border-style: solid;
    border-width: .5px;
    padding: 4px 16px;
    font-size: 16px;
    color: var(--background);
    background: var(--accent-color);
}

/* Section settings */

.section{
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex: 0 1 1100px;
    flex-wrap: wrap;
    padding: 16px;
    gap: 32px;
}

/* Divider settings */

.divider{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 36px;
    margin-bottom: 36px;
    gap: 16px;
    color: var(--light-dark);
}

.divider.plus{
    margin: 0;
}

.line{
    flex: 1;
    border-style: solid;
    border-width: .25px;
    border-color: var(--light-dark);
    height: 0;
}

.d-text{
    font-size: 12px;
    font-weight: 100;
    color: var(--dark-color);
}

/* --------- End of Global Settings -------- */

/* <-- Header --> */

.header{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between; 
    align-items: center;
    padding-top: 16px; 
}

.header-right, .header-left{
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    flex-wrap: wrap;
}

.header-content{
    margin-right: 32px;
    /* padding: 8px 16px; */
    font-size: 28px;
    color: var(--accent-color);
}

.header-title{
    /* flex-shrink: 0; */
    border-style: solid;
    border-color: var(--dark-color);
    border-radius: 50px;
    border-width: 1px;
    padding: 0 8px;
    color: var(--dark-color);
    font-size: 12px;
    letter-spacing: var(--text-space);
}

.header-right{
    flex: 1 0 auto;
    justify-content: end;
}

/* Tag section */

.container.tag{
    margin-bottom: 32px;
    justify-content: space-between;
    align-items: center;
    border-bottom-style: solid; 
    border-top-style: solid;
    border-color: var(--dark-color);
    border-width: 1.5px;
    font-size: 12px;
    font-weight: 100;
    color: var(--dark-color);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.2)
}

.tag-left, .tag-right{
    display: flex;
    align-items: center;
    letter-spacing: var(--text-space);
}

.tag-left{
    gap: 16px;
}

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

.active-box{
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    background: var(--accent-color);
}

.active-text{
    font-weight: 500;
}

/* Hero Section */

.section.hero{
    flex-wrap: wrap;
}

    /* Section-Number Settings */

.section-number{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translate(0%, -60%);
}

.section-value{
    position: relative;
    font-size: 96px;
    font-weight: 600;
    color: var(--section-text-color);
}

.section-label{
    position: absolute;
    top: 55%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: var(--accent-color);
    letter-spacing: var(--text-space);
}
    /* END of Section-Number Settings*/

.hero-left{
    /* max-width: 600px; */
    position: relative; /* <-- is needed to position the Section-number */
    flex-grow: 1;
    flex-basis: 500px;
    margin-bottom: 24px;
}

.h-headline{
    font-size: 42px;
}

.h-subhead{
    width: 400px;
    margin-bottom: 16px;
}

.b-reserve.hero{
    padding: 8px 32px;
    font-size: 18px;
}

.hero-right{
    flex-grow: 1;
    flex-basis: 400px;
}

    /*  ------ Hero Section - CHIP ------ */
.box{
    position: relative;
    justify-self: center;
    width: 400px;
    height: auto;
    border-style: solid;
    border-radius: 16px;
    border-width: 3px;
    border-color: var(--accent-color);
    padding: 8px 16px;
    box-shadow: var(--shadow);
}

.chip-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.box-title{
    font-weight: 100;
    font-size: 12px;
}

.chip-status.active{
    min-width: 10px;
    height: 10px;
    margin: 4px;
    border-radius: 50%;
    background: var(--accent-color);
}

.chip-status.closed{
    min-width: 10px;
    height: 10px;
    margin: 4px;
    border-style: solid;
    border-radius: 50%;
    border-width: 2px;
    border-color: var(--dark-color);
}
.chip-section{
    margin-bottom: 8px;
    border-style: solid;
    border-radius: 10px;
    border-width: 1px;
    padding: 4px 12px;
    background: var(--second-background);
}

.chip-section.description p{
    font-size: 14px;
}

.specs-header{
    display: flex;
    justify-content: space-between;
}

.specs-header p{
    font-size: 12px;
}

.chip-section h6{
    margin-bottom: 4px;
    letter-spacing: var(--text-space);
}

.specs{
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
}

.specs p{
    width: fit-content;
    flex: 1 0 content;
    border-style: solid;
    border-width: 1px;
    border-radius: 16px;
    padding: 2px 8px;
    font-size: 13px;
    letter-spacing: var(--text-space);
}

.thread-preview{
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
    border-style: solid;
    border-width: 2px;
    border-radius: 8px;
    border-color: var(--accent-color);
    padding: 2px 2px;
    font-size: 13px;
}

.thread-preview.closed{
    display: flex;
    gap: 4px;
    margin-bottom: 4px;
    border-style: solid;
    border-width: 2px;
    border-radius: 8px;
    border-color: var(--light-dark);
    color: var(--dark-color);
    font-size: 13px;
}

.details, .chip-micro{
    font-size: 10px;
    font-weight: 100;
    color: var(--dark-color);
    letter-spacing: var(--text-space);
}

.chip-micro.top{
    position: absolute;
    text-align: center;
    width: 400px;
    /* /* top: 0; */
    transform: translate(0%, -250%);
    letter-spacing: 0.3em;
}

.chip-micro.bottom{
    position: absolute;
    text-align: end;
    width: 400px;
    transform: translate(-8%, 150%);
    letter-spacing: 0.3em;
}

/* Section 02, 03 */

.main-number{
    z-index: -1;
    position: absolute;
    top: -32px;
    right: 0;
    line-height: .8;
    font-size: 96px;
    font-weight: 600;
    color: var(--section-text-color);
}

.main-left{
    flex: 1;
    flex-basis: 400px;
    margin-right: 36px;
}

.m-l-p{
    color: var(--accent-color);
    font-size: 12px;
}

.details.two{
    margin-bottom: 16px;
    color: var(--dark-color);
    font-size: 12px;
}

.main-right{
    position: relative;
    flex: 1.5;
    flex-basis: 600px;
    font-weight: 100;

}

.main-para{
    margin-bottom: 16px;
    font-weight: 100;
}

/* Section 03 Graphics */

/* Section 04 Graphics */
.section.hit-viz{
    flex-wrap: wrap;
}

.hit{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.section.hit-viz > *{
    flex-grow: 1;
    flex-basis: 300px;
}

.hit-header{
    display: flex;
    justify-content: center;
    align-items: center;
    border-style: solid;
    border-width: 2px;
    border-radius: 16px;
    border-color: var(--accent-color);
    padding: 2px 8px;
    letter-spacing: var(--text-space);
}

.hit-header.l{
    border-color: var(--dark-color);
    background: var(--dark-color);
    color: var(--background);
}

.hit-header.s{
    border-color: var(--dark-color);
    gap: 4px;
}

.search-icon{
    width: 16px;
    height: 16px;
}

.search-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hit-detail-txt{
    color: var(--light-dark);
    font-size: 12px;
}

/* Pricing Graphics */

.section.pr{
    flex-wrap: wrap;
}

.main-left.pr{
    flex-grow: 2;
    flex-basis: 350px;
    margin-bottom: 16px;
}

.main-right.pr{
    flex-grow: 1;
    flex-basis: 350px;
}

.c-p{
    position: relative;
    justify-self: center;
    border: 2px solid var(--dark-color);
    border-radius: 24px;
    width: 400px;
    padding: 14px 14px 2px;
    background: var(--background);
    box-shadow: var(--shadow);
}

.c-p-i{
    margin-bottom: 12px;
    border: 1px solid var(--dark-color);
    border-radius: 16px;
    padding: 10px;
}

.c-p h1{
    color: var(--accent-color);
}

.c-p-c{
    display: flex;
    justify-content: space-between;
    padding-left: 12px;
    color: var(--dark-color);
}

.c-p-h{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    letter-spacing: var(--text-space);
    color: var(--dark-color);
    
}

.c-p-c-l{
    display: flex;
    align-items: end;
}

.c-p-c-l.stan, .c-p-c-l.stan h1{
    color: var(--light-dark);
    font-weight: 400;
}

.c-b{
    /* display: flex;
    justify-content: center; */
    /* padding: 8px 16px 0; */
}

/* QnA */

.section.sqna{
    position: relative;
}

.qna-header{
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
}

.s8{
    line-height: .8;
    font-size: 96px;
    font-weight: 600;
    color: var(--section-text-color);
}

.qna-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

@media (max-width: 699px) {
  .qna-grid { grid-template-columns: 1fr; }
}

.email-u{
    padding: 8px;
}

.email-u, .email-u a{
    color: var(--dark-color);
    font-weight: 100;
}

/* CTA */

.container.c-cta{
    margin-bottom: 64px;
}

.s-cta{
    max-width: 600px;
    text-align: center;
}

.h-cta{
    margin-bottom: 32px;
}

.container.tag.footer{
    margin-bottom: 0;
    height: 64px;
}
