/* ─── Reset ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
               Inter, system-ui, sans-serif;
  background: #0a0c13;
  color: #fff;
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
}

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

/* ─── Background ─── */
.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Subtle ambient glow — bottom right */
.bg-glow {
  position: absolute;
  bottom: -5%;
  right: -5%;
  width: min(800px, 65vw);
  height: min(700px, 58vw);
  background: radial-gradient(
    ellipse at 62% 75%,
    rgba(55, 100, 200, .16) 0%,
    rgba(40, 78, 165, .07) 35%,
    rgba(28, 58, 140, .03) 58%,
    transparent             80%
  );
  filter: blur(70px);
  pointer-events: none;
}

/* Origin diagram — ἀρχή */
.bg-arche {
  position: absolute;
  bottom: -50%;
  right: -25%;
  width: 120vmin;
  height: 120vmin;
  opacity: .9;
}

/* Signal points — slow breathing, cinematic */
.gd-primary {
  animation: breathe-a 10s ease-in-out infinite;
}
.gd-sec {
  animation: breathe-b 14s ease-in-out infinite;
}
.gd-ter {
  animation: breathe-b 20s ease-in-out infinite;
}
@keyframes breathe-a {
  0%, 100% { opacity: .25; }
  50%       { opacity: .78; }
}
@keyframes breathe-b {
  0%, 100% { opacity: .14; }
  50%       { opacity: .44; }
}

/* Orbiting tracer — 90s, imperceptible pace */
.orbit-tracer {
  transform-box: view-box;
  transform-origin: 50% 50%;
  animation: orbit 90s linear infinite;
}
@keyframes orbit {
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

/* Aurora — deep environmental glow */
.bg-aurora {
  position: absolute;
  bottom: -15%;
  right: -10%;
  width: 68%;
  height: 58%;
  background: radial-gradient(
    ellipse at 62% 72%,
    rgba(15, 40, 110, .07) 0%,
    rgba(10, 28,  80, .03) 44%,
    transparent            68%
  );
  filter: blur(55px);
  pointer-events: none;
  animation: aurora-breathe 22s ease-in-out infinite;
}
@keyframes aurora-breathe {
  0%,  100% { opacity: .55; transform: translate(  0,    0);   }
  38%        { opacity: .88; transform: translate(-2%,  1.5%); }
  70%        { opacity: .60; transform: translate( 1.5%, -1%); }
}

/* ─── Page shell ─── */
.page {
  position: relative;
  z-index: 1;
  height: 100vh;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 11% 0;
  display: flex;
  flex-direction: column;
}

/* ─── Header ─── */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  margin-bottom: 51px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.logo {
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -.022em;
  color: rgba(255, 255, 255, .92);
}

.nav {
  display: flex;
  gap: 36px;
}
.nav-link {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}
.nav-link:hover,
.nav-link:focus-visible { color: rgba(255, 255, 255, .90); }
.nav-link:focus-visible { outline: 2px solid rgba(59,130,246,.6); outline-offset: 4px; border-radius: 2px; }

/* Active nav dot — appears before the label */
.nav-link--active {
  color: rgba(255, 255, 255, .90);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-link--active::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 7px rgba(59, 130, 246, .55);
  flex-shrink: 0;
}

/* ─── View switching ─── */
.view {
  transition: opacity 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
.view--hidden  { display: none; }
.view--fading  { opacity: 0; }

/* ─── Connect view content ─── */
.connect-body {
  margin-top: 0;
  max-width: 460px;
}
.connect-text {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 8px 10px;
  margin-top: 28px;
  margin-bottom: 0;
}
.connect-phrase {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -.012em;
  color: rgba(255, 255, 255, .48);
  line-height: 1.55;
  white-space: nowrap;
}
.connect-sep {
  font-size: 14px;
  color: rgba(255, 255, 255, .15);
  line-height: 1.55;
}
.connect-sub {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -.012em;
  color: rgba(255, 255, 255, .28);
  line-height: 1.55;
  margin-top: 0;
  margin-bottom: 28px;
}
.connect-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  transition: color 240ms ease;
  animation: cta-breathe 3.6s ease-in-out infinite;
}
.connect-cta:hover {
  color: rgba(255, 255, 255, .90);
  animation: none;
}
.connect-cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(59, 130, 246, .55);
  animation: cta-dot-pulse 3.6s ease-in-out infinite;
}
.connect-cta:hover .connect-cta-dot {
  animation: none;
  box-shadow: 0 0 14px rgba(59, 130, 246, .90);
}
@keyframes cta-breathe {
  0%, 100% { color: rgba(255,255,255,.32); }
  50%       { color: rgba(255,255,255,.72); text-shadow: 0 0 18px rgba(255,255,255,.10); }
}
@keyframes cta-dot-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 6px rgba(59,130,246,.45);
  }
  50% {
    transform: scale(1.35);
    box-shadow: 0 0 14px rgba(59,130,246,.85), 0 0 28px rgba(59,130,246,.30);
  }
}
.cta-arrow {
  display: inline-block;
  font-size: 11px;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.connect-cta:hover .cta-arrow { transform: translate(2px, -2px); }

/* ─── About view content ─── */
.about-body {
  margin-top: 56px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-philosophy {
  margin-top: 28px;
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 8px 10px;
}
.about-line {
  font-size: 18px;
  font-weight: 300;
  letter-spacing: -.012em;
  color: rgba(255, 255, 255, .48);
  line-height: 1.55;
  white-space: nowrap;
}
.about-sep-dot {
  font-size: 14px;
  color: rgba(255, 255, 255, .15);
  line-height: 1.55;
}

.about-focus-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 2px;
}
.about-focus-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(59, 130, 246, .55);
}

.about-focus-list { list-style: none; }

.about-focus-item {
  display: grid;
  grid-template-columns: 18px 52px 1fr auto;
  align-items: center;
  column-gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition:
    opacity  240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}
.about-focus-dot-col {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  justify-self: center;
  visibility: hidden;
}
.about-focus-year {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, .28);
  font-variant-numeric: tabular-nums;
  transition: color 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.about-focus-name {
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -.016em;
  line-height: 1.08;
  color: rgba(255, 255, 255, .30);
  transition: color 240ms cubic-bezier(0.22, 1, 0.36, 1),
              text-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.about-focus-type {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, .24);
  white-space: nowrap;
  transition: color 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Focus list hover interaction ─── */
.about-focus-list:has(.about-focus-item:hover)        .about-focus-item,
.about-focus-list:has(.about-focus-item:focus-visible) .about-focus-item { opacity: 0.38; }

.about-focus-list:has(.about-focus-item:hover)         .about-focus-item:hover,
.about-focus-list:has(.about-focus-item:focus-visible) .about-focus-item:focus-visible {
  opacity: 1;
  transform: translateX(2px);
}
.about-focus-list:has(.about-focus-item:hover)         .about-focus-item:hover .about-focus-name,
.about-focus-list:has(.about-focus-item:focus-visible) .about-focus-item:focus-visible .about-focus-name {
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 0 22px rgba(255, 255, 255, .16);
}
.about-focus-list:has(.about-focus-item:hover)         .about-focus-item:hover .about-focus-year,
.about-focus-list:has(.about-focus-item:focus-visible) .about-focus-item:focus-visible .about-focus-year {
  color: rgba(255, 255, 255, .62);
}
.about-focus-list:has(.about-focus-item:hover)         .about-focus-item:hover .about-focus-type,
.about-focus-list:has(.about-focus-item:focus-visible) .about-focus-item:focus-visible .about-focus-type {
  color: rgba(255, 255, 255, .48);
}

.about-studio {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about-studio-line {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .24);
}

.about-closing {
  margin-top: 24px;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .15);
}

/* ─── Hero ─── */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-top: 64px;
  padding-bottom: 44px;
  min-height: 0;
}

/* Eyebrow */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(59, 130, 246, .55);
}

/* Headline */
.headline {
  font-size: clamp(62px, 6.2vw, 88px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -.028em;
  color: rgba(255, 255, 255, .94);
  margin-top: 14px;
}

/* ─── Content grid: projects | card ─── */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 272px;
  gap: 60px;
  align-items: start;
  margin-top: 112px;
}

/* ─── Selected Projects ─── */
.projects-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .38);
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  margin-bottom: 2px;
}
.projects-label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b82f6;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(59, 130, 246, .55);
}

.projects { padding-right: 260px; }
.projects-list { list-style: none; }

.project {
  display: grid;
  grid-template-columns: 18px 52px 1fr auto;
  align-items: center;
  column-gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .04);
  transition:
    opacity  240ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  cursor: default;
}
.project:focus-visible { outline: none; }

/* Dot column — hidden by default, shown when active */
.project-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3b82f6;
  justify-self: center;
  visibility: hidden;
}

.project-year {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, .28);
  font-variant-numeric: tabular-nums;
  transition: color 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.project-name {
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -.016em;
  line-height: 1.08;
  color: rgba(255, 255, 255, .30);
  transition: color 240ms cubic-bezier(0.22, 1, 0.36, 1),
              text-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1);
}
.project-type {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, .24);
  white-space: nowrap;
  transition: color 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Active state — dot only, no permanent brightness */

/* ─── Project hover interaction — light follows attention ─── */
/* Dim all rows when any is hovered/focused */
.projects-list:has(.project:hover)       .project,
.projects-list:has(.project:focus-visible) .project { opacity: 0.38; }

/* Un-dim and focus the attended row */
.projects-list:has(.project:hover)         .project:hover,
.projects-list:has(.project:focus-visible) .project:focus-visible {
  opacity: 1;
  transform: translateX(2px);
}
.projects-list:has(.project:hover)         .project:hover .project-name,
.projects-list:has(.project:focus-visible) .project:focus-visible .project-name {
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 0 22px rgba(255, 255, 255, .16);
}
.projects-list:has(.project:hover)         .project:hover .project-year,
.projects-list:has(.project:focus-visible) .project:focus-visible .project-year {
  color: rgba(255, 255, 255, .62);
}
.projects-list:has(.project:hover)         .project:hover .project-type,
.projects-list:has(.project:focus-visible) .project:focus-visible .project-type {
  color: rgba(255, 255, 255, .48);
}

/* ─── Dashboard Card atmosphere ─── */
.card {
  transition:
    opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    filter  280ms cubic-bezier(0.22, 1, 0.36, 1);
}
.card--updating {
  opacity: 0.65;
  filter: blur(1.8px);
}

/* ─── App preview phones ─── */
.phones {
  position: relative;
  height: 196px;
  margin-top: 14px;
}
.phone {
  position: absolute;
  width: 108px;
  height: 186px;
  border-radius: 18px;
  background: #07091a;
  border: 1.5px solid rgba(255, 255, 255, .09);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .55);
}
.phone--back {
  left: 8px;
  top: 10px;
  transform: rotate(-5deg);
  opacity: 0.42;
}
.phone--front {
  right: 8px;
  top: 0;
}

/* ─── Dashboard Card ─── */
.card {
  margin-top: 0;
  align-self: center;
  background: rgba(13, 18, 36, .75);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0  0  0  1px rgba(255, 255, 255, .04),
    0 20px 60px rgba(0,   0,   0,   .55),
    0  0 80px   rgba(20,  60, 160,  .09);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.card-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: rgba(255, 255, 255, .80);
}
.card-menu {
  font-size: 13px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .28);
}

.card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, .34);
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.stat-val {
  font-size: 23px;
  font-weight: 300;
  letter-spacing: -.025em;
  color: rgba(255, 255, 255, .88);
  line-height: 1.1;
  margin-bottom: 3px;
}
.stat-delta {
  font-size: 11px;
  font-weight: 400;
  color: rgba(109, 175, 135, .88);
}

.card-chart {
  border-radius: 8px;
  overflow: hidden;
  line-height: 0;
}
.card-chart svg {
  display: block;
  width: 100%;
  height: 52px;
}

/* ─── Scrolling marquee strip ─── */
.marquee {
  margin-top: auto;
  /* full-bleed: break out of .page padding */
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: 11px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 90s ease-in-out infinite;
}
.mitem {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .22);
  white-space: nowrap;
  padding: 0 40px;
}
@keyframes marquee-scroll {
  0%    { transform: translateX(100vw);  opacity: 0; }
  6%    { transform: translateX(88vw);   opacity: 1; }
  74%   { transform: translateX(-90%);   opacity: 1; }
  82%   { transform: translateX(-100%);  opacity: 0; }
  82.1% { transform: translateX(100vw);  opacity: 0; }
  100%  { transform: translateX(100vw);  opacity: 0; }
}

/* ─── Meta row ─── */
.meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}

.location-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 100px;
  padding: 7px 15px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .52);
  cursor: default;
  will-change: transform;
  transition:
    background  380ms ease,
    border-color 380ms ease,
    box-shadow  380ms ease;
}
.location-pill:hover {
  background:    rgba(255, 255, 255, .075);
  border-color:  rgba(255, 255, 255, .15);
  box-shadow:
    0 0 18px rgba(109, 175, 135, .08),
    0 0  0 1px rgba(109, 175, 135, .06) inset;
}

.pill-text {
  transition:
    opacity 480ms cubic-bezier(0.22, 1, 0.36, 1),
    filter  480ms cubic-bezier(0.22, 1, 0.36, 1);
}
.pill-text.fading {
  opacity: 0;
  filter: blur(3px);
}

.location-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6daf87;
  flex-shrink: 0;
  animation: dot-breathe 5s ease-in-out infinite;
}
@keyframes dot-breathe {
  0%,  100% { box-shadow: 0 0 4px rgba(109, 175, 135, .40); opacity: .80; }
  50%        { box-shadow: 0 0 9px rgba(109, 175, 135, .75); opacity: 1;   }
}

.signature {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .22);
  opacity: 0;
  animation: sig-fadein 1.8s cubic-bezier(0.22, 1, 0.36, 1) 1.2s forwards;
  transition: color 400ms ease;
}
.signature:hover {
  color: rgba(255, 255, 255, .42);
}
@keyframes sig-fadein {
  to { opacity: 1; }
}

/* ─── Inactivity return ─── */
.origin-msg {
  position: fixed;
  bottom: 58px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .30);
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}
.origin-msg--visible {
  opacity: 1;
}

/* Signal point intensifies during return sequence */
.gd-primary--alert {
  animation: signal-alert 1.4s ease-in-out infinite !important;
}
@keyframes signal-alert {
  0%,  100% { opacity: .40; }
  50%        { opacity: 1;   }
}

/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .marquee-track { animation-play-state: paused; }
  .project:hover,
  .project:focus-visible { transform: none !important; }
  .card--pulse { filter: none !important; }
  .location-pill { transform: none !important; }
  .pill-text { transition: opacity 80ms linear !important; filter: none !important; }
  .signature { animation: none !important; opacity: 1 !important; }
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
  body { overflow-x: hidden; overflow-y: auto; }
  .page { height: auto; min-height: 100svh; }
  .hero {
    padding-top: 32px;
    /* reserve space above iPhone home indicator */
    padding-bottom: calc(44px + env(safe-area-inset-bottom, 0px));
  }
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .card { max-width: 320px; }
  /* remove the desktop gap that reserved space for the side card */
  .projects { padding-right: 0; }
}

@media (max-width: 640px) {
  .page { padding: 24px 6% 0; }

  /* Header — tighter gap so content starts higher on small screens */
  .header { padding-bottom: 14px; margin-bottom: 20px; }
  .logo { font-size: 26px; }
  .nav { gap: 22px; }
  .nav-link { font-size: 14px; }

  /* Hero — less top padding, content starts earlier */
  .hero { padding-top: 20px; }

  .headline { font-size: clamp(44px, 11vw, 64px); margin-top: 10px; }

  /* Home — tighter gap from headline to project list */
  .content-grid { margin-top: 36px; }

  /* Card hidden on mobile — hover interaction doesn't work on touch */
  .card { display: none; }

  /* Home — project list */
  .project { grid-template-columns: 44px 1fr; }
  .project-dot { display: none; }
  .project-name { font-size: 20px; }
  .project-type { display: none; }

  /* About — philosophy: stacked lines, no separators */
  .about-philosophy { flex-direction: column; gap: 2px; margin-top: 16px; }
  .about-sep-dot { display: none; }
  .about-line { white-space: normal; font-size: 15px; }

  /* About — experience list */
  .about-body { max-width: 100%; margin-top: 28px; }
  .about-studio { margin-top: 20px; }
  .about-focus-item { grid-template-columns: 40px 1fr; }
  .about-focus-dot-col { display: none; }
  .about-focus-type { display: none; }
  .about-focus-name { font-size: 20px; }
  .about-focus-year { font-size: 14px; }

  /* Connect */
  .connect-body { max-width: 100%; }
  .connect-text { flex-wrap: wrap; margin-top: 16px; }
  .connect-phrase { white-space: normal; font-size: 16px; }
  .connect-sub { font-size: 16px; }
}
