/* DiveOffice public hub — shop cover page. */

@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --ink: #f7fbff;
  --muted: rgba(232, 244, 252, 0.78);
  --cyan: #33ccff;
  --azure: #276fdf;
  --azure-deep: #276fbf;
  --error: #ffb4b4;
  --glass: rgba(255, 255, 255, 0.14);
  --glass-edge: rgba(255, 255, 255, 0.34);
}

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

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

body {
  min-height: 100vh;
  font-family: Poppins, "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #043445;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.stage-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  background: #0a3048;
}

.stage-veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 280px at 12% 12%, rgba(51, 204, 255, 0.18), transparent 70%),
    linear-gradient(105deg, rgba(2, 42, 52, 0.62) 0%, rgba(6, 58, 72, 0.28) 50%, rgba(10, 80, 96, 0.12) 100%),
    linear-gradient(to top, rgba(3, 32, 42, 0.48) 0%, transparent 52%);
  pointer-events: none;
}

.cover {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: min(72rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.6rem 0 1.25rem;
}

.masthead {
  margin: 0 0 1.4rem;
  max-width: 38rem;
}

.wordmark {
  margin: 0;
  max-width: none;
  font-size: clamp(1.7rem, 4.1vw, 2.85rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 20, 40, 0.35);
  white-space: nowrap;
}

.title-line {
  display: inline;
}

.title-break {
  display: none;
}

.powered-by {
  margin: 0.45rem 0 0;
  font-size: 0.98rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  color: #d7f4ff;
}

.powered-by a {
  color: var(--cyan);
  font-style: italic;
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 204, 255, 0.45);
}

.powered-by a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.cover-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 22rem);
  gap: 2.4rem 3rem;
  align-items: end;
  flex: 1;
}

.intro {
  max-width: 38rem;
  padding-bottom: 0.4rem;
}

.place {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 500;
}

.owners {
  margin: 0.7rem 0 0;
  max-width: 28rem;
  color: rgba(215, 236, 246, 0.62);
  font-size: 0.86rem;
  font-weight: 400;
  line-height: 1.45;
}

.owners a {
  color: rgba(232, 244, 252, 0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 204, 255, 0.4);
}

.owners a:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.7rem;
  margin: 0.85rem 0 0;
  color: rgba(215, 236, 246, 0.72);
  font-size: 0.95rem;
}

.contact a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(51, 204, 255, 0.45);
}

.contact a:hover {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.contact .dot {
  color: rgba(51, 204, 255, 0.55);
}

.panel {
  background: var(--glass);
  color: var(--ink);
  border: 1px solid var(--glass-edge);
  border-radius: 1.05rem;
  padding: 1.35rem 1.3rem 1.2rem;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 22px 50px rgba(2, 18, 32, 0.28);
}

.panel h2 {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e8f7ff;
}

.field {
  margin-bottom: 0.85rem;
}

.field label {
  display: block;
  margin-bottom: 0.32rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(232, 244, 252, 0.78);
}

.field input {
  width: 100%;
  padding: 0.72rem 0.85rem;
  font: inherit;
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0.5rem;
}

.field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.field input:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.18);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 0.45rem;
}

button[type="submit"],
.dash-link {
  appearance: none;
  display: inline-block;
  padding: 0.72rem 1.25rem;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--azure);
  border: 0;
  border-radius: 0.5rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(39, 111, 223, 0.35);
}

button[type="submit"]:hover,
.dash-link:hover {
  background: var(--azure-deep);
}

button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: wait;
}

.status {
  min-height: 1.2rem;
  margin: 0.7rem 0 0;
  font-size: 0.9rem;
}

.status.error {
  color: var(--error);
}

.hidden {
  display: none !important;
}

.legal {
  margin: 1.6rem 0 0;
  color: rgba(210, 230, 240, 0.55);
  font-size: 0.75rem;
}

@media (max-width: 840px) {
  .cover {
    width: min(42rem, calc(100% - 1.5rem));
    padding-top: 1.2rem;
  }

  .cover-body {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    align-items: stretch;
  }

  .wordmark {
    max-width: none;
    font-size: clamp(1.55rem, 7.2vw, 2.2rem);
    white-space: normal;
  }

  .title-break {
    display: block;
  }

  .panel {
    max-width: 26rem;
  }
}
