@font-face {
  font-family: "Inter";
  src: url("fonts/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("fonts/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #07090b;
  --text: #f3f7f8;
  --muted: rgba(255, 255, 255, 0.66);
  --soft-muted: rgba(255, 255, 255, 0.5);
  --teal: #4db6ac;
  --teal-deep: #3a8f88;
  --orange: #e8976a;
  --line: rgba(255, 255, 255, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      ellipse at 50% 40%,
      rgba(77, 182, 172, 0.07) 0%,
      transparent 65%
    ),
    var(--bg);
  overflow-x: hidden;
}

.landing {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(2rem, 4vw, 3.5rem) 1.25rem 1.75rem;
  text-align: center;
  isolation: isolate;
}

.hero {
  margin-top: auto;
  margin-bottom: auto;
  width: min(92vw, 720px);
}

.nameplate {
  margin: 0;
  font-size: clamp(3rem, 8vw, 4.25rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.96;
  background: linear-gradient(
    98deg,
    var(--teal) 0%,
    #84d6ce 48%,
    var(--orange) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.role {
  margin: 0.9rem 0 0;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}

.positioning-line {
  max-width: 480px;
  margin: 1.2rem auto 0;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--soft-muted);
}

.primary-cta {
  margin: 2rem auto 0;
  display: inline-flex;
  width: min(100%, 320px);
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 8px;
  border: none;
  background: var(--teal);
  box-shadow: 0 4px 18px rgba(77, 182, 172, 0.25);
  color: #072521;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition:
    background 200ms ease,
    box-shadow 200ms ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  background: #5ec9bf;
  box-shadow: 0 6px 24px rgba(77, 182, 172, 0.38);
  text-decoration: none;
}

.primary-cta:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.connect-row {
  margin: 1.45rem auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.connect-row a {
  color: var(--muted);
  text-decoration: none;
  transition: color 200ms ease;
}

.connect-row a:hover,
.connect-row a:focus-visible {
  color: var(--teal);
}

.connect-divider {
  color: rgba(255, 255, 255, 0.35);
  user-select: none;
}

.return-note {
  margin: 0;
  padding-top: 1.35rem;
  margin-top: auto;
  font-size: 0.82rem;
  color: var(--soft-muted);
}

.return-note a {
  color: var(--soft-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.return-note a:hover,
.return-note a:focus-visible {
  color: var(--text);
  border-color: var(--line);
}

.stars-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.2);
  animation:
    twinkle 8s infinite ease-in-out,
    float 15s infinite linear;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(1);
  }
  25% {
    opacity: 0.7;
    transform: scale(1.2);
  }
  50% {
    opacity: 0.18;
    transform: scale(1);
  }
  75% {
    opacity: 0.7;
    transform: scale(1.08);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(30px, -20px);
  }
  66% {
    transform: translate(-20px, 20px);
  }
}

.star:nth-child(1) {
  top: 10%;
  left: 20%;
  width: 2px;
  height: 2px;
  animation-delay: 0s, 1s;
  animation-duration: 6s, 12s;
}

.star:nth-child(2) {
  top: 20%;
  left: 80%;
  width: 3px;
  height: 3px;
  animation-delay: 1s, 2s;
  animation-duration: 7s, 15s;
}

.star:nth-child(3) {
  top: 30%;
  left: 40%;
  width: 1.5px;
  height: 1.5px;
  animation-delay: 2s, 0.5s;
  animation-duration: 8s, 18s;
}

.star:nth-child(4) {
  top: 60%;
  left: 10%;
  width: 2.5px;
  height: 2.5px;
  animation-delay: 3s, 3s;
  animation-duration: 5s, 14s;
}

.star:nth-child(5) {
  top: 80%;
  left: 90%;
  width: 2px;
  height: 2px;
  animation-delay: 0.5s, 1.5s;
  animation-duration: 9s, 16s;
}

.star:nth-child(6) {
  top: 15%;
  left: 60%;
  width: 3.5px;
  height: 3.5px;
  animation-delay: 4s, 2.5s;
  animation-duration: 6s, 13s;
}

.star:nth-child(7) {
  top: 45%;
  left: 75%;
  width: 1.8px;
  height: 1.8px;
  animation-delay: 1.5s, 4s;
  animation-duration: 7s, 17s;
}

.star:nth-child(8) {
  top: 70%;
  left: 30%;
  width: 2.2px;
  height: 2.2px;
  animation-delay: 2.5s, 0.8s;
  animation-duration: 8s, 11s;
}

.star:nth-child(9) {
  top: 25%;
  left: 15%;
  width: 3px;
  height: 3px;
  animation-delay: 3.5s, 3.5s;
  animation-duration: 5.5s, 19s;
}

.star:nth-child(10) {
  top: 55%;
  left: 85%;
  width: 1.7px;
  height: 1.7px;
  animation-delay: 0.8s, 2.2s;
  animation-duration: 7.5s, 12.5s;
}

.star:nth-child(11) {
  top: 85%;
  left: 50%;
  width: 2.8px;
  height: 2.8px;
  animation-delay: 4.5s, 1.2s;
  animation-duration: 6.5s, 15.5s;
}

.star:nth-child(12) {
  top: 35%;
  left: 5%;
  width: 2.3px;
  height: 2.3px;
  animation-delay: 1.8s, 4.2s;
  animation-duration: 8.5s, 14.5s;
}

.star:nth-child(13) {
  top: 65%;
  left: 65%;
  width: 1.9px;
  height: 1.9px;
  animation-delay: 2.8s, 0.3s;
  animation-duration: 7.2s, 18.5s;
}

.star:nth-child(14) {
  top: 5%;
  left: 45%;
  width: 3.2px;
  height: 3.2px;
  animation-delay: 3.8s, 3.8s;
  animation-duration: 6.2s, 13.8s;
}

.star:nth-child(15) {
  top: 75%;
  left: 20%;
  width: 2.1px;
  height: 2.1px;
  animation-delay: 0.3s, 2.8s;
  animation-duration: 9.2s, 16.2s;
}

.star:nth-child(16) {
  top: 50%;
  left: 95%;
  width: 2.7px;
  height: 2.7px;
  animation-delay: 4.8s, 1.8s;
  animation-duration: 5.8s, 11.8s;
}

.star:nth-child(17) {
  top: 90%;
  left: 70%;
  width: 1.6px;
  height: 1.6px;
  animation-delay: 1.3s, 4.5s;
  animation-duration: 8.8s, 17.8s;
}

.star:nth-child(18) {
  top: 40%;
  left: 25%;
  width: 2.9px;
  height: 2.9px;
  animation-delay: 3.3s, 0.6s;
  animation-duration: 6.8s, 14.8s;
}

@media (max-width: 640px) {
  .role {
    letter-spacing: 0.28em;
    font-size: 0.68rem;
  }

  .positioning-line {
    font-size: 0.91rem;
  }

  .primary-cta {
    font-size: 1rem;
  }

  .connect-row {
    font-size: 0.86rem;
  }
}
