@import url('https://fonts.googleapis.com/css2?family=Datatype:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

pre code {
 display: block;
    font-family: "Datatype", monospace;
    font-weight: 400;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    line-height: 1.5;
}

.codeNotes {
	margin-top:50px;
	border-top:1px solid White;
	padding:20px;
	background-color:#333;
}
html {
    scroll-behavior: smooth;
}
.codeBlock {
	border:1px solid #666;
	padding:20px;
	margin-bottom:50px;
}
.associatedKeywords {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 15%;
    min-height: 75px;
    border: 1px solid #666;
    margin-right: 10px; /* optional spacing */
}

body {
    background: #050505;
    color: #f4f4f4;
    font-family: "Inter", Arial, sans-serif;
    font-weight: 400;
}

a {
    color: inherit;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 84px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 54px;

    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    z-index: 1000;
}

pre {
    white-space: pre-wrap;      /* Preserve indentation, wrap long lines */
    overflow-wrap: break-word;  /* Break long identifiers if necessary */
    tab-size: 4;
}

pre code {
    display: block;
    font-family: Consolas, "Courier New", monospace;
    line-height: 1.5;
}

.logo {
    color: #ffffff;
    text-decoration: none;

    font-size: 17px;
    font-weight: 600;
    letter-spacing: 3px;
}

.logo span {
    color: #00dff0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    position: relative;

    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    text-transform: uppercase;

    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;

    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: #00dff0;

    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-button {
    display: none;

    width: 31px;
    height: 24px;

    background: none;
    border: 0;

    cursor: pointer;
}

.menu-button span {
    display: block;

    width: 100%;
    height: 1px;

    margin: 7px 0;

    background: #ffffff;

    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 700px;

    background-image: url("background.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    display: flex;
    align-items: flex-end;

    overflow: hidden;
}

.hero-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.25) 46%,
            rgba(0, 0, 0, 0.08) 75%
        ),
        linear-gradient(
            0deg,
            #050505 0%,
            transparent 24%
        );
}

.hero-copy {
    position: relative;

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

    padding: 0 7vw 10vh;

    z-index: 2;
}

.eyebrow {
    margin-bottom: 20px;

    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;

    font-size: 11px;
    letter-spacing: 3px;
}

.hero h1 {
    max-width: 750px;

    font-size: clamp(68px, 8vw, 138px);
    font-weight: 500;
    line-height: 0.84;
    letter-spacing: -7px;
}

.hero h1 span {
    color: #00dff0;
}

.hero-description {
    margin-top: 32px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 34px;

    margin-top: 36px;
    padding: 15px 20px;

    border: 1px solid rgba(255, 255, 255, 0.45);

    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;

    font-size: 11px;
    letter-spacing: 2px;

    transition: background 0.2s ease, color 0.2s ease;
}

.hero-button:hover {
    background: #ffffff;
    color: #000000;
}

main {
    background: #050505;
}

section {
    position: relative;

    min-height: 620px;

    display: grid;
    grid-template-columns: 140px 1fr;

    padding: 130px 7vw;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-number {
    color: rgba(255, 255, 255, 0.25);

    font-size: 12px;
    letter-spacing: 2px;
}

.section-content {
    max-width: 1000px;
}

.section-content-right {
	position:absolute;
	right:0;
	top:0;
}

.section-label {
    margin-bottom: 36px;

    color: #00dff0;
    text-transform: uppercase;

    font-size: 11px;
    letter-spacing: 3px;
}

.section-image {
	max-width:100%;
}

section h2 {
    max-width: 1000px;

    font-size: clamp(48px, 6vw, 96px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -4px;
}

.large-copy {
    max-width: 820px;

    margin-top: 56px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 22px;
    font-weight: 300;
    line-height: 1.7;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 26px;

    margin-top: 58px;
    padding-bottom: 8px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.45);

    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;

    font-size: 11px;
    letter-spacing: 2px;
}

.text-link:hover {
    border-color: #00dff0;
}

.purchase-button {
    display: inline-block;

    margin-top: 58px;
    padding: 20px 29px;

    background: #ffffff;
    color: #000000;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

.purchase-button:hover {
    background: #00dff0;
}

footer {
    min-height: 120px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 7vw;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: rgba(255, 255, 255, 0.4);

    font-size: 10px;
    letter-spacing: 2px;
}


.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  margin-top: 70px;
  background: #262626;
  border: 1px solid #262626;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 570px;
  padding: 42px 38px;
  background: #050505;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.pricing-card:hover {
  background: #090909;
  transform: translateY(-4px);
}

.pricing-card--featured {
  background: #080808;
}

.pricing-card__label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 9px 14px;
  color: #050505;
  background: #00e6ef;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pricing-card__header {
  margin-bottom: 42px;
}

.pricing-card__number {
  display: block;
  margin-bottom: 26px;
  color: #555;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.pricing-card h3 {
  margin: 0 0 22px;
  color: #f5f5f5;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.pricing-card h3 span {
  color: #777;
  font-size: 0.55em;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.pricing-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
  margin: 0;
  color: #f5f5f5;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.pricing-card__price span {
  color: #777;
  font-size: 14px;
  letter-spacing: 0;
}

.pricing-card__price small {
  flex-basis: 100%;
  margin-bottom: 6px;
  color: #00e6ef;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.pricing-card__features {
  margin: 0 0 42px;
  padding: 0;
  list-style: none;
}

.pricing-card__features li {
  position: relative;
  padding: 17px 26px 17px 0;
  border-bottom: 1px solid #272727;
  color: #aaa;
  font-size: 13px;
  line-height: 1.5;
}

.pricing-card__features li:first-child {
  border-top: 1px solid #272727;
}

.pricing-card__features li::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 2px;
  color: #00e6ef;
  font-size: 15px;
  transform: translateY(-50%);
}

.pricing-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  margin-top: auto;
  border: 1px solid #f5f5f5;
  color: #f5f5f5;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.pricing-card__button:hover {
  border-color: #00e6ef;
  color: #050505;
  background: #00e6ef;
}

/* Tablet */
@media (max-width: 1000px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card:last-child {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .pricing-card,
  .pricing-card:last-child {
    grid-column: auto;
  }

  .pricing-card {
    min-height: auto;
    padding: 34px 24px;
  }

  .pricing-card__header {
    margin-bottom: 32px;
  }

  .pricing-card__features {
    margin-bottom: 34px;
  }
}


@media screen and (max-width: 850px) {

    nav {
        height: 68px;
        padding: 0 22px;

        background: rgba(0, 0, 0, 0.82);
    }

    .logo {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .menu-button {
        display: block;
    }

    .menu-button.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-button.open span:nth-child(2) {
        opacity: 0;
    }

    .menu-button.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: absolute;
        top: 68px;
        left: 0;

        width: 100%;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 12px 22px 26px;

        background: rgba(0, 0, 0, 0.96);
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        width: 100%;

        padding: 17px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);

        font-size: 12px;
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        height: 100svh;
        min-height: 620px;

        background-position: 60% center;
    }

    .hero-shade {
        background:
            linear-gradient(
                0deg,
                #050505 0%,
                rgba(0, 0, 0, 0.25) 48%,
                rgba(0, 0, 0, 0.15) 100%
            );
    }

    .hero-copy {
        padding: 0 24px 72px;
    }

    .hero h1 {
        font-size: clamp(58px, 17vw, 84px);
        line-height: 0.88;
        letter-spacing: -5px;
    }

    .hero-description {
        max-width: 280px;

        font-size: 15px;
        line-height: 1.5;
    }

    section {
        min-height: auto;

        display: block;

        padding: 95px 24px;
    }

    .section-number {
        margin-bottom: 45px;
    }

    section h2 {
        font-size: clamp(44px, 13vw, 68px);
        letter-spacing: -3px;
    }

    .large-copy {
        margin-top: 42px;

        font-size: 18px;
        line-height: 1.65;
    }

    footer {
        padding: 0 24px;
    }

}