@font-face {
  font-family: 'Cinzel';
  src: url('fonts/Cinzel-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel';
  src: url('fonts/Cinzel-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel';
  src: url('fonts/Cinzel-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel';
  src: url('fonts/Cinzel-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel';
  src: url('fonts/Cinzel-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel';
  src: url('fonts/Cinzel-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel Decorative';
  src: url('fonts/CinzelDecorative-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel Decorative';
  src: url('fonts/CinzelDecorative-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Cinzel Decorative';
  src: url('fonts/CinzelDecorative-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

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

:root {
  --gold: #c9a13a;
  --gold-light: #ede1bc;
  --gold-pale: #F5E6B8;
  --gold-dark: #8B6914;
  --bg-deep: #0D1117;
  --bg-card: #131920;
  --text-light: #F0EAD6;
  --text-muted: #9A8E72;
}

html,
body {
  height: 100%;
}

body {
  font-family: 'Cinzel', serif;
  background-color: var(--bg-deep);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Subtle radial glow background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 100% 80% at 20% 10%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* Animated fine grid overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Corner ornaments */
.corner {
  position: fixed;
  width: 120px;
  height: 120px;
  opacity: 0.25;
}

.corner--tl {
  top: 24px;
  left: 24px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.corner--tr {
  top: 24px;
  right: 24px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

.corner--bl {
  bottom: 24px;
  left: 24px;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}

.corner--br {
  bottom: 24px;
  right: 24px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}

/* Main card */
.card {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  padding: 64px 72px;
  max-width: 680px;
  width: 90%;
  text-align: center;
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(201, 168, 76, 0.12);
  animation: fadeUp 1.2s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Top rule */
.rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.rule__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.rule__diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Logo placeholder */
.logo-wrap {
  margin-bottom: 40px;
}

.logo-placeholder {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;

}

.logo-placeholder:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}

.logo-placeholder svg {
  opacity: 0.7;
}

.logo-placeholder span {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Headline */
h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 3px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.subtitle {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Divider */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.divider__bar {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.5));
}

.divider__bar:last-child {
  background: linear-gradient(to left, transparent, rgba(201, 168, 76, 0.5));
}

.divider__icon {
  color: var(--gold);
  font-size: 14px;
  opacity: 0.8;
}

/* Message */
.message {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 48px;
}

.message strong {
  color: var(--gold-pale);
  font-weight: 600;
}

/* Animated dots */
.dots {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  vertical-align: middle;
}

.dots span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.6s ease-in-out infinite;
}

.dots span:nth-child(2) {
  animation-delay: 0.3s;
}

.dots span:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* LinkedIn button */
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 3px;
  color: var(--gold);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  margin-bottom: 48px;
}

.linkedin-btn:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: var(--gold);
  color: var(--gold-pale);
}

/* Bottom rule */
.rule--bottom {
  margin-top: 0;
  margin-bottom: 0;
}

/* Footer note */
.footer-note {
  margin-top: 36px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(154, 142, 114, 0.4);
}