:root {
  --background: 30 10% 6%;
  --foreground: 36 30% 94%;
  --card: 30 10% 8%;
  --muted-foreground: 36 10% 62%;
  --accent: 200 100% 61%;
  --accent-foreground: 30 10% 6%;
  --border: 36 15% 18%;
}

* {
  box-sizing: border-box;
  border-color: hsl(var(--border));
}

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

body {
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "cv11";
}

.page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.bg-image,
.bg-overlay,
.bg-radial,
.bg-noise {
  position: absolute;
  inset: 0;
}

.bg-image {
  background: url("../images/coming-soon-background-minified.jpg") center / cover no-repeat;
}

.bg-overlay {
  background: hsl(var(--background) / 0.6);
}

.bg-radial {
  background-image: radial-gradient(ellipse 70% 60% at 50% 50%, hsl(var(--background) / 0.2) 0%, hsl(var(--background) / 0.85) 100%);
}

.bg-noise {
  pointer-events: none;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.content-layer {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar,
.footer {
  padding: 1.5rem;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  color: inherit;
  text-decoration: none;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #040B19;
  color: hsl(var(--background));
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-size: 1.125rem;
  line-height: 1;
}

.brand-icon img {
    width: 75%;
    height: 75%;
    border-radius: 50%;
}

.brand-name {
  font-size: 1.25rem;
  color: #fff;
  transition: color 180ms ease;
}

.brand-link:hover .brand-name {
  color: hsl(var(--foreground));
}

.status-row {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

.building-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.dot-wrap {
  width: 0.375rem;
  height: 0.375rem;
  position: relative;
}

.dot {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: hsl(var(--accent));
}

.glow {
  filter: blur(3px);
  opacity: 0.7;
}

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem 3rem;
}

.hero-inner {
  width: min(100%, 42rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: hsl(var(--muted-foreground));
}

.eyebrow-line {
  width: 2rem;
  height: 1px;
  background: hsl(var(--border));
}

.hero-title {
  margin: 1.5rem 0 0;
  font-family: "Fraunces", ui-serif, Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
  font-size: clamp(3rem, 9vw, 4.5rem);
  line-height: 0.95;
  text-wrap: balance;
}

.hero-italic {
  font-style: italic;
  font-weight: 300;
  color: hsl(var(--muted-foreground));
}

.accent {
  color: hsl(var(--accent));
}

.hero-copy {
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: clamp(1rem, 2.3vw, 1.125rem);
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  text-wrap: balance;
}

.contact-wrap {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-title {
  font-size: 1.25rem;
}

.contact-label {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: hsl(var(--muted-foreground));

}

.contact-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.email-card {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.875rem 1.25rem;
  border: 1px solid hsl(var(--border));
  border-radius: 0.375rem;
  background: hsl(var(--card) / 0.7);
  backdrop-filter: blur(12px);
  color: inherit;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.email-card:hover {
  border-color: hsl(var(--accent));
  background: hsl(var(--card));
}

.email-text {
  font-family: "Fraunces", ui-serif, Georgia, serif;
  letter-spacing: -0.03em;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
}

.arrow-chip {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  transition: transform 180ms ease;
}

.email-card:hover .arrow-chip {
  transform: rotate(45deg);
}

.copy-button {
  border: 1px solid hsl(var(--border));
  border-radius: 0.375rem;
  background: hsl(var(--card) / 0.4);
  color: hsl(var(--muted-foreground));
  padding: 0.75rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.copy-button:hover {
  color: hsl(var(--foreground));
  border-color: hsl(var(--foreground));
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}

.footer-strong {
  color: hsl(var(--foreground));
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.85);
  }
}

.pulse {
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  animation: fade-up 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.delay-120 {
  animation-delay: 120ms;
}

.delay-240 {
  animation-delay: 240ms;
}

@media (min-width: 640px) {
  .contact-row {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .top-bar,
  .footer {
    padding: 2rem 3rem;
  }

  .status-row {
    display: inline-flex;
  }

  .hero {
    padding: 0 3rem 3rem;
  }

  .footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
