@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Cormorant+Garamond:wght@500;600;700&display=swap");

:root {
  --bg: #020202;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f4f4;
  --muted: rgba(255, 255, 255, 0.6);
  --muted-soft: rgba(255, 255, 255, 0.38);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --ease-slow: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.035), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), transparent 44%),
    linear-gradient(180deg, #101010 0%, #090909 34%, #040404 68%, #000000 100%);
  color: var(--text);
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.flash-stack {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 120;
  display: grid;
  gap: 10px;
}

.flash {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(12px);
  color: #ffffff;
}

.flash.success {
  border-color: rgba(190, 255, 190, 0.18);
}

.flash.error {
  border-color: rgba(255, 160, 160, 0.2);
}

.void-site {
  position: relative;
}

.void-site::before {
  content: "";
  position: fixed;
  inset: -8%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background:
    radial-gradient(ellipse at 50% 16%, rgba(255, 255, 255, 0.045), transparent 28%),
    radial-gradient(ellipse at 50% 42%, rgba(255, 255, 255, 0.022), transparent 34%),
    radial-gradient(ellipse at 22% 58%, rgba(255, 255, 255, 0.012), transparent 24%),
    radial-gradient(ellipse at 78% 56%, rgba(255, 255, 255, 0.012), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.01), transparent 28%, rgba(255, 255, 255, 0.008) 54%, transparent 78%);
  filter: blur(22px);
}

.void-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.032;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.55) 0.55px, transparent 0.78px),
    radial-gradient(rgba(255, 255, 255, 0.22) 0.45px, transparent 0.7px);
  background-size: 4px 4px, 7px 7px;
  background-position: 0 0, 2px 3px;
  mix-blend-mode: soft-light;
}

.void-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at center, transparent 38%, rgba(0, 0, 0, 0.14) 68%, rgba(0, 0, 0, 0.34) 100%);
}

.screen {
  min-height: 100vh;
  position: relative;
  z-index: 2;
}

.content-shell {
  width: min(1240px, calc(100% - 96px));
  margin: 0 auto;
}

/* fixed chrome */

.top-mark {
  position: fixed;
  top: 18px;
  left: 0;
  opacity: 0;
  z-index: 60;
  pointer-events: none;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

.top-mark img {
  width: 112px;
  opacity: 0.94;
  filter:
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.06))
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.04));
}

.void-site.menu-open .top-mark {
  opacity: 0 !important;
}

.landing-menu {
  position: fixed;
  top: 16px;
  left: 0;
  z-index: 140;
  will-change: transform, opacity;
  transform: translate3d(0, 0, 0);
}

.landing-menu__trigger {
  width: 34px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    color 500ms var(--ease-slow),
    filter 500ms var(--ease-slow),
    opacity 500ms var(--ease-slow);
}

.landing-menu__trigger:hover {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.18));
}

.landing-menu__bars {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.landing-menu__bar {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 700ms var(--ease-slow),
    opacity 700ms var(--ease-slow);
}

.landing-menu.is-open .landing-menu__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.landing-menu.is-open .landing-menu__bar:nth-child(2) {
  opacity: 0;
}

.landing-menu.is-open .landing-menu__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* overlay */

.menu-overlay {
  --menu-anchor-x: 50vw;
  --menu-anchor-top: 64px;
  --menu-panel-width: 460px;

  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 500ms var(--ease-slow),
    visibility 500ms var(--ease-slow),
    background 500ms var(--ease-slow),
    backdrop-filter 500ms var(--ease-slow),
    -webkit-backdrop-filter 500ms var(--ease-slow);
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.menu-overlay__panel {
  position: absolute;
  top: var(--menu-anchor-top);
  width: var(--menu-panel-width);
  left: clamp(
    24px,
    calc(var(--menu-anchor-x) - (var(--menu-panel-width) / 2)),
    calc(100vw - var(--menu-panel-width) - 24px)
  );
  padding: 10px 0 0;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 650ms var(--ease-slow),
    transform 650ms var(--ease-slow);
}

.menu-overlay.is-open .menu-overlay__panel {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay__panel::before,
.menu-overlay__panel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.12) 14%,
    rgba(255, 255, 255, 0.12) 86%,
    rgba(255, 255, 255, 0)
  );
}

.menu-overlay__panel::before {
  top: 0;
}

.menu-overlay__panel::after {
  bottom: 0;
}

.menu-overlay__link {
  position: relative;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 18px;
  padding: 0 8px 0 6px;
  color: rgba(255, 255, 255, 0.9);
  transition:
    color 400ms var(--ease-slow),
    opacity 400ms var(--ease-slow),
    transform 400ms var(--ease-slow);
}

.menu-overlay__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.1) 14%,
    rgba(255, 255, 255, 0.1) 86%,
    rgba(255, 255, 255, 0)
  );
}

.menu-overlay__link:hover {
  color: #ffffff;
}

.menu-overlay__text {
  text-align: left;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
}

.menu-overlay__icon {
  width: 22px;
  height: 22px;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
  transition:
    color 400ms var(--ease-slow),
    transform 400ms var(--ease-slow);
}

.menu-overlay__link:hover .menu-overlay__icon {
  color: #ffffff;
  transform: translateX(2px);
}

.menu-overlay__icon svg {
  width: 22px;
  height: 22px;
}

/* hero */

.hero-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px 60px;
}

.hero-shell {
  width: 100%;
  max-width: 1600px;
  min-height: calc(100vh - 92px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-logo {
  width: min(1160px, 70vw);
  margin: 0 auto 24px;
  will-change: transform, opacity, filter;
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.08))
    drop-shadow(0 0 48px rgba(255, 255, 255, 0.05));
}

.hero-tagline {
  margin: 0;
  max-width: 780px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.05vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: 0.015em;
  color: rgba(255, 255, 255, 0.82);
}

/* buttons */

.hero-button,
.section-button,
.entry-btn {
  position: relative;
  overflow: visible;
  transition:
    background 900ms var(--ease-slow),
    border-color 900ms var(--ease-slow),
    box-shadow 900ms var(--ease-slow),
    color 900ms var(--ease-slow);
}

.hero-button::before,
.section-button::before,
.entry-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.34) 30%,
    rgba(255, 255, 255, 0.12) 54%,
    transparent 80%
  );
  filter: blur(16px);
  transition: opacity 800ms var(--ease-slow);
}

.hero-button:hover::before,
.section-button:hover::before,
.entry-btn:hover::before {
  opacity: 1;
}

.hero-button:hover,
.section-button:hover,
.entry-btn:hover {
  background: #f1f1f1;
  color: #050505;
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -18px 28px rgba(0, 0, 0, 0.1),
    0 0 28px rgba(255, 255, 255, 0.08),
    0 0 56px rgba(255, 255, 255, 0.04);
}

.hero-button {
  margin-top: 38px;
  min-width: 220px;
  min-height: 60px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-button--icon {
  min-width: 64px;
  width: 64px;
  min-height: 64px;
  height: 64px;
  padding: 0;
  border-radius: 50%;
}

.hero-button__icon {
  font-size: 1.15rem;
  line-height: 1;
}

.hero-button__icon--solo {
  transform: translateY(1px);
}

/* pricing */

.plans-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 0 90px;
}

.section-head {
  margin-bottom: 24px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--muted-soft);
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-kicker--center {
  display: block;
  text-align: center;
}

.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 4.9vw, 5rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: 0.015em;
}

.plans-table {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008));
  box-shadow: var(--shadow);
}

.plans-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.55fr;
  align-items: center;
  min-height: 92px;
  gap: 20px;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  transition:
    background 900ms var(--ease-slow),
    padding 900ms var(--ease-slow);
}

.plans-row:last-child {
  border-bottom: 0;
}

.plans-row:hover {
  background: rgba(255, 255, 255, 0.025);
  padding-left: 34px;
  padding-right: 22px;
}

.plans-row--head {
  min-height: 56px;
  background: rgba(255, 255, 255, 0.022);
  color: var(--muted-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.plans-row div:nth-child(2),
.plans-row div:nth-child(3) {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.plan-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 10px;
  width: 100%;
}

.plan-price__old {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 255, 255, 0.24);
  font-size: 0.92rem;
}

.plan-price__current {
  color: rgba(255, 255, 255, 0.96);
}

.section-button {
  margin: 34px auto 0;
  min-width: 270px;
  min-height: 60px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}

/* entry */

.entry-screen {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 110px 24px 220px;
}

.entry-shell {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.entry-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 4.9vw, 5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0.012em;
}

.entry-actions {
  margin: 38px auto 0;
  width: min(620px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.entry-btn {
  min-height: 65px;
  padding: 0 20px;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.28rem;
  font-weight: 640;
  letter-spacing: 0.005em;
}

.entry-btn--primary,
.entry-btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.94);
}

/* footer inside third screen */

.entry-footer {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(1240px, calc(100% - 96px));
  z-index: 2;
}

.entry-footer__line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.entry-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-top: 16px;
  color: rgba(240, 234, 229, 0.46);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.entry-footer__ticker {
  margin-top: 18px;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 1) 10%,
    rgba(0, 0, 0, 1) 90%,
    transparent 100%
  );
}

.entry-footer__ticker-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 42px;
  padding-left: 42px;
  animation: footerTicker 24s linear infinite;
}

.entry-footer__ticker-track span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4.6vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: rgba(240, 234, 229, 0.08);
  white-space: nowrap;
}

@keyframes footerTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* responsive */

@media (max-width: 1100px) {
  .content-shell {
    width: min(1000px, calc(100% - 64px));
  }

  .entry-footer {
    width: min(1000px, calc(100% - 64px));
  }

  .hero-logo {
    width: min(980px, 82vw);
  }

  .section-title {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
  }

  .entry-title {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
  }

  .entry-btn {
    font-size: 1.14rem;
  }
}

@media (max-width: 900px) {
  .landing-menu {
    top: 12px;
  }

  .landing-menu__trigger {
    width: 32px;
    height: 24px;
  }

  .landing-menu__bars {
    width: 20px;
    height: 14px;
  }

  .menu-overlay {
    --menu-panel-width: calc(100vw - 32px);
  }

  .menu-overlay__panel {
    left: 16px;
    right: 16px;
    width: auto;
  }

  .menu-overlay__link {
    min-height: 64px;
    grid-template-columns: 1fr 22px;
    gap: 14px;
    padding: 0 4px;
  }

  .menu-overlay__text {
    font-size: clamp(1.55rem, 6.4vw, 2.1rem);
  }

  .menu-overlay__icon,
  .menu-overlay__icon svg {
    width: 22px;
    height: 22px;
  }

  .top-mark img {
    width: 96px;
  }

  .content-shell,
  .entry-shell,
  .entry-footer {
    width: calc(100% - 32px);
  }

  .hero-logo {
    width: min(94vw, 760px);
    margin-bottom: 18px;
  }

  .hero-tagline {
    max-width: 92vw;
    font-size: clamp(1.15rem, 5.2vw, 1.55rem);
    line-height: 1.08;
  }

  .hero-button {
    margin-top: 30px;
  }

  .hero-button--icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
  }

  .section-title {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
  }

  .plans-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: unset;
    padding: 18px 20px;
  }

  .plans-row:hover {
    padding-left: 24px;
    padding-right: 16px;
  }

  .plans-row div:nth-child(2),
  .plans-row div:nth-child(3) {
    text-align: left;
  }

  .plan-price {
    justify-content: flex-start;
  }

  .entry-screen {
    padding: 104px 16px 180px;
  }

  .entry-shell {
    width: 100%;
  }

  .entry-title {
    font-size: clamp(2.5rem, 8vw, 3.5rem);
  }

  .entry-actions {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 26px;
  }

  .entry-btn {
    min-height: 74px;
    font-size: 1.08rem;
  }

  .entry-footer {
    bottom: 16px;
  }

  .entry-footer__meta {
    gap: 8px 16px;
    margin-top: 14px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .entry-footer__ticker {
    margin-top: 14px;
  }

  .entry-footer__ticker-track {
    gap: 28px;
    padding-left: 28px;
  }

  .entry-footer__ticker-track span {
    font-size: clamp(1.55rem, 8vw, 2.6rem);
  }
}

/* ===== DASHBOARD ===== */

.dash-page {
  position: relative;
  min-height: 100vh;
  padding: 118px 24px 34px;
  overflow: hidden;
}

.dash-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.03), transparent 22%),
    radial-gradient(circle at 18% 78%, rgba(255, 255, 255, 0.015), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.012), transparent 24%);
  filter: blur(18px);
  opacity: 0.9;
}

.dash-shell {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.dash-topbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 80;
  width: min(1120px, calc(100% - 48px));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-topbar__brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dash-topbar__brand img {
  width: 110px;
  opacity: 0.94;
  filter:
    drop-shadow(0 0 12px rgba(255, 255, 255, 0.07))
    drop-shadow(0 0 28px rgba(255, 255, 255, 0.04));
}

.dash-menu {
  position: relative;
  z-index: 90;
}

.dash-menu__trigger {
  width: 34px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    color 500ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dash-menu__trigger:hover {
  color: #ffffff;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.18));
}

.dash-menu__bars {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dash-menu__bar {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dash-menu.is-open .dash-menu__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.dash-menu.is-open .dash-menu__bar:nth-child(2) {
  opacity: 0;
}

.dash-menu.is-open .dash-menu__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.dash-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition:
    opacity 500ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 500ms cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 500ms cubic-bezier(0.22, 1, 0.36, 1),
    -webkit-backdrop-filter 500ms cubic-bezier(0.22, 1, 0.36, 1),
    background 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dash-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.dash-menu-panel {
  position: fixed;
  top: 68px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: min(1120px, calc(100% - 48px));
  opacity: 0;
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 85;
}

.dash-menu-overlay.is-open .dash-menu-panel {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.dash-menu-list {
  margin-left: auto;
  width: min(520px, 100%);
  padding-top: 6px;
}

.dash-menu-list::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.dash-menu-link {
  position: relative;
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 16px;
  color: rgba(240, 234, 229, 0.82);
  transition: color 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dash-menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.dash-menu-link:hover {
  color: rgba(255, 255, 255, 0.96);
}

.dash-menu-link__text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 2vw, 2.05rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.003em;
}

.dash-menu-link__icon {
  width: 24px;
  height: 24px;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 234, 229, 0.62);
  transition:
    color 400ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dash-menu-link:hover .dash-menu-link__icon {
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(1px);
}

.dash-menu-link__icon svg {
  width: 24px;
  height: 24px;
}

.dash-hero {
  display: grid;
  gap: 14px;
  padding-top: 8px;
  text-align: center;
}

.dash-kicker {
  display: inline-block;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.dash-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.9rem, 5vw, 4.5rem);
  line-height: 0.94;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(245, 241, 238, 0.96);
}

.dash-status-row {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.dash-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 241, 238, 0.92);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.dash-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
}

.dash-status--active .dash-status__dot {
  background: rgba(190, 255, 190, 0.92);
  box-shadow: 0 0 14px rgba(190, 255, 190, 0.26);
}

.dash-status--pending .dash-status__dot {
  background: rgba(255, 214, 130, 0.94);
  box-shadow: 0 0 14px rgba(255, 214, 130, 0.22);
}

.dash-status--expired .dash-status__dot {
  background: rgba(255, 140, 140, 0.94);
  box-shadow: 0 0 14px rgba(255, 140, 140, 0.24);
}

.dash-status--new .dash-status__dot {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.dash-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.dash-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 28px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008)),
    rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(18px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.dash-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 28%);
  opacity: 0.45;
}

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

.dash-card__kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dash-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(245, 241, 238, 0.96);
}

.dash-card__text {
  margin: 14px 0 0;
  color: rgba(240, 234, 229, 0.56);
  line-height: 1.58;
  font-size: 0.98rem;
}

.dash-subscription-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
}

.dash-subscription-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(240, 234, 229, 0.56);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dash-subscription-url {
  margin: 0;
  word-break: break-all;
  color: rgba(245, 241, 238, 0.92);
  font-size: 0.95rem;
  line-height: 1.65;
}

.dash-subscription-empty {
  margin: 0;
  color: rgba(240, 234, 229, 0.52);
  line-height: 1.55;
}

.dash-actions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dash-btn {
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 241, 238, 0.96);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition:
    background 700ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 700ms cubic-bezier(0.22, 1, 0.36, 1),
    color 700ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.dash-btn:hover {
  background: #f1f1f1;
  color: #050505;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -18px 28px rgba(0, 0, 0, 0.1),
    0 0 28px rgba(255, 255, 255, 0.08);
}

.dash-btn--ghost {
  background: rgba(255, 255, 255, 0.025);
}

.dash-side-stack {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dash-side-card {
  align-self: stretch;
}

.dash-side-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  min-height: 130px;
}

.dash-side-ticker {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 1) 12%,
    rgba(0, 0, 0, 1) 88%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 1) 12%,
    rgba(0, 0, 0, 1) 88%,
    transparent 100%
  );
}

.dash-side-ticker__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  padding-left: 26px;
  animation: dashTicker 18s linear infinite;
}

.dash-side-ticker__track span {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: rgba(240, 234, 229, 0.1);
  white-space: nowrap;
}

.dash-side-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.dash-meta {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.dash-meta__row {
  display: grid;
  gap: 7px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-meta__row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.dash-meta__label {
  color: rgba(240, 234, 229, 0.42);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dash-meta__value {
  color: rgba(245, 241, 238, 0.92);
  font-size: 1rem;
  line-height: 1.5;
  word-break: break-word;
}

.dash-contact-list {
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

.dash-contact-item {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dash-contact-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.dash-contact-item__label {
  color: rgba(240, 234, 229, 0.42);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dash-contact-item__value {
  color: rgba(245, 241, 238, 0.9);
  line-height: 1.5;
  word-break: break-word;
}

.dash-footer {
  padding-top: 2px;
}

.dash-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  color: rgba(240, 234, 229, 0.46);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@keyframes dashTicker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 920px) {
  .dash-page {
    padding: 104px 16px 24px;
  }

  .dash-topbar {
    width: calc(100% - 32px);
    top: 14px;
  }

  .dash-topbar__brand img {
    width: 96px;
  }

  .dash-menu-panel {
    top: 60px;
    width: calc(100% - 32px);
  }

  .dash-menu-list {
    width: 100%;
  }

  .dash-menu-link {
    min-height: 58px;
    grid-template-columns: 1fr 22px;
    gap: 12px;
  }

  .dash-menu-link__text {
    font-size: clamp(1.45rem, 6vw, 1.85rem);
  }

  .dash-menu-link__icon,
  .dash-menu-link__icon svg {
    width: 22px;
    height: 22px;
  }

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

  .dash-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .dash-title {
    font-size: clamp(2.35rem, 9vw, 3.2rem);
  }

  .dash-card__title {
    font-size: clamp(1.9rem, 7vw, 2.45rem);
  }

  .dash-actions {
    flex-direction: column;
  }

  .dash-btn {
    width: 100%;
  }

  .dash-side-stack {
    gap: 14px;
  }

  .dash-side-bottom {
    gap: 12px;
  }

  .dash-side-ticker__track {
    gap: 18px;
    padding-left: 18px;
  }

  .dash-side-ticker__track span {
    font-size: clamp(1rem, 4.6vw, 1.35rem);
  }

  .dash-footer__meta {
    gap: 8px 16px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }
}
</style>

/* ===== INSTRUCTION PAGE ===== */

.instruction-page {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0 72px;
}

.instruction-hero {
  max-width: 760px;
  margin: 0 0 28px;
  text-align: left;
}

.instruction-hero__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--muted-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.instruction-hero__title {
  margin: 0;
  color: rgba(245, 241, 238, 0.96);
  font-family: "Inter", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.instruction-hero__text {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(240, 234, 229, 0.58);
  font-size: 1rem;
  line-height: 1.65;
}

.instruction-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.008)),
    rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(18px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.instruction-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.instruction-card__label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.instruction-card__title {
  margin: 0;
  color: rgba(245, 241, 238, 0.96);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  font-weight: 750;
  line-height: 1;
  letter-spacing: -0.045em;
}

.instruction-card__badge {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(245, 241, 238, 0.76);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
}

.instruction-steps {
  display: grid;
  gap: 12px;
}

.instruction-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  background: rgba(255, 255, 255, 0.025);
  transition:
    background 700ms var(--ease-slow),
    border-color 700ms var(--ease-slow),
    transform 700ms var(--ease-slow);
}

.instruction-step:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.045);
}

.instruction-step__number {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(245, 241, 238, 0.94);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.instruction-step__title {
  margin: 1px 0 8px;
  color: rgba(245, 241, 238, 0.96);
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.instruction-step__text {
  max-width: 720px;
  margin: 0;
  color: rgba(240, 234, 229, 0.56);
  line-height: 1.58;
  font-size: 0.96rem;
}

.instruction-step__text strong {
  color: rgba(245, 241, 238, 0.92);
}

.instruction-step__button {
  min-height: 44px;
  margin-top: 14px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 650;
  transition:
    background 700ms var(--ease-slow),
    border-color 700ms var(--ease-slow),
    color 700ms var(--ease-slow),
    box-shadow 700ms var(--ease-slow);
}

.instruction-step__button:hover {
  background: #f1f1f1;
  color: #050505;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -18px 28px rgba(0, 0, 0, 0.1),
    0 0 28px rgba(255, 255, 255, 0.08);
}

.instruction-step__button--ghost {
  background: rgba(255, 255, 255, 0.025);
}

.instruction-note {
  margin-top: 16px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  background: rgba(255, 255, 255, 0.025);
}

.instruction-note__title {
  margin: 0 0 10px;
  color: rgba(245, 241, 238, 0.94);
  font-family: "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.instruction-note__text {
  margin: 0;
  max-width: 720px;
  color: rgba(240, 234, 229, 0.56);
  line-height: 1.58;
}

@media (max-width: 720px) {
  .instruction-page {
    width: calc(100% - 32px);
    padding: 96px 0 56px;
  }

  .instruction-hero__title {
    font-size: clamp(2.25rem, 10vw, 3.1rem);
  }

  .instruction-card {
    padding: 18px;
    border-radius: 24px;
  }

  .instruction-card__header {
    flex-direction: column;
    gap: 12px;
  }

  .instruction-step {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 13px;
    padding: 15px;
    border-radius: 18px;
  }

  .instruction-step__number {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .instruction-note {
    padding: 20px 18px;
    border-radius: 22px;
  }
}

/* ===== SOON PAGE ===== */

.soon-page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px;
}

.soon-card {
  width: min(720px, 100%);
  padding: 42px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.008)),
    rgba(8, 8, 8, 0.76);
  backdrop-filter: blur(18px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  text-align: center;
}

.soon-kicker {
  display: inline-block;
  color: rgba(255, 255, 255, 0.34);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.soon-title {
  margin: 18px 0 0;
  color: rgba(245, 241, 238, 0.96);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0.01em;
}

.soon-text {
  max-width: 520px;
  margin: 24px auto 0;
  color: rgba(240, 234, 229, 0.58);
  font-size: 1rem;
  line-height: 1.65;
}

.soon-actions {
  width: min(500px, 100%);
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.soon-btn {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 650;
  transition:
    background 700ms var(--ease-slow),
    border-color 700ms var(--ease-slow),
    color 700ms var(--ease-slow),
    box-shadow 700ms var(--ease-slow);
}

.soon-btn:hover {
  background: #f1f1f1;
  color: #050505;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -18px 28px rgba(0, 0, 0, 0.1),
    0 0 28px rgba(255, 255, 255, 0.08);
}

.soon-btn--ghost {
  background: rgba(255, 255, 255, 0.025);
}

.soon-line {
  width: 100%;
  height: 1px;
  margin: 34px 0 18px;
  background: rgba(255, 255, 255, 0.1);
}

.soon-note {
  margin: 0;
  color: rgba(240, 234, 229, 0.38);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  line-height: 1.1;
}

@media (max-width: 720px) {
  .soon-page {
    align-items: flex-start;
    padding: 104px 16px 56px;
  }

  .soon-card {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .soon-title {
    font-size: clamp(3.4rem, 18vw, 5rem);
  }

  .soon-actions {
    grid-template-columns: 1fr;
  }

  .soon-btn {
    min-height: 56px;
  }
}
