:root {
  color-scheme: dark;
  --bg: #070707;
  --ink: #f6f3ee;
  --muted: #b8b2aa;
  --soft: #d8d1c7;
  --line: rgba(255, 255, 255, 0.12);
  --card: rgba(18, 18, 18, 0.76);
  --metal: #c9c7bf;
  --mint: #b6eadb;
  --ice: #c9e8ff;
  --champagne: #f2dcc0;
  --smoke: #242424;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -8%, rgba(201, 232, 255, 0.2), transparent 28%),
    radial-gradient(circle at 12% 20%, rgba(182, 234, 219, 0.12), transparent 26%),
    radial-gradient(circle at 88% 64%, rgba(242, 220, 192, 0.12), transparent 30%),
    linear-gradient(180deg, #030303 0%, #101010 52%, #060606 100%);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 78%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 16%, transparent 0 18%, rgba(0, 0, 0, 0.46) 72%);
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 14px 14px 46px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 14px);
  display: grid;
  align-content: end;
  gap: 14px;
}

.hero-media {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  filter: grayscale(0.2) contrast(1.12) brightness(0.78) blur(1px);
  transform: scale(1.08);
  animation: slowZoom 22s ease-in-out infinite alternate;
}

.hero-glass {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.9) 76%),
    radial-gradient(circle at 50% 20%, rgba(201, 232, 255, 0.16), transparent 34%);
}

.brand-card,
.trust-panel,
.editor-panel,
.banner,
.video-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}

.brand-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 26px 22px 22px;
  text-align: center;
  animation: heroIn 760ms cubic-bezier(0.2, 0.88, 0.22, 1.1) both;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
    radial-gradient(circle at 20% 8%, rgba(182, 234, 219, 0.18), transparent 26%),
    radial-gradient(circle at 86% 32%, rgba(242, 220, 192, 0.16), transparent 30%);
  pointer-events: none;
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 33px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
}

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

.logo-row,
.editor-title,
.manager-head,
.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand-card .logo-row {
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.brand-logo {
  width: min(68vw, 295px);
  aspect-ratio: 1 / 1;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  object-fit: cover;
  object-position: center;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.58),
    0 0 0 8px rgba(255, 255, 255, 0.04);
  animation: logoFloat 5.2s ease-in-out infinite;
}

.status-pill,
.admin-link,
.ghost-button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 850;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(182, 234, 219, 0.48);
  animation: pulse 1.4s ease infinite;
}

.admin-link:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 232, 255, 0.45);
  background: rgba(255, 255, 255, 0.12);
}

.eyebrow {
  margin: 18px 0 10px;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0 auto 13px;
  max-width: 11ch;
  font-size: clamp(2.45rem, 11vw, 5.25rem);
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
  background: linear-gradient(135deg, #ffffff 0%, var(--metal) 42%, var(--ice) 100%);
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  animation: titleIn 900ms 120ms cubic-bezier(0.2, 0.88, 0.22, 1.08) both;
}

h2 {
  font-size: 1.42rem;
}

.subtitle {
  width: min(100%, 590px);
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
  animation: fadeUp 760ms 240ms ease both;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 16px;
  animation: fadeUp 760ms 340ms ease both;
}

.proof {
  min-height: 78px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.proof:nth-child(1) {
  background: linear-gradient(135deg, rgba(201, 232, 255, 0.16), rgba(255, 255, 255, 0.05));
}

.proof:nth-child(2) {
  background: linear-gradient(135deg, rgba(242, 220, 192, 0.16), rgba(255, 255, 255, 0.05));
}

.proof:nth-child(3) {
  background: linear-gradient(135deg, rgba(182, 234, 219, 0.16), rgba(255, 255, 255, 0.05));
}

.proof strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.proof span {
  color: var(--muted);
  font-size: 0.76rem;
}

.link-stack {
  display: grid;
  gap: 12px;
  animation: fadeUp 760ms 440ms ease both;
}

.bio-link {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 94px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 18px 16px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(201, 232, 255, 0.13), rgba(242, 220, 192, 0.08));
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
  transform: translateZ(0);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.bio-link:nth-child(2n) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(182, 234, 219, 0.13), rgba(201, 232, 255, 0.07));
}

.bio-link::before {
  content: "";
  position: absolute;
  width: 105px;
  height: 105px;
  right: -34px;
  top: -30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ice), var(--champagne));
  opacity: 0.18;
  transition: transform 220ms ease, opacity 220ms ease;
}

.bio-link::after {
  content: "\203A";
  position: absolute;
  right: 20px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ice);
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.bio-link:hover,
.bio-link:focus-visible {
  transform: translateY(-4px) scale(1.012);
  border-color: rgba(201, 232, 255, 0.38);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.5);
}

.bio-link:hover::before,
.bio-link:focus-visible::before {
  opacity: 0.26;
  transform: scale(1.18);
}

.bio-link strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 1.1rem;
}

.bio-link p {
  margin: 0;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.4;
}

.badge {
  position: relative;
  z-index: 1;
  align-self: start;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(242, 220, 192, 0.13);
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 950;
  white-space: nowrap;
}

.trust-panel {
  display: grid;
  gap: 12px;
  border-radius: 28px;
  padding: 15px;
  animation: fadeUp 760ms 540ms ease both;
}

.security-seal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.seal-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(201, 232, 255, 0.22), rgba(182, 234, 219, 0.18));
  color: var(--mint);
  font-size: 1.35rem;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.security-seal strong,
.security-seal span {
  display: block;
}

.security-seal span,
.live-strip {
  color: var(--muted);
  font-size: 0.89rem;
}

.live-strip {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-strip span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(182, 234, 219, 0.48);
  animation: pulse 1.4s ease infinite;
}

.content-band,
.video-band {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.banner,
.video-card {
  overflow: hidden;
  border-radius: 28px;
}

.banner img {
  width: 100%;
  max-height: 330px;
  display: block;
  object-fit: cover;
}

.banner-content,
.video-content {
  padding: 18px;
}

.banner-content p,
.video-content p {
  color: var(--muted);
  line-height: 1.5;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

.admin-body {
  background:
    radial-gradient(circle at 12% 8%, rgba(201, 232, 255, 0.15), transparent 32%),
    radial-gradient(circle at 88% 14%, rgba(242, 220, 192, 0.12), transparent 28%),
    #070707;
}

.admin-shell {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 22px 14px 48px;
}

.admin-header {
  margin-bottom: 18px;
}

.admin-header h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(2rem, 7vw, 4rem);
}

.editor-panel {
  border-radius: 30px;
  padding: 20px;
  margin-bottom: 16px;
}

.hidden {
  display: none;
}

.field-grid {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(201, 232, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(201, 232, 255, 0.13);
}

.primary-button {
  border: 0;
  border-radius: 999px;
  padding: 13px 18px;
  color: #101010;
  background: linear-gradient(135deg, var(--metal), var(--ice) 48%, var(--champagne));
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  transition:
    transform 180ms ease,
    filter 180ms ease,
    box-shadow 180ms ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.46);
}

.manager {
  margin-top: 24px;
}

.items {
  display: grid;
  gap: 10px;
}

.edit-item {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.edit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.remove-button {
  justify-self: end;
  border: 1px solid rgba(255, 130, 130, 0.22);
  border-radius: 999px;
  padding: 10px 13px;
  color: #ffd2d2;
  background: rgba(255, 130, 130, 0.1);
  cursor: pointer;
}

.form-message {
  min-height: 22px;
  margin: 8px 0 0;
  color: var(--champagne);
  font-weight: 800;
}

@keyframes slowZoom {
  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.35deg);
  }
  50% {
    transform: translateY(-7px) rotate(0.35deg);
  }
}

@keyframes titleIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  to {
    box-shadow: 0 0 0 13px rgba(182, 234, 219, 0);
  }
}

@media (max-width: 620px) {
  .shell {
    padding: 10px 10px 32px;
  }

  .hero {
    min-height: calc(100vh - 10px);
  }

  .brand-card {
    border-radius: 30px;
    padding: 20px 14px 16px;
  }

  .brand-logo {
    width: min(68vw, 250px);
    border-radius: 30px;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .bio-link {
    grid-template-columns: 1fr;
    min-height: 104px;
  }

  .badge {
    justify-self: start;
  }

  .editor-title,
  .manager-head,
  .admin-header {
    align-items: stretch;
    flex-direction: column;
  }

  .edit-grid {
    grid-template-columns: 1fr;
  }
}
