@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap'); :root {
    --orange: #db511a;
    --bg: #2f2f2f;
    --secondarybg: #576b77;
    --bghover: #3f3f3f;
    --secondarybghover: #5e5e5e;
    --maintext: #dadada;
    --button-border: #222222;
    --red: #e0463b;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--maintext);
    background: var(--bg);
    font-family: 'DM Sans', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

a {
    color: var(--orange);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

body:before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .35;
    background-image: linear-gradient(rgba(22,33,31,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(22,33,31,.04) 1px, transparent 1px);
    background-size: 32px 32px;
}

.shell {
    position: relative;
    max-width: 1180px;
    margin: auto;
    padding: 12px 0vw 24px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.topbar, footer, .panel-heading, .status, .integration-list li, dl div {
    display: flex;
    align-items: center;
}

.topbar {
    justify-content: space-between;
    border-bottom: 1px solid var(--orange);
    padding-bottom: 6px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-button {
    display: inline-block;
    color: var(--maintext);
    padding: 8px 12px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
}

.nav-button:hover {
    background: var(--bghover);
}

.nav-center {
    justify-self: center;
}

.nav-end {
    justify-self: end;
}

.kicker, .eyebrow, .panel-heading, footer, dt, .status {
    font: 500 11px 'DM Sans', sans-serif;
    letter-spacing: .08em;
}

.kicker, .eyebrow, .panel-heading, footer, dt {
    color: var(--maintext);
}

h1 {
    margin: 5px 0 0;
    font-size: clamp(1.2rem, 2.5vw, 1.65rem);
    letter-spacing: -.04em;
}

.signInButton {
    justify-self: end;
    background: var(--bghover);
    border-radius: 12px;
    border: 1px solid var(--button-border);
    padding: 8px 12px;
    text-decoration: none;
    color: var(--maintext);
}

.signInButton:hover {
    background: var(--orange);
    color: var(--bg);
}

.nav-dropdown a.nav-dropdown-signout {
    color: var(--red);
}

.nav-dropdown .nav-dropdown-signout:hover {
    background: var(--red);
    color: white
}

.nav-username-button {
    justify-self: end;
    background: var(--bghover);
    border-radius: 12px;
    border: 1px solid var(--button-border);
    padding: 8px 12px;
    color: var(--maintext);
    cursor: pointer;
}

.nav-username-button:hover {
    background: var(--secondarybghover);
}

/* Container needed to position the dropdown content */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--bghover);
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
  border-radius: 8px;
  text-decoration: none;
  padding-top: 10px;
}

/* Links inside the dropdown */
.nav-dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.nav-dropdown-content a:hover {
  background-color: var(--orange);
  border-radius: 8px;
}

/* Show the dropdown menu on hover */
.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

/* Change the button color when the dropdown is shown */
.nav-dropdown:hover .nav-dropbtn {
  background-color: #2980b9;
}


.status {
    gap: 8px;
    color: var(--maintext);
    justify-self: end;
}

.status span, .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c1c9c4;
}

.status span {
    background: #4dbe74;
}

.intro {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    padding: 92px 0 70px;
}

.eyebrow {
    color: var(--orange);
    margin: 0 0 16px;
}

h2 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-optical-sizing: auto;
    line-height: .93;
    letter-spacing: auto;
    font-weight: 600;
    font-style: normal;
}

.lede {
    max-width: 450px;
    color: var(--maintext);
    line-height: 1.6;
    margin: 25px 0 0;
}

.action {
    flex: 0 0 auto;
    color: var(--maintext);
    background: var(--orange);
    padding: 14px 17px;
    text-decoration: none;
    font-weight: 600;
}

.action span {
    margin-left: 18px;
    font-size: 1.2rem;
}

.grid {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 18px;
}

.panel {
    border: 1px solid var(--orange);
    background: rgba(255,255,255,.45);
    padding: 26px;
    min-height: 270px;
}

.feature {
    background: var(--secondarybg);
    color: #f4f6f0;
    border-color: var(--maintext);
}

.panel-heading {
    justify-content: space-between;
    font-size: 10px;
    margin-bottom: 54px;
}

.feature .panel-heading {
    color: #91aaa0;
}

.panel h3 {
    font-size: 2rem;
    letter-spacing: -.05em;
    margin: 0 0 10px;
}

.panel p {
    color: var(--maintext);
    line-height: 1.5;
    max-width: 530px;
}

.feature p {
    color: #a8b9b2;
}

code {
    font: 12px 'DM Sans', sans-serif;
    color: var(--orange);
}

dl {
    display: flex;
    gap: 50px;
    margin: 35px 0 0;
}

dl div {
    align-items: start;
    flex-direction: column;
    gap: 7px;
}

dd {
    margin: 0;
    font-size: 1.15rem;
}

.feature dt {
    color: #91aaa0;
}

.integration-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.integration-list li {
    gap: 12px;
    border-bottom: 1px solid var(--orange);
    padding: 19px 0;
}

.integration-list li:first-child {
    padding-top: 0;
}

.integration-list .on {
    background: #4dbe74;
}

.integration-list small {
    margin-left: auto;
    color: var(--maintext);
    font: 11px 'DM Sans', sans-serif;
}

footer {
    justify-content: space-between;
    margin-top: auto;
    padding-top: 72px;
    font-size: 10px;
}

@media (max-width: 680px) {
    .shell {
        padding: 25px 20px;
    }

    .intro {
        display: block;
        padding: 65px 0 45px;
    }

    .action {
        display: inline-block;
        margin-top: 28px;
    }

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

    .panel {
        min-height: auto;
    }

    .panel-heading {
        margin-bottom: 42px;
    }

    footer {
        padding-top: 52px;
        gap: 20px;
        align-items: start;
        flex-direction: column;
    }
}
