@charset "UTF-8";

:root {
  --ink: #f4f7ff;
  --muted: #9ca6bd;
  --line: rgba(255, 255, 255, 0.11);
  --surface: #0d1220;
  --surface-2: #11182a;
  --blue: #4f8cff;
  --cyan: #67e8f9;
  --violet: #8b5cf6;
  --page: #070a12;
  --font: Inter, "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--page);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--page);
  background-size: 72px 72px;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font);
}

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

img {
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  color: #04101a;
  background: var(--cyan);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #070a12;
  background: #fff;
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 24px clamp(24px, 4vw, 64px);
  transition: padding 240ms ease, background 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(7, 10, 18, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #09101e;
  background: var(--ink);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 900;
}

.desktop-nav {
  display: flex;
  gap: 38px;
  margin-left: 80px;
}

.desktop-nav a,
.social-link {
  color: #bcc4d6;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.social-link:hover {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.social-link {
  font-size: 16px;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 40px;
  height: 40px;
  list-style: none;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 16px;
  height: 1px;
  background: #fff;
  transition: transform 180ms ease;
}

.mobile-menu[open] summary span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.mobile-menu[open] summary span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu nav {
  position: absolute;
  top: 52px;
  right: 0;
  display: grid;
  width: 180px;
  padding: 10px;
  background: rgba(14, 19, 33, 0.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38);
}

.mobile-menu nav a {
  padding: 11px 12px;
  color: #d5daea;
  border-radius: 8px;
  font-size: 13px;
}

.mobile-menu nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100svh;
  align-items: center;
  padding: 120px clamp(24px, 5.2vw, 84px) 76px;
  background:
    radial-gradient(circle at 74% 48%, rgba(79, 140, 255, 0.14), transparent 26%),
    radial-gradient(circle at 98% 4%, rgba(139, 92, 246, 0.14), transparent 28%),
    linear-gradient(145deg, #070a12 0%, #080c16 44%, #0a0f1d 100%);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    linear-gradient(rgba(103, 232, 249, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 232, 249, 0.042) 1px, transparent 1px);
  background-size: clamp(52px, 5vw, 88px) clamp(52px, 5vw, 88px);
  content: "";
  mask-image: linear-gradient(90deg, transparent 4%, #000 48%, #000 100%);
}

.hero::after {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(transparent, var(--page));
  content: "";
  pointer-events: none;
}

.hero-noise {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.07;
  pointer-events: none;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}

.hero-glow {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.12;
  pointer-events: none;
}

.hero-glow-one {
  top: -320px;
  left: -180px;
  background: var(--blue);
}

.hero-glow-two {
  right: -300px;
  bottom: -250px;
  background: var(--violet);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.98fr);
  gap: clamp(36px, 6vw, 112px);
  align-items: center;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.eyebrow,
.section-index {
  margin: 0 0 32px;
  color: #aeb8ce;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 28px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(4rem, 7.6vw, 8.9rem);
  font-weight: 750;
  letter-spacing: -0.075em;
  line-height: 0.95;
}

.hero h1 em {
  color: transparent;
  background: linear-gradient(110deg, #fff 5%, #8ed7ff 46%, #b69cff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
  text-shadow: 0 0 52px rgba(79, 140, 255, 0.22);
}

.hero-lead {
  max-width: 580px;
  margin: 34px 0 0;
  color: #a9b2c5;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.06em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  color: #07101b;
  background: linear-gradient(115deg, #f5f8ff, #d7e8ff);
  box-shadow: 0 12px 34px rgba(79, 140, 255, 0.16);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(79, 140, 255, 0.25);
}

.text-link {
  color: #c6cede;
  font-size: 13px;
  font-weight: 650;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 36px 0 0;
  color: #636f86;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 12px #4ade80;
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: min(42vw, 660px);
  height: min(42vw, 660px);
  min-width: 470px;
  min-height: 470px;
  justify-self: end;
}

.hero-visual::before {
  position: absolute;
  inset: 15%;
  background: radial-gradient(circle, rgba(79, 140, 255, 0.18), rgba(79, 140, 255, 0.02) 45%, transparent 70%);
  border-radius: 50%;
  content: "";
  filter: blur(14px);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(103, 232, 249, 0.14);
  border-radius: 50%;
}

.orbit-one {
  inset: 8%;
}

.orbit-two {
  inset: 22%;
  border-style: dashed;
  transform: rotate(16deg);
}

.app-tile {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(12, 18, 33, 0.66);
  border-radius: 26%;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 260ms ease, border-color 260ms ease;
}

.app-tile img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 23%;
  object-fit: cover;
}

.tile-main {
  top: 29%;
  left: 32%;
  width: 35%;
  height: 35%;
  padding: 8px;
  border-color: rgba(103, 232, 249, 0.3);
  box-shadow: 0 30px 100px rgba(32, 98, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: float 5.4s ease-in-out infinite;
}

.tile-label {
  position: absolute;
  bottom: -54px;
  left: 50%;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  color: #e8edfa;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transform: translateX(-50%);
}

.tile-label small {
  padding: 2px 7px;
  color: #8d99b1;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.tile-one,
.tile-two,
.tile-three {
  width: 15%;
  height: 15%;
  padding: 5px;
}

.tile-one {
  top: 14%;
  left: 17%;
  transform: rotate(-8deg);
}

.tile-two {
  top: 20%;
  right: 9%;
  transform: rotate(7deg);
}

.tile-three {
  right: 17%;
  bottom: 11%;
  transform: rotate(-5deg);
}

.hero-visual:hover .tile-one {
  transform: translate(-4px, -8px) rotate(-10deg);
}

.hero-visual:hover .tile-two {
  transform: translate(6px, -5px) rotate(9deg);
}

.hero-visual:hover .tile-three {
  transform: translate(5px, 7px) rotate(-7deg);
}

.metric {
  position: absolute;
  color: #7e8ca5;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.metric-top {
  top: 8%;
  right: 25%;
  display: flex;
  width: 140px;
  align-items: center;
  gap: 10px;
}

.metric-top b {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(103, 232, 249, 0.6);
}

.metric-bottom {
  bottom: 14%;
  left: 10%;
}

.metric-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 30px;
  margin-top: 8px;
}

.metric-bars i {
  display: block;
  width: 3px;
  background: linear-gradient(var(--cyan), var(--blue));
  border-radius: 2px;
}

.metric-bars i:nth-child(1) { height: 35%; }
.metric-bars i:nth-child(2) { height: 55%; }
.metric-bars i:nth-child(3) { height: 42%; }
.metric-bars i:nth-child(4) { height: 80%; }
.metric-bars i:nth-child(5) { height: 62%; }
.metric-bars i:nth-child(6) { height: 100%; }

.scroll-cue {
  position: absolute;
  z-index: 5;
  bottom: 30px;
  left: clamp(24px, 5.2vw, 84px);
  display: flex;
  align-items: center;
  gap: 14px;
  color: #525f77;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.scroll-cue i {
  color: #b7c1d7;
  font-size: 14px;
  font-style: normal;
  animation: nudge 1.8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes nudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.section {
  position: relative;
  padding: clamp(100px, 12vw, 190px) clamp(24px, 5.2vw, 84px);
}

.section-shell {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
  margin-bottom: clamp(64px, 8vw, 110px);
}

.section-heading h2,
.about h2 {
  margin: 0;
  font-size: clamp(3rem, 6.2vw, 6.7rem);
  font-weight: 720;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.section-heading h2 span,
.about h2 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(211, 222, 244, 0.46);
}

.section-heading > div > p {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 84px 32px;
}

.project {
  min-width: 0;
}

.project-featured,
.project-wide {
  grid-column: 1 / -1;
}

.project-visual {
  position: relative;
  display: block;
  height: clamp(390px, 48vw, 690px);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.22);
  isolation: isolate;
  overflow: hidden;
}

.project:not(.project-featured):not(.project-wide) .project-visual {
  height: clamp(390px, 47vw, 640px);
}

.project-visual::after {
  position: absolute;
  z-index: 4;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  content: "";
  transition: border-color 220ms ease, background 220ms ease;
}

.project-visual:hover::after {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.018);
}

.project-arrow {
  position: absolute;
  z-index: 6;
  top: 22px;
  right: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background: rgba(7, 10, 18, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 18px;
  backdrop-filter: blur(12px);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.project-visual:hover .project-arrow {
  color: #08101c;
  background: #fff;
  transform: rotate(8deg);
}

.agent-visual {
  background:
    radial-gradient(circle at 20% 80%, rgba(103, 232, 249, 0.16), transparent 35%),
    linear-gradient(135deg, #121b34, #0b1020 58%, #151044);
}

.agent-visual::before,
.preview-visual::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  content: "";
}

.window-chrome {
  position: absolute;
  z-index: 2;
  top: 12%;
  right: 7%;
  left: 7%;
  height: 44px;
  padding: 0 18px;
  background: rgba(12, 16, 29, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
  border-radius: 15px 15px 0 0;
}

.window-chrome i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 18px 3px 0 0;
  background: #485269;
  border-radius: 50%;
}

.window-chrome span {
  position: absolute;
  top: 13px;
  left: 50%;
  color: #737f96;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  transform: translateX(-50%);
}

.agent-screen {
  position: absolute;
  z-index: 2;
  top: calc(12% + 43px);
  right: 7%;
  width: 86%;
  height: 70%;
  background: #060812;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 15px 15px;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.45);
  object-fit: cover;
  object-position: top;
  transition: transform 450ms cubic-bezier(.2, .8, .2, 1);
}

.agent-visual:hover .agent-screen {
  transform: translateY(-6px) scale(1.008);
}

.agent-icon,
.corner-icon,
.preview-app-icon {
  position: absolute;
  z-index: 5;
  width: clamp(72px, 9vw, 124px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 25%;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.agent-icon {
  bottom: 8%;
  left: 5%;
}

.project-meta {
  display: grid;
  grid-template-columns: 1fr minmax(270px, 0.5fr);
  gap: 40px;
  align-items: end;
  padding-top: 28px;
}

.project-number {
  margin: 0 0 9px;
  color: #6e7a92;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-meta h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.project-meta > p {
  margin: 0;
  color: #8f99ad;
  font-size: 13px;
}

.project-meta-stacked {
  display: block;
}

.project-meta-stacked h3 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
}

.project-meta-stacked > p:last-child {
  max-width: 440px;
}

.kintai-visual {
  background:
    radial-gradient(circle at 50% 95%, rgba(103, 232, 249, 0.27), transparent 46%),
    linear-gradient(150deg, #11212b, #0b1722 54%, #071016);
}

.salon-visual {
  background:
    radial-gradient(circle at 20% 15%, rgba(247, 175, 215, 0.2), transparent 36%),
    linear-gradient(145deg, #271828, #17101a 62%, #0c0a0e);
}

.phone-shot {
  position: absolute;
  z-index: 2;
  bottom: -10%;
  width: 43%;
  max-height: 96%;
  object-fit: contain;
  filter: drop-shadow(0 36px 32px rgba(0, 0, 0, 0.48));
  transition: transform 450ms cubic-bezier(.2, .8, .2, 1);
}

.phone-left {
  left: 8%;
  transform: rotate(-5deg);
}

.phone-right {
  right: 8%;
  transform: translateY(8%) rotate(6deg);
}

.kintai-visual:hover .phone-left {
  transform: translateY(-2%) rotate(-3deg);
}

.kintai-visual:hover .phone-right {
  transform: translateY(4%) rotate(4deg);
}

.phone-center {
  right: 15%;
  bottom: -13%;
  width: 51%;
  transform: rotate(3deg);
}

.salon-visual:hover .phone-center {
  transform: translateY(-3%) rotate(1deg);
}

.corner-icon {
  bottom: 5%;
  left: 7%;
  width: clamp(58px, 7vw, 90px);
}

.preview-visual {
  height: clamp(380px, 42vw, 590px);
  background:
    radial-gradient(circle at 76% 50%, rgba(139, 92, 246, 0.24), transparent 34%),
    linear-gradient(145deg, #13132e, #0a0d19 62%, #16102c);
}

.preview-stack {
  position: absolute;
  z-index: 2;
  top: 14%;
  right: 8%;
  bottom: 14%;
  width: 52%;
  padding: 16px;
  background: rgba(9, 11, 23, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.48);
  transform: perspective(1200px) rotateY(-8deg);
  transition: transform 450ms cubic-bezier(.2, .8, .2, 1);
}

.preview-stack img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
}

.preview-visual:hover .preview-stack {
  transform: perspective(1200px) rotateY(-3deg) translateY(-5px);
}

.preview-app-icon {
  right: 7%;
  bottom: 8%;
  width: clamp(64px, 8vw, 104px);
}

.preview-copy {
  position: absolute;
  top: 26%;
  left: 8%;
  display: grid;
  color: #e5e9f4;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.preview-copy span:nth-child(2) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(181, 205, 255, 0.7);
}

.about {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 14, 24, 0.78);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(70px, 10vw, 170px);
}

.about-sticky {
  align-self: start;
}

.about-copy {
  max-width: 750px;
}

.about-lead {
  margin: 0 0 46px;
  color: #ecf1fd;
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 550;
  letter-spacing: -0.045em;
  line-height: 1.35;
}

.about-copy > p:not(.about-lead) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2.1;
}

.principles {
  display: grid;
  margin-top: 72px;
  border-top: 1px solid var(--line);
}

.principles > div {
  position: relative;
  display: grid;
  grid-template-columns: 50px 0.75fr 1.1fr;
  gap: 22px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.principles span {
  color: var(--cyan);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.principles h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.principles p {
  margin: 0;
  color: #818da5;
  font-size: 12px;
}

.contact {
  min-height: 900px;
  overflow: hidden;
}

.contact-glow {
  position: absolute;
  z-index: -1;
  top: 30%;
  left: -340px;
  width: 700px;
  height: 700px;
  background: rgba(49, 105, 255, 0.12);
  border-radius: 50%;
  filter: blur(110px);
}

.contact-heading {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.7fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 74px;
}

.contact-heading .section-index {
  align-self: start;
}

.contact-heading h2 {
  margin: 0;
  font-size: clamp(4rem, 9vw, 9.5rem);
  font-weight: 730;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.contact-heading h2 span {
  color: var(--cyan);
}

.contact-heading > p:last-child {
  margin: 0;
  color: #8d98ad;
  font-size: 13px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.45fr);
  background: rgba(13, 18, 32, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

#contact-form {
  display: grid;
  gap: 26px;
  padding: clamp(28px, 5vw, 68px);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

#contact-form label {
  display: grid;
  gap: 10px;
}

#contact-form label > span {
  color: #aeb8ca;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

#contact-form label small {
  color: #5f6b82;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  color: #edf2ff;
  background: rgba(5, 8, 16, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input,
select {
  height: 52px;
  padding: 0 16px;
}

textarea {
  min-height: 160px;
  padding: 14px 16px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #465168;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(103, 232, 249, 0.55);
  box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.07);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.form-footer p {
  max-width: 390px;
  margin: 0;
  color: #667289;
  font-size: 10px;
}

.form-footer .button {
  flex: 0 0 auto;
}

.form-status {
  min-height: 1.5em;
  margin: -12px 0 0;
  color: var(--cyan);
  font-size: 11px;
}

.direct-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(rgba(103, 232, 249, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 232, 249, 0.025) 1px, transparent 1px),
    rgba(6, 9, 17, 0.66);
  background-size: 34px 34px;
  border-left: 1px solid var(--line);
}

.direct-label {
  margin: 0 0 14px !important;
  color: #69758d !important;
  font-size: 8px !important;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.direct-contact > a {
  display: inline-block;
  width: fit-content;
  color: #eff4ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 550;
}

.copy-button {
  width: fit-content;
  margin-top: 18px;
  padding: 8px 12px;
  color: #9eabc1;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  font-size: 9px;
  font-weight: 650;
}

.copy-button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

.direct-contact > p:last-child {
  margin: 26px 0 0;
  color: #606c83;
  font-size: 10px;
}

.legal {
  padding-top: 20px;
}

.legal-shell {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 60px;
}

.legal details {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.legal summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

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

.legal summary i {
  position: relative;
  width: 18px;
  height: 18px;
}

.legal summary i::before,
.legal summary i::after {
  position: absolute;
  top: 8px;
  left: 3px;
  width: 12px;
  height: 1px;
  background: #94a0b8;
  content: "";
  transition: transform 180ms ease;
}

.legal summary i::after {
  transform: rotate(90deg);
}

.legal details[open] summary i::after {
  transform: rotate(0);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 12px 0 40px;
}

.legal-grid > div {
  display: grid;
  align-content: start;
  gap: 7px;
}

.legal-grid h3 {
  margin: 0 0 8px;
  color: #67738b;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.legal-grid a {
  width: fit-content;
  color: #aeb7c9;
  font-size: 11px;
}

.legal-grid a:hover {
  color: #fff;
}

.legal-grid small {
  color: #5c687e;
  font-size: 8px;
}

.site-footer {
  padding: 90px clamp(24px, 5.2vw, 84px) 30px;
  background: #05070c;
  border-top: 1px solid var(--line);
}

.footer-main,
.footer-bottom {
  display: flex;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  min-height: 220px;
  align-items: flex-start;
}

.footer-logo {
  flex: 1;
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 740;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

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

.footer-main > p {
  width: 30%;
  margin: 0;
  color: #68748a;
  font-size: 11px;
}

.footer-links {
  display: grid;
  width: 20%;
  gap: 9px;
}

.footer-links a {
  width: fit-content;
  color: #a8b2c4;
  font-size: 11px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #4e596e;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.mobile-break {
  display: none;
}

@media (max-width: 1060px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 440px;
    gap: 24px;
  }

  .hero-visual {
    width: 460px;
    height: 460px;
    min-width: 0;
    min-height: 0;
  }

  .contact-heading {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .contact-heading > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 18px 20px;
  }

  .desktop-nav,
  .header-actions > .social-link {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    padding: 130px 24px 100px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(3.8rem, 16vw, 6.7rem);
  }

  .hero-visual {
    width: min(100%, 560px);
    height: min(100vw, 560px);
    margin: 20px auto 0;
    justify-self: center;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 100px 24px;
  }

  .section-heading,
  .about-grid,
  .contact-heading,
  .legal-shell {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading .section-index {
    margin-bottom: 16px;
  }

  .section-heading h2,
  .about h2 {
    font-size: clamp(3.1rem, 13vw, 5.4rem);
  }

  .project-grid {
    gap: 64px 18px;
  }

  .project-featured .project-visual {
    height: min(66vw, 560px);
  }

  .about-copy {
    margin-top: 44px;
  }

  .contact-heading > p:last-child {
    grid-column: 1;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

  .direct-contact {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .legal .section-index {
    margin-bottom: 4px;
  }
}

@media (max-width: 620px) {
  .mobile-break {
    display: block;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 9px;
  }

  .hero h1 {
    letter-spacing: -0.07em;
  }

  .hero-lead {
    margin-top: 26px;
  }

  .hero-actions {
    gap: 22px;
  }

  .button {
    min-height: 50px;
    gap: 20px;
    padding: 0 18px;
  }

  .status-line {
    line-height: 1.6;
  }

  .hero-visual {
    height: calc(100vw - 48px);
  }

  .metric-top {
    right: 12%;
  }

  .tile-main {
    top: 27%;
    left: 30%;
    width: 40%;
    height: 40%;
  }

  .tile-one,
  .tile-two,
  .tile-three {
    width: 18%;
    height: 18%;
  }

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

  .project,
  .project-featured,
  .project-wide {
    grid-column: 1;
  }

  .project-visual,
  .project:not(.project-featured):not(.project-wide) .project-visual,
  .preview-visual {
    height: min(112vw, 560px);
  }

  .project-featured .project-visual {
    height: min(82vw, 480px);
  }

  .project-meta {
    display: block;
    padding-top: 20px;
  }

  .project-meta > p {
    margin-top: 10px;
  }

  .project-meta h3 {
    font-size: 1.75rem;
  }

  .preview-stack {
    top: 27%;
    right: 7%;
    bottom: 9%;
    width: 70%;
  }

  .preview-copy {
    top: 10%;
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .preview-app-icon {
    right: auto;
    bottom: 6%;
    left: 7%;
  }

  .principles > div {
    grid-template-columns: 34px 1fr;
  }

  .principles p {
    grid-column: 2;
  }

  .contact {
    min-height: auto;
  }

  .contact-heading h2 {
    font-size: clamp(4rem, 22vw, 7rem);
  }

  #contact-form {
    padding: 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

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

  .footer-main {
    min-height: 260px;
    flex-wrap: wrap;
    gap: 36px;
  }

  .footer-logo {
    flex-basis: 100%;
  }

  .footer-main > p,
  .footer-links {
    width: calc(50% - 18px);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Current focus: 2026 */
.hero-focus .orbit-one {
  inset: 4%;
}

.hero-focus .orbit-two {
  inset: 18%;
}

.focus-phone {
  position: absolute;
  z-index: 4;
  top: 13%;
  left: 31%;
  width: 31%;
  height: auto;
  aspect-ratio: 1320 / 2868;
  padding: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.46), 0 0 70px rgba(255, 115, 68, 0.12);
  transform: rotate(-3deg);
  animation: float 5.4s ease-in-out infinite;
  overflow: visible;
}

.focus-phone > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1320 / 2868;
  border-radius: 22px;
  object-fit: cover;
  object-position: top;
}

.focus-phone .tile-label {
  bottom: -42px;
}

.focus-desktop {
  position: absolute;
  z-index: 3;
  top: 17%;
  right: 1%;
  width: 39%;
  padding: 5px;
  background: rgba(7, 10, 18, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.48);
  transform: rotate(4deg);
}

.focus-desktop img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.focus-desktop span {
  position: absolute;
  right: 8px;
  bottom: -24px;
  color: #76829a;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.focus-icon {
  position: absolute;
  z-index: 5;
  width: 14%;
  aspect-ratio: 1;
  padding: 4px;
  background: rgba(12, 18, 33, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 25%;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}

.focus-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 22%;
  object-fit: cover;
}

.focus-pair {
  top: 11%;
  left: 9%;
  transform: rotate(-8deg);
}

.focus-neon {
  right: 10%;
  bottom: 21%;
  transform: rotate(7deg);
}

.focus-kintai {
  bottom: 8%;
  left: 17%;
  transform: rotate(-5deg);
}

.hero-focus:hover .focus-pair {
  transform: translate(-4px, -7px) rotate(-10deg);
}

.hero-focus:hover .focus-neon {
  transform: translate(5px, 6px) rotate(9deg);
}

.hero-focus:hover .focus-kintai {
  transform: translate(-4px, 5px) rotate(-7deg);
}

.focus-icon,
.focus-desktop {
  transition: transform 260ms ease;
}

.project-status {
  position: absolute;
  z-index: 7;
  top: 24px;
  left: 24px;
  padding: 7px 11px;
  color: #55230f;
  background: rgba(255, 248, 239, 0.84);
  border: 1px solid rgba(90, 45, 24, 0.12);
  border-radius: 20px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.15em;
  backdrop-filter: blur(10px);
}

.yomikau-visual {
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, 0.7), transparent 28%),
    linear-gradient(135deg, #ffd8c3 0%, #ffb795 48%, #ff7d4d 100%);
}

.yomikau-visual::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background-image:
    linear-gradient(rgba(87, 40, 19, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(87, 40, 19, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
}

.yomikau-wordmark {
  position: absolute;
  z-index: 1;
  bottom: -4%;
  left: -1%;
  color: rgba(91, 43, 22, 0.12);
  font-size: clamp(6rem, 16vw, 15rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.phone-gallery {
  position: absolute;
  z-index: 3;
  inset: 7% 8% -22%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(10px, 2.4vw, 34px);
  perspective: 1200px;
}

.phone-gallery img {
  width: 27%;
  height: auto;
  aspect-ratio: 1320 / 2868;
  border: 6px solid rgba(255, 255, 255, 0.84);
  border-radius: clamp(18px, 2.6vw, 36px);
  box-shadow: 0 28px 70px rgba(94, 43, 19, 0.28);
  object-fit: cover;
  object-position: top;
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.phone-gallery img:nth-child(1) {
  transform: translateY(8%) rotate(-4deg);
}

.phone-gallery img:nth-child(2) {
  transform: translateY(-1%);
}

.phone-gallery img:nth-child(3) {
  transform: translateY(7%) rotate(4deg);
}

.yomikau-visual:hover .phone-gallery img:nth-child(1) {
  transform: translateY(4%) rotate(-3deg);
}

.yomikau-visual:hover .phone-gallery img:nth-child(2) {
  transform: translateY(-3%);
}

.yomikau-visual:hover .phone-gallery img:nth-child(3) {
  transform: translateY(3%) rotate(3deg);
}

.yomikau-icon {
  position: absolute;
  z-index: 6;
  bottom: 7%;
  left: 5%;
  width: clamp(72px, 8vw, 112px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24%;
  box-shadow: 0 22px 58px rgba(91, 43, 22, 0.34);
}

.pairsnap-visual {
  background:
    radial-gradient(circle at 30% 15%, rgba(128, 118, 255, 0.22), transparent 32%),
    linear-gradient(145deg, #13132a, #0d0e16 62%, #090a0f);
}

.pairsnap-visual::before {
  position: absolute;
  inset: 0;
  background: repeating-radial-gradient(circle at 50% 50%, transparent 0 48px, rgba(165, 171, 255, 0.035) 49px 50px);
  content: "";
}

.pair-icon {
  position: absolute;
  z-index: 4;
  top: 8%;
  left: 7%;
  width: 18%;
  border-radius: 24%;
  box-shadow: 0 18px 48px rgba(26, 21, 120, 0.5);
}

.pair-phone {
  position: absolute;
  z-index: 3;
  bottom: -10%;
  width: 42%;
  height: auto;
  aspect-ratio: 1320 / 2868;
  border: 4px solid rgba(184, 189, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.48);
  object-fit: cover;
  object-position: top;
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.pair-phone-one {
  left: 19%;
  transform: rotate(-5deg);
}

.pair-phone-two {
  right: 4%;
  transform: translateY(8%) rotate(5deg);
}

.pairsnap-visual:hover .pair-phone-one {
  transform: translateY(-2%) rotate(-3deg);
}

.pairsnap-visual:hover .pair-phone-two {
  transform: translateY(4%) rotate(3deg);
}

.neoneq-visual {
  background:
    radial-gradient(circle at 50% 60%, rgba(202, 51, 241, 0.24), transparent 42%),
    radial-gradient(circle at 35% 80%, rgba(43, 216, 255, 0.2), transparent 38%),
    linear-gradient(150deg, #111a2a, #080b15 65%, #05070c);
}

.neon-pulse {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 8%, rgba(61, 216, 255, 0.08) 50%, transparent 92%);
  filter: blur(20px);
}

.neon-icon {
  position: absolute;
  z-index: 2;
  top: 8%;
  right: 12%;
  width: 18%;
  border-radius: 24%;
  box-shadow: 0 22px 80px rgba(74, 75, 255, 0.2);
}

.neon-window {
  position: absolute;
  z-index: 4;
  right: 7%;
  bottom: 12%;
  width: 86%;
  border: 1px solid rgba(90, 232, 255, 0.45);
  border-radius: 10px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55), 0 0 42px rgba(70, 214, 255, 0.14);
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.neoneq-visual:hover .neon-window {
  transform: translateY(-7px) scale(1.01);
}

.revmeter-visual {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 54, 76, 0.1), transparent 34%),
    linear-gradient(145deg, #160b12, #08090e 60%, #06070b);
}

.revmeter-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 70, 80, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 70, 80, 0.03) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
}

.revmeter-chrome {
  top: 7%;
  right: 6%;
  left: 6%;
}

.revmeter-frame {
  position: absolute;
  z-index: 2;
  top: calc(7% + 43px);
  right: 6%;
  bottom: 6%;
  left: 6%;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.52);
  overflow: hidden;
}

.revmeter-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 480ms cubic-bezier(.2, .8, .2, 1);
}

.revmeter-icon {
  position: absolute;
  z-index: 5;
  bottom: 5%;
  left: 4%;
  width: clamp(68px, 8vw, 110px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24%;
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.5);
}

.revmeter-visual:hover .revmeter-frame img {
  transform: scale(1.018);
}

.kintai-focus-visual {
  background:
    radial-gradient(circle at 78% 28%, rgba(124, 185, 255, 0.3), transparent 34%),
    linear-gradient(130deg, #14264c, #0d1830 60%, #08101f);
}

.kintai-focus-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 62px 62px;
  content: "";
}

.kintai-title {
  position: absolute;
  z-index: 2;
  top: 17%;
  left: 6%;
  display: grid;
  color: #eaf2ff;
  font-size: clamp(3.8rem, 8vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.kintai-title b {
  color: transparent;
  font-weight: inherit;
  -webkit-text-stroke: 1px rgba(180, 211, 255, 0.58);
}

.kintai-phone-row {
  position: absolute;
  z-index: 3;
  top: 8%;
  right: 7%;
  bottom: -22%;
  display: flex;
  align-items: flex-start;
  width: 55%;
  justify-content: center;
  gap: 18px;
}

.kintai-phone-row img {
  width: 31%;
  height: auto;
  aspect-ratio: 1290 / 2796;
  border: 5px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.46);
  object-fit: cover;
  object-position: top;
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1);
}

.kintai-phone-row img:nth-child(1) {
  transform: translateY(10%) rotate(-3deg);
}

.kintai-phone-row img:nth-child(3) {
  transform: translateY(6%) rotate(3deg);
}

.kintai-focus-visual:hover .kintai-phone-row img {
  transform: translateY(-2%);
}

.kintai-icon {
  position: absolute;
  z-index: 5;
  bottom: 8%;
  left: 7%;
  width: clamp(70px, 8vw, 108px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24%;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
}

.more-projects {
  margin-top: clamp(100px, 12vw, 170px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.more-projects-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.more-projects-heading .section-index,
.more-projects-heading > p {
  margin: 0;
}

.more-projects-heading > p:last-child {
  color: #68748a;
  font-size: 11px;
}

.mini-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mini-project-grid > a {
  display: grid;
  grid-template-columns: 58px 1fr 24px;
  gap: 16px;
  align-items: center;
  min-height: 96px;
  padding: 18px;
  background: rgba(13, 18, 32, 0.55);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.mini-project-grid > a:hover {
  background: rgba(18, 25, 43, 0.75);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.mini-project-grid img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: cover;
}

.mini-project-grid span {
  display: grid;
  gap: 3px;
}

.mini-project-grid b {
  font-size: 13px;
  font-weight: 650;
}

.mini-project-grid small {
  color: #69758b;
  font-size: 9px;
}

.mini-project-grid i {
  color: #6d7890;
  font-style: normal;
}

@media (max-width: 820px) {
  .focus-phone {
    left: 31%;
  }

  .project:not(.project-featured):not(.project-wide) .pairsnap-visual,
  .project:not(.project-featured):not(.project-wide) .neoneq-visual {
    height: min(66vw, 560px);
  }

  .mini-project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .focus-phone {
    top: 12%;
    left: 30%;
    width: 38%;
    height: auto;
  }

  .focus-desktop {
    top: 12%;
    right: 0;
    width: 42%;
  }

  .focus-icon {
    width: 17%;
  }

  .focus-pair {
    left: 3%;
  }

  .focus-neon {
    right: 4%;
  }

  .focus-kintai {
    left: 11%;
  }

  .project:not(.project-featured):not(.project-wide) .pairsnap-visual,
  .project:not(.project-featured):not(.project-wide) .neoneq-visual {
    height: min(112vw, 560px);
  }

  .phone-gallery {
    inset: 13% 2% -14%;
    gap: 8px;
  }

  .phone-gallery img {
    width: 31%;
    border-width: 3px;
    border-radius: 16px;
  }

  .yomikau-wordmark {
    font-size: 25vw;
  }

  .revmeter-chrome {
    top: 11%;
    right: 4%;
    left: 4%;
  }

  .revmeter-frame {
    top: calc(11% + 43px);
    right: 4%;
    bottom: 10%;
    left: 4%;
  }

  .kintai-title {
    top: 10%;
    left: 5%;
    font-size: 14vw;
  }

  .kintai-phone-row {
    top: 30%;
    right: 4%;
    bottom: -16%;
    width: 90%;
    gap: 7px;
  }

  .kintai-phone-row img {
    border-width: 3px;
    border-radius: 16px;
  }

  .more-projects-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
