/* =============================================================
   TH Lee — antigravity-inspired personal site
   Ethereal pastel, weightless, organic
   ============================================================= */

:root {
  --ink:       #1a2333;
  --ink-soft:  #4a5870;
  --ink-mute:  #8696ae;
  --paper:     #fafbfd;
  --paper-2:   #f2f4f9;
  --line:      rgba(26, 35, 51, 0.08);
  --line-2:    rgba(26, 35, 51, 0.15);

  --accent:    #5E9FE0;
  --accent-2:  #8EC9A8;
  --accent-3:  #C9B8EA;
  --accent-4:  #F5C6B8;

  --g-hero:    linear-gradient(180deg, #f9f0e8 0%, #ece4f5 30%, #d9e5f5 60%, #dcecf0 100%);
  --g-soft:    linear-gradient(180deg, #fafbfd 0%, #eef2f8 100%);

  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;

  --maxw: 1080px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; background: #fafbfd; }

body {
  font-family: "Inter", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

em { font-style: italic; color: var(--accent); font-family: "Fraunces", serif; font-weight: 400; }

/* =========== CUSTOM CURSOR — plane cursor + pastel glow =========== */
.cursor-glow,
.cursor-plane {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}
.cursor-glow {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(245,198,184,0.5) 0%,
    rgba(201,184,234,0.4) 40%,
    rgba(142,201,168,0.25) 75%,
    rgba(142,201,168,0) 100%);
  filter: blur(14px) saturate(140%);
  transition: width .25s, height .25s, opacity .25s;
}
.cursor-glow.is-hover {
  width: 120px; height: 120px;
  background: radial-gradient(circle,
    rgba(158,217,180,0.6) 0%,
    rgba(191,217,240,0.45) 45%,
    rgba(201,184,234,0.25) 80%,
    transparent 100%);
}
.cursor-plane {
  width: 42px; height: 42px;
  filter: drop-shadow(0 3px 6px rgba(45,59,82,0.25));
  transition: opacity .2s;
}
.cursor-plane.is-hover {
  transform: translate3d(-50%, -50%, 0) scale(1.15);
}
/* Cursor trail particles */
.cursor-trail {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate3d(-50%, -50%, 0);
  filter: blur(3px);
  animation: trailFade 900ms ease-out forwards;
  will-change: transform, opacity;
}
@keyframes trailFade {
  0%   { opacity: 0.9; transform: translate3d(-50%, -50%, 0) scale(1); }
  100% { opacity: 0;   transform: translate3d(-50%, -50%, 0) scale(0.2); }
}
@media (max-width: 768px) {
  .cursor-glow, .cursor-plane, .cursor-trail { display: none; }
}
/* Hide native cursor \u2014 replaced by plane */
body.custom-cursor, body.custom-cursor * { cursor: none !important; }

/* =========== FLOATING INTERACTION — magnetic cards =========== */
.float-hover {
  transition: transform .35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow .35s ease;
  will-change: transform;
}
.float-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(123, 180, 240, 0.18),
              0 4px 12px rgba(158, 217, 180, 0.12);
}
/* subtle float-in animation (applied per-card via style) */
@keyframes floatDrift {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.float-drift {
  animation: floatDrift 6s ease-in-out infinite;
}

/* =========== NAV =========== */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 12px 10px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 2px 10px rgba(26,35,51,0.04), 0 10px 40px rgba(26,35,51,0.06);
  transition: background .3s, box-shadow .3s;
  white-space: nowrap;
}
.nav.is-scrolled { background: rgba(255,255,255,0.85); }
.nav__brand { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.nav__mark {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #C9B8EA 40%, #5E9FE0 75%, #8EC9A8 100%);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.6), 0 2px 8px rgba(94,159,224,0.4);
  animation: markSpin 12s linear infinite;
}
@keyframes markSpin { to { transform: rotate(360deg); } }
.nav__links { display: flex; gap: 22px; font-size: 14px; color: var(--ink-soft); white-space: nowrap; }
.nav__links a { transition: color .2s; white-space: nowrap; }
.nav__links a:hover { color: var(--accent); }
.lang {
  display: inline-flex;
  padding: 4px;
  border-radius: 999px;
  background: rgba(26,35,51,0.06);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.lang span { padding: 4px 9px; border-radius: 999px; color: var(--ink-mute); transition: all .2s; }
.lang span.on { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
@media (max-width: 760px) { .nav__links { display: none; } }

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  transition: transform .25s, box-shadow .3s, background .2s;
  white-space: nowrap;
}
.btn--solid {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 20px rgba(26,35,51,0.2);
}
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(26,35,51,0.28); }
.btn--quiet {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  color: var(--ink);
}
.btn--quiet:hover { background: #fff; }
.btn--ghost {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(191,217,240,0.5);
  color: #2D3B52;
  font-weight: 500;
  box-shadow: 0 4px 14px rgba(123,180,240,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: background .3s, border-color .3s, transform .25s, box-shadow .3s;
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.85);
  border-color: rgba(168,220,196,0.7);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(168,220,196,0.2), inset 0 1px 0 rgba(255,255,255,1);
}
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn:disabled { opacity: 0.6; cursor: wait; }

/* =========== HERO =========== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 28px 140px;
  background: var(--g-hero);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }

/* === Hero scene (SVG landscape) === */
.hero-scene {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-scene__svg {
  width: 100%; height: 100%;
  display: block;
}
.hero-scene__plane {
  position: absolute;
  top: 30%;
  left: -8%;
  animation: planeGlide 22s linear infinite;
  filter: drop-shadow(0 4px 8px rgba(45,59,82,0.15));
}
@keyframes planeGlide {
  0%   { left: -8%;  top: 50%; transform: translate(0,0) rotate(-6deg); opacity: 0; }
  8%   { opacity: 1; }
  30%  { top: 32%; transform: translate(0,0) rotate(-4deg); }
  55%  { top: 28%; transform: translate(0,-20px) rotate(2deg); }
  80%  { top: 20%; transform: translate(0,-8px) rotate(4deg); }
  92%  { opacity: 1; }
  100% { left: 108%; top: 22%; transform: translate(0,0) rotate(4deg); opacity: 0; }
}
.hero-scene__boat {
  position: absolute;
  bottom: 12%;
  left: 18%;
  animation: boatBob 5s ease-in-out infinite;
  filter: drop-shadow(0 3px 4px rgba(45,59,82,0.2));
}
@keyframes boatBob {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%      { transform: translateY(-3px) rotate(1.5deg); }
}

.hero__grain {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(ellipse at top, rgba(255,255,255,0.6), transparent 60%),
                    radial-gradient(ellipse at bottom, rgba(216,236,240,0.5), transparent 60%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 820px;
  text-align: center;
}
.hero__greet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
  animation: fadeUp .8s ease both;
}
.hero__greet-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #70c39a;
  box-shadow: 0 0 0 3px rgba(112,195,154,0.3);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { transform: scale(1.3); opacity: 0.7; } }

.hero__title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  font-size: clamp(40px, 6.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #182238;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(.2,.7,.2,1) both;
}
.hero__title-line:nth-child(2) { color: var(--accent); font-style: italic; font-weight: 300; }
.hero__sub {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
  animation: fadeUp 1s ease .5s both;
}
.hero__cta { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; animation: fadeUp 1s ease .7s both; }
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-mute);
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translate(-50%, 6px); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =========== SECTIONS =========== */
.sec {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 140px 28px;
  position: relative;
}
.sec__kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.sec__h {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 300;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  max-width: 800px;
  text-wrap: pretty;
}
.sec__h--center { text-align: center; margin-left: auto; margin-right: auto; }
.sec__h-line { display: block; }
.sec__lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 0 56px;
  line-height: 1.65;
}
.sec__lede--center { text-align: center; margin-left: auto; margin-right: auto; }

/* =========== ABOUT — pastel 3D blobs =========== */
.sec--about {
  position: relative;
  overflow: hidden;
  max-width: none;
  padding-left: 28px;
  padding-right: 28px;
  padding-top: 140px;
}
.about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(160deg, #FCFEFF 0%, #F0F6FB 45%, #EAF4EE 100%);
}
.about__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.85;
  will-change: transform;
}
.about__blob--1 {
  width: 520px; height: 520px;
  top: -80px; left: -120px;
  background: radial-gradient(circle at 35% 30%, #FFFFFF 0%, #D8EAF8 40%, #BFD9F0 70%, rgba(191,217,240,0) 100%);
  animation: blobFloat1 22s ease-in-out infinite;
}
.about__blob--2 {
  width: 440px; height: 440px;
  top: 120px; right: -80px;
  background: radial-gradient(circle at 40% 40%, #FFFFFF 0%, #D8EDE2 40%, #A8DCC4 70%, rgba(168,220,196,0) 100%);
  animation: blobFloat2 26s ease-in-out infinite;
}
.about__blob--3 {
  width: 320px; height: 320px;
  bottom: 100px; left: 30%;
  background: radial-gradient(circle at 50% 50%, #FFFFFF 0%, #EAF4EE 50%, rgba(234,244,238,0) 100%);
  animation: blobFloat3 20s ease-in-out infinite;
  opacity: 0.7;
}
.about__blob--4 {
  width: 280px; height: 280px;
  top: 40%; left: 55%;
  background: radial-gradient(circle at 50% 50%, #C6ECDA 0%, rgba(198,236,218,0) 70%);
  animation: blobFloat1 28s ease-in-out infinite reverse;
  opacity: 0.5;
}
@keyframes blobFloat1 { 0%,100% { transform: translate(0,0) } 50% { transform: translate(30px,-20px) } }
@keyframes blobFloat2 { 0%,100% { transform: translate(0,0) } 50% { transform: translate(-40px,20px) } }
@keyframes blobFloat3 { 0%,100% { transform: translate(0,0) scale(1) } 50% { transform: translate(20px,30px) scale(1.08) } }

.sec--about > :not(.about__bg) {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

/* about cards — paired with journey */
.about__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 10px;
}
.about__card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--r-md);
  box-shadow: 0 10px 30px rgba(26,35,51,0.06);
  opacity: 0;
  animation: fadeUp .9s cubic-bezier(.2,.7,.2,1) both;
  transition: transform .3s, box-shadow .3s;
}
.about__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(26,35,51,0.1);
}
.about__card-num {
  font-family: "Fraunces", serif;
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
  font-weight: 300;
}
.about__k {
  font-family: "Fraunces", serif;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 6px;
}
.about__v { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }

@media (max-width: 800px) {
  .about__cards { grid-template-columns: 1fr; }
  .about__card { grid-template-columns: 48px 1fr; padding: 18px 20px; }
  .about__card-num { font-size: 26px; }
  .about__k { font-size: 17px; }
}

/* =========== HELP =========== */
.sec--help {
  max-width: none;
  padding-left: 28px; padding-right: 28px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fafbfd 0%, #eef2fa 50%, #f3ecf8 100%);
}
.sec--help::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 10% 20%, rgba(201,184,234,0.35), transparent 70%),
    radial-gradient(600px 400px at 90% 80%, rgba(154,217,180,0.3), transparent 70%);
  pointer-events: none;
}
.sec--help > * { position: relative; max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.help__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.help__card {
  padding: 0;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.9);
  transition: box-shadow .3s, border-color .3s, transform .2s;
  will-change: transform;
  opacity: 0;
  animation: fadeUp .8s ease both;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.help__card:hover {
  box-shadow: 0 24px 50px rgba(26,35,51,0.12);
  border-color: rgba(255,255,255,1);
}
.help__illust {
  width: 100%;
  aspect-ratio: 320 / 200;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.6);
}
.help__illust svg { width: 100%; height: 100%; display: block; }
.help__body {
  padding: 26px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.help__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E5F0FB, #F0E9FB);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7), 0 4px 12px rgba(123,180,240,0.2);
  position: relative;
  margin-top: -46px;
  border: 2px solid #fff;
}
.help__card h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0 0 14px;
}
.help__card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.help__cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 14px; color: var(--ink);
  transition: gap .2s;
  white-space: nowrap;
  margin-top: auto;
}
.help__cta:hover { gap: 10px; color: var(--accent); }
@media (max-width: 900px) { .help__grid { grid-template-columns: 1fr; } }

/* =========== APPS — pastel 3D blobs =========== */
.sec--apps {
  position: relative;
  max-width: none;
  padding-left: 28px;
  padding-right: 28px;
  padding-top: 120px;
  overflow: hidden;
}
.apps__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(160deg, #FCFEFF 0%, #EEF5FA 40%, #EAF4EE 100%);
}
.apps__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.apps__blob--1 {
  width: 600px; height: 600px;
  top: -100px; right: -150px;
  background: radial-gradient(circle at 40% 35%, #FFFFFF 0%, #CFE4F5 40%, #A8CCEA 70%, rgba(168,204,234,0) 100%);
  opacity: 0.8;
  animation: blobFloat1 24s ease-in-out infinite;
}
.apps__blob--2 {
  width: 480px; height: 480px;
  top: 200px; left: -120px;
  background: radial-gradient(circle at 45% 45%, #FFFFFF 0%, #DCEDE4 40%, #A8DCC4 70%, rgba(168,220,196,0) 100%);
  opacity: 0.75;
  animation: blobFloat2 28s ease-in-out infinite;
}
.apps__blob--3 {
  width: 360px; height: 360px;
  bottom: 80px; left: 45%;
  background: radial-gradient(circle at 50% 50%, #FFFFFF 0%, #E8F2FB 50%, rgba(232,242,251,0) 100%);
  opacity: 0.65;
  animation: blobFloat3 22s ease-in-out infinite;
}

.sec--apps > :not(.apps__bg) {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}
.sec--apps .sec__h,
.sec--apps .sec__lede {
  text-shadow: 0 1px 20px rgba(255,255,255,0.6);
}
.apps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 140px;
}
.app {
  position: relative;
  padding: 24px 22px 26px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.8);
  transition: box-shadow .3s, border-color .3s, transform .2s, background .3s;
  will-change: transform;
  transform-style: preserve-3d;
  opacity: 0;
  animation: fadeUp .7s ease both;
  overflow: hidden;
}
.app:hover {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 20px 44px rgba(26,35,51,0.1);
  border-color: rgba(255,255,255,0.95);
}
.app__aura {
  position: absolute; inset: -40%; z-index: 0;
  background: radial-gradient(circle at 50% 20%, var(--accent), transparent 60%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
  filter: blur(40px);
}
.app > * { position: relative; z-index: 1; }
.app__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.app__chip {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: "Fraunces", serif;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(26,35,51,0.12);
  position: relative;
}
.app__chip-ring {
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1px dashed currentColor;
  opacity: 0.35;
  animation: markSpin 20s linear infinite;
}
.app__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  background: rgba(26,35,51,0.05); color: var(--ink-mute);
}
.app__status .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.app__status--shipping { background: #E3F5EB; color: #3E8C63; }
.app__status--building { background: #E5F0FB; color: #3E7BB8; }
.app__status--building .dot { animation: pulse 1.8s ease-in-out infinite; }
.app__status--idea { background: #F0EAFB; color: #6E5AA8; }

.app__name {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: 22px; letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.app__tag {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600; margin-bottom: 12px;
}
.app__blurb { font-size: 14px; line-height: 1.65; color: var(--ink-soft); margin: 0; }

@media (max-width: 900px) { .apps__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .apps__grid { grid-template-columns: 1fr; } }

/* =========== HOBBIES =========== */
.sec--hob { padding-top: 40px; padding-bottom: 40px; }
.hob {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, #F0E9FB, #D8ECF0);
  overflow: hidden;
}
.hob__copy h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 36px);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.hob__copy p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; margin: 0; }
.hob__viz {
  aspect-ratio: 5/3;
  border-radius: var(--r-md);
  overflow: hidden;
  background: linear-gradient(160deg, #FCFEFF 0%, #EEF5FA 40%, #EAF4EE 100%);
  box-shadow: 0 10px 30px rgba(26,35,51,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
  position: relative;
}
.hob__stage { position: absolute; inset: 0; }
.hob__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  will-change: transform;
}
.hob__blob--1 {
  width: 280px; height: 280px;
  top: -40px; left: -40px;
  background: radial-gradient(circle at 40% 40%, #FFFFFF 0%, #D8EAF8 40%, #A8CCEA 75%, rgba(168,204,234,0) 100%);
  opacity: 0.85;
  animation: blobFloat1 20s ease-in-out infinite;
}
.hob__blob--2 {
  width: 260px; height: 260px;
  bottom: -60px; right: -30px;
  background: radial-gradient(circle at 45% 45%, #FFFFFF 0%, #DCEDE4 40%, #A8DCC4 75%, rgba(168,220,196,0) 100%);
  opacity: 0.85;
  animation: blobFloat2 22s ease-in-out infinite;
}
.hob__blob--3 {
  width: 180px; height: 180px;
  top: 40%; left: 35%;
  background: radial-gradient(circle at 50% 50%, #FFFFFF 0%, rgba(255,255,255,0) 70%);
  opacity: 0.7;
  animation: blobFloat3 24s ease-in-out infinite;
}
.hob__orb {
  position: absolute;
  width: 48%;
  aspect-ratio: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%,
      #FFFFFF 0%,
      #E8F2FB 22%,
      #BFD9F0 52%,
      #A8DCC4 82%,
      #8AC6AE 100%);
  box-shadow:
    0 30px 60px rgba(123,180,240,0.28),
    0 10px 24px rgba(154,217,180,0.24),
    inset 0 2px 0 rgba(255,255,255,0.9),
    inset 0 -12px 30px rgba(60,110,150,0.15);
  animation: orbFloat 7s ease-in-out infinite;
  will-change: transform;
}
.hob__orb-hi {
  position: absolute;
  width: 32%;
  height: 22%;
  top: 14%;
  left: 22%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(-20deg);
}
.hob__arc { position: absolute; inset: 0; pointer-events: none; opacity: 0.6; }
@keyframes orbFloat {
  0%,100% { transform: translate(-50%, -50%); }
  50%     { transform: translate(-50%, calc(-50% - 10px)); }
}
@media (max-width: 800px) { .hob { grid-template-columns: 1fr; padding: 32px; } }

/* =========== CONTACT =========== */
.sec--contact { max-width: 720px; padding-bottom: 80px; }
.contact-form {
  position: relative;
  margin-top: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: grid;
  gap: 22px;
  box-shadow: 0 20px 50px rgba(26,35,51,0.06);
}
.field { display: grid; gap: 8px; }
.field label {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600;
}
.field input, .field textarea {
  font-family: inherit; font-size: 15.5px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line-2);
  background: var(--paper-2);
  color: var(--ink);
  transition: border-color .2s, background .2s, box-shadow .2s;
  resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field textarea:focus {
  outline: none; background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(94,159,224,0.15);
}
.topic-row { display: flex; gap: 8px; flex-wrap: wrap; }
.topic-chip {
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line-2);
  color: var(--ink-soft);
  transition: all .3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.topic-chip:hover {
  border-color: transparent;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(245,198,184,0.25), rgba(201,184,234,0.25), rgba(158,217,180,0.25));
  box-shadow: 0 6px 16px rgba(191,217,240,0.25);
  transform: translateY(-1px);
}
  font-size: 13.5px; font-weight: 500;
  transition: all .2s;
  white-space: nowrap;
}
.topic-chip:hover { border-color: var(--accent); color: var(--ink); }
.topic-chip.on { background: var(--ink); color: #fff; border-color: var(--ink); }
.contact-form .btn { justify-self: start; }
.contact-hint { margin: 4px 0 0; font-size: 13px; color: var(--ink-mute); line-height: 1.5; }

/* pastel send button — white → blue → green gradient */
.btn--send {
  position: relative;
  padding: 16px 32px;
  color: #2D3B52;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg,
    #FFFFFF 0%,
    #E8F2FB 25%,
    #BFD9F0 55%,
    #A8DCC4 85%,
    #C6ECDA 100%);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow:
    0 8px 24px rgba(124, 180, 240, 0.28),
    0 2px 6px rgba(154, 217, 180, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
  isolation: isolate;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
}
.btn--send::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(255,255,255,0.6) 0%,
    rgba(255,255,255,0) 40%);
  border-radius: inherit;
  pointer-events: none;
  z-index: -1;
}
.btn--send::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #FFFFFF, #BFD9F0, #A8DCC4);
  border-radius: inherit;
  filter: blur(14px);
  opacity: 0.5;
  z-index: -2;
  transition: opacity .4s ease;
}
.btn--send:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(124, 180, 240, 0.38),
    0 4px 10px rgba(154, 217, 180, 0.28),
    inset 0 1px 0 rgba(255,255,255,1);
}
.btn--send:hover::after { opacity: 0.8; }
.btn--send:active { transform: translateY(0); }
.btn--send .btn__label {
  background: linear-gradient(135deg, #2D3B52 0%, #3A6FA8 50%, #4A8C6E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}
.btn--send svg { color: #3A6FA8; }

/* =========== FOOTER =========== */
.footer {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 28px 60px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  font-size: 13px; color: var(--ink-mute);
}

/* =========== APPS SCENE (backdrop) =========== */
.sec--apps { position: relative; overflow: hidden; }
.apps-scene {
  position: absolute; inset: 0;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}
.apps-scene__svg { width: 100%; height: 100%; display: block; }
.sec--apps > *:not(.apps-scene) { position: relative; z-index: 1; }

/* =========== HOBBIES SCENE =========== */
.hob-scene {
  width: 100%;
  aspect-ratio: 800 / 380;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(123,180,240,0.2),
    inset 0 0 0 1px rgba(255,255,255,0.4);
  position: relative;
}
.hob-scene::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}

/* =========== PAPER PLANE (contact) =========== */
.paper-plane {
  position: absolute;
  top: -18px;
  right: 20px;
  transition: transform .9s cubic-bezier(0.25, 1, 0.3, 1),
              opacity .9s ease;
  animation: paperHover 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(123,180,240,0.25));
}
@keyframes paperHover {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-8px) rotate(-2deg); }
}
.paper-plane.is-launching {
  animation: none;
  transform: translate(280px, -320px) rotate(35deg) scale(0.5);
  opacity: 0;
}
