:root {
  --gold: #d8ad4f;
  --gold-light: #ffe7a0;
  --gold-dark: #8d6420;
  --black: #050505;
  --black-soft: #14110e;
  --cream: #fff6dd;
  --ink-muted: rgba(255, 246, 221, 0.72);
  --line-gold: rgba(216, 173, 79, 0.38);
  --shadow-gold: rgba(216, 173, 79, 0.34);
  --card-width: 820px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--cream);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

.satin-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  background:
    radial-gradient(circle at 18% 18%, rgba(216, 173, 79, 0.17), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(255, 231, 160, 0.1), transparent 30%),
    linear-gradient(128deg, rgba(255, 255, 255, 0.055), transparent 23%, rgba(255, 255, 255, 0.035) 42%, transparent 61%),
    repeating-linear-gradient(112deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 22px),
    linear-gradient(135deg, #030303 0%, #15100b 36%, #030303 64%, #0b0807 100%);
}

.satin-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(75deg, transparent 0%, rgba(255, 255, 255, 0.05) 34%, transparent 54%),
    radial-gradient(ellipse at center, transparent 20%, rgba(0, 0, 0, 0.62) 100%);
  filter: blur(1px);
  opacity: 0.9;
}

.particle-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  pointer-events: none;
}

.light-wave {
  position: fixed;
  left: -10%;
  width: 120%;
  height: 170px;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(141, 100, 32, 0.2), rgba(255, 231, 160, 0.7), rgba(216, 173, 79, 0.2), transparent),
    radial-gradient(ellipse at center, rgba(255, 231, 160, 0.32), transparent 62%);
  filter: blur(20px);
  opacity: 0.72;
  animation: waveDrift 8s ease-in-out infinite alternate;
}

.light-wave-top {
  top: -62px;
  transform: rotate(-2deg);
}

.light-wave-bottom {
  bottom: -62px;
  transform: rotate(2deg);
  animation-delay: -3s;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: 40px 18px;
}

.invitation-card {
  position: relative;
  width: min(100%, var(--card-width));
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 246, 221, 0.055), rgba(255, 246, 221, 0.018)),
    radial-gradient(circle at 50% 0%, rgba(216, 173, 79, 0.2), transparent 42%),
    rgba(5, 5, 5, 0.82);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.68),
    0 0 46px rgba(216, 173, 79, 0.12),
    inset 0 0 0 1px rgba(255, 231, 160, 0.08);
  overflow: hidden;
  animation: cardEnter 900ms ease both, borderGlow 4.5s ease-in-out infinite;
  transform-style: preserve-3d;
}

.invitation-card::before,
.invitation-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(216, 173, 79, 0.34);
  border-radius: 6px;
  pointer-events: none;
}

.invitation-card::after {
  inset: 23px;
  border-color: rgba(255, 231, 160, 0.13);
}

.card-glow {
  position: absolute;
  inset: -1px;
  background: linear-gradient(115deg, transparent 10%, rgba(255, 231, 160, 0.16), transparent 38%);
  transform: translateX(-80%);
  animation: cardSheen 7s ease-in-out infinite;
  pointer-events: none;
}

.invite-header,
.parties-block,
.invite-message,
.event-details,
.rsvp-section,
.accordion-wrap,
.invite-footer {
  position: relative;
  z-index: 1;
}

.invite-header {
  text-align: center;
}

.logo-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(12px, 3vw, 22px);
  margin: 0 auto 24px;
  padding: 14px;
}

.logo-row::before {
  content: "";
  position: absolute;
  inset: 4px 8%;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(216, 173, 79, 0.24), transparent 68%);
  filter: blur(18px);
}

.logo-panel {
  min-height: 110px;
  display: grid;
  place-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(216, 173, 79, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 246, 221, 0.07), rgba(255, 246, 221, 0.02)),
    rgba(0, 0, 0, 0.26);
  box-shadow: inset 0 0 24px rgba(216, 173, 79, 0.06), 0 0 24px rgba(216, 173, 79, 0.07);
}

.logo-panel-light {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 231, 160, 0.14), transparent 36%),
    linear-gradient(145deg, rgba(255, 246, 221, 0.08), rgba(255, 246, 221, 0.02)),
    rgba(0, 0, 0, 0.34);
}

.partner-logo {
  width: 100%;
  height: 82px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.42));
}

.msco-logo {
  max-width: 245px;
}

.unisza-logo {
  max-width: 255px;
}

.collaboration-mark {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 231, 160, 0.82);
  font-family: Cinzel, Georgia, serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
  white-space: nowrap;
}

.mini-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 10px rgba(216, 173, 79, 0.42);
}

.company-name,
.eyebrow,
.detail-label,
.invite-footer {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-name {
  margin: 0;
  color: rgba(255, 231, 160, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
}

.gold-divider {
  width: 130px;
  height: 1px;
  margin: 18px auto 20px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  box-shadow: 0 0 12px var(--shadow-gold);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}

h1,
h2 {
  margin: 0;
  color: var(--cream);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.15rem, 6.4vw, 4.25rem);
  line-height: 0.98;
  text-wrap: balance;
  text-shadow: 0 0 28px rgba(216, 173, 79, 0.24);
}

.event-title {
  max-width: 610px;
  margin: 16px auto 0;
  color: var(--gold-light);
  font-family: Cinzel, Georgia, serif;
  font-size: clamp(0.98rem, 2.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.5;
  text-wrap: balance;
}

.parties-block {
  max-width: 620px;
  margin: 28px auto 0;
  padding: 22px 20px;
  border-top: 1px solid rgba(216, 173, 79, 0.22);
  border-bottom: 1px solid rgba(216, 173, 79, 0.22);
  text-align: center;
  background: linear-gradient(90deg, transparent, rgba(216, 173, 79, 0.06), transparent);
}

.parties-block p,
.parties-block span {
  display: block;
  margin: 0 0 8px;
  color: var(--gold);
  font-family: Cinzel, Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.parties-block strong {
  display: block;
  margin-bottom: 16px;
  color: var(--cream);
  font-size: clamp(1rem, 2.4vw, 1.18rem);
  line-height: 1.55;
}

.invite-message {
  max-width: 660px;
  margin: 28px auto 28px;
  color: var(--ink-muted);
  font-size: 1rem;
  line-height: 1.8;
  text-align: center;
}

.invite-message p {
  margin: 0;
}

.invite-message p + p {
  margin-top: 14px;
}

.event-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto 34px;
  border: 1px solid rgba(216, 173, 79, 0.42);
  border-radius: 8px;
  background: rgba(216, 173, 79, 0.3);
  overflow: hidden;
  box-shadow: inset 0 0 36px rgba(216, 173, 79, 0.06);
}

.detail-item {
  min-height: 106px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 20px;
  background: rgba(8, 8, 8, 0.84);
}

.detail-wide {
  grid-column: 1 / -1;
}

.detail-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 2px;
  border: 1px solid rgba(255, 231, 160, 0.36);
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 1.35rem;
  line-height: 1;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 231, 160, 0.22), transparent 42%),
    rgba(216, 173, 79, 0.08);
  box-shadow: 0 0 18px rgba(216, 173, 79, 0.16), inset 0 0 12px rgba(255, 231, 160, 0.06);
}

.detail-label {
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 800;
}

.detail-item strong {
  color: var(--cream);
  font-size: 0.98rem;
  line-height: 1.35;
}

.primary-section {
  margin-top: 4px;
  padding: 24px;
  border: 1px solid rgba(216, 173, 79, 0.26);
  border-radius: 8px;
  background: rgba(255, 246, 221, 0.035);
  box-shadow: inset 0 0 30px rgba(216, 173, 79, 0.05);
}

.rsvp-section h2 {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.45rem;
  text-align: center;
}

.form-status {
  min-height: 24px;
  margin: 0 0 10px;
  color: #ffcf90;
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: center;
}

.form-status.success {
  color: var(--gold-light);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 700;
}

.field span,
.attendance-group legend {
  color: rgba(255, 246, 221, 0.86);
}

.field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(216, 173, 79, 0.32);
  border-radius: 6px;
  outline: 0;
  padding: 0 14px;
  color: var(--cream);
  background: rgba(255, 246, 221, 0.055);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field input:focus {
  border-color: var(--gold-light);
  background: rgba(255, 246, 221, 0.085);
  box-shadow: 0 0 0 4px rgba(216, 173, 79, 0.14), 0 0 20px rgba(216, 173, 79, 0.14);
}

.attendance-group {
  display: grid;
  gap: 12px;
  margin: 18px 0 24px;
  padding: 0;
  border: 0;
}

.attendance-group legend {
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 800;
}

.attendance-card {
  position: relative;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 173, 79, 0.3);
  border-radius: 7px;
  color: rgba(255, 246, 221, 0.84);
  background: rgba(255, 246, 221, 0.045);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.attendance-card:hover {
  border-color: rgba(255, 231, 160, 0.64);
  transform: translateY(-1px);
}

.attendance-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.attendance-orb {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1px solid rgba(255, 231, 160, 0.7);
  border-radius: 50%;
  box-shadow: inset 0 0 0 4px rgba(5, 5, 5, 0.9);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.attendance-card:has(input:checked) {
  color: var(--cream);
  border-color: var(--gold-light);
  background: linear-gradient(135deg, rgba(216, 173, 79, 0.2), rgba(255, 246, 221, 0.065));
  box-shadow: 0 0 24px rgba(216, 173, 79, 0.14);
  transform: translateY(-1px) scale(1.01);
}

.attendance-card:has(input:checked) .attendance-orb {
  background: var(--gold-light);
  box-shadow: inset 0 0 0 4px rgba(5, 5, 5, 0.9), 0 0 18px rgba(255, 231, 160, 0.42);
}

.submit-button,
.modal-close {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.submit-button {
  position: relative;
  width: 100%;
  min-height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #120d06;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light) 48%, var(--gold));
  box-shadow: 0 12px 28px rgba(216, 173, 79, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.submit-button::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -30%;
  width: 34%;
  height: 260%;
  background: rgba(255, 255, 255, 0.52);
  transform: rotate(24deg) translateX(-160%);
}

.submit-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(216, 173, 79, 0.28);
  filter: saturate(1.07);
}

.submit-button:hover::before {
  animation: buttonShine 950ms ease;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.button-loader {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(18, 13, 6, 0.22);
  border-top-color: #120d06;
  border-radius: 50%;
  opacity: 0;
  animation: spin 850ms linear infinite;
}

.submit-button.is-loading .button-text {
  opacity: 0;
}

.submit-button.is-loading .button-loader {
  opacity: 1;
}

.invite-footer {
  margin-top: 24px;
  color: rgba(255, 246, 221, 0.52);
  font-size: 0.64rem;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}

.accordion-wrap {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.accordion-item {
  border: 1px solid rgba(216, 173, 79, 0.28);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 246, 221, 0.032);
}

.accordion-trigger {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  padding: 16px 18px;
  color: var(--gold-light);
  background: linear-gradient(90deg, rgba(216, 173, 79, 0.09), rgba(255, 246, 221, 0.02));
  cursor: pointer;
  font-family: Cinzel, Georgia, serif;
  font-size: 0.96rem;
  font-weight: 700;
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.accordion-trigger:hover {
  color: var(--cream);
  background: linear-gradient(90deg, rgba(216, 173, 79, 0.15), rgba(255, 246, 221, 0.035));
}

.accordion-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  border: 1px solid rgba(255, 231, 160, 0.44);
  border-radius: 50%;
  color: var(--gold-light);
  transition: transform 220ms ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms ease;
}

.accordion-content {
  padding: 8px 20px 22px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 12px;
  padding-left: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 4px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 12px rgba(216, 173, 79, 0.34);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(216, 173, 79, 0.14);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 16px rgba(255, 231, 160, 0.55);
}

.timeline-item:hover {
  border-color: rgba(255, 231, 160, 0.42);
  box-shadow: 0 0 22px rgba(216, 173, 79, 0.1);
  transform: translateX(3px);
}

.timeline-item time {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 231, 160, 0.4);
  border-radius: 999px;
  color: #171007;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.timeline-item p,
.timeline-item ul,
.prose-content p,
.scope-list {
  margin: 0;
  color: rgba(255, 246, 221, 0.78);
  line-height: 1.65;
}

.timeline-item ul,
.scope-list {
  padding-left: 18px;
}

.timeline-item li + li,
.scope-list li + li {
  margin-top: 8px;
}

.prose-content {
  display: grid;
  gap: 14px;
}

.scope-list li::marker,
.timeline-item li::marker {
  color: var(--gold-light);
}

.section-reveal {
  animation: sectionFade 720ms ease both;
}

.section-reveal:nth-of-type(2) {
  animation-delay: 80ms;
}

.section-reveal:nth-of-type(3) {
  animation-delay: 140ms;
}

.section-reveal:nth-of-type(4) {
  animation-delay: 200ms;
}

.section-reveal:nth-of-type(5) {
  animation-delay: 260ms;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  animation: fadeIn 220ms ease both;
}

.modal-backdrop[hidden] {
  display: none;
}

.success-modal {
  width: min(100%, 420px);
  padding: 34px 28px;
  border: 1px solid rgba(255, 231, 160, 0.54);
  border-radius: 8px;
  text-align: center;
  background:
    radial-gradient(circle at center top, rgba(216, 173, 79, 0.22), transparent 48%),
    rgba(10, 9, 8, 0.96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.7), 0 0 34px rgba(216, 173, 79, 0.18);
  animation: modalRise 320ms ease both;
}

.success-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: #120d06;
  font-size: 1.55rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 24px rgba(216, 173, 79, 0.35);
}

.success-modal h2 {
  margin-bottom: 10px;
  color: var(--gold-light);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.25rem;
}

.success-modal p {
  margin: 0 0 22px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.modal-close {
  min-height: 42px;
  padding: 0 22px;
  color: #120d06;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

@keyframes waveDrift {
  from {
    opacity: 0.5;
    background-position: 0 0;
  }
  to {
    opacity: 0.82;
    background-position: 160px 0;
  }
}

@keyframes cardEnter {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes borderGlow {
  0%, 100% {
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.68), 0 0 34px rgba(216, 173, 79, 0.08), inset 0 0 0 1px rgba(255, 231, 160, 0.08);
  }
  50% {
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.68), 0 0 56px rgba(216, 173, 79, 0.18), inset 0 0 0 1px rgba(255, 231, 160, 0.16);
  }
}

@keyframes cardSheen {
  0%, 45% {
    transform: translateX(-82%);
  }
  75%, 100% {
    transform: translateX(82%);
  }
}

@keyframes buttonShine {
  to {
    transform: rotate(24deg) translateX(520%);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@media (max-width: 640px) {
  .page-shell {
    align-items: start;
    padding: 18px 12px;
  }

  .invitation-card {
    padding: 26px 20px;
  }

  .invitation-card::before {
    inset: 10px;
  }

  .invitation-card::after {
    inset: 15px;
  }

  .event-details {
    grid-template-columns: 1fr;
  }

  .detail-item {
    min-height: 92px;
    padding: 18px;
  }

  .logo-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    margin-bottom: 22px;
  }

  .logo-panel {
    min-height: 92px;
    padding: 14px;
  }

  .partner-logo {
    height: 64px;
  }

  .collaboration-mark {
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
  }

  .mini-line {
    width: 100%;
    height: 1px;
    align-self: center;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  }

  .invite-message {
    margin-top: 24px;
    font-size: 0.96rem;
  }

  .parties-block {
    padding: 18px 12px;
  }

  .primary-section {
    padding: 18px 14px;
  }

  .accordion-trigger {
    min-height: 54px;
    padding: 14px;
    font-size: 0.86rem;
  }

  .accordion-content {
    padding: 6px 14px 18px;
  }

  .timeline {
    padding-left: 14px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 12px 10px;
  }

  .timeline-item::before {
    left: -17px;
  }

  .timeline-item:hover {
    transform: translateY(-1px);
  }
}

@media (min-height: 1660px) {
  .page-shell {
    align-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .particle-canvas {
    display: none;
  }
}
