:root {
  --color-primary: #ffee02;
  --color-text-light: #f6f4eb;
  --color-text-dark: #111111;
  --color-text-muted: #a6a6a6;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-bg-dark: #232323;
  --color-bg-darker: #181818;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", sans-serif;
  background: #000000;
  color: var(--color-white);
  overflow-x: hidden; /* guard against accidental horizontal scroll */
}

.page-boxed {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  position: relative;
}

section {
  position: relative;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure html element doesn't allow horizontal scroll due to positioned elements */
html { overflow-x: hidden; }

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn-primary {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-dark);
  padding: 22px 40px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  box-shadow: 0px 0px 20px 0px rgba(255, 238, 2, 0.5);
  transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 40px;
    height: 54px;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}
.logo-wordmark-intro { display: block; }

.logo-name {
    color: var(--color-white);
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1;
    letter-spacing: -3px;
    position: relative;
}

.logo-name::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 4px;
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 1px;
}

.logo-tagline {
    color: var(--color-white);
    font-family: "Helvetica Neue", sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
}

.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

@media (max-width: 1024px) {
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 80px;
        line-height: 1.1;
    }
    h2 {
        font-size: 48px;
        line-height: 1.2;
    }
    /* Ensure the page uses full viewport width on mobile */
    .page-boxed {
      width: 100%;
      max-width: 100%;
    }
}