:root {
  --ink: #08090d;
  --ink-soft: #11131a;
  --paper: #f4f1ee;
  --white: #ffffff;
  --muted: #a8a9b1;
  --line: rgba(255, 255, 255, 0.14);
  --purple: #9d86ff;
  --pink: #dda4cb;
  --red: #ff6868;
  --connectale: #7861ee;
  --header-height: 82px;
  --page-pad: clamp(20px, 5vw, 76px);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

::selection {
  background: var(--pink);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, height 240ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: var(--line);
  background: rgba(8, 9, 13, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.global-nav {
  display: flex;
  gap: clamp(22px, 3vw, 48px);
  align-items: center;
}

.global-nav a {
  position: relative;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.global-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--white);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.global-nav span {
  margin-right: 7px;
  color: var(--purple);
  font-size: 9px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 70px) var(--page-pad) 100px;
  background:
    radial-gradient(circle at 74% 36%, rgba(157, 134, 255, 0.18), transparent 27%),
    radial-gradient(circle at 34% 75%, rgba(221, 164, 203, 0.11), transparent 28%),
    var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 49.9%, rgba(255, 255, 255, 0.035) 50%, transparent 50.1%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: clamp(50px, 6vw, 96px) clamp(50px, 6vw, 96px);
  mask-image: radial-gradient(circle at center, black 10%, transparent 75%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  position: absolute;
  top: 14%;
  left: 8%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 24px var(--purple);
  content: "";
}

.hero-orbit-one {
  right: -18vw;
  bottom: -40vw;
  width: 72vw;
  height: 72vw;
  animation: orbit-spin 24s linear infinite;
}

.hero-orbit-two {
  top: -22vw;
  left: -24vw;
  width: 48vw;
  height: 48vw;
  animation: orbit-spin 34s linear infinite reverse;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  width: min(950px, 82vw);
  text-align: center;
}

.eyebrow,
.section-index,
.project-kicker {
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  margin: 0 0 28px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #c5c6ce;
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(221, 164, 203, 0.9);
}

.hero-logo {
  width: min(860px, 86vw);
  max-height: 36vh;
  margin: 0 auto;
  object-fit: contain;
}

.hero-copy {
  margin: 34px 0 0;
  font-size: clamp(22px, 3.2vw, 42px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.hero-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hero-note strong {
  color: var(--white);
}

.hero-actions {
  display: flex;
  margin-top: 36px;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--white);
  color: var(--ink);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.hero-side {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: 50%;
  display: flex;
  gap: 28px;
  color: #676872;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  transform: translate(45%, 50%) rotate(90deg);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 42px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  position: absolute;
  inset: 0;
  background: var(--white);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
  transform: translateX(-100%);
}

@keyframes scroll-line {
  50%, 100% { transform: translateX(100%); }
}

.projects-section,
.links-section {
  padding: clamp(80px, 10vw, 150px) var(--page-pad);
}

.projects-section {
  background: var(--paper);
  color: var(--ink);
}

.section-heading {
  display: flex;
  margin: 0 auto clamp(42px, 6vw, 80px);
  max-width: 1440px;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2,
.about-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(50px, 9vw, 128px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.section-heading > p {
  max-width: 320px;
  margin: 0;
  color: #6d6e73;
  font-size: 14px;
}

.section-index {
  margin: 0;
  color: #74757c;
}

.pathos-feature,
.connectale-feature {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius);
}

.pathos-feature {
  min-height: min(780px, 80vw);
  background: #090b16;
  color: var(--white);
}

.pathos-background,
.pathos-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pathos-background {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
}

.pathos-feature:hover .pathos-background {
  transform: scale(1.045);
}

.pathos-shade {
  background:
    linear-gradient(90deg, rgba(7, 8, 16, 0.98) 0%, rgba(7, 8, 16, 0.82) 38%, rgba(7, 8, 16, 0.1) 74%),
    linear-gradient(0deg, rgba(7, 8, 16, 0.86), transparent 48%);
}

.pathos-content {
  position: relative;
  z-index: 3;
  width: min(610px, 51%);
  padding: clamp(48px, 7vw, 110px);
}

.project-status {
  display: flex;
  width: fit-content;
  margin: 0 0 22px;
  align-items: center;
  gap: 9px;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-live span {
  background: #ff596d;
  box-shadow: 0 0 18px #ff596d;
  animation: status-pulse 1.8s ease-in-out infinite;
}

@keyframes status-pulse {
  50% { opacity: 0.45; }
}

.pathos-title {
  margin: 0;
  line-height: 0;
  text-shadow: 0 12px 60px rgba(0, 0, 0, 0.45);
}

.pathos-title img {
  display: block;
  width: min(484px, 100%);
  height: auto;
  image-rendering: pixelated;
  filter: invert(1);
  mix-blend-mode: screen;
}

.project-kicker {
  margin: 26px 0 0;
  color: var(--pink);
}

.project-description {
  margin: 26px 0 0;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 2;
}

.project-meta {
  display: flex;
  margin: 30px 0;
  padding: 0;
  gap: 8px;
  flex-wrap: wrap;
  list-style: none;
}

.project-meta li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.button-light {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.pathos-luna {
  position: absolute;
  z-index: 2;
  right: clamp(-110px, -3vw, -24px);
  bottom: -15%;
  width: min(46%, 620px);
  max-height: 106%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.72));
  transition: transform 800ms cubic-bezier(.2, .7, .2, 1);
}

.pathos-feature:hover .pathos-luna {
  transform: translateY(-10px);
}

.pathos-code {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 18px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.connectale-feature {
  display: grid;
  min-height: 660px;
  margin-top: clamp(24px, 3vw, 42px);
  grid-template-columns: 0.92fr 1.08fr;
  background: #f9f4ff;
  color: #151629;
}

.connectale-copy {
  position: relative;
  z-index: 3;
  padding: clamp(46px, 6vw, 90px);
}

.status-paused {
  color: #696976;
}

.status-paused span {
  background: var(--connectale);
}

.connectale-logo {
  width: min(480px, 100%);
  margin: 30px 0 0;
}

.project-meta-dark li {
  border-color: rgba(21, 22, 41, 0.15);
  background: rgba(120, 97, 238, 0.06);
}

.connectale-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.button-dark {
  background: #171827;
  color: var(--white);
}

.connectale-actions > span {
  color: #777783;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.connectale-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: #ffe4d5;
}

.connectale-visual::before {
  position: absolute;
  inset: 0;
  opacity: 0.52;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 12px, transparent 13px);
  background-size: 70px 70px;
  content: "";
}

.connectale-hero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.phone-frame {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 4vw, 60px);
  bottom: -13%;
  width: min(34%, 260px);
  overflow: hidden;
  padding: 7px;
  border: 4px solid #1f2032;
  border-radius: 28px;
  background: #1f2032;
  box-shadow: 0 25px 70px rgba(38, 31, 78, 0.35);
  transform: rotate(4deg);
  transition: transform 500ms cubic-bezier(.2, .7, .2, 1);
}

.connectale-feature:hover .phone-frame {
  transform: rotate(1deg) translateY(-8px);
}

.phone-frame img {
  width: 100%;
  border-radius: 19px;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 50%;
  width: 36%;
  height: 13px;
  border-radius: 999px;
  background: #1f2032;
  transform: translateX(-50%);
}

.paw {
  position: absolute;
  z-index: 3;
  color: var(--connectale);
  font-size: 28px;
  opacity: 0.7;
}

.paw-one { top: 7%; left: 9%; }
.paw-two { right: 6%; top: 14%; font-size: 16px; }

.about-section {
  position: relative;
  display: grid;
  min-height: 780px;
  overflow: hidden;
  padding: clamp(90px, 12vw, 180px) var(--page-pad);
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(50px, 9vw, 150px);
  background: var(--pink);
  color: var(--ink);
}

.about-mark {
  position: absolute;
  top: -20%;
  right: -3%;
  width: min(57vw, 780px);
  opacity: 0.055;
  transform: rotate(9deg);
}

.about-copy {
  position: relative;
  z-index: 2;
}

.about-copy h2 {
  max-width: 1020px;
  font-size: clamp(46px, 5.5vw, 82px);
  line-height: 1.07;
}

.about-copy > p:not(.section-index) {
  max-width: 760px;
  margin: 34px 0 0;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 2.1;
}

.about-fields {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(8, 9, 13, 0.35);
}

.about-fields > p {
  margin: 16px 0 24px;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-fields ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-fields li {
  display: flex;
  padding: 13px 0;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(8, 9, 13, 0.16);
  font-size: 13px;
  font-weight: 700;
}

.about-fields span {
  color: rgba(8, 9, 13, 0.5);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 9px;
}

.links-section {
  background: var(--ink);
}

.section-heading-dark > p,
.section-heading-dark .section-index {
  color: var(--muted);
}

.link-grid {
  display: grid;
  max-width: 1440px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.social-card {
  position: relative;
  display: flex;
  min-height: 320px;
  padding: clamp(28px, 4vw, 54px);
  align-items: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 12%, rgba(157, 134, 255, 0.24), transparent 32%),
    var(--ink-soft);
  transition: border-color 200ms ease, transform 250ms ease, background 250ms ease;
}

.social-card-x {
  background:
    radial-gradient(circle at 85% 12%, rgba(221, 164, 203, 0.2), transparent 32%),
    var(--ink-soft);
}

.social-card-youtube {
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 75, 75, 0.2), transparent 32%),
    var(--ink-soft);
}

.social-card-discord {
  background:
    radial-gradient(circle at 85% 12%, rgba(88, 101, 242, 0.3), transparent 34%),
    var(--ink-soft);
}

.social-card:hover,
.social-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-5px);
}

.social-number {
  position: absolute;
  top: 28px;
  left: 30px;
  color: var(--muted);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 9px;
}

.social-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.social-card h3 {
  margin: 0;
  font-size: clamp(46px, 6vw, 86px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.social-card strong {
  display: block;
  margin-top: 16px;
  color: #cacbd2;
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 11px;
  font-weight: 500;
}

.social-note {
  display: block;
  max-width: 38em;
  margin-top: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.social-arrow {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background 180ms ease, color 180ms ease;
}

.social-card:hover .social-arrow,
.social-card:focus-visible .social-arrow {
  background: var(--white);
  color: var(--ink);
}

.site-footer {
  display: grid;
  padding: 28px var(--page-pad);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: ui-monospace, "Cascadia Code", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.06em;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
}

.footer-brand {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2, .7, .2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .pathos-feature {
    min-height: 760px;
  }

  .pathos-content {
    width: 62%;
    padding: 58px 44px;
  }

  .pathos-luna {
    right: -88px;
    width: 52%;
  }

  .connectale-feature {
    min-height: 600px;
    grid-template-columns: 1fr;
  }

  .connectale-visual {
    min-height: 520px;
  }

  .about-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .about-fields {
    max-width: 580px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
    --radius: 20px;
  }

  .site-header {
    height: var(--header-height);
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .menu-button {
    z-index: 102;
    display: block;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .global-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    padding: 120px var(--page-pad) 60px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    background: rgba(8, 9, 13, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .global-nav.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .global-nav a {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
    font-size: 24px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 120px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-logo {
    width: 100%;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: clamp(19px, 6vw, 28px);
  }

  .hero-side {
    display: none;
  }

  .hero-orbit-one {
    right: -55vw;
    bottom: -25vw;
    width: 120vw;
    height: 120vw;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .section-heading h2 {
    font-size: clamp(50px, 18vw, 84px);
  }

  .pathos-feature {
    min-height: 980px;
  }

  .pathos-background {
    object-position: center;
  }

  .pathos-shade {
    background:
      linear-gradient(0deg, rgba(7, 8, 16, 0.98) 0%, rgba(7, 8, 16, 0.86) 47%, rgba(7, 8, 16, 0.18) 86%),
      linear-gradient(90deg, rgba(7, 8, 16, 0.56), transparent);
  }

  .pathos-content {
    width: 100%;
    min-height: 980px;
    padding: 48px 26px;
  }

  .pathos-title {
    margin-bottom: 300px;
  }

  .pathos-title img {
    width: min(242px, 100%);
  }

  .pathos-luna {
    display: none;
  }

  .pathos-code {
    right: 18px;
    bottom: 12px;
    font-size: 7px;
  }

  .connectale-copy {
    padding: 44px 26px;
  }

  .connectale-visual {
    min-height: 440px;
  }

  .connectale-hero {
    object-position: center;
  }

  .phone-frame {
    right: 14px;
    width: 34%;
  }

  .about-section {
    min-height: auto;
  }

  .about-copy h2 {
    font-size: clamp(40px, 13vw, 62px);
  }

  .about-mark {
    top: 7%;
    right: -18%;
    width: 100vw;
  }

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

  .social-card {
    min-height: 260px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
  }

  .site-footer p:last-child {
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
