:root {
  --color-bg: #020511;
  --color-bg-alt: #080e1f;
  --color-glass: rgba(255, 255, 255, 0.08);
  --color-glass-strong: rgba(255, 255, 255, 0.16);
  --color-border: rgba(255, 255, 255, 0.22);
  --color-text: #f6f8ff;
  --color-muted: rgba(246, 248, 255, 0.78);
  --color-eyebrow: #90f3ff;
  --color-accent: #6fe3ff;
  --color-accent-strong: #ffb2f2;
  --gradient-accent: linear-gradient(120deg, #61e8ff, #a57cff, #ffb2f2);
  --shadow-glow: 0 25px 60px rgba(3, 8, 33, 0.55);
  --container-width: 520px;
  --spacing: clamp(1.5rem, 5vw, 3rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  background: radial-gradient(
        circle at 20% 20%,
        rgba(115, 220, 255, 0.22),
        transparent 55%
      ),
    radial-gradient(
        circle at 80% 0%,
        rgba(255, 179, 216, 0.18),
        transparent 45%
      ),
    var(--color-bg);
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after {
  content: "";
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.25;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -10%;
  left: 10%;
  background: var(--gradient-accent);
}

body::after {
  bottom: -20%;
  right: -5%;
  background: radial-gradient(circle, #4361ff, transparent 60%);
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

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

section {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.container {
  width: min(100% - 2rem, var(--container-width));
  margin-inline: auto;
}

.glass {
  position: relative;
  background: var(--color-glass);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-glow);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  overflow: hidden;
}

.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2),
    transparent 40%
  );
  opacity: 0.35;
  pointer-events: none;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-eyebrow);
  margin-bottom: 0.5rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  gap: 0.5rem;
  transition: transform 0.25s ease, background 0.25s ease,
    color 0.25s ease;
  border: none;
  cursor: pointer;
}

.btn--primary {
  background-image: var(--gradient-accent);
  color: #020511;
  box-shadow: 0 10px 30px rgba(97, 232, 255, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-text);
  padding-inline: 1.5rem;
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 3rem;
}

.hero__halo {
  position: absolute;
  inset: 10% auto auto 50%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(108, 222, 255, 0.32), transparent);
  filter: blur(40px);
  transform: translateX(-50%);
  opacity: 0.5;
  z-index: 0;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
}

.hero__stack {
  display: grid;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.hero__panel {
  min-height: clamp(260px, 30vw, 360px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.hero__panel--logo {
  text-align: center;
  background: linear-gradient(
      140deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    )
    var(--color-glass);
}

.logo-orbit {
  width: 100%;
  height: auto;
  margin-inline: auto;
  border-radius: 0;
  padding: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.hero__logo {
  width: 96%;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
}

.hero__logo--doms {
  width: 35%;
  filter: brightness(0) invert(1) drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
}

.hero__logo--crossworx {
  width: 54%;
}

.hero__badge {
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.hero__subline {
  font-size: 1.15rem;
  color: var(--color-text);
  font-weight: 600;
}

.hero__panel--text h1 {
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

.hero__panel--text p {
  color: var(--color-muted);
  max-width: 540px;
}

.hero__platform {
  font-weight: 600;
  color: var(--color-text);
}

.hero__hook {
  color: var(--color-accent);
  font-weight: 600;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero__panel--image {
  padding: 0;
  display: block;
  min-height: auto;
}

.hero__panel--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.hero__panel--image::after {
  display: none;
}

.hero__panel--image .hero__image-caption {
  padding: 1rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--color-muted);
  background: rgba(2, 5, 17, 0.7);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  margin-top: -0.35rem;
}

.location .glass,
.about .glass,
.signup .glass {
  padding: clamp(2rem, 4vw, 3rem);
}

.location__card {
  display: grid;
  gap: 1.5rem;
}

.location__image-frame {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
}

.location__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.location__details h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.location__details p {
  color: var(--color-muted);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0;
  margin: 1rem 0;
}

.contact-list a {
  color: var(--color-text);
  font-weight: 600;
}

.location__note {
  color: var(--color-muted);
  margin-top: 0.5rem;
}

.about__grid {
  display: grid;
  gap: 1.5rem;
}

.about__intro p {
  color: var(--color-muted);
}

.about__intro h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-bottom: 1rem;
}

.about__list-card {
  padding-block: clamp(1.5rem, 4vw, 2.5rem);
}

.about__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.about__list li {
  position: relative;
  padding-left: 2.5rem;
  font-weight: 600;
  color: var(--color-text);
}

.about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: var(--gradient-accent);
  box-shadow: 0 0 15px rgba(97, 232, 255, 0.5);
}

.signup__card {
  display: grid;
  gap: 2rem;
}

.signup__card p {
  color: var(--color-muted);
  max-width: 420px;
}

.signup__form {
  display: grid;
  gap: 1.2rem;
}

.signup__form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.signup__status {
  min-height: 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-muted);
}

.signup__status--success {
  color: #7dfbb5;
}

.signup__status--error {
  color: #ff9a9a;
}

.signup__form input[type="text"],
.signup__form input[type="email"],
.signup__form input[type="tel"] {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.signup__form input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(111, 227, 255, 0.3);
}

.signup__promise {
  color: var(--color-accent);
  font-weight: 600;
  margin-top: 1rem;
}

.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 400;
  color: var(--color-muted);
}

.checkbox input {
  margin-top: 0.3rem;
  accent-color: var(--color-accent);
}

.footer {
  padding: 2rem 0 3rem;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.footer__logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer__logo {
  width: 110px;
  filter: drop-shadow(0 5px 18px rgba(0, 0, 0, 0.45));
}

.footer__logo--doms {
  filter: brightness(0) invert(1) drop-shadow(0 5px 18px rgba(0, 0, 0, 0.45));
}

.footer__divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.18);
}
