:root {
  --color-bg-dark: #050505;
  --color-bg-surface: #0a0a0a;
  --color-bg-page: #1a1a1c;
  --color-bg-section: #202022;
  --color-bg-card: rgba(255, 255, 255, 0.05);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-dark: rgba(255, 255, 255, 0.05);
  --color-text-black: #21222b;
  --color-text-base: #e8e8ea;
  --color-text-muted: #ffffff;
  --color-text-light: #555560;
  --color-white: #ffffff;
  --color-cyan-400: #22d3ee;
  --color-cyan-500: #06b6d4;
  --color-blue-400: #60a5fa;
  --color-blue-500: #3b82f6;
  --color-purple-400: #c084fc;
  --color-slate-300: #cbd5e1;
  --color-slate-400: #94a3b8;
  --color-slate-900: #0f172a;
}

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

html {
  touch-action: manipulation;
  scroll-behavior: smooth;
  background-color: var(--color-bg-dark);
}

body {
  font-family: "Inter", "Noto Sans JP", ui-sans-serif, system-ui, sans-serif;
  background-color: var(--color-bg-dark);
  color: var(--color-text-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

::-moz-selection {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

::selection {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 0.375rem;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-page);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 0.1875rem;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.container {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.commonBg {
  display: none !important;
}

.reveal {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.header {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0) 100%);
  color: var(--color-white);
  transform: translateZ(0);
}
.header.is-scrolled {
  padding: 0.875rem 1.5rem;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 1.25rem rgba(0, 0, 0, 0.3);
  color: var(--color-text-base);
}
.header.is-scrolled .header-logo {
  color: var(--color-white);
}
.header.is-scrolled .nav-link {
  color: rgba(255, 255, 255, 0.6);
}
.header.is-scrolled .nav-link:hover {
  color: var(--color-white);
}
.header.is-scrolled .hamburger span {
  background-color: var(--color-white);
}
.header .header-logo {
  pointer-events: all;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.05em;
  color: var(--color-white);
}
.header .header-nav {
  pointer-events: all;
  display: none;
  gap: 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: auto;
}
@media (min-width: 768px) {
  .header .header-nav {
    display: flex;
  }
}
.header .nav-link {
  transition: color 0.3s ease;
  color: rgba(255, 255, 255, 0.6);
}
.header .nav-link:hover {
  color: var(--color-white);
}

.hamburger {
  pointer-events: all;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  z-index: 100;
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  display: block;
  width: 1.375rem;
  height: 0.09375rem;
  background-color: var(--color-white);
  border-radius: 0.125rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(0.40625rem) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-0.40625rem) rotate(-45deg);
}

.sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 17.5rem;
  z-index: 9998;
  background-color: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(1.25rem);
  -webkit-backdrop-filter: blur(1.25rem);
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sp-nav.is-open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .sp-nav {
    display: none !important;
  }
}
.sp-nav .sp-nav-link {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.25s ease;
}
.sp-nav .sp-nav-link:hover {
  color: var(--color-white);
}

.fv {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  background-color: var(--color-bg-dark);
}
.fv #hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.fv .fv-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
}
@media (min-width: 768px) {
  .fv .fv-content {
    padding: 0 4rem;
  }
}
.fv .fv-content * {
  pointer-events: all;
}
.fv .fv-system-init {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.fv .fv-system-line {
  width: 2rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.fv .fv-system-text {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.fv .fv-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
  line-height: 1.1;
}
.fv .fv-desc {
  color: var(--color-text-base);
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 300;
}
@media (min-width: 768px) {
  .fv .fv-desc {
    font-size: 1rem;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  opacity: 0.5;
}
@media (min-width: 768px) {
  .scroll-indicator {
    left: 4rem;
  }
}
.scroll-indicator .scroll-text {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-white);
  font-family: monospace;
}
.scroll-indicator .scroll-line-container {
  width: 1px;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.2);
  overflow: hidden;
  position: relative;
}
.scroll-indicator .scroll-line-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  animation: scrollLine 1.5s ease-in-out infinite;
}

.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  color: var(--color-white);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 624.9375rem;
  overflow: hidden;
  transition: border-color 0.3s ease, color 0.4s ease;
  z-index: 0;
}
.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-white);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}
.btn-outline:hover {
  color: var(--color-bg-dark);
  border-color: var(--color-white);
}
.btn-outline:hover::before {
  transform: translateY(0);
}

.page-content-wrapper {
  position: relative;
  z-index: 20;
  background-color: var(--color-bg-page);
  color: var(--color-text-base);
}

.main-content {
  padding-top: 6rem;
  padding-bottom: 8rem;
}

.section {
  scroll-margin-top: 8rem;
  margin-bottom: 10rem;
}
.section:last-child {
  margin-bottom: 0;
}
.section .section-header {
  margin-bottom: 3.5rem;
  text-align: left;
}
.section .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}
@media (min-width: 768px) {
  .section .section-title {
    font-size: 2.75rem;
  }
}
.section .section-subtitle {
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.services-list {
  border-top: 1px solid var(--color-border);
}
.services-list .service-item {
  display: flex;
  gap: 2rem;
  padding: 2.5rem 1.5rem;
  margin: 0 -1.5rem;
  border-bottom: 1px solid var(--color-border);
  transition: background-color 0.2s ease, border-radius 0.2s ease;
}
@media (min-width: 768px) {
  .services-list .service-item {
    gap: 4rem;
    padding: 3rem 1.5rem;
  }
  .services-list .service-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
  }
}
.services-list .service-item .service-num {
  font-size: 0.75rem;
  color: var(--color-text-light);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 0.25rem;
  min-width: 2rem;
}
.services-list .service-item .service-item-body {
  flex: 1;
}
.services-list .service-item .service-item-body .service-item-title {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.875rem;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .services-list .service-item .service-item-body .service-item-title {
    font-size: 1.5rem;
  }
}
.services-list .service-item .service-item-body .service-item-desc {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.services-list .service-item .service-item-body .service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.services-list .service-item .service-item-body .service-tags span {
  font-size: 0.6875rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 624.9375rem;
  color: #888;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.02em;
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-1.875rem) rotate(3deg);
  }
}
@keyframes floatDown {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(1.875rem) rotate(-3deg);
  }
}
@keyframes floatLeft {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-0.625rem) translateX(-1.875rem) rotate(-2deg);
  }
}
@keyframes floatRight {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(0.9375rem) translateX(1.5625rem) rotate(2deg);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee-reverse {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.gallery-cloud-section {
  position: relative;
  width: 100%;
  background-color: var(--color-bg-section);
  margin: 2.5rem auto;
}
@media (min-width: 769px) {
  .gallery-cloud-section {
    height: 68.75rem;
    margin-bottom: 0;
    padding: 17.5rem 0;
  }
}
@media (max-width: 768px) {
  .gallery-cloud-section {
    height: auto;
    padding: 4rem 0;
  }
}
.gallery-cloud-section .gallery-overlay {
  text-align: center;
  padding: 2.5rem 4rem;
  pointer-events: none;
}
@media (min-width: 769px) {
  .gallery-cloud-section .gallery-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background-color: rgba(17, 17, 19, 0.8);
    backdrop-filter: blur(1.25rem);
    -webkit-backdrop-filter: blur(1.25rem);
    border: 1px solid var(--color-border);
    border-radius: 2rem;
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.4);
  }
}
@media (max-width: 768px) {
  .gallery-cloud-section .gallery-overlay {
    position: relative;
    margin: 0 1.5rem 2.5rem;
    pointer-events: auto;
    padding: 1.5rem 2rem;
    background-color: rgba(17, 17, 19, 0.85);
    backdrop-filter: blur(0.75rem);
    border: 1px solid var(--color-border);
    border-radius: 1.25rem;
  }
}
.gallery-cloud-section .gallery-overlay .gallery-overlay-title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.025em;
}
@media (min-width: 769px) {
  .gallery-cloud-section .gallery-overlay .gallery-overlay-title {
    font-size: 2.5rem;
  }
}
.gallery-cloud-section .gallery-overlay .gallery-overlay-desc {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}
.gallery-cloud-section .gallery-cloud-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .gallery-cloud-section .gallery-cloud-container {
    display: none;
  }
}
.gallery-cloud-section .cloud-item {
  position: absolute;
  z-index: 1;
  transition: opacity 0.5s ease, filter 0.5s ease;
}
.gallery-cloud-section .cloud-item .cloud-image-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 1.5rem;
  overflow: hidden;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: 0 0.5rem 1.5rem -0.25rem rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
}
.gallery-cloud-section .cloud-item .cloud-image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
.gallery-cloud-section .cloud-item:hover {
  z-index: 30 !important;
}
.gallery-cloud-section .cloud-item:hover .cloud-image-wrap {
  transform: scale(1.15) rotate(0deg);
  box-shadow: 0 1.5rem 3rem -0.75rem rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0.15);
}
.gallery-cloud-section .cloud-item:hover .cloud-image-wrap img {
  transform: scale(1.1);
}
.gallery-cloud-section .gallery-cloud-container:has(.cloud-item:hover) .cloud-item:not(:hover) {
  opacity: 0.35;
  filter: blur(0.25rem) grayscale(30%);
  transform: scale(0.97);
}
.gallery-cloud-section .gallery-marquee-sp {
  display: none;
}
@media (max-width: 768px) {
  .gallery-cloud-section .gallery-marquee-sp {
    display: block;
    overflow: hidden;
  }
}
.gallery-cloud-section .gallery-marquee-sp .gallery-marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 1rem;
  animation: marquee 28s linear infinite;
}
.gallery-cloud-section .gallery-marquee-sp .gallery-marquee-track.reverse {
  animation: marquee-reverse 32s linear infinite;
  margin-top: 1rem;
}
.gallery-cloud-section .gallery-marquee-sp .gallery-marquee-img {
  width: 8.75rem;
  height: 8.75rem;
  flex-shrink: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
}
.gallery-cloud-section .gallery-marquee-sp .gallery-marquee-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (min-width: 769px) {
  .item-1 {
    top: 5%;
    left: 5%;
    width: 13.75rem;
    animation: floatUp 8s infinite ease-in-out;
  }
  .item-2 {
    top: 12%;
    left: 28%;
    width: 10rem;
    animation: floatDown 11s infinite ease-in-out -2s;
  }
  .item-3 {
    top: -2%;
    left: 52%;
    width: 12.5rem;
    animation: floatLeft 13s infinite ease-in-out -5s;
  }
  .item-4 {
    top: 8%;
    left: 78%;
    width: 15rem;
    animation: floatRight 9s infinite ease-in-out -1s;
  }
  .item-5 {
    top: 38%;
    left: -2%;
    width: 11.25rem;
    animation: floatRight 12s infinite ease-in-out -4s;
  }
  .item-6 {
    top: 25%;
    left: 18%;
    width: 8.75rem;
    animation: floatUp 10s infinite ease-in-out -6s;
    z-index: 5;
  }
  .item-7 {
    top: 32%;
    left: 68%;
    width: 10.625rem;
    animation: floatDown 14s infinite ease-in-out -3s;
  }
  .item-8 {
    top: 40%;
    left: 85%;
    width: 13.125rem;
    animation: floatLeft 11s infinite ease-in-out -7s;
  }
  .item-9 {
    top: 65%;
    left: 5%;
    width: 11.875rem;
    animation: floatUp 9s infinite ease-in-out -2s;
  }
  .item-10 {
    top: 55%;
    left: 22%;
    width: 15rem;
    animation: floatDown 13s infinite ease-in-out -5s;
    z-index: 15;
  }
  .item-11 {
    top: 75%;
    left: 45%;
    width: 10rem;
    animation: floatLeft 10s infinite ease-in-out -1s;
  }
  .item-12 {
    top: 62%;
    left: 65%;
    width: 12.5rem;
    animation: floatRight 12s infinite ease-in-out -8s;
  }
  .item-13 {
    top: 72%;
    left: 82%;
    width: 11.25rem;
    animation: floatUp 11s infinite ease-in-out -4s;
  }
  .item-14 {
    top: 85%;
    left: 18%;
    width: 9.375rem;
    animation: floatDown 9s infinite ease-in-out -3s;
  }
  .item-15 {
    top: 18%;
    left: 60%;
    width: 10rem;
    animation: floatRight 10s infinite ease-in-out -2s;
    z-index: 15;
  }
  .item-16 {
    top: 55%;
    left: 52%;
    width: 8.75rem;
    animation: floatLeft 12s infinite ease-in-out -6s;
    z-index: 5;
  }
  .item-2 .cloud-image-wrap {
    transform: rotate(-3deg);
  }
  .item-4 .cloud-image-wrap {
    transform: rotate(2deg);
  }
  .item-7 .cloud-image-wrap {
    transform: rotate(4deg);
  }
  .item-9 .cloud-image-wrap {
    transform: rotate(-2deg);
  }
  .item-14 .cloud-image-wrap {
    transform: rotate(3deg);
  }
}
.skills-box {
  border-top: 1px solid var(--color-border);
}
.skills-box .skills-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) {
  .skills-box .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .skills-box .skills-grid > div:first-child {
    padding-right: 4rem;
    border-right: 1px solid var(--color-border);
  }
  .skills-box .skills-grid > div:last-child {
    padding-left: 4rem;
  }
}
.skills-box .skills-category-title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: 1.75rem;
  padding: 2rem 0 0.875rem;
  border-bottom: 1px solid var(--color-border);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.skills-box .skills-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.skills-box .skills-list > div {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--color-border-dark);
}
.skills-box .skills-list > div:last-child {
  border-bottom: none;
}
.skills-box .skills-list > div .skill-item-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}
.skills-box .skills-list > div .skill-item-header .skill-item-dot {
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 624.9375rem;
  flex-shrink: 0;
}
.skills-box .skills-list > div .skill-item-header .skill-item-dot.purple {
  background-color: var(--color-cyan-400);
}
.skills-box .skills-list > div .skill-item-header .skill-item-dot.blue {
  background-color: var(--color-purple-400);
}
.skills-box .skills-list > div .skill-item-header .skill-item-title {
  font-weight: 600;
  color: var(--color-white);
  font-size: 0.9375rem;
}
.skills-box .skills-list > div .skill-item-desc {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.75;
  padding-left: 0.75rem;
}

.about-box {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-section);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .about-box {
    flex-direction: row;
    align-items: flex-start;
    padding: 3.5rem;
  }
}
.about-box .about-image {
  width: 100%;
  aspect-ratio: 4/5;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1.25rem;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .about-box .about-image {
    width: 30%;
  }
}
.about-box .about-image .about-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.15);
}
.about-box .about-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .about-box .about-content {
    width: 70%;
  }
}
.about-box .about-content .about-desc {
  color: var(--color-text-muted);
  line-height: 1.85;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .about-box .about-content .about-desc {
    font-size: 0.9375rem;
  }
}
.about-box .about-content .about-socials {
  display: flex;
  gap: 0.75rem;
}

.footer {
  width: 100%;
  background-color: var(--color-text-base);
  padding: 1.25rem 0;
  text-align: center;
}
.footer #copyright-year {
  color: var(--color-text-black);
  font-size: 0.8125rem;
  letter-spacing: 0.04rem;
}