:root {
  color-scheme: light;
  --ink: #102738;
  --ink-soft: #42534e;
  --paper: #f7f2e8;
  --paper-2: #ede6dc;
  --panel: #fff8ed;
  --line: rgba(16, 39, 56, 0.14);
  --line-strong: rgba(16, 39, 56, 0.34);
  --signal: #ff644b;
  --blue: #102738;
  --cyan: #45d6d2;
  --volt: #f7a246;
  --shadow: 0 26px 70px rgba(16, 39, 56, 0.16);
  --display: "Fraunces", Georgia, serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(16, 39, 56, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 39, 56, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 100, 75, 0.1), transparent 42%),
    linear-gradient(225deg, rgba(69, 214, 210, 0.07), transparent 50%),
    var(--paper);
  background-size: 48px 48px, 48px 48px, auto, auto, auto;
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-discord-dialog-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.07;
  background-image:
    radial-gradient(circle at 20% 20%, #000 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, #000 0 1px, transparent 1px);
  background-size: 18px 18px, 22px 22px;
  mix-blend-mode: multiply;
}

::selection {
  background: rgba(255, 100, 75, 0.24);
}

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

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

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 78px max(24px, calc((100vw - 1120px) / 2)) 68px;
  color: var(--ink);
  isolation: isolate;
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.63;
  mix-blend-mode: multiply;
}

.hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 242, 232, 0.93) 0%, rgba(247, 242, 232, 0.7) 47%, rgba(247, 242, 232, 0.14) 100%),
    linear-gradient(0deg, var(--paper) 0%, rgba(247, 242, 232, 0.66) 22%, rgba(247, 242, 232, 0.08) 64%);
}

.hero__content {
  width: min(760px, 100%);
  text-shadow: none;
  animation: rise-in 700ms ease-out both;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--signal);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.96;
}

.hero h1 {
  font-size: 104px;
}

.hero__subtitle {
  width: min(650px, 100%);
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 23px;
  font-weight: 650;
  line-height: 1.32;
}

.hero__actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 8px;
  appearance: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease),
    color 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.button::after {
  content: "->";
  font-weight: 700;
}

.button--logo::after {
  content: none;
}

.button:hover,
.button:focus-visible,
.quick-links a:hover,
.quick-links a:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button--primary {
  padding: 14px 21px;
  border: 0;
  background: var(--volt);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(255, 100, 75, 0.18);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #ff644b;
  border: 0;
  color: #fff8ed;
  box-shadow: 0 18px 42px rgba(255, 100, 75, 0.26);
}

.button--ghost {
  border-color: rgba(16, 39, 56, 0.22);
  background: rgba(255, 253, 247, 0.7);
  color: var(--ink);
}

.button--logo {
  width: fit-content;
  min-height: 0;
  padding: 0;
  border-color: transparent;
  background: transparent;
  line-height: 0;
  box-shadow: none;
  filter: drop-shadow(0 8px 18px rgba(16, 39, 56, 0.12));
}

.button--logo img {
  width: auto;
  height: 34px;
  display: block;
  object-fit: contain;
}

.button--fiverr img {
  height: 34px;
  object-fit: contain;
  object-position: center;
}

.button--upwork img {
  height: 34px;
}

.section {
  padding: 96px max(24px, calc((100vw - 1120px) / 2));
  scroll-margin-top: 92px;
  background: transparent;
}

.section__header {
  width: min(820px, 100%);
  margin-bottom: 42px;
}

.section__header h2 {
  font-size: 50px;
}

.section__header--split {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.section__header--split > div {
  width: min(760px, 100%);
}

.section--intro {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.section--intro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(90deg, transparent 0 18px, rgba(16, 39, 56, 0.1) 18px 19px, transparent 19px 42px),
    linear-gradient(0deg, transparent 0 58px, rgba(16, 39, 56, 0.08) 58px 59px, transparent 59px 118px);
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.profile-module {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(420px, 1.12fr);
  gap: 34px 46px;
  align-items: start;
  padding: 0;
}

.profile-module::before {
  content: "";
  position: absolute;
  top: -26px;
  bottom: -26px;
  left: calc(44% - 23px);
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--line-strong) 16%, var(--line-strong) 84%, transparent);
  pointer-events: none;
}

.profile-lede {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 26px;
  min-height: 0;
  padding: 4px 0 0;
  color: var(--ink);
}

.profile-lede::before {
  content: "";
  width: 74px;
  height: 5px;
  background: var(--signal);
}

.profile-lede h2 {
  margin: 0;
  max-width: 620px;
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.94;
}

.profile-lede p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 25px;
  line-height: 1.24;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.profile-stats div {
  min-height: 98px;
  padding: 14px 16px 14px 0;
  border-right: 1px solid var(--line);
}

.profile-stats div:last-child {
  border-right: 0;
}

.profile-stats strong,
.profile-stats span {
  display: block;
}

.profile-stats strong {
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.profile-stats span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
}

.equipment-panel {
  display: grid;
  grid-row: span 2;
  align-content: start;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid var(--line-strong);
}

.profile-brief {
  margin-top: 0;
  padding: 20px;
  border: 1px solid rgba(16, 39, 56, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(69, 214, 210, 0.14), transparent 48%),
    rgba(255, 253, 247, 0.82);
  box-shadow: 0 18px 38px rgba(16, 39, 56, 0.09);
}

.profile-brief__label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--signal);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-brief dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.profile-brief div {
  min-height: 142px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 253, 247, 0.76);
}

.profile-brief__icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(16, 39, 56, 0.14);
  border-radius: 8px;
  background: rgba(247, 162, 70, 0.22);
  color: var(--blue);
}

.profile-brief__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-brief dt,
.profile-brief dd {
  margin: 0;
}

.profile-brief dt {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-brief dd {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.18;
  overflow-wrap: break-word;
}

.profile-about {
  padding: 20px;
  border: 1px solid rgba(16, 39, 56, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 100, 75, 0.09), transparent 50%),
    rgba(255, 253, 247, 0.68);
}

.profile-about p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.48;
}

.profile-about [data-age] {
  color: var(--ink);
  font-weight: 800;
}

.section--dark {
  background: transparent;
  color: var(--ink);
}

.section--dark .eyebrow {
  color: var(--signal);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(16, 39, 56, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.72);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-right: 1px solid rgba(16, 39, 56, 0.14);
  background:
    linear-gradient(160deg, rgba(69, 214, 210, 0.1), rgba(255, 253, 247, 0)),
    rgba(255, 253, 247, 0.6);
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease),
    box-shadow 180ms var(--ease);
}

.service-card:last-child {
  border-right: 0;
}

.service-card:hover,
.service-card:focus-visible {
  background:
    linear-gradient(160deg, rgba(69, 214, 210, 0.18), rgba(255, 253, 247, 0.52)),
    rgba(255, 253, 247, 0.92);
  transform: translateY(-4px);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(16, 39, 56, 0.24);
}

.service-card__index {
  color: var(--volt);
  font-weight: 700;
}

.service-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1.05;
}

.service-card p {
  margin: 20px 0 0;
  color: var(--ink-soft);
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--signal);
  font-size: 15px;
  font-weight: 800;
}

.service-card__link::after {
  content: "->";
}

.workflow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(16, 39, 56, 0.16);
  background: rgba(16, 39, 56, 0.14);
  box-shadow: 0 18px 42px rgba(16, 39, 56, 0.08);
}

.workflow div {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 253, 247, 0.78);
}

.workflow span {
  color: var(--signal);
  font-weight: 700;
  text-transform: uppercase;
}

.workflow p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.section--links {
  background: transparent;
}

.link-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
  padding: 38px;
  border: 1px solid rgba(16, 39, 56, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 100, 75, 0.12), transparent 38%),
    var(--panel);
  box-shadow: var(--shadow);
}

.quick-links {
  display: grid;
  gap: 12px;
}

.quick-links a {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(16, 39, 56, 0.16);
  border-radius: 8px;
  background: #fff;
  font-weight: 700;
  transition:
    transform 180ms var(--ease),
    border-color 180ms var(--ease),
    color 180ms var(--ease),
    background 180ms var(--ease);
}

.quick-links a::after {
  content: "->";
}

.quick-links a:hover,
.quick-links a:focus-visible {
  border-color: rgba(16, 39, 56, 0.3);
  background: rgba(255, 253, 247, 0.9);
  color: var(--signal);
}

.section--contact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.section--contact .eyebrow {
  color: var(--volt);
}

.contact-copy {
  width: min(700px, 100%);
}

.contact-copy h2 {
  font-size: 60px;
}

.contact-copy p:last-child {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 24px;
  line-height: 1.28;
}

.section--contact .button--ghost {
  border-color: transparent;
  background: rgba(255, 253, 247, 0.58);
}

.button[aria-disabled="true"] {
  cursor: default;
}

.discord-dialog {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: end center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms var(--ease),
    visibility 220ms var(--ease);
}

.discord-dialog.is-open,
.discord-dialog:target {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.discord-dialog__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(16, 39, 56, 0.38);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.discord-dialog__panel {
  position: relative;
  width: min(420px, 100%);
  min-height: 260px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  padding: 34px 28px 32px;
  border: 1px solid rgba(16, 39, 56, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(88, 101, 242, 0.12), transparent 52%),
    linear-gradient(160deg, rgba(247, 162, 70, 0.13), transparent 48%),
    var(--panel);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(16, 39, 56, 0.28);
  transform: translateY(120%) scale(0.96);
}

.discord-dialog.is-open .discord-dialog__panel,
.discord-dialog:target .discord-dialog__panel {
  animation: discord-drop-in 520ms cubic-bezier(0.18, 0.88, 0.24, 1.08) both;
}

.discord-dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: rgba(16, 39, 56, 0.08);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease),
    color 180ms var(--ease);
}

.discord-dialog__close:hover,
.discord-dialog__close:focus-visible {
  background: var(--signal);
  color: #fff8ed;
  outline: none;
  transform: translateY(-1px);
}

.discord-dialog__mark {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #5865f2;
  box-shadow: 0 18px 42px rgba(88, 101, 242, 0.28);
}

.discord-dialog__mark svg {
  width: 48px;
  height: 38px;
  fill: #fff;
}

.discord-dialog__eyebrow {
  margin: 4px 0 0;
  color: var(--signal);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.discord-dialog__name {
  margin: 0;
  font-family: var(--display);
  font-size: 56px;
  font-weight: 800;
  line-height: 0.95;
}

.mail-notice {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 35;
  width: min(420px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(16, 39, 56, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 162, 70, 0.18), transparent 52%),
    var(--panel);
  color: var(--ink);
  box-shadow: 0 22px 62px rgba(16, 39, 56, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
}

.mail-notice.is-visible,
.mail-notice:target {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mail-notice p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.4;
}

.mail-notice strong {
  display: inline-block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 16px;
  overflow-wrap: anywhere;
}

.mail-notice__close {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: rgba(16, 39, 56, 0.08);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 22px;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 180ms var(--ease),
    background 180ms var(--ease),
    color 180ms var(--ease);
}

.mail-notice__close:hover,
.mail-notice__close:focus-visible {
  background: var(--signal);
  color: #fff8ed;
  outline: none;
  transform: translateY(-1px);
}

.site-footer {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px max(24px, calc((100vw - 1120px) / 2));
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.site-footer a {
  color: var(--volt);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 680ms var(--ease),
    transform 680ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes discord-drop-in {
  0% {
    opacity: 0;
    transform: translateY(120%) scale(0.96);
  }
  68% {
    opacity: 1;
    transform: translateY(-12px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .hero h1 {
    font-size: 78px;
  }

  .services-grid,
  .workflow,
  .link-panel {
    grid-template-columns: 1fr 1fr;
  }

  .profile-module {
    grid-template-columns: 1fr;
  }

  .profile-module::before {
    display: none;
  }

  .profile-lede {
    min-height: 0;
  }

  .equipment-panel {
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .section--contact,
  .section__header--split {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 17px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 58px;
    padding-bottom: 34px;
  }

  .hero__content {
    width: 100%;
    max-width: 340px;
  }

  .hero__overlay {
    background:
      linear-gradient(0deg, rgba(247, 242, 232, 0.94) 0%, rgba(247, 242, 232, 0.62) 100%),
      linear-gradient(90deg, rgba(247, 242, 232, 0.9), rgba(247, 242, 232, 0.28));
  }

  .hero__image img {
    object-position: 66% center;
    opacity: 0.57;
  }

  .hero h1 {
    font-size: clamp(44px, 14vw, 55px);
  }

  .hero__subtitle {
    max-width: 20rem;
    font-size: 17px;
  }

  .hero__actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions {
    width: 100%;
    max-width: 340px;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero__actions .button--logo {
    width: fit-content;
    align-self: flex-start;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .section__header h2,
  .profile-lede h2,
  .contact-copy h2 {
    font-size: 39px;
  }

  .profile-lede p {
    font-size: 18px;
  }

  .services-grid,
  .workflow,
  .link-panel {
    grid-template-columns: 1fr;
  }

  .profile-module {
    gap: 30px;
    padding: 0;
    box-shadow: none;
  }

  .profile-lede {
    gap: 18px;
    padding: 0;
  }

  .profile-stats {
    grid-template-columns: 1fr;
  }

  .profile-stats div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .profile-stats div:last-child {
    border-bottom: 0;
  }

  .profile-stats strong {
    font-size: 24px;
  }

  .profile-brief {
    padding: 14px;
  }

  .profile-brief div {
    min-height: 124px;
    padding: 10px;
  }

  .profile-brief__icon {
    width: 30px;
    height: 30px;
  }

  .profile-brief__icon svg {
    width: 19px;
    height: 19px;
  }

  .profile-brief dt {
    font-size: 11px;
  }

  .profile-brief dd {
    font-size: 15px;
  }

  .services-grid {
    border-bottom: 0;
  }

  .service-card,
  .service-card:nth-child(2n) {
    min-height: 220px;
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 247, 0.22);
  }

  .link-panel {
    padding: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .discord-dialog {
    padding: 16px;
  }

  .discord-dialog__panel {
    min-height: 230px;
    padding: 30px 22px 28px;
  }

  .discord-dialog__name {
    font-size: 44px;
  }

  .mail-notice {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
  }
}

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

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .discord-dialog.is-open .discord-dialog__panel,
  .discord-dialog:target .discord-dialog__panel {
    animation: none;
    transform: translateY(0) scale(1);
  }
}
