:root {
  --bg: #0b0f10;
  --ink: #111418;
  --text: #f5f2e8;
  /* brighter ivory */
  --muted: #d3cec4;
  /* readable subtext */
  --accent: #d4b14b;
  /* brighter gold */
  --glass: rgba(15, 17, 19, 0.65);
  /* darker glass */
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: #0c0f0f url('assets/Webpage_background.png') center/cover fixed no-repeat;
}

a {
  color: var(--text);
  text-decoration: none
}

.nowrap {
  white-space: nowrap
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: linear-gradient(180deg, rgba(10, 10, 10, .75), rgba(10, 10, 10, .25));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

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

.brand-mark {
  height: 44px;
  width: auto
}

.brand-word {
  height: 26px;
  width: auto;
  opacity: .95
}

/* Trademark mark styling */
.tm {
  font-size: 0.5em;
  /* about half the parent text size */
  position: relative;
  top: -0.35em;
  /* lift it above the cap height */
  margin-left: 0.12em;
  /* tiny gap so it’s not jammed */
  opacity: 0.9;
  /* subtle so it doesn’t scream */
}

.site-footer .tm {
  font-size: 0.45em;
  top: -0.3em;
}

/* Footer trademark notice */
.trademark-notice {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 600px;
}

@media (max-width: 640px) {
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    /* or center if you want everything centered */
    text-align: left;
    gap: 8px;
  }

  .footer-brand {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.9rem;
  }

  .footer-links {
    margin-top: 4px;
  }

  .trademark-notice {
    margin-top: 4px;
    font-size: 0.75rem;
    max-width: 100%;
  }
}


nav a {
  margin: 0 10px;
  opacity: .95
}

nav a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  padding: clamp(36px, 5vw, 72px) 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.35));
  z-index: 0;
  pointer-events: none;
}

.hero>* {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin: 0 0 12px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

.sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
  margin: 0 0 18px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: var(--glass);
  box-shadow: var(--shadow);
}

.btn.primary {
  background: linear-gradient(180deg, #2f2f2f, #1c1c1c);
  border-color: #000;
  color: #fff
}

.btn.primary:hover {
  background: linear-gradient(180deg, #393939, #202020)
}

.btn.ghost {
  background: transparent
}

.icon {
  display: inline-flex;
  vertical-align: middle;
  color: var(--accent)
}

.hero-art img {
  max-width: 440px;
  width: 100%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .45));
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 10px auto 40px;
  padding: 0 22px;
}

.card {
  background: rgba(20, 22, 25, 0.78);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow)
}

.card-icon {
  color: var(--accent);
  margin-bottom: 8px
}

.roadmap {
  max-width: 900px;
  margin: 10px auto 80px;
  padding: 0 22px;
  text-align: center
}

.roadmap h2 {
  margin-bottom: 10px
}

.timeline {
  list-style: none;
  padding: 0
}

.timeline li {
  color: #f7f4ea;
  background: rgba(12, 14, 16, 0.78);
  padding: 10px 14px;
  border-radius: 8px;
  margin: 6px 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.waitlist {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 72px) 22px
}

.form-card {
  background: rgba(20, 22, 25, 0.78);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08)
}

.field {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px
}

label {
  font-weight: 600;
  margin-bottom: 6px
}

input,
textarea {
  background: #111416;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 12px 12px;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--accent)
}

.req {
  color: var(--accent)
}

.status {
  margin-top: 10px;
  min-height: 20px
}

.about {
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 72px) 22px
}

.about-intro {
  background: rgba(10, 12, 14, 0.78);
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-intro p {
  color: #f3f1e7;
  font-size: 1.08rem;
  line-height: 1.58;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.75);
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 16px
}

.about-cta {
  text-align: center;
  margin-top: 24px
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  margin-top: 60px;
  background: linear-gradient(180deg, rgba(10, 10, 10, .2), rgba(10, 10, 10, .75));
  border-top: 1px solid rgba(255, 255, 255, .06);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}

.footer-links a {
  display: inline-flex;
  gap: 8px;
  align-items: center
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center
  }

  .hero-art img {
    margin: 0 auto
  }

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

  .about-cards {
    grid-template-columns: 1fr
  }
}


/* === Waitlist hero text contrast === */
.waitlist h1,
.waitlist>p:first-of-type {
  display: inline-block;
  background: rgba(10, 12, 14, 0.82);
  padding: 12px 14px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
}

.waitlist h1 {
  margin-bottom: 10px;
}

.waitlist>p:first-of-type {
  color: #f5f2e8;
}