:root {
  --bg-0: #eef3f7;
  --bg-1: #dbe6ef;
  --ink-0: #0a1f36;
  --ink-1: #1f3e5f;
  --ink-soft: #4f6b86;
  --line: rgba(14, 42, 70, 0.18);
  --panel: rgba(247, 251, 255, 0.68);
  --glow: rgba(108, 234, 255, 0.35);
  --max-w: 1240px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink-0);
  background:
    radial-gradient(1200px 800px at 85% 8%, rgba(126, 206, 255, 0.2), transparent 68%),
    radial-gradient(1000px 620px at 14% 100%, rgba(160, 189, 213, 0.35), transparent 65%),
    linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  width: 58vmax;
  height: 58vmax;
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0.35;
}

.ambient-top {
  top: -32vmax;
  right: -24vmax;
  background: radial-gradient(circle, var(--glow), rgba(108, 234, 255, 0));
}

.ambient-bottom {
  bottom: -36vmax;
  left: -26vmax;
  background: radial-gradient(circle, rgba(160, 189, 213, 0.46), rgba(160, 189, 213, 0));
}

.site-header,
.layout,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 3.75rem 1.5rem 1rem;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: var(--ink-soft);
}

h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 0.3rem 0 0;
  font-size: clamp(3.25rem, 12vw, 7.5rem);
  color: var(--ink-0);
  line-height: 0.95;
}

.subtitle {
  margin: 0.6rem 0 0;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--ink-1);
}

.back-link-wrap {
  margin: 1rem 0 0;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(239, 248, 255, 0.75);
  color: var(--ink-1);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.back-link:hover {
  border-color: rgba(14, 42, 70, 0.36);
  background: rgba(230, 245, 255, 0.95);
  color: var(--ink-0);
}

.layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.2rem 1.5rem 2.8rem;
  display: grid;
  grid-template-columns: minmax(360px, 520px) 1fr;
  gap: 2rem;
  align-items: start;
}

.cover-panel,
.text-panel,
.status-card {
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.cover-panel {
  background: var(--panel);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 24px 42px rgba(11, 34, 60, 0.14);
}

.cover-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.caption {
  margin: 0.8rem 0 0.2rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
}

.text-panel {
  background: var(--panel);
  border-radius: 18px;
  padding: 1.6rem;
  box-shadow: 0 24px 42px rgba(11, 34, 60, 0.1);
}

.status-card {
  background: rgba(235, 246, 255, 0.72);
  border-radius: 14px;
  padding: 1rem 1rem 1.1rem;
  margin-bottom: 1.4rem;
}

.status-label {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
}

.status-title {
  margin: 0.32rem 0 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.status-copy {
  margin: 0.55rem 0 0;
  color: var(--ink-1);
  max-width: 62ch;
}

h2 {
  margin: 0 0 1rem;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
}

.text-panel p {
  margin: 0 0 1rem;
  line-height: 1.66;
  color: #143656;
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
}

.text-panel .closing {
  margin-top: 1.2rem;
  font-weight: 700;
  color: #092641;
}

.site-footer {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 2.2rem;
}

.site-footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--ink-1);
  text-decoration: underline;
}

.site-footer a:hover {
  color: var(--ink-0);
}

.social-links {
  margin-top: 0.75rem;
  display: flex;
  gap: 0.55rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid rgba(14, 42, 70, 0.28);
  border-radius: 999px;
  color: var(--ink-1);
  background: rgba(239, 248, 255, 0.8);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s, background 0.2s;
}

.social-link svg {
  width: 0.98rem;
  height: 0.98rem;
  fill: currentColor;
}

.social-link:hover {
  color: var(--ink-0);
  border-color: rgba(14, 42, 70, 0.45);
  background: #ffffff;
  transform: translateY(-1px);
}

@media (max-width: 1060px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .cover-panel {
    max-width: 620px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-top: 2.7rem;
  }

  .layout,
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .text-panel,
  .cover-panel {
    border-radius: 14px;
    padding: 0.9rem;
  }

  .text-panel {
    padding: 1rem;
  }
}
