/* --- 丸く切り抜くためのCSS設定 --- */
.profile-icon {
  width: 100px;  
  height: 100px; 
  border-radius: 50%; 
  overflow: hidden;    
  margin-bottom: 20px;
  border: 1px solid rgba(74, 144, 226, 0.3); 
}

.profile-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

/* --- 以下、既存のCSS --- */
body {
  background-color: #0b101e;
  color: #ffffff;
  font-family: sans-serif;
}
/* （以降のコードが続く） */

/* ==================================================
   LILISCEND
   DIGITAL FRONTIER PORTFOLIO
================================================== */

:root {
  --bg: #050814;
  --bg2: #080d1c;
  --text: #f3f7ff;
  --muted: #8c97ad;
  --line: rgba(140, 170, 220, 0.16);
  --blue: #69c9ff;
  --blue2: #3b8cff;
  --cyan: #74f4ff;
  --card: rgba(12, 20, 39, 0.68);
  --max: 1180px;
}


/* ==================================================
   RESET
================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family:
    "Noto Sans JP",
    "Inter",
    sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}


/* ==================================================
   BACKGROUND
================================================== */

.grid-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;

  background:
    linear-gradient(
      rgba(80, 140, 255, 0.045) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(80, 140, 255, 0.045) 1px,
      transparent 1px
    );

  background-size: 60px 60px;

  mask-image:
    linear-gradient(
      to bottom,
      black,
      transparent 90%
    );
}

.grid-bg::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(40, 130, 255, 0.13),
      transparent 35%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(30, 110, 255, 0.07),
      transparent 30%
    );
}


/* ==================================================
   NOISE
================================================== */

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.025;

  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}


/* ==================================================
   PARTICLES
================================================== */

.particles {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 50%;

  background: rgba(120, 215, 255, 0.7);

  box-shadow:
    0 0 8px rgba(100, 200, 255, 0.8);

  animation:
    particleFloat linear infinite;
}

@keyframes particleFloat {

  0% {
    transform:
      translate3d(0, 20px, 0)
      scale(0.5);

    opacity: 0;
  }

  15% {
    opacity: 0.8;
  }

  70% {
    opacity: 0.5;
  }

  100% {
    transform:
      translate3d(
        var(--move-x),
        -160px,
        0
      )
      scale(1);

    opacity: 0;
  }
}


/* ==================================================
   CURSOR GLOW
================================================== */

.cursor-glow {
  position: fixed;

  width: 280px;
  height: 280px;

  border-radius: 50%;

  pointer-events: none;

  background:
    radial-gradient(
      circle,
      rgba(70, 170, 255, 0.09),
      transparent 65%
    );

  transform:
    translate(-50%, -50%);

  z-index: -2;

  transition:
    left 0.15s ease-out,
    top 0.15s ease-out;
}


/* ==================================================
   HEADER
================================================== */

.site-header {
  position: fixed;

  top: 0;
  left: 0;
  right: 0;

  z-index: 50;

  height: 78px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding:
    0 clamp(20px, 5vw, 70px);

  border-bottom:
    1px solid rgba(120, 160, 220, 0.1);

  background:
    rgba(5, 8, 20, 0.65);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.logo {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.logo span {
  color: var(--cyan);

  animation:
    blink 1.2s infinite;
}

@keyframes blink {
  0%,
  45% {
    opacity: 1;
  }

  46%,
  100% {
    opacity: 0.2;
  }
}

.site-header nav {
  display: flex;
  gap: 28px;
}

.site-header nav a {
  position: relative;

  font-family: "Inter", sans-serif;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.15em;

  color: #a9b4c9;

  transition:
    color 0.3s ease;
}

.site-header nav a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0;
  height: 1px;

  background: var(--cyan);

  transition:
    width 0.3s ease;
}

.site-header nav a:hover {
  color: white;
}

.site-header nav a:hover::after {
  width: 100%;
}


/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;

  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  max-width: var(--max);

  margin: auto;

  padding:
    150px 30px 100px;

  overflow: hidden;
}

.hero::before {
  content: "";

  position: absolute;

  width: 700px;
  height: 700px;

  top: -250px;
  right: -300px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(30, 130, 255, 0.12),
      transparent 65%
    );

  pointer-events: none;
}

.eyebrow {
  display: inline-block;

  font-family: "Inter", sans-serif;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.2em;

  color: var(--blue);

  margin-bottom: 25px;
}

.hero h1 {
  font-size:
    clamp(42px, 7vw, 82px);

  line-height: 1.13;

  letter-spacing: -0.04em;

  margin-bottom: 30px;

  font-weight: 900;
}

.hero h1 span {
  color: transparent;

  background:
    linear-gradient(
      100deg,
      #ffffff,
      #76d9ff,
      #6b9cff
    );

  background-clip: text;
  -webkit-background-clip: text;
}

.hero .lead {
  font-size: 20px;

  font-weight: 700;

  margin-bottom: 25px;

  color: #dce7f8;
}

.hero > p:not(.lead) {
  color: var(--muted);

  font-size: 14px;
}

.hero strong {
  color: #eaf3ff;
}

.hero-line {
  position: relative;

  margin:
    40px 0 15px;

  padding-left: 20px;

  border-left:
    2px solid var(--blue);
}

.hero-line span {
  display: block;

  color: #8e9bb2;

  font-size: 13px;
}

.hero-line b {
  display: block;

  font-size: 20px;

  color: #f1f7ff;
}

.cta {
  position: relative;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 20px;

  width: max-content;

  margin-top: 35px;

  padding:
    15px 25px;

  border:
    1px solid rgba(110, 200, 255, 0.5);

  background:
    rgba(35, 105, 180, 0.12);

  font-family: "Inter", sans-serif;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.18em;

  overflow: hidden;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.cta::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 80%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.18),
      transparent
    );

  transform: skewX(-20deg);

  transition:
    left 0.6s ease;
}

.cta:hover::before {
  left: 150%;
}

.cta:hover {
  transform: translateY(-3px);

  background:
    rgba(60, 150, 255, 0.18);

  box-shadow:
    0 0 30px rgba(70, 170, 255, 0.15);
}

.cta span {
  color: var(--cyan);
}


/* ==================================================
   SCROLL INDICATOR
================================================== */

.scroll-indicator {
  position: absolute;

  bottom: 30px;
  left: 30px;

  display: flex;
  flex-direction: column;

  gap: 8px;

  color: #59657a;

  font-family: "Inter", sans-serif;

  font-size: 8px;

  letter-spacing: 0.2em;
}

.scroll-indicator i {
  display: block;

  width: 1px;
  height: 40px;

  background:
    linear-gradient(
      to bottom,
      var(--blue),
      transparent
    );

  animation:
    scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {

  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}


/* ==================================================
   SECTIONS
================================================== */

.section {
  position: relative;

  max-width: var(--max);

  margin: auto;

  padding:
    130px 30px;
}

.section-head {
  display: grid;

  grid-template-columns:
    55px
    auto
    1fr;

  align-items: baseline;

  gap: 20px;

  margin-bottom: 55px;
}

.section-head > span {
  font-family: "Inter", sans-serif;

  color: var(--blue);

  font-size: 12px;
  font-weight: 700;
}

.section-head h2 {
  font-family: "Inter", sans-serif;

  font-size: clamp(30px, 5vw, 48px);

  line-height: 1;

  letter-spacing: 0.04em;
}

.section-head p {
  color: #667289;

  font-size: 12px;

  margin-left: 5px;
}


/* ==================================================
   REVEAL ANIMATION
================================================== */

.reveal {
  opacity: 0;

  transform:
    translateY(45px);

  transition:
    opacity 0.9s cubic-bezier(.16,1,.3,1),
    transform 0.9s cubic-bezier(.16,1,.3,1);
}

.reveal.active {
  opacity: 1;

  transform:
    translateY(0);
}


/* ==================================================
   CARDS
================================================== */

.cards {
  display: grid;

  gap: 18px;
}

.cards.three {
  grid-template-columns:
    repeat(3, 1fr);
}

.card {
  position: relative;

  padding: 35px;

  min-height: 310px;

  background:
    linear-gradient(
      145deg,
      rgba(18, 29, 53, 0.75),
      rgba(7, 13, 27, 0.7)
    );

  border:
    1px solid rgba(110, 150, 205, 0.15);

  backdrop-filter: blur(12px);

  overflow: hidden;

  transition:
    transform 0.45s cubic-bezier(.16,1,.3,1),
    border-color 0.3s ease,
    box-shadow 0.4s ease;
}

.card::before {
  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 70%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--cyan),
      transparent
    );

  transition:
    left 0.7s ease;
}

.card:hover::before {
  left: 140%;
}

.card::after {
  content: "";

  position: absolute;

  width: 120px;
  height: 120px;

  right: -70px;
  bottom: -70px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(70, 170, 255, 0.12),
      transparent 70%
    );

  transition:
    transform 0.5s ease;
}

.card:hover::after {
  transform: scale(2);
}

.card:hover {
  transform:
    translateY(-8px);

  border-color:
    rgba(100, 200, 255, 0.35);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.25),
    0 0 30px rgba(50, 150, 255, 0.06);
}

.card-no {
  font-family: "Inter", sans-serif;

  font-size: 9px;

  letter-spacing: 0.18em;

  color: var(--blue);

  display: block;

  margin-bottom: 30px;
}

.card h3 {
  font-size: 20px;

  margin-bottom: 25px;
}

.card ul {
  list-style: none;
}

.card li {
  position: relative;

  padding-left: 18px;

  margin-bottom: 10px;

  color: #9da9bd;

  font-size: 13px;
}

.card li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0.8em;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: var(--cyan);

  box-shadow:
    0 0 7px var(--cyan);
}


/* ==================================================
   STATS
================================================== */

.stats {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  margin-top: 35px;

  border-top:
    1px solid var(--line);

  border-bottom:
    1px solid var(--line);
}

.stat {
  padding: 30px 20px;

  display: flex;

  align-items: center;

  gap: 15px;

  border-right:
    1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font-family: "Inter", sans-serif;

  font-size: 28px;

  color: #eaf6ff;

  white-space: nowrap;
}

.stat span {
  color: #738096;

  font-size: 9px;

  line-height: 1.5;
}

.note {
  margin-top: 20px;

  font-size: 11px;

  color: #68758b;
}

.article-links {
  display: flex;

  gap: 15px;

  margin-top: 30px;
}

.article-links a {
  padding: 12px 18px;

  border:
    1px solid var(--line);

  color: #9faec5;

  font-size: 11px;

  transition:
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.article-links a:hover {
  color: white;

  border-color:
    rgba(110, 200, 255, 0.45);

  transform:
    translateY(-3px);
}


/* ==================================================
   ABOUT
================================================== */

.about-content {
  display: grid;

  grid-template-columns:
    0.8fr
    1.2fr;

  gap: 80px;

  align-items: start;
}

.activity {
  font-family: "Inter", sans-serif;

  color: var(--blue);

  font-size: 10px;

  letter-spacing: 0.2em;

  margin-bottom: 20px;
}

.identity h3 {
  font-size: 28px;

  line-height: 1.5;
}

.tag {
  display: inline-block;

  margin-top: 25px;

  padding: 5px 12px;

  border:
    1px solid rgba(100, 180, 255, 0.3);

  color: var(--blue);

  font-family: "Inter", sans-serif;

  font-size: 10px;

  letter-spacing: 0.12em;
}

.bio p {
  color: #8996aa;

  font-size: 13px;

  margin-bottom: 22px;
}

.bio .big-copy {
  color: #dfe9f8;

  font-size: 20px;

  line-height: 1.6;
}

.bio strong {
  color: var(--cyan);
}

.casual {
  color: #b6c1d3 !important;
}

.strength {
  position: relative;

  margin-top: 100px;

  padding: 50px;

  border:
    1px solid var(--line);

  background:
    rgba(10, 19, 37, 0.55);

  overflow: hidden;
}

.strength::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--blue),
      transparent
    );
}

.strength > span {
  font-family: "Inter", sans-serif;

  color: var(--blue);

  font-size: 10px;

  letter-spacing: 0.2em;
}

.strength h3 {
  font-size: 32px;

  line-height: 1.35;

  margin: 20px 0;
}

.strength p {
  color: #8996aa;

  font-size: 13px;
}

.text-link {
  display: inline-block;

  margin-top: 25px;

  color: var(--blue);

  font-size: 12px;

  border-bottom:
    1px solid rgba(100, 190, 255, 0.3);

  padding-bottom: 5px;
}


/* ==================================================
   NOTE
================================================== */

.note-panel {
  display: grid;

  grid-template-columns:
    180px
    1fr;

  gap: 60px;

  padding: 60px;

  border:
    1px solid var(--line);

  background:
    linear-gradient(
      135deg,
      rgba(15, 28, 52, 0.8),
      rgba(6, 12, 25, 0.7)
    );
}

.note-mark {
  font-family: "Inter", sans-serif;

  font-size: 55px;

  font-weight: 800;

  color: #eaf4ff;
}

.note-panel p {
  color: #8996aa;

  font-size: 13px;

  margin-bottom: 25px;
}

.note-panel strong {
  color: #eaf4ff;
}


/* ==================================================
   WORK
================================================== */

.work-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 1px;

  background: var(--line);

  border:
    1px solid var(--line);
}

.work-grid article {
  position: relative;

  padding: 38px;

  min-height: 220px;

  background:
    rgba(7, 14, 29, 0.92);

  transition:
    background 0.3s ease,
    transform 0.35s ease;
}

.work-grid article:hover {
  background:
    rgba(15, 30, 55, 0.95);

  transform:
    translateY(-4px);

  z-index: 2;
}

.work-grid article.wide {
  grid-column:
    span 2;
}

.work-grid article > span {
  font-family: "Inter", sans-serif;

  color: var(--blue);

  font-size: 10px;

  letter-spacing: 0.15em;
}

.work-grid h3 {
  margin:
    20px 0 15px;

  font-size: 18px;
}

.work-grid p {
  color: #7f8ca1;

  font-size: 12px;
}

.work-grid strong {
  color: #dceaff;
}


/* ==================================================
   FLOW
================================================== */

.flow {
  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  gap: 1px;

  background: var(--line);
}

.flow > div {
  position: relative;

  padding: 30px 22px;

  min-height: 300px;

  background:
    rgba(8, 15, 30, 0.9);
}

.flow b {
  font-family: "Inter", sans-serif;

  font-size: 30px;

  color: var(--blue);
}

.flow h3 {
  font-size: 15px;

  margin:
    20px 0 15px;
}

.flow p {
  color: #7f8ca1;

  font-size: 11px;

  line-height: 1.8;
}


/* ==================================================
   SUPPORT
================================================== */

.support-box {
  position: relative;

  padding: 55px;

  border:
    1px solid var(--line);

  background:
    rgba(9, 18, 35, 0.75);
}

.support-box p {
  color: #8996aa;

  font-size: 13px;

  margin-bottom: 22px;
}

.support-box strong {
  color: #f2f7ff;
}


/* ==================================================
   FAQ
================================================== */

.faq-list {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

details {
  border:
    1px solid var(--line);

  background:
    rgba(8, 15, 30, 0.7);

  transition:
    border-color 0.3s ease;
}

details[open] {
  border-color:
    rgba(100, 190, 255, 0.3);
}

summary {
  position: relative;

  padding: 25px 30px;

  cursor: pointer;

  list-style: none;

  font-size: 14px;

  font-weight: 600;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";

  position: absolute;

  right: 30px;

  color: var(--blue);

  font-family: "Inter", sans-serif;

  font-size: 20px;

  transition:
    transform 0.3s ease;
}

details[open] summary::after {
  transform:
    rotate(45deg);
}

details p {
  padding:
    0 30px 30px;

  color: #8794a9;

  font-size: 12px;
}

details small {
  color: #59677d;
}


/* ==================================================
   CONTACT
================================================== */

.contact {
  position: relative;

  min-height: 75vh;

  display: flex;

  align-items: center;

  justify-content: center;

  text-align: center;

  padding: 120px 30px;

  overflow: hidden;

  border-top:
    1px solid var(--line);
}

.contact::before {
  content: "";

  position: absolute;

  width: 800px;
  height: 800px;

  left: 50%;
  top: 50%;

  transform:
    translate(-50%, -50%);

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(30, 130, 255, 0.13),
      transparent 65%
    );

  pointer-events: none;
}

.contact-orb {
  position: absolute;

  width: 250px;
  height: 250px;

  border-radius: 50%;

  border:
    1px solid rgba(100, 190, 255, 0.12);

  animation:
    orbPulse 5s ease-in-out infinite;
}

@keyframes orbPulse {

  0%,
  100% {
    transform: scale(0.9);

    opacity: 0.3;
  }

  50% {
    transform: scale(1.2);

    opacity: 0.7;
  }
}

.contact-inner {
  position: relative;

  max-width: 800px;

  z-index: 2;
}

.contact h2 {
  font-size:
    clamp(35px, 6vw, 70px);

  line-height: 1.2;

  margin-bottom: 40px;
}

.contact h2 span {
  color: transparent;

  background:
    linear-gradient(
      90deg,
      #ffffff,
      var(--cyan),
      #78a6ff
    );

  background-clip: text;
  -webkit-background-clip: text;
}

.contact-inner p {
  color: #8491a7;

  font-size: 13px;

  margin-bottom: 25px;
}

.cta.large {
  margin-top: 20px;

  padding:
    18px 35px;
}


/* ==================================================
   FOOTER
================================================== */

footer {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 30px;

  padding:
    50px max(30px, calc((100% - 1180px) / 2));

  border-top:
    1px solid var(--line);

  color: #59667b;
}

footer strong {
  font-family: "Inter", sans-serif;

  color: #b7c3d5;

  letter-spacing: 0.15em;
}

footer span {
  font-size: 9px;
}

footer p {
  font-size: 10px;
}

footer a {
  color: var(--blue);

  font-family: "Inter", sans-serif;

  font-size: 11px;
}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 900px) {

  .site-header {
    height: 65px;
  }

  .site-header nav {
    gap: 15px;
  }

  .site-header nav a {
    font-size: 9px;
  }

  .hero {
    padding:
      130px 22px 100px;
  }

  .section {
    padding:
      90px 22px;
  }

  .cards.three {
    grid-template-columns:
      1fr;
  }

  .stats {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .stat {
    border-bottom:
      1px solid var(--line);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(3) {
    border-bottom: 0;
  }

  .stat:nth-child(4) {
    border-bottom: 0;
    border-right: 0;
  }

  .about-content {
    grid-template-columns:
      1fr;

    gap: 50px;
  }

  .note-panel {
    grid-template-columns:
      1fr;

    gap: 30px;

    padding: 35px;
  }

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

  .work-grid article.wide {
    grid-column:
      span 1;
  }

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

  .flow > div {
    min-height: auto;
  }

  footer {
    flex-direction: column;

    align-items: flex-start;
  }

}


@media (max-width: 600px) {

  .site-header {
    padding:
      0 18px;
  }

  .site-header nav {
    gap: 10px;
  }

  .site-header nav a:nth-child(3),
  .site-header nav a:nth-child(4) {
    display: none;
  }

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

  .hero .lead {
    font-size: 17px;
  }

  .hero > p:not(.lead) {
    font-size: 12px;
  }

  .hero-line b {
    font-size: 16px;
  }

  .section-head {
    grid-template-columns:
      40px
      1fr;

    gap: 10px;
  }

  .section-head p {
    grid-column:
      2;

    margin-top: -10px;
  }

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

  .stat {
    padding:
      25px 12px;

    flex-direction: column;

    align-items: flex-start;
  }

  .stat strong {
    font-size: 24px;
  }

  .article-links {
    flex-direction: column;
  }

  .strength {
    padding: 30px;
  }

  .strength h3 {
    font-size: 25px;
  }

  .note-panel {
    padding: 25px;
  }

  .note-mark {
    font-size: 45px;
  }

  .work-grid article {
    padding: 30px 25px;
  }

  .support-box {
    padding: 30px 25px;
  }

  summary {
    padding:
      20px 50px 20px 20px;
  }

  details p {
    padding:
      0 20px 25px;
  }

  .contact {
    padding:
      100px 20px;
  }

}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

}