:root {
  --text-main: #e5ecff;
  --text-muted: #9ca8c9;
  --brand-lime: #eeff41;
}

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

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 10% -20%, #281b52 0, transparent 55%),
    radial-gradient(circle at 90% 120%, #13213d 0, transparent 60%),
    radial-gradient(circle at 50% 50%, #02030a 0, #01010a 60%, #000000 100%);
  overflow: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  isolation: isolate;
}

/* Background canvas */

#background-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Header */

.df-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  backdrop-filter: blur(18px);
  background: linear-gradient(
      to bottom,
      rgba(5, 8, 20, 0.85),
      rgba(5, 8, 20, 0.7),
      rgba(5, 8, 20, 0.3),
      transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.df-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--text-muted);
}

.df-logo-mark {
  color: var(--brand-lime);
}

.df-logo-flowers {
  opacity: 0.8;
}

.df-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.df-link {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.df-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-lime), #7dd3ff);
  transition: width 160ms ease-out;
}

.df-link:hover::after {
  width: 100%;
}

.df-link-primary {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background:
    radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(135deg, #1d283a, #020617);
  box-shadow:
    0 0 0 0.5px rgba(255, 255, 255, 0.18),
    0 8px 22px rgba(0, 0, 0, 0.7);
  color: var(--text-main);
  font-size: 12px;
  backdrop-filter: blur(18px);
}

.df-link-primary:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 0.5px rgba(255, 255, 255, 0.26),
    0 14px 30px rgba(0, 0, 0, 0.9);
}

/* Hero */

.df-main {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding: 5vh 6vw 7vh;
}

.df-hero {
  width: 100%;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

/* Responsive */

@media (max-width: 900px) {
  .df-main {
    padding-inline: 18px;
  }
}

@media (max-width: 600px) {
  .df-header {
    padding-inline: 16px;
  }

  .df-nav {
    gap: 12px;
  }

  .df-link-primary {
    padding-inline: 14px;
    font-size: 11px;
  }
}